:root {
  --ink: #201a16;
  --paper: #f3ede2;
  --paper-deep: #e7ddce;
  --red: #a92e25;
  --red-dark: #772018;
  --gold: #d7a642;
  --white: #fffdf8;
  --line: rgba(32, 26, 22, 0.16);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(24, 15, 10, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(88, 62, 40, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 8px;
  font-family: var(--sans);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 200;
  background: var(--white);
  padding: 10px 14px;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  color: var(--white);
  transition: background .3s, box-shadow .3s, height .3s;
}

.site-header.is-scrolled,
.subpage .site-header {
  height: 70px;
  background: rgba(31, 24, 20, .96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: var(--red);
  font-size: 1.25rem;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: .14em;
  line-height: 1.2;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .22em;
  opacity: .8;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  font-size: .78rem;
  letter-spacing: .12em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .25s;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.header-instagram {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  transition: transform .2s, opacity .2s;
}

.header-instagram:hover {
  transform: translateY(-2px);
  opacity: .78;
}

.header-instagram img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.header-reserve {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 20px;
  background: var(--red);
  border: 1px solid rgba(255,255,255,.25);
  font-size: .77rem;
  font-weight: 700;
}

.header-reserve span { font-size: 1rem; }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 0;
  color: white;
  background: transparent;
  cursor: pointer;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: auto;
  background: currentColor;
  transition: transform .25s, opacity .25s;
}

.menu-button i { position: relative; }
.menu-button i::before,
.menu-button i::after { content: ""; position: absolute; left: 0; }
.menu-button i::before { top: -7px; }
.menu-button i::after { top: 7px; }
.menu-button[aria-expanded="true"] i { background: transparent; }
.menu-button[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  padding: 90px 9vw 30px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity .28s, transform .28s, visibility .28s;
}

.mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-panel nav { border-top: 1px solid rgba(255,255,255,.2); }

.mobile-panel nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 17px 2px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.mobile-panel nav small {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.mobile-panel-meta {
  margin-top: 24px;
  font-size: .78rem;
  color: rgba(255,255,255,.72);
}

.home-hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  color: var(--white);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13,9,7,.82) 0%, rgba(13,9,7,.28) 58%, rgba(13,9,7,.14)),
    linear-gradient(0deg, rgba(13,9,7,.48), transparent 45%);
}

.home-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  animation: heroZoom 16s ease-out both;
}

@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), 92vw);
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 64px;
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero-kicker { color: var(--gold); }
.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: .12em;
  text-shadow: 0 6px 30px rgba(0,0,0,.32);
}

.hero-copy h1 span {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: .42em;
  letter-spacing: .26em;
}

.hero-copy > p:not(.hero-kicker) {
  margin: 28px 0 34px;
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  line-height: 2;
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  transition: transform .2s, background .2s, color .2s;
}

.button:hover { transform: translateY(-2px); }
.button-red { border-color: var(--red); background: var(--red); }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-outline { border-color: rgba(255,255,255,.7); background: transparent; }
.button-outline-dark { background: transparent; color: var(--ink); }

.hero-stamp {
  position: absolute;
  right: 5vw;
  bottom: 8vh;
  z-index: 2;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  text-align: center;
  font-size: .66rem;
  letter-spacing: .16em;
  line-height: 1.8;
}

.hero-stamp strong {
  display: block;
  color: var(--gold);
  font-size: 1.15rem;
}

.section {
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 140px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.section h2,
.page-heading h1,
.cta-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .1em;
}

.section h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
.section-copy p { margin: 24px 0; font-size: .94rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 700;
}

.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(5px); }

.intro-visual { position: relative; padding: 0 0 42px 40px; }
.intro-visual::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 70%;
  background: var(--red);
}
.intro-visual img {
  position: relative;
  z-index: 1;
  height: 600px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.menu-preview { padding: clamp(80px, 9vw, 130px) 0; }

.section-head {
  width: min(var(--max), 90vw);
  margin: 0 auto 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-head .eyebrow { color: var(--gold); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.3rem); }

.dish-grid {
  width: min(var(--max), 90vw);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dish-card { position: relative; }
.dish-card:nth-child(2) { margin-top: 48px; }
.dish-card-image { position: relative; overflow: hidden; }
.dish-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.2);
  pointer-events: none;
}
.dish-card img {
  height: 430px;
  object-fit: cover;
  transition: transform .6s;
}
.dish-card:hover img { transform: scale(1.04); }
.dish-card-number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 8px 12px;
  background: var(--red);
  font-size: .7rem;
}
.dish-card h3 {
  margin: 18px 0 2px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}
.dish-card p { margin: 0; color: rgba(255,255,255,.64); font-size: .78rem; }
.dish-card strong { display: block; margin-top: 8px; color: var(--gold); font-size: .9rem; }

.feature-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 700px;
}

