/* =========================================================================
   nãbe hotpot & bbq & lunch / "Lacquer Bento Tray"
   A divided jūbako-box poster: unequal compartments separated by lacquer rules.
   Palette: canvas #F4EBDD · ink #241712 · primary lacquer-red #B11D26 · pine #1F5E4E
   Display: Rozha One · Body: Schibsted Grotesk
   ========================================================================= */

:root {
  --canvas: #F4EBDD;
  --canvas-2: #EFE3D0;
  --ink: #241712;
  --ink-soft: #5a4439;
  --red: #B11D26;
  --red-deep: #8c141d;
  --pine: #1F5E4E;
  --pine-deep: #163f34;
  --line: #241712;
  --gold: #c79a4c;
  --paper-edge: rgba(36, 23, 18, 0.14);

  --rule: 2px;
  --frame: clamp(10px, 2.4vw, 26px);
  --maxw: 1280px;

  --f-display: "Rozha One", Georgia, serif;
  --f-body: "Schibsted Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--canvas);
  font-size: clamp(15px, 1.02vw + 12px, 18px);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle washi paper grain on the canvas */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  background-image:
    radial-gradient(rgba(36,23,18,.035) 1px, transparent 1.2px),
    radial-gradient(rgba(36,23,18,.025) 1px, transparent 1.2px);
  background-size: 7px 7px, 11px 11px;
  background-position: 0 0, 3px 4px;
}

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.02;
  margin: 0;
  letter-spacing: .002em;
}

p { margin: 0; }

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

/* ---------- focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2.5px solid var(--pine);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--canvas);
  padding: 10px 16px; z-index: 200; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ====================== eyebrow / labels ====================== */
.eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .68rem;
  color: var(--red);
  margin: 0 0 .9em;
  display: inline-block;
}
.eyebrow.pine { color: var(--pine); }

/* ====================== header ====================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(.7rem, 1.4vw, 1.1rem) var(--frame);
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(244, 235, 221, 0.93);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(36,23,18,.6);
  padding-top: .6rem; padding-bottom: .6rem;
}

.brand {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  color: var(--red);
  text-decoration: none;
  line-height: 1;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: baseline;
  gap: .1em;
}
.brand .dot { color: var(--pine); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
  position: relative;
  padding: .2em 0;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--red);
  transition: right .35s var(--ease);
}
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }

.header-tools { display: flex; align-items: center; gap: .85rem; }

.lang-toggle {
  display: inline-flex;
  border: var(--rule) solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--canvas);
}
.lang-toggle button {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .08em;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: .34em .8em;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--canvas);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  text-decoration: none;
  padding: .68em 1.25em;
  border-radius: 999px;
  border: var(--rule) solid var(--line);
  background: var(--red);
  color: var(--canvas);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 2px 0 var(--line);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--line); background: var(--red-deep); }
.btn:active { transform: translateY(0); box-shadow: 0 1px 0 var(--line); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--canvas); }
.btn.pine { background: var(--pine); }
.btn.pine:hover { background: var(--pine-deep); }
.btn.sm { padding: .5em 1em; font-size: .82rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: var(--rule) solid var(--line);
  border-radius: 10px;
  background: var(--canvas);
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after { transform: translate(-50%, 7px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ====================== layout shell ====================== */
.wrap { position: relative; z-index: 1; }

/* the master tray: one big bento box framed edge to edge */
.tray {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--frame);
}

.tray-frame {
  border: var(--rule) solid var(--line);
  background: var(--canvas);
  box-shadow: 0 40px 90px -60px rgba(36,23,18,.7);
}

/* a generic compartment cell */
.cell {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.8rem);
}
.cell + .cell-row, .cell-row + .cell { border-top: var(--rule) solid var(--line); }

/* divided rows: compartments split by lacquer rules */
.cell-row {
  display: grid;
}
.cell-row > .cell { border-top: 0; }
.cell-row > .cell + .cell { border-left: var(--rule) solid var(--line); }
.cell-row + .cell-row { border-top: var(--rule) solid var(--line); }

