:root {
  --black: #080706;
  --charcoal: #15110f;
  --ink: #231713;
  --paper-light: #f4ead5;
  --red: #b5231b;
  --red-dark: #74120e;
  --white: #fffaf0;
  --green: #516648;
  --max: 1240px;
  --side: clamp(22px, 5vw, 72px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--black);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

.page-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

::selection {
  color: var(--white);
  background: var(--red);
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #f2c37c;
  outline-offset: 5px;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 68px;
  font-weight: 800;
  line-height: 1.35;
}

h3 {
  font-size: 31px;
  line-height: 1.35;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 8px 14px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-inner {
  width: min(calc(100% - (var(--side) * 2)), var(--max));
  margin-inline: auto;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-number {
  margin-bottom: 18px;
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1;
  opacity: 0.48;
}

.section-number::after {
  display: inline-block;
  width: 54px;
  height: 1px;
  margin: 0 0 4px 14px;
  background: currentColor;
  content: "";
  opacity: 0.55;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 22px var(--side);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: min-height 0.35s ease, padding 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 78px;
  padding-block: 12px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 7, 6, 0.91);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: clamp(220px, 18vw, 270px);
}

.brand-logo {
  width: 100%;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 44px);
  font-size: 18px;
  font-weight: 900;
}

.global-nav a {
  position: relative;
  display: block;
  padding: 10px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.global-nav a:hover::after,
.global-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.global-nav .nav-english {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.global-nav .nav-english::after {
  display: none;
}

.mobile-actions,
.drawer {
  display: none;
}

.hero {
  position: relative;
  height: min(920px, 94svh);
  min-height: 0;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse at 50% 32%, rgba(255, 255, 255, 0.15), transparent 22%),
    radial-gradient(ellipse at 22% 50%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #201f1e 0%, #10100f 50%, #030303 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 27%, transparent 73%, rgba(0, 0, 0, 0.8)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 42%, rgba(0, 0, 0, 0.72));
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 8;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background-image: url("assets/paper-texture.jpg");
  background-position: center;
  background-size: cover;
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.08;
  pointer-events: none;
}

.hero-title {
  margin: 0;
}

.hero-copy {
  position: absolute;
  z-index: 9;
  width: 126px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.66));
}

.vertical-left {
  top: 22%;
  left: clamp(40px, 7.5vw, 146px);
}

.vertical-right {
  top: 22%;
  right: clamp(42px, 8vw, 154px);
}

.hero-bowl-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 5;
  width: min(72vw, 1360px);
  transform: translateX(-50%);
}

.hero-bowl {
  width: 100%;
  filter: drop-shadow(0 44px 54px rgba(0, 0, 0, 0.78));
}