.feature-strip-image { overflow: hidden; }
.feature-strip-image img { height: 100%; object-fit: cover; }
.feature-strip-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px);
  background: var(--red);
  color: var(--white);
}
.feature-strip-copy .eyebrow { color: var(--gold); }
.feature-strip-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.55;
}
.feature-strip-copy p { margin: 28px 0; }

.info-section { background: var(--paper-deep); }
.info-grid {
  width: min(var(--max), 90vw);
  margin: auto;
  padding: clamp(80px, 9vw, 130px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 100px);
}
.info-grid h2 { margin-bottom: 30px; }
.store-details { margin: 0; border-top: 1px solid var(--line); }
.store-details div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.store-details dt { color: var(--red); font-size: .74rem; font-weight: 700; }
.store-details dd { margin: 0; font-size: .85rem; }

.map-box {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(36deg, transparent 44%, rgba(169,46,37,.2) 45%, rgba(169,46,37,.2) 48%, transparent 49%),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(32,26,22,.08) 55px 57px),
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(32,26,22,.08) 47px 49px),
    #ddd1be;
}
.map-box::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid var(--red);
  border-radius: 50% 50% 50% 0;
  background: var(--paper);
  transform: rotate(-45deg);
}
.map-box span {
  position: relative;
  z-index: 1;
  margin-top: -5px;
  font-family: var(--serif);
  font-size: .78rem;
  font-weight: 700;
}
.map-box .button { position: absolute; right: 20px; bottom: 20px; }

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19,13,10,.82), rgba(19,13,10,.18));
}
.page-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.page-heading {
  position: relative;
  z-index: 1;
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: 150px 0 70px;
}
.page-heading .eyebrow { color: var(--gold); }
.page-heading h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
.page-heading p { max-width: 620px; margin: 18px 0 0; }

.lead-block {
  max-width: 830px;
  margin: 0 auto;
  padding: clamp(80px, 9vw, 120px) 5vw;
  text-align: center;
}
.lead-block .eyebrow { justify-content: center; }
.lead-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
}

.category-nav {
  position: sticky;
  top: 70px;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 12px 4vw;
  background: rgba(243,237,226,.96);
  border-block: 1px solid var(--line);
  overflow-x: auto;
}
.category-nav a {
  flex: 0 0 auto;
  min-width: 108px;
  padding: 10px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: .76rem;
  font-weight: 700;
}

.menu-section {
  width: min(1040px, 90vw);
  margin: auto;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.menu-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.menu-title h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.menu-title span { color: var(--red); font-size: .75rem; font-weight: 700; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item h3 { margin: 0; font-family: var(--serif); font-size: 1.02rem; }
.menu-item strong { color: var(--red); font-size: .88rem; }
.menu-item p { grid-column: 1 / -1; margin: 0; color: #74685f; font-size: .74rem; }
.menu-photo-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  margin: 15px 0 80px;
}
.menu-photo-row img { height: 440px; object-fit: cover; }
.menu-photo-row img:last-child { margin-top: 60px; height: 330px; }
.notice {
  width: min(1040px, 90vw);
  margin: 0 auto 90px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.34);
  font-size: .78rem;
}

.story-row {
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
}
.story-row:nth-child(even) .story-image { order: 2; }
.story-image { position: relative; }
.story-image img { height: 570px; object-fit: cover; box-shadow: var(--shadow); }
.story-number {
  position: absolute;
  top: -26px;
  left: -18px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
}
.story-copy h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.55;
}
.story-copy h3 { margin: 26px 0 8px; color: var(--red); font-family: var(--serif); }
.story-copy p { font-size: .9rem; }

.values-strip {
  margin-top: 80px;
  padding: 90px 5vw;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}
.values-strip h2 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.values-grid {
  width: min(900px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.18);
}
.values-grid div { padding: 32px 18px; background: var(--ink); }
.values-grid strong { display: block; color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.values-grid span { font-size: .74rem; color: rgba(255,255,255,.68); }

.recruit-intro {
  width: min(980px, 90vw);
  margin: auto;
  padding: 100px 0;
  text-align: center;
}
.recruit-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.6;
}
.recruit-intro p { max-width: 720px; margin: 28px auto; }
.benefits {
  width: min(var(--max), 90vw);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  padding: 38px 28px;
  border-top: 3px solid var(--red);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(45, 30, 20, .08);
}
.benefit-card span { color: var(--red); font-family: var(--serif); font-size: 2rem; }
.benefit-card h3 { margin: 14px 0 10px; font-family: var(--serif); }
.benefit-card p { margin: 0; font-size: .8rem; }