/* ====================== hero compartment ====================== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  min-height: min(86vh, 760px);
}
.hero-text {
  padding: clamp(2rem, 5vw, 4.4rem) clamp(1.4rem, 4vw, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  border-right: var(--rule) solid var(--line);
}
.hero-wordmark {
  font-family: var(--f-display);
  color: var(--red);
  font-size: clamp(4.6rem, 16vw, 11rem);
  line-height: .8;
  letter-spacing: -.01em;
  margin: 0;
  display: flex;
  align-items: flex-start;
}
.hero-wordmark .tilde-a {
  position: relative;
  display: inline-block;
}
/* hand-drawn broth-ripple tilde over the 'a' */
.hero-wordmark .tilde-a .ripple-tilde {
  position: absolute;
  left: 50%;
  top: -.14em;
  width: .62em;
  height: .22em;
  transform: translateX(-50%);
  overflow: visible;
}
.hero-wordmark .tilde-a .ripple-tilde path {
  fill: none;
  stroke: var(--red);
  stroke-width: 9;
  stroke-linecap: round;
}

.hero-tagline {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: clamp(.72rem, 1.3vw, .92rem);
  color: var(--ink);
  margin: 0;
}
.hero-tagline .sep { color: var(--red); margin: 0 .15em; }

.hero-lede {
  max-width: 40ch;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--ink-soft);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .4rem; }

.hero-stats {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin-top: auto;
  padding-top: 1.6rem;
  border-top: 1px dashed var(--paper-edge);
}
.stat .n {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--pine);
  line-height: 1;
}
.stat .l {
  font-size: .76rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,23,18,0) 55%, rgba(36,23,18,.42) 100%);
  pointer-events: none;
}

/* the locked simmering ring, overlaid on hero media corner */
.hero-ring {
  position: absolute;
  right: clamp(1rem, 3vw, 2.4rem);
  top: clamp(1rem, 3vw, 2.2rem);
  width: clamp(120px, 18vw, 200px);
  height: clamp(120px, 18vw, 200px);
  z-index: 3;
  filter: drop-shadow(0 6px 16px rgba(36,23,18,.45));
}
.hero-caption {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 3;
  color: var(--canvas);
  font-size: .82rem;
  letter-spacing: .04em;
  background: rgba(36,23,18,.5);
  backdrop-filter: blur(3px);
  padding: .4em .8em;
  border-radius: 999px;
}

/* ====================== simmering ring SVG (shared motif) ====================== */
.ring-svg { display: block; width: 100%; height: 100%; overflow: visible; }
.ring-svg circle { fill: none; }
.ring-breathe { transform-box: fill-box; transform-origin: center; }
@media (prefers-reduced-motion: no-preference) {
  .ring-breathe { animation: breathe 6.5s var(--ease) infinite; }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.06); opacity: .55; }
}

/* the small ripple bullet/divider used between menu items */
.ripple-bullet {
  width: 1.7em; height: 1.7em;
  flex: 0 0 auto;
  display: inline-block;
}
.ripple-bullet circle { fill: none; stroke: var(--red); }

/* ====================== section headings ====================== */
.cell-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  margin-bottom: 1.6rem;
}
.cell-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--ink);
  line-height: .98;
}
.cell-title em {
  font-style: normal;
  color: var(--red);
}
.cell-note {
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: .98rem;
}

/* ====================== broth cells (the four broths) ====================== */
.broths .cell-head { padding: 0 0 0; }
.broth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.broth {
  position: relative;
  padding: clamp(1.3rem, 2.6vw, 2.1rem);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.broth + .broth { border-left: 0; }
.broth:nth-child(2n) { border-left: var(--rule) solid var(--line); }
.broth:nth-child(n+3) { border-top: var(--rule) solid var(--line); }
.broth-mark {
  flex: 0 0 auto;
  width: 54px; height: 54px;
  border: var(--rule) solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: .15rem;
}
.broth-mark svg { width: 32px; height: 32px; }
.broth h3 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: .2rem;
}
.broth .tag {
  display: inline-block;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .18em .6em;
  border-radius: 999px;
  margin-bottom: .5rem;
}
.broth .tag.veg { background: var(--pine); color: var(--canvas); }
.broth .tag.spice { background: var(--red); color: var(--canvas); }
.broth .tag.kha { background: var(--gold); color: var(--ink); }
.broth p { color: var(--ink-soft); font-size: .95rem; }