.hero-foot {
  position: absolute;
  right: var(--side);
  bottom: 28px;
  left: var(--side);
  z-index: 10;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.hero-foot > p {
  margin-bottom: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  line-height: 1.75;
  text-shadow: 0 2px 8px #000;
}

.scroll-sign {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0;
}

.scroll-sign i {
  position: relative;
  display: block;
  width: 1px;
  height: 64px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
}

.scroll-sign i::after {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  animation: scrollLine 2s ease-in-out infinite;
}

.steam-stage {
  position: absolute;
  inset: -12% -8%;
  z-index: 2;
  overflow: hidden;
  mix-blend-mode: screen;
  pointer-events: none;
}

.steam-sheet {
  position: absolute;
  inset: -35% -12%;
  display: block;
  opacity: 0.85;
  animation: steamRise 11s linear infinite;
  will-change: transform, opacity;
}

.steam-sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steam-sheet-b {
  animation-delay: -6.5s;
  animation-duration: 13s;
}

.steam-sheet-b img {
  transform: scaleX(-1);
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.intro {
  position: relative;
  padding: clamp(100px, 11vw, 180px) 0 clamp(96px, 10vw, 150px);
  overflow: hidden;
}

.intro::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(181, 35, 27, 0.16), transparent 25%),
    linear-gradient(180deg, #050505, #15100d);
  content: "";
}

.intro .section-inner {
  position: relative;
}

.brush-word {
  position: absolute;
  top: -80px;
  right: -20px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 760px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.section-lead {
  display: grid;
  grid-template-columns: 72px minmax(540px, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.section-lead .section-number {
  padding-top: 18px;
}

.section-lead h2 {
  font-size: 60px;
}

.section-lead h2 span {
  white-space: nowrap;
}

.intro-copy {
  max-width: 560px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 16px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.craft-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(70px, 8vw, 116px);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.craft-list article {
  position: relative;
  min-height: 290px;
  padding: 44px clamp(24px, 3.3vw, 52px) 38px;
}

.craft-list article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.craft-list article > span {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 72px;
  line-height: 1;
}

.craft-list h3 {
  position: relative;
  margin: 45px 0 18px;
  font-size: 29px;
}

.craft-list p {
  position: relative;
  margin: 0;
  color: rgba(255, 250, 240, 0.64);
  font-size: 14px;
}

.signature {
  position: relative;
  padding: clamp(104px, 11vw, 174px) 0;
  background:
    linear-gradient(rgba(232, 215, 181, 0.78), rgba(232, 215, 181, 0.78)),
    url("assets/paper-texture.jpg") center / cover;
}

.signature::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: var(--red);
  content: "";
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(350px, 0.76fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
}

.signature-photo {
  position: relative;
  margin-bottom: 0;
}

.signature-photo::before {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: 0;
  border: 1px solid rgba(73, 39, 22, 0.45);
  content: "";
}

.signature-photo-main {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(45, 23, 10, 0.25);
}

.signature-photo figcaption {
  position: absolute;
  bottom: 28px;
  left: 24px;
  z-index: 2;
  padding: 12px 18px;
  color: var(--white);
  background: var(--red);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
}

.signature-copy > p:not(.section-number, .section-kicker) {
  color: #5a4337;
  font-size: 15px;
}

.signature-copy h2 {
  margin-bottom: 30px;
  font-size: 58px;
}

.text-link,
.outline-link,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 54px;
  margin-top: 22px;
  padding: 0 20px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.text-link:hover,
.outline-link:hover,
.button-link:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

.menu-section {
  position: relative;
  padding: clamp(104px, 11vw, 176px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 6%, rgba(181, 35, 27, 0.18), transparent 28%),
    linear-gradient(180deg, #15100d, #070706);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(46px, 6vw, 78px);
}

.section-heading h2 {
  font-size: 92px;
}

.section-heading > p {
  margin-bottom: 8px;
  color: rgba(255, 250, 240, 0.6);
  font-size: 13px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.menu-card {
  grid-column: 8 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.88fr) minmax(220px, 1.12fr);
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.menu-card-main {
  grid-row: span 2;
  grid-column: 1 / 8;
  grid-template-columns: 1fr;
}

.menu-photo {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: #17110e;
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.menu-card:hover .menu-photo img {
  transform: scale(1.045);
}

.ramen-photo {
  min-height: 470px;
  background: #3a2117;
}

.ramen-photo img {
  object-fit: cover;
  object-position: center 54%;
  padding: 0;
}

.menu-label {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.menu-card-body {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  min-width: 0;
  padding: clamp(22px, 3vw, 40px);
}

.menu-card:not(.menu-card-main) .menu-card-body {
  align-items: start;
  flex-direction: column;
  padding: 24px;
}

.menu-card h3 {
  margin-bottom: 10px;
}

.menu-card-main h3 {
  font-size: 42px;
}

.menu-card:not(.menu-card-main) h3 {
  white-space: nowrap;
}

@media (min-width: 721px) {
  .menu-card-main .menu-card-body {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .menu-card-main h3 {
    font-size: 36px;
    white-space: nowrap;
  }

  .menu-card-main .price {
    justify-self: end;
  }
}

.menu-card-body > div > p:not(.menu-en) {
  max-width: 480px;
  margin-bottom: 0;
  color: #6b5748;
  font-size: 13px;
}

.menu-en {
  margin-bottom: 7px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.price {
  flex: 0 0 auto;
  margin-bottom: 0;
  color: var(--red-dark);
  line-height: 1;
  white-space: nowrap;
}

.price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  font-weight: 400;
}

.price span {
  margin-left: 4px;
  font-size: 12px;
  font-weight: 800;
}

.price small {
  margin-left: 6px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.menu-note {
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.48);
  font-size: 11px;
  text-align: right;
}

.shop-section {
  position: relative;
  padding: clamp(104px, 11vw, 174px) 0;
  background:
    linear-gradient(rgba(225, 207, 171, 0.78), rgba(225, 207, 171, 0.78)),
    url("assets/paper-texture.jpg") center / cover;
}

.shop-heading {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.shop-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.shop-heading-row h2 {
  font-size: 92px;
}

.shop-heading-row p {
  margin-bottom: 12px;
  color: #5a4337;
  font-size: 14px;
}

.shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.55fr);
  gap: 0;
  align-items: center;
}

.shop-map {
  position: relative;
  min-height: 590px;
  border: 1px solid rgba(73, 39, 22, 0.35);
  background: #d8cbb5;
  box-shadow: 0 24px 54px rgba(45, 23, 10, 0.2);
}

.shop-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shop-status {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 26px;
  padding: 8px 13px;
  color: #d5c09d;
  border: 1px solid rgba(213, 192, 157, 0.3);
  font-size: 11px;
  font-weight: 800;
}

.shop-status i {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(81, 102, 72, 0.13);
}

.shop-details {
  position: relative;
  z-index: 2;
  margin-left: -34px;
  padding: clamp(30px, 4vw, 54px);
  color: var(--white);
  background: var(--charcoal);
  box-shadow: 18px 18px 0 rgba(116, 18, 14, 0.18);
}

.shop-name {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 25px;
  font-weight: 800;
}

.shop-name span {
  color: #d5c09d;
  font-size: 12px;
}

.shop-info {
  margin: 0;
}

.shop-info div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-info dt {
  color: #d5c09d;
  font-size: 12px;
  font-weight: 800;
}

.shop-info dd {
  color: rgba(255, 250, 240, 0.78);
  font-size: 13px;
}

.shop-info small {
  color: rgba(255, 250, 240, 0.46);
}

.outline-link {
  color: var(--white);
}

.recruit-section {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94) 0%, rgba(5, 4, 3, 0.79) 48%, rgba(5, 4, 3, 0.42) 100%),
    url("assets/gyoza.jpg") center 52% / cover;
}

.recruit-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 45%, rgba(0, 0, 0, 0.55));
  content: "";
  pointer-events: none;
}

.recruit-inner {
  position: relative;
  z-index: 2;
}

.recruit-inner h2 {
  margin-bottom: 18px;
  font-size: 90px;
}

.recruit-inner > p:not(.section-kicker) {
  max-width: 520px;
  color: rgba(255, 250, 240, 0.72);
}

.button-link:hover {
  border-color: var(--red);
}

.english-section {
  padding: clamp(90px, 10vw, 142px) 0;
  color: var(--white);
  background: var(--red-dark);
}

.english-inner {
  display: grid;
  grid-template-columns: 0.55fr 1fr 0.95fr;
  gap: clamp(38px, 7vw, 94px);
  align-items: end;
}

.english-inner .section-kicker {
  align-self: start;
  color: #f2c9b3;
}

.english-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 1.08;
}

.english-inner > p:not(.section-kicker) {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.75;
}

.english-inner dl {
  grid-column: 3;
  margin-bottom: 0;
}

.english-inner dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  font-size: 11px;
}

.english-inner dt {
  color: #f2c9b3;
}

.site-footer {
  position: relative;
  padding: 92px 0 24px;
  overflow: hidden;
  color: var(--white);
  background: #040303 url("assets/footer-background.jpg") center 42% / cover no-repeat;
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(4, 3, 3, 0.78);
  content: "";
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 68px;
}

.footer-brand.brand {
  width: 280px;
}

.footer-identity > p {
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 12px;
  line-height: 1.9;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 28px;
}

.footer-nav {
  display: flex;
  gap: clamp(22px, 3.5vw, 48px);
  color: rgba(255, 250, 240, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 132px;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(255, 250, 240, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  transition: color 0.25s ease, background 0.25s ease;
}

.footer-socials a:hover {
  color: var(--black);
  background: var(--white);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 250, 240, 0.66);
  font-size: 11px;
}

.back-to-top span {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 17px;
  transition: color 0.25s ease, background 0.25s ease;
}

.back-to-top:hover span {
  color: var(--black);
  background: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 20px;
  color: rgba(255, 250, 240, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.footer-bottom p {
  margin-bottom: 0;
}

body.is-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.is-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.craft-list [data-reveal]:nth-child(2),
.menu-grid [data-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}

.craft-list [data-reveal]:nth-child(3),
.menu-grid [data-reveal]:nth-child(3) {
  transition-delay: 0.2s;
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translate3d(-1%, 18%, 0) scale(1.02);
  }

  14% {
    opacity: 0.82;
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(1%, -20%, 0) scale(1.1);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(-105%);
  }

  55%,
  100% {
    transform: translateY(105%);
  }
}

@media (max-width: 1050px) {
  h2 {
    font-size: 54px;
  }

  h3 {
    font-size: 27px;
  }

  .site-header {
    min-height: 88px;
    padding-block: 15px;
  }

  .global-nav {
    display: none;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .language-link {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
  }

  .menu-button {
    display: grid;
    width: 49px;
    padding: 0;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .menu-button > span:not(.menu-button-label) {
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 9px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-button-label {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 8px;
    letter-spacing: 0;
  }

  .menu-button.is-open > span:first-child {
    transform: translateY(6px) rotate(35deg);
  }

  .menu-button.is-open > span:nth-child(2) {
    transform: translateY(-5px) rotate(-35deg);
  }

  .drawer {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 100px 28px 38px;
    color: var(--white);
    background:
      radial-gradient(circle at 100% 0, rgba(181, 35, 27, 0.24), transparent 34%),
      rgba(7, 6, 5, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .drawer-links {
    display: grid;
    width: min(100%, 480px);
  }

  .drawer-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
  }

  .drawer-note {
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    letter-spacing: 0;
  }

  .hero-bowl-wrap {
    bottom: 2%;
    width: min(124vw, 1080px);
  }

  .hero-copy {
    width: 112px;
  }

  .brush-word {
    font-size: 520px;
  }

  .signature-copy h2 {
    font-size: 48px;
  }

  .section-heading h2 {
    font-size: 74px;
  }

  .shop-heading-row h2 {
    font-size: 74px;
  }

  .menu-card-main h3 {
    font-size: 36px;
  }

  .recruit-inner h2 {
    font-size: 72px;
  }

  .english-inner h2 {
    font-size: 58px;
  }

  .section-lead {
    grid-template-columns: 60px 1fr;
  }

  .section-lead h2 {
    font-size: 54px;
  }

  .intro-copy {
    grid-column: 2;
  }

  .signature-grid {
    gap: 52px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .shop-map {
    min-height: 520px;
  }

  .shop-details {
    width: calc(100% - 80px);
    margin: -44px 40px 0;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card,
  .menu-card-main {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .menu-card-main {
    grid-column: 1 / -1;
  }

  .menu-card:not(.menu-card-main) .menu-card-body {
    align-items: end;
    flex-direction: row;
  }

  .english-inner {
    grid-template-columns: 0.45fr 1fr;
  }

  .english-inner > p:not(.section-kicker),
  .english-inner dl {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --side: 20px;
  }

  html {
    scroll-padding-top: 76px;
  }

  h2 {
    font-size: 44px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 72px;
    padding-block: 11px;
  }

  .brand {
    width: 170px;
  }

  .mobile-actions {
    gap: 24px;
  }

  .menu-button {
    width: 42px;
  }

  .hero {
    height: 92svh;
    min-height: 0;
    max-height: 850px;
  }

  .hero-copy {
    width: clamp(78px, 23vw, 94px);
  }

  .vertical-left {
    top: 32%;
    left: 7vw;
  }

  .vertical-right {
    top: 19%;
    right: 7vw;
  }

  .hero-bowl-wrap {
    bottom: 9%;
    width: min(182vw, 900px);
  }

  .hero-foot {
    right: 18px;
    bottom: 14px;
    left: 18px;
  }

  .hero-foot > p {
    font-size: 10px;
  }

  .scroll-sign {
    gap: 9px;
    font-size: 7px;
  }

  .scroll-sign i {
    width: 1px;
    height: 42px;
  }

  .steam-stage {
    inset: -9% -14%;
  }

  .steam-sheet {
    animation-duration: 9.5s;
  }

  .steam-sheet-b {
    animation-delay: -5.75s;
    animation-duration: 11.5s;
  }

  .intro {
    padding-block: 92px 82px;
  }

  .brush-word {
    top: 80px;
    right: -80px;
    font-size: 330px;
  }

  .section-lead,
  .signature-grid,
  .shop-grid,
  .english-inner {
    grid-template-columns: 1fr;
  }

  .section-lead {
    gap: 18px;
  }

  .section-lead h2 {
    font-size: 42px;
  }

  .section-lead h2 span {
    white-space: normal;
  }

  .section-lead .section-number,
  .intro-copy {
    grid-column: auto;
  }

  .section-lead .section-number {
    padding-top: 0;
  }

  .intro-copy {
    margin-top: 16px;
    font-size: 14px;
  }

  .craft-list {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .craft-list article {
    min-height: 0;
    padding: 30px 16px 30px;
  }

  .craft-list article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .craft-list article > span {
    top: 20px;
    right: 14px;
    font-size: 54px;
  }

  .craft-list h3 {
    margin: 0 0 12px;
  }

  .signature {
    padding-block: 94px;
  }

  .signature-grid {
    gap: 56px;
  }

  .signature-photo {
    width: calc(100% - 12px);
    margin-left: 12px;
  }

  .signature-photo::before {
    inset: -11px 11px 11px -11px;
  }

  .signature-photo-main {
    aspect-ratio: 1.2;
  }

  .signature-photo figcaption {
    right: auto;
    bottom: 14px;
    left: 12px;
    padding: 9px 12px;
    font-size: 10px;
  }

  .signature-copy h2 {
    margin-bottom: 24px;
    font-size: 44px;
  }

  .menu-section,
  .shop-section {
    padding-block: 92px;
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 58px;
  }

  .section-heading > p {
    margin-top: 16px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-card-main {
    grid-column: auto;
  }

  .ramen-photo {
    min-height: 310px;
  }

  .menu-photo {
    min-height: 230px;
  }

  .menu-card-body,
  .menu-card:not(.menu-card-main) .menu-card-body {
    align-items: end;
    flex-direction: row;
    padding: 22px 18px;
  }

  .menu-card-body > div > p:not(.menu-en) {
    display: none;
  }

  .menu-card-main h3 {
    font-size: 25px;
  }

  .menu-card-main .menu-card-body {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-card h3 {
    margin-bottom: 0;
    font-size: 22px;
  }

  .menu-en {
    font-size: 8px;
  }

  .price strong {
    font-size: 29px;
  }

  .menu-note {
    font-size: 10px;
    text-align: left;
  }

  .shop-grid {
    gap: 0;
  }

  .shop-heading-row {
    display: block;
  }

  .shop-heading-row h2 {
    font-size: 58px;
  }

  .shop-heading-row p {
    margin-top: 16px;
  }

  .shop-map {
    min-height: 420px;
  }

  .shop-details {
    width: calc(100% - 24px);
    margin: -28px 12px 0;
    padding: 26px 20px;
    box-shadow: 9px 9px 0 rgba(116, 18, 14, 0.18);
  }

  .shop-name {
    font-size: 20px;
  }

  .shop-info div {
    grid-template-columns: 76px 1fr;
    gap: 12px;
  }

  .recruit-section {
    min-height: 530px;
    background-position: 61% center;
  }

  .recruit-inner h2 {
    font-size: 52px;
  }

  .button-link {
    width: 100%;
    gap: 16px;
    font-size: 12px;
  }

  .english-section {
    padding-block: 82px;
  }

  .english-inner {
    gap: 26px;
  }

  .english-inner h2 {
    font-size: 43px;
  }

  .english-inner > p:not(.section-kicker),
  .english-inner dl {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 54px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 42px;
  }

  .footer-brand.brand {
    width: 230px;
  }

  .footer-links {
    width: 100%;
    justify-items: start;
    gap: 30px;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .back-to-top {
    justify-self: end;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 12px 24px;
  }

  .footer-bottom {
    gap: 8px;
  }
}

@media (max-height: 650px) and (max-width: 720px) {
  .hero-copy {
    width: 72px;
  }

  .vertical-left {
    top: 30%;
  }

  .hero-bowl-wrap {
    bottom: 3%;
    width: 165vw;
  }

}