.job-section {
  width: min(980px, 90vw);
  margin: auto;
  padding: 110px 0;
}
.job-section > h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.job-table { border-top: 1px solid var(--line); }
.job-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.job-table dt { color: var(--red); font-weight: 700; }
.job-table dd { margin: 0; }
.job-table dd > small { color: #75695f; }
.job-conditions strong,
.job-conditions span,
.job-conditions small {
  display: block;
}
.job-conditions strong {
  margin-top: 18px;
  color: var(--red);
  font-family: var(--serif);
  font-size: .9rem;
}
.job-conditions strong:first-child { margin-top: 0; }
.job-conditions span {
  margin: 2px 0;
  font-weight: 700;
}
.job-conditions small {
  color: #75695f;
  font-size: .74rem;
  line-height: 1.7;
}

.entry-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 36px;
}
.entry-flow div { position: relative; padding: 25px; border: 1px solid var(--line); }
.entry-flow div:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -23px;
  top: 50%;
  color: var(--red);
}
.entry-flow strong { display: block; font-family: var(--serif); }
.entry-flow small { display: block; color: #75695f; line-height: 1.9; }
.entry-flow a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(65px, 8vw, 110px) max(5vw, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--red);
}
.cta-band .eyebrow { color: var(--gold); }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3.3rem); }
.cta-band p { margin: 12px 0 0; }

.site-footer {
  padding: 70px max(5vw, calc((100vw - var(--max)) / 2)) 30px;
  color: rgba(255,255,255,.74);
  background: #18120f;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  padding-bottom: 50px;
}
.footer-brand {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.65rem;
}
.footer-brand span { display: block; margin-top: 8px; color: var(--gold); font-size: .68rem; letter-spacing: .24em; }
.footer-main p { font-size: .78rem; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  font-size: .78rem;
}
.footer-links a { padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .67rem;
}

.mobile-fixed { display: none; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .desktop-nav, .header-reserve { display: none; }
  .menu-button { display: block; }
  .section-grid, .feature-strip, .story-row { grid-template-columns: 1fr; }
  .intro-visual { max-width: 740px; }
  .feature-strip-image { min-height: 550px; }
  .feature-strip-copy { min-height: 520px; }
  .story-row:nth-child(even) .story-image { order: 0; }
  .story-copy { max-width: 700px; }
  .dish-card img { height: 360px; }
  .site-footer { padding-bottom: 84px; }
  .mobile-fixed {
    position: fixed;
    inset: auto 0 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 58px;
    color: var(--white);
    box-shadow: 0 -8px 30px rgba(0,0,0,.16);
  }
  .mobile-fixed a { display: grid; place-items: center; background: var(--ink); font-size: .78rem; font-weight: 700; }
  .mobile-fixed a:last-child { background: var(--red); }
}

@media (max-width: 720px) {
  .site-header { height: 68px; padding: 0 18px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: .91rem; }
  .header-instagram { width: 34px; height: 34px; }
  .header-instagram img { width: 32px; height: 32px; }
  .home-hero { min-height: 680px; }
  .home-hero > img { object-position: 54% center; }
  .hero-copy { width: 88vw; padding-bottom: 90px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 14vw, 4.4rem); letter-spacing: .08em; }
  .hero-copy > p:not(.hero-kicker) br { display: none; }
  .hero-stamp { width: 92px; height: 92px; right: 6vw; bottom: 88px; font-size: .55rem; }
  .hero-stamp strong { font-size: .85rem; }
  .button { min-height: 50px; padding: 0 20px; }
  .section { width: 88vw; }
  .intro-visual { padding: 0 0 26px 24px; }
  .intro-visual img { height: 440px; }
  .section-head { width: 88vw; align-items: flex-start; flex-direction: column; }
  .dish-grid { width: 88vw; grid-template-columns: 1fr; gap: 42px; }
  .dish-card:nth-child(2) { margin-top: 0; }
  .dish-card img { height: 420px; }
  .feature-strip-image { min-height: 430px; }
  .feature-strip-copy { min-height: 480px; padding: 60px 7vw; }
  .info-grid { width: 88vw; grid-template-columns: 1fr; }
  .store-details div { grid-template-columns: 90px 1fr; }
  .map-box { min-height: 350px; }
  .page-hero { min-height: 430px; }
  .page-heading { width: 88vw; padding-bottom: 52px; }
  .page-heading h1 { font-size: 2.8rem; }
  .category-nav { justify-content: flex-start; }
  .menu-section { width: 88vw; padding: 70px 0; }
  .menu-list { grid-template-columns: 1fr; }
  .menu-photo-row { grid-template-columns: 1fr; }
  .menu-photo-row img { height: 340px; }
  .menu-photo-row img:last-child { margin-top: 0; height: 300px; }
  .story-row { width: 88vw; padding: 52px 0; }
  .story-image img { height: 420px; }
  .values-grid { grid-template-columns: 1fr; }
  .benefits { width: 88vw; grid-template-columns: 1fr; }
  .job-section { width: 88vw; }
  .job-table div { grid-template-columns: 100px 1fr; gap: 18px; }
  .entry-flow { grid-template-columns: 1fr; }
  .entry-flow div:not(:last-child)::after { content: "↓"; right: 50%; top: auto; bottom: -27px; }
  .cta-band { align-items: flex-start; flex-direction: column; padding-inline: 7vw; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
}