/* ====================== experience / how-it-works ====================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.step {
  padding: clamp(1.4rem, 2.8vw, 2.2rem);
}
.step:nth-child(n+2) { border-left: var(--rule) solid var(--line); }
.step .num {
  font-family: var(--f-display);
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: .4rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ====================== feature split cells (image + text) ====================== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.feature.flip { grid-template-columns: 1fr 1fr; }
.feature .feature-media {
  position: relative;
  min-height: clamp(280px, 42vw, 520px);
  overflow: hidden;
}
.feature .feature-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.feature:hover .feature-media img { transform: scale(1.04); }
.feature .feature-body {
  padding: clamp(1.6rem, 4vw, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: var(--rule) solid var(--line);
}
.feature.flip .feature-media { order: 2; border-left: var(--rule) solid var(--line); }
.feature.flip .feature-body { order: 1; border-left: 0; }
.feature .feature-body h2 { margin-bottom: .8rem; }
.feature .feature-body p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 46ch; }

.dish-list { list-style: none; margin: .4rem 0 1.2rem; padding: 0; display: grid; gap: .7rem; }
.dish-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .98rem;
}
.dish-list li span.txt { display: inline-block; }

/* ====================== bento lunch cell ====================== */
.bento {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
}
.bento .bento-body {
  padding: clamp(1.6rem, 4vw, 3.2rem);
  display: flex; flex-direction: column; justify-content: center;
  border-right: var(--rule) solid var(--line);
}
.bento .bento-media { position: relative; overflow: hidden; min-height: clamp(300px, 42vw, 520px); }
.bento .bento-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lunch-set {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--rule) solid var(--line);
  margin-top: 1.2rem;
  background: var(--red);
}
.lunch-set .pc {
  padding: 1rem .9rem;
  text-align: center;
  color: var(--canvas);
}
.lunch-set .pc + .pc { border-left: var(--rule) solid var(--canvas); }
.lunch-set .pc .ico { font-family: var(--f-display); font-size: 1.5rem; line-height: 1; display:block; }
.lunch-set .pc .nm { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .4rem; }
.lunch-note { margin-top: 1rem; font-size: .9rem; color: var(--ink-soft); }

/* ====================== gallery cell ====================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 16vw, 200px);
  gap: 0;
}
.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: var(--rule) solid var(--line);
  margin: -1px 0 0 -1px;
}
.gallery-grid figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* ====================== matcha finale cell ====================== */
.finale {
  position: relative;
  background:
    radial-gradient(120% 140% at 80% 10%, rgba(31,94,78,.16), transparent 60%),
    var(--canvas-2);
  padding: clamp(2.2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}
.finale .finale-text h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--pine);
  margin-bottom: 1rem;
}
.finale .finale-text h2 em { font-style: normal; color: var(--red); }
.finale .finale-text p { color: var(--ink-soft); max-width: 44ch; }
.finale .scoop {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.finale .scoop svg { width: 100%; height: 100%; max-width: 260px; }

/* ====================== visit / contact cell ====================== */
.visit {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
}
.visit .visit-body {
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border-right: var(--rule) solid var(--line);
}
.visit .map-cell { position: relative; min-height: clamp(320px, 40vw, 480px); }
.visit .map-cell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.92) contrast(1.02); }

.info-list { list-style: none; margin: 1.4rem 0 1.6rem; padding: 0; display: grid; gap: 1.05rem; }
.info-list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.info-list .k {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); padding-top: .25rem;
}
.info-list a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--paper-edge); }
.info-list a:hover { border-color: var(--red); color: var(--red); }
.rating-row { display: flex; align-items: center; gap: .6rem; }
.rating-row .stars { color: var(--gold); letter-spacing: .1em; font-size: 1rem; }

/* reservation form */
.res-form { display: grid; gap: .9rem; margin-top: 1.4rem; }
.res-form .field { display: grid; gap: .35rem; }
.res-form label { font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.res-form input, .res-form textarea, .res-form select {
  font-family: var(--f-body);
  font-size: .98rem;
  padding: .7em .85em;
  border: var(--rule) solid var(--line);
  background: var(--canvas);
  color: var(--ink);
  border-radius: 8px;
}
.res-form textarea { resize: vertical; min-height: 80px; }
.res-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-ok {
  background: var(--pine); color: var(--canvas);
  padding: .8em 1em; border-radius: 8px; font-size: .92rem;
}

/* ====================== footer ====================== */
.site-footer {
  background: var(--ink);
  color: var(--canvas);
  padding: clamp(2.4rem, 5vw, 4rem) var(--frame) 2rem;
  position: relative;
  z-index: 1;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
.footer-brand .brand { color: var(--canvas); font-size: 2.4rem; }
.footer-brand .brand .dot { color: var(--red); }
.footer-brand p { color: rgba(244,235,221,.72); margin-top: .8rem; max-width: 36ch; font-size: .95rem; }
.footer-col h4 {
  font-family: var(--f-body); font-weight: 700;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: rgba(244,235,221,.85); text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: var(--canvas); }
.footer-col .addr { color: rgba(244,235,221,.72); font-size: .95rem; line-height: 1.6; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 2.4rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(244,235,221,.16);
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between; align-items: center;
}
.disclaimer { color: rgba(244,235,221,.6); font-size: .82rem; max-width: 58ch; }
.footer-bottom .meta { color: rgba(244,235,221,.6); font-size: .82rem; }

/* ====================== reveal contract (.js gated) ====================== */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.js [data-reveal].in { opacity: 1; transform: none; }

/* ====================== responsive ====================== */
@media (max-width: 920px) {
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--canvas);
    border-bottom: var(--rule) solid var(--line);
    padding: 5rem var(--frame) 1.6rem;
    transform: translateY(-110%);
    transition: transform .4s var(--ease);
    box-shadow: 0 30px 60px -30px rgba(36,23,18,.5);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--paper-edge); font-size: 1.1rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; z-index: 120; }

  .hero { grid-template-columns: 1fr; }
  .hero-text { border-right: 0; border-bottom: var(--rule) solid var(--line); }
  .hero-media { min-height: 56vh; position: relative; }

  .feature, .feature.flip { grid-template-columns: 1fr; }
  .feature .feature-body, .feature.flip .feature-body { border-left: 0; border-top: var(--rule) solid var(--line); }
  .feature.flip .feature-media { order: 0; border-left: 0; }
  .feature.flip .feature-body { order: 0; }

  .bento { grid-template-columns: 1fr; }
  .bento .bento-body { border-right: 0; border-bottom: var(--rule) solid var(--line); }

  .visit { grid-template-columns: 1fr; }
  .visit .visit-body { border-right: 0; border-bottom: var(--rule) solid var(--line); }

  .finale { grid-template-columns: 1fr; text-align: left; }
  .finale .scoop { max-width: 220px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .broth-grid { grid-template-columns: 1fr; }
  .broth:nth-child(2n) { border-left: 0; }
  .broth:nth-child(n+2) { border-top: var(--rule) solid var(--line); }

  .steps { grid-template-columns: 1fr; }
  .step:nth-child(n+2) { border-left: 0; border-top: var(--rule) solid var(--line); }

  .lunch-set { grid-template-columns: 1fr; }
  .lunch-set .pc + .pc { border-left: 0; border-top: var(--rule) solid var(--canvas); }

  .res-form .two { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}

@media print {
  .site-header, .nav-toggle, .lang-toggle { display: none; }
}
