/* ==========================================================================
   Seaweed Sushi Bar — design system
   Japanese minimalism, Red Sea light, one accent green. Mobile first.
   ========================================================================== */

:root {
  /* Brand */
  --sea-900: #0E241B;
  --sea-800: #143223;
  --sea-700: #1B4B37;
  --sea-600: #235E45;
  --sea-500: #2C7355;
  --sea-400: #4F9375;
  --sea-300: #86B7A0;
  --sea-100: #DCEBE3;
  --sea-50:  #EFF6F2;

  --ink:      #14181B;
  --ink-2:    #3D454B;
  --ink-3:    #6C767E;
  --ink-4:    #9AA3AA;

  --paper:    #FBF9F5;
  --paper-2:  #F4F0E8;
  --paper-3:  #EBE5D9;
  --line:     #E3DED2;

  --wood:     #C49A6C;
  --sand:     #E8DCC8;
  --chili:    #B8422F;
  --gold:     #C9A227;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Space & shape */
  --gutter: 20px;
  --max: 1200px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 24, 27, .05), 0 2px 8px rgba(20, 24, 27, .04);
  --shadow: 0 2px 6px rgba(20, 24, 27, .06), 0 12px 32px rgba(20, 24, 27, .08);
  --shadow-lg: 0 8px 24px rgba(20, 24, 27, .10), 0 32px 64px rgba(20, 24, 27, .12);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .38s;

  --bottom-nav-h: 62px;
}

@media (min-width: 768px) {
  :root { --gutter: 32px; }
}

/* --------------------------------- reset -------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.15; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

:focus-visible {
  outline: 2px solid var(--sea-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--sea-700); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ------------------------------- typography ------------------------------ */

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.06;
}

.h1 { font-size: clamp(2.4rem, 8vw, 4.4rem); }
.h2 { font-size: clamp(1.9rem, 5.2vw, 3rem); }
.h3 { font-size: clamp(1.3rem, 3.4vw, 1.75rem); }

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sea-500);
}
.eyebrow--light { color: var(--sea-300); }

.lede { font-size: clamp(1rem, 2.4vw, 1.15rem); color: var(--ink-2); max-width: 60ch; }
.muted { color: var(--ink-3); }
.small { font-size: .85rem; }
.tiny { font-size: .76rem; }

/* --------------------------------- layout -------------------------------- */

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 760px; }

.section { padding-block: clamp(52px, 9vw, 104px); }
.section--tight { padding-block: clamp(36px, 6vw, 64px); }
.section--dark { background: var(--sea-900); color: var(--paper); }
.section--dark .muted { color: var(--sea-300); }
.section--paper { background: var(--paper-2); }

.section-head { margin-bottom: clamp(24px, 4vw, 44px); }
.section-head .h2 { margin-top: 10px; }
.section-head p { margin-top: 12px; }

.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr)); }

.stack > * + * { margin-top: var(--stack, 16px); }
.row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.spacer { flex: 1; }

/* -------------------------------- buttons -------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: .93rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  text-align: center;
  min-height: 48px;
}
/* Icons inside buttons never stretch: without this an unsized <svg> falls back
   to the browser's 300×150 default and swallows the button. */
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--wa svg { width: 22px; height: 22px; }
.btn:active { transform: scale(.975); }
.btn[disabled], .btn[aria-disabled='true'] { opacity: .45; pointer-events: none; }

.btn--primary { background: var(--sea-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--sea-600); box-shadow: var(--shadow); }

.btn--ghost { border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.section--dark .btn--ghost { color: var(--paper); }
.section--dark .btn--ghost:hover { background: var(--paper); color: var(--sea-900); }

.btn--light { background: var(--paper); color: var(--sea-900); }
.btn--light:hover { background: #fff; }

.btn--wa { background: #25D366; color: #08321A; }
.btn--wa:hover { background: #1FBF5A; }

.btn--sm { padding: 9px 16px; min-height: 40px; font-size: .84rem; }
.btn--block { width: 100%; }

.link-underline {
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: opacity .2s var(--ease);
}
.link-underline:hover { opacity: .6; }

/* -------------------------------- badges --------------------------------- */

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: var(--paper-3); color: var(--ink-2);
  white-space: nowrap;
}
.badge--best { background: var(--sea-700); color: #fff; }
.badge--new { background: var(--gold); color: #241C00; }
.badge--spicy { background: #FBEAE6; color: var(--chili); }
.badge--veg { background: var(--sea-100); color: var(--sea-700); }
.badge--demo { background: #FFF3D6; color: #7A5A00; }
.badge--out { background: var(--ink); color: #fff; }
.badge--open { background: var(--sea-100); color: var(--sea-700); }
.badge--closed { background: #F1E7E5; color: var(--chili); }

.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }

/* ------------------------------- top nav --------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 249, 245, .86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }

.nav__inner { display: flex; align-items: center; gap: 18px; height: 68px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__mark { width: auto; height: 34px; flex: none; display: block; }
.brand__word { width: auto; height: 21px; flex: none; display: block; }
.footer__brand .brand__mark { height: 38px; }
.footer__brand .brand__word { height: 24px; }

/* Legacy text lockup — kept so older templates still render sensibly. */
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; letter-spacing: .02em;
}
.brand__sub {
  font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px;
}

@media (max-width: 480px) {
  .brand { gap: 9px; }
  .brand__mark { height: 30px; }
  .brand__word { height: 18px; }
}

.nav__links { display: none; gap: 26px; margin-inline: auto; }
.nav__link {
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
  position: relative; padding-block: 6px;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--sea-500); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__link:hover, .nav__link[aria-current='page'] { color: var(--ink); }
.nav__link:hover::after, .nav__link[aria-current='page']::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__actions { margin-left: 0; }
}

/* language selector */
.lang { position: relative; }
.lang__button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  background: rgba(255,255,255,.6);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.lang__button:hover { border-color: var(--sea-300); }
.lang__chev { width: 9px; height: 9px; transition: transform .25s var(--ease); }
.lang[data-open='true'] .lang__chev { transform: rotate(180deg); }

.lang__menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 168px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 6px; z-index: 95;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.lang[data-open='true'] .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
  padding: 10px 12px; border-radius: var(--radius-sm); font-size: .9rem;
  transition: background-color .16s var(--ease);
}
.lang__item:hover { background: var(--paper-2); }
.lang__item[aria-current='true'] { color: var(--sea-600); font-weight: 600; }
.lang__code { font-size: .68rem; letter-spacing: .12em; color: var(--ink-4); }

/* cart button */
.cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.6); }
.cart-btn:hover { border-color: var(--sea-300); }
.cart-btn svg { width: 21px; height: 21px; flex: none; color: var(--ink); }
.cart-btn__count {
  position: absolute; top: -3px; right: -3px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: var(--radius-pill); background: var(--sea-700); color: #fff;
  font-size: .68rem; font-weight: 700; display: grid; place-items: center;
  transform: scale(0); transition: transform .3s var(--ease);
}
.cart-btn__count.is-visible { transform: scale(1); }
.cart-btn.is-bumping { animation: bump .45s var(--ease); }
@keyframes bump { 0%,100% { transform: scale(1); } 35% { transform: scale(1.16); } }

.nav__burger { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.6); }
.nav__burger svg { width: 22px; height: 22px; flex: none; color: var(--ink); }
@media (min-width: 900px) { .nav__burger { display: none; } }

/* mobile drawer menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 130; background: var(--paper);
  transform: translateX(100%); transition: transform .34s var(--ease);
  display: flex; flex-direction: column; padding: var(--gutter);
  overflow-y: auto;
}
.mobile-menu[data-open='true'] { transform: none; }
.mobile-menu__link {
  font-family: var(--font-display); font-size: 2rem; padding-block: 14px;
  border-bottom: 1px solid var(--line);
}

/* --------------------------------- hero ---------------------------------- */

.hero {
  position: relative; min-height: min(86vh, 760px);
  display: grid; align-items: center;
  background: var(--sea-900); color: var(--paper); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,22,17,.92) 0%, rgba(10,22,17,.55) 45%, rgba(10,22,17,.35) 100%),
    linear-gradient(to right, rgba(10,22,17,.72), rgba(10,22,17,.15));
}
.hero__inner { position: relative; padding-block: clamp(80px, 16vh, 150px); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px);
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
}
.hero__title { margin-top: 22px; max-width: 15ch; }
.hero__sub { margin-top: 18px; font-size: clamp(1rem, 2.6vw, 1.2rem); color: rgba(251,249,245,.82); max-width: 44ch; }
.hero__actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(251,249,245,.6);
  display: none;
}
@media (min-width: 768px) { .hero__scroll { display: block; } }

/* ------------------------------ order strip ------------------------------ */

.order-strip {
  background: var(--sea-700); color: #fff;
  padding-block: clamp(28px, 5vw, 48px);
}
.order-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.order-strip p { color: rgba(255,255,255,.78); margin: 6px 0 0; max-width: 52ch; }

/* ------------------------------ product card ----------------------------- */

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
@media (hover: hover) {
  .card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
  .card:hover .card__img img { transform: scale(1.05); }
}

.card__img {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2);
}
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card__flags { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; max-width: calc(100% - 60px); }
.card__fav {
  position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.88); display: grid; place-items: center;
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.card__fav:hover { transform: scale(1.08); }
.card__fav svg { width: 17px; height: 17px; fill: none; stroke: var(--ink-2); stroke-width: 1.8; }
.card__fav[aria-pressed='true'] svg { fill: var(--chili); stroke: var(--chili); }

.card__body { padding: 15px 16px 16px; display: flex; flex-direction: column; flex: 1; gap: 7px; }
.card__name { font-size: 1.02rem; font-weight: 600; line-height: 1.3; }
.card__desc {
  font-size: .84rem; color: var(--ink-3); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-clamp: 2; overflow: hidden;
}
.card__meta { font-size: .74rem; color: var(--ink-4); letter-spacing: .04em; }
.card__foot { margin-top: auto; padding-top: 10px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card__price { font-size: 1.05rem; font-weight: 600; white-space: nowrap; }
.card__price s { color: var(--ink-4); font-weight: 400; font-size: .82rem; margin-right: 6px; }

.card__add {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: var(--sea-700); color: #fff; font-size: .82rem; font-weight: 600;
  transition: background-color .2s var(--ease), transform .18s var(--ease);
}
.card__add:hover { background: var(--sea-600); }
.card__add:active { transform: scale(.94); }

.card.is-sold-out .card__img img { filter: grayscale(1) brightness(.9); }
.card.is-sold-out .card__add { background: var(--ink-4); pointer-events: none; }

/* ------------------------------ branch card ------------------------------ */

.branch-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
@media (hover: hover) { .branch-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); } }
.branch-card__img { aspect-ratio: 16 / 10; background: var(--paper-2); position: relative; }
.branch-card__img img { width: 100%; height: 100%; object-fit: cover; }
.branch-card__state { position: absolute; top: 12px; left: 12px; }
.branch-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.branch-card__city { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sea-500); font-weight: 600; }
.branch-card__name { font-family: var(--font-display); font-size: 1.75rem; line-height: 1.05; }
.branch-card__row { display: flex; gap: 9px; font-size: .85rem; color: var(--ink-2); }
.branch-card__row svg { width: 16px; height: 16px; flex: none; margin-top: 3px; stroke: var(--ink-4); fill: none; stroke-width: 1.6; }
.branch-card__actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.branch-card__mini {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 4px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  font-size: .7rem; font-weight: 600; color: var(--ink-2);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.branch-card__mini:hover { border-color: var(--sea-300); background: var(--sea-50); }
.branch-card__mini svg { width: 17px; height: 17px; stroke: var(--sea-600); fill: none; stroke-width: 1.7; }
.branch-card__cta { margin-top: 10px; }

/* ------------------------------ menu page -------------------------------- */

.menu-bar {
  position: sticky; z-index: 80;
  top: 68px;
  background: rgba(251,249,245,.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
}
.menu-bar__row { display: flex; gap: 10px; align-items: center; }

.search {
  position: relative; flex: 1; min-width: 0;
}
.search input {
  width: 100%; padding: 12px 14px 12px 40px;
  border-radius: var(--radius-pill); border: 1px solid var(--line); background: #fff;
  font-size: .92rem; transition: border-color .2s var(--ease);
}
.search input:focus { border-color: var(--sea-400); outline: none; }
.search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: var(--ink-4); fill: none; stroke-width: 1.8; }

.chips {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  -ms-overflow-style: none; padding-block: 10px; scroll-snap-type: x proximity;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: 8px 15px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: #fff; font-size: .82rem; font-weight: 500;
  color: var(--ink-2); white-space: nowrap; scroll-snap-align: start;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--sea-300); }
.chip[aria-pressed='true'], .chip.is-active { background: var(--sea-700); border-color: var(--sea-700); color: #fff; }

.menu-category { padding-top: clamp(28px, 5vw, 48px); scroll-margin-top: 190px; }
.menu-category__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.menu-category__title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); }
.menu-category__rule { flex: 1; height: 1px; background: var(--line); }
.menu-category__count { font-size: .78rem; color: var(--ink-4); }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-3); }

/* --------------------------------- modal --------------------------------- */

.modal-backdrop {
  position: fixed; inset: 0; z-index: 140; background: rgba(15, 22, 19, .55);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
  backdrop-filter: blur(3px);
}
.modal-backdrop[data-open='true'] { opacity: 1; visibility: visible; }

.modal {
  position: fixed; z-index: 150; background: var(--paper); overflow-y: auto;
  left: 0; right: 0; bottom: 0; max-height: 92vh;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: translateY(100%); transition: transform .36s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.modal[data-open='true'] { transform: none; }
@media (min-width: 720px) {
  .modal {
    left: 50%; right: auto; bottom: auto; top: 50%; width: min(560px, 92vw);
    border-radius: var(--radius-lg);
    transform: translate(-50%, -46%) scale(.97); opacity: 0;
    transition: transform .32s var(--ease), opacity .32s var(--ease);
  }
  .modal[data-open='true'] { transform: translate(-50%, -50%); opacity: 1; }
}

.modal__handle { width: 40px; height: 4px; border-radius: 2px; background: var(--line); margin: 10px auto 0; }
@media (min-width: 720px) { .modal__handle { display: none; } }
.modal__close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: grid; place-items: center; z-index: 2;
  box-shadow: var(--shadow-sm);
}
.modal__img { aspect-ratio: 16 / 10; background: var(--paper-2); }
.modal__img img { width: 100%; height: 100%; object-fit: cover; }
.modal__body { padding: 20px var(--gutter) 24px; }
.modal__foot {
  position: sticky; bottom: 0; background: var(--paper); border-top: 1px solid var(--line);
  padding: 14px var(--gutter) calc(14px + env(safe-area-inset-bottom));
  display: flex; gap: 12px; align-items: center;
}

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); background: #fff; }
.qty button { width: 40px; height: 44px; display: grid; place-items: center; font-size: 1.2rem; color: var(--ink-2); }
.qty button:hover { color: var(--sea-600); }
.qty output { min-width: 30px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; }

.option {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  cursor: pointer; transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.option:hover { border-color: var(--sea-300); }
.option input { width: 18px; height: 18px; accent-color: var(--sea-600); flex: none; }
.option__price { margin-left: auto; font-size: .84rem; color: var(--ink-3); white-space: nowrap; }
.option:has(input:checked) { border-color: var(--sea-500); background: var(--sea-50); }

.field { display: block; }
.field__label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 7px; color: var(--ink-2); }
.field__hint { font-size: .76rem; color: var(--ink-4); margin-top: 6px; }
.field__error { font-size: .78rem; color: var(--chili); margin-top: 6px; display: none; }
.field.is-invalid .field__error { display: block; }
.field.is-invalid input, .field.is-invalid textarea, .field.is-invalid select { border-color: var(--chili); }

input[type='text'], input[type='tel'], input[type='email'], input[type='password'],
input[type='number'], input[type='date'], input[type='search'], select, textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: #fff; font-size: 1rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--sea-400); box-shadow: 0 0 0 3px var(--sea-50);
}
textarea { min-height: 92px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236C767E' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 38px; }

.checkbox { display: flex; align-items: center; gap: 10px; font-size: .9rem; cursor: pointer; }
.checkbox input { width: 18px; height: 18px; accent-color: var(--sea-600); }

.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: var(--paper-2); padding: 5px; border-radius: var(--radius-pill); }
.segmented button {
  padding: 11px; border-radius: var(--radius-pill); font-size: .9rem; font-weight: 600; color: var(--ink-3);
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.segmented button[aria-pressed='true'] { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ------------------------------- cart drawer ----------------------------- */

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 150;
  width: min(430px, 100%); background: var(--paper);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .34s var(--ease);
  box-shadow: var(--shadow-lg);
}
.drawer[data-open='true'] { transform: none; }
.drawer__head { display: flex; align-items: center; gap: 12px; padding: 18px var(--gutter); border-bottom: 1px solid var(--line); }
.drawer__title { font-family: var(--font-display); font-size: 1.5rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 16px var(--gutter); }
.drawer__foot { border-top: 1px solid var(--line); padding: 16px var(--gutter) calc(16px + env(safe-area-inset-bottom)); background: #fff; }

.cart-item { display: grid; grid-template-columns: 62px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: 0; }
.cart-item__img { width: 62px; height: 62px; border-radius: var(--radius-sm); object-fit: cover; background: var(--paper-2); }
.cart-item__name { font-weight: 600; font-size: .92rem; line-height: 1.3; }
.cart-item__opts { font-size: .76rem; color: var(--ink-3); margin-top: 3px; }
.cart-item__price { font-size: .84rem; color: var(--ink-2); margin-top: 5px; }
.cart-item__side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 8px; }
.cart-item__total { font-weight: 600; font-size: .92rem; white-space: nowrap; }
.qty--sm button { width: 32px; height: 34px; font-size: 1rem; }
.qty--sm output { min-width: 24px; font-size: .88rem; }

.totals { display: grid; gap: 9px; margin-bottom: 14px; }
.totals__row { display: flex; justify-content: space-between; font-size: .92rem; color: var(--ink-2); }
.totals__row--grand { font-size: 1.15rem; font-weight: 700; color: var(--ink); padding-top: 10px; border-top: 1px solid var(--line); }
.totals__row--save { color: var(--sea-600); }

/* ------------------------------- checkout -------------------------------- */

.checkout-grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .checkout-grid { grid-template-columns: 1.25fr .85fr; align-items: start; } }

.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.panel + .panel { margin-top: 18px; }
.panel__title { font-size: 1.05rem; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.panel__step {
  width: 24px; height: 24px; border-radius: 50%; background: var(--sea-700); color: #fff;
  display: grid; place-items: center; font-size: .74rem; font-weight: 700; flex: none;
}
.panel--summary { position: sticky; top: 88px; }

.map { height: 240px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); position: relative; }
.map__fallback { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 20px; font-size: .85rem; color: var(--ink-3); }
.location-pill {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: var(--sea-50); border: 1px solid var(--sea-100); border-radius: var(--radius-sm);
  font-size: .86rem; color: var(--sea-700);
}

/* ------------------------------ confirmation ----------------------------- */

.confirm { text-align: center; padding-block: clamp(40px, 8vw, 80px); }
.confirm__icon { font-size: 3rem; line-height: 1; }
.confirm__no {
  display: inline-block; margin-top: 18px; padding: 8px 18px;
  border: 1px dashed var(--sea-300); border-radius: var(--radius-pill);
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .04em; color: var(--sea-700);
}
.confirm__warn {
  margin-top: 26px; padding: 14px 18px; border-radius: var(--radius-sm);
  background: #FFF6E0; color: #7A5A00; font-size: .88rem;
}

/* -------------------------------- reviews -------------------------------- */

.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; fill: currentColor; }
.review__text { font-size: .95rem; color: var(--ink-2); line-height: 1.65; flex: 1; }
.review__meta { font-size: .8rem; color: var(--ink-4); }
.review__author { font-weight: 600; color: var(--ink); }

/* ------------------------------- instagram ------------------------------- */

.insta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 560px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .insta-grid { grid-template-columns: repeat(6, 1fr); } }
.insta-tile { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-sm); background: var(--paper-2); }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-tile:hover img { transform: scale(1.07); }
.insta-tile::after {
  content: ''; position: absolute; inset: 0; background: rgba(14,36,27,.28);
  opacity: 0; transition: opacity .3s var(--ease);
}
.insta-tile:hover::after { opacity: 1; }

/* --------------------------------- promo --------------------------------- */

.promo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--sea-800); color: var(--paper);
  display: grid; gap: 0;
}
@media (min-width: 780px) { .promo { grid-template-columns: 1fr 1fr; } }
.promo__media { min-height: 220px; }
.promo__media img { width: 100%; height: 100%; object-fit: cover; }
.promo__body { padding: clamp(26px, 4vw, 44px); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.promo__value { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.2rem); line-height: 1; color: var(--sea-300); }

.promo-banner {
  background: var(--sea-100); color: var(--sea-800);
  padding: 11px var(--gutter); text-align: center; font-size: .86rem; font-weight: 500;
}

/* --------------------------------- footer -------------------------------- */

.footer { background: var(--sea-900); color: rgba(251,249,245,.72); padding-block: clamp(48px, 7vw, 76px) 28px; }
.footer a { transition: color .2s var(--ease); }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: 34px; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1.3fr; } }
.footer__title { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sea-300); margin-bottom: 14px; }
.footer__list { display: grid; gap: 9px; font-size: .9rem; }
.footer__brand .brand__name { color: var(--paper); }
.footer__brand .brand__sub { color: var(--sea-300); }
.footer__bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .8rem;
}
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.footer__social a:hover { background: rgba(255,255,255,.1); border-color: transparent; }
.footer__social svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ---------------------------- floating actions --------------------------- */

.fab-wa {
  position: fixed; right: 16px; z-index: 100;
  bottom: calc(16px + var(--bottom-nav-h) + env(safe-area-inset-bottom));
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .38);
  transition: transform .22s var(--ease);
}
.fab-wa:hover { transform: scale(1.07); }
.fab-wa svg { width: 27px; height: 27px; fill: #08321A; }
@media (min-width: 900px) { .fab-wa { bottom: 24px; right: 24px; } }

.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(251,249,245,.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 900px) { .bottom-nav { display: none; } }
.bottom-nav__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: .64rem; font-weight: 600; letter-spacing: .02em; color: var(--ink-3); position: relative;
}
.bottom-nav__item[aria-current='page'] { color: var(--sea-700); }
.bottom-nav__item svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.bottom-nav__badge {
  position: absolute; top: 6px; left: 50%; margin-left: 5px;
  min-width: 17px; height: 17px; padding: 0 4px; border-radius: var(--radius-pill);
  background: var(--chili); color: #fff; font-size: .6rem; display: grid; place-items: center;
  transform: scale(0); transition: transform .28s var(--ease);
}
.bottom-nav__badge.is-visible { transform: scale(1); }

body { padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom)); }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* --------------------------------- toast --------------------------------- */

.toast {
  position: fixed; left: 50%; z-index: 200;
  bottom: calc(20px + var(--bottom-nav-h) + env(safe-area-inset-bottom));
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  background: var(--sea-900); color: var(--paper);
  padding: 12px 20px; border-radius: var(--radius-pill); font-size: .88rem; font-weight: 500;
  box-shadow: var(--shadow-lg); transition: opacity .3s var(--ease), transform .3s var(--ease);
  max-width: calc(100vw - 32px); text-align: center;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 900px) { .toast { bottom: 28px; } }

/* -------------------------- flying add-to-cart --------------------------- */

.fly {
  position: fixed; z-index: 190; border-radius: 50%; overflow: hidden;
  pointer-events: none; box-shadow: var(--shadow);
  transition: transform .62s cubic-bezier(.5, -0.3, .7, 1), opacity .62s ease-in;
}
.fly img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------- reveal ---------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal[data-delay='1'].is-in { transition-delay: .07s; }
.reveal[data-delay='2'].is-in { transition-delay: .14s; }
.reveal[data-delay='3'].is-in { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* -------------------------------- utilities ------------------------------ */

.notice {
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: .88rem;
  background: var(--paper-2); border: 1px solid var(--line);
}
.notice--warn { background: #FFF6E0; border-color: #F0E0B8; color: #7A5A00; }
.notice--error { background: #FBEAE6; border-color: #F2D2CB; color: #8C2E1E; }
.notice--ok { background: var(--sea-50); border-color: var(--sea-100); color: var(--sea-700); }

.hours-table { width: 100%; font-size: .86rem; border-collapse: collapse; }
.hours-table td { padding: 5px 0; }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink-2); }
.hours-table tr.is-today td { font-weight: 700; color: var(--sea-700); }

.selected-branch {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 15px; border-radius: var(--radius-pill);
  background: var(--sea-50); border: 1px solid var(--sea-100);
  font-size: .84rem; color: var(--sea-800);
}
.selected-branch button { font-size: .78rem; font-weight: 600; color: var(--sea-600); padding: 5px 11px; border-radius: var(--radius-pill); background: #fff; }

.pill-note {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px;
  border-radius: var(--radius-pill); background: var(--paper-3); font-size: .78rem; color: var(--ink-2);
}

.value-card { display: flex; gap: 14px; }
.value-card__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--sea-400); line-height: 1; flex: none; width: 34px; }
.value-card h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 6px; }
.value-card p { font-size: .89rem; color: var(--ink-3); margin: 0; }
.section--dark .value-card p { color: rgba(251,249,245,.65); }
.section--dark .value-card h3 { color: var(--paper); }

.prose { max-width: 68ch; }
.prose h2 { font-family: var(--font-display); font-size: 1.6rem; margin: 32px 0 12px; }
.prose h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--ink-2); font-size: .96rem; }
.prose ul { list-style: disc; padding-left: 20px; margin-bottom: 1em; }
.prose li { margin-bottom: 6px; }

.demo-strip {
  background: #FFF6E0; color: #7A5A00; font-size: .78rem;
  padding: 9px var(--gutter); text-align: center;
}

/* ------------------------------ size picker ------------------------------ */

.size-picker { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.size-option {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: #fff; text-align: left;
  transition: border-color .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease);
}
.size-option:hover { border-color: var(--sea-300); }
.size-option[aria-pressed='true'] {
  border-color: var(--sea-500); background: var(--sea-50); box-shadow: inset 0 0 0 1px var(--sea-500);
}
.size-option__pieces { font-size: .78rem; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }
.size-option__price { font-size: 1.02rem; font-weight: 600; }

.card__from { font-size: .74rem; font-weight: 500; color: var(--ink-4); text-transform: lowercase; }

.price-note {
  display: flex; gap: 9px; align-items: flex-start;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--paper-2); border: 1px solid var(--line);
  font-size: .82rem; color: var(--ink-2); line-height: 1.5;
}
.price-note svg { width: 16px; height: 16px; flex: none; margin-top: 2px; stroke: var(--sea-500); fill: none; stroke-width: 1.7; }

.category-hero {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 21 / 7; margin-bottom: 18px; background: var(--paper-2);
}
.category-hero img { width: 100%; height: 100%; object-fit: cover; }
.category-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,36,27,.72), rgba(14,36,27,.15));
}
.category-hero__label {
  position: absolute; left: clamp(16px, 3vw, 30px); bottom: clamp(12px, 2.5vw, 22px); z-index: 1;
  font-family: var(--font-display); font-size: clamp(1.5rem, 4.4vw, 2.4rem); color: var(--paper);
  letter-spacing: .01em;
}

/* ------------------------- corrections & additions ----------------------- */

/* Elements that set their own display must still honour [hidden]. */
[hidden] { display: none !important; }

/* Fade the scrolling chip rows out at the edges instead of cutting them. */
.chips {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 22px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 22px), transparent 100%);
}

/* Stronger scrim behind the hero copy so light photography cannot swallow it. */
.hero__media::after {
  background:
    linear-gradient(to top, rgba(8,20,15,.94) 0%, rgba(8,20,15,.62) 42%, rgba(8,20,15,.38) 100%),
    linear-gradient(to right, rgba(8,20,15,.80) 0%, rgba(8,20,15,.34) 55%, rgba(8,20,15,.12) 100%);
}
.hero__actions .btn--ghost {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/*
 * Text-forward dish card.
 * The menu photography we have is per section, not per dish, so repeating one
 * photo down a whole category looks like a mistake. Sections get the photograph
 * as a banner; dishes without their own picture get this typographic card,
 * which reads as a printed menu rather than a missing image.
 */
.card--text .card__top {
  position: relative;
  padding: 18px 16px 14px;
  background: linear-gradient(160deg, var(--paper-2), var(--paper-3));
  border-bottom: 1px solid var(--line);
  min-height: 96px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.card--text .card__top::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 12px 12px, rgba(27,75,55,.10) 1px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: .55;
}
.card--text .card__kicker {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
  color: var(--sea-800);
  padding-right: 40px;
}
.card--text .card__flags { top: 12px; left: 14px; position: absolute; }
.card--text .card__top .card__kicker { margin-top: 26px; }
.card--text .card__name { display: none; }
.card--text .card__fav svg { stroke: var(--sea-700); }
.card--text.is-sold-out .card__top { filter: grayscale(1); opacity: .75; }

/* Section banner on the menu page. */
.menu-category__banner {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 24 / 7; margin-bottom: 20px; background: var(--paper-2);
}
.menu-category__banner img { width: 100%; height: 100%; object-fit: cover; }
.menu-category__banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,26,19,.78) 0%, rgba(10,26,19,.28) 60%, rgba(10,26,19,.05) 100%);
}
.menu-category__banner span {
  position: absolute; z-index: 1;
  left: clamp(16px, 3vw, 28px); bottom: clamp(10px, 2.2vw, 18px);
  font-family: var(--font-display); color: var(--paper);
  font-size: clamp(1.5rem, 4.6vw, 2.3rem); line-height: 1;
}
@media (max-width: 640px) { .menu-category__banner { aspect-ratio: 16 / 7; } }

/* --------------------- menu density on small screens --------------------- */

/*
 * 167 dishes is a long scroll on a phone, so the menu grid drops to two
 * columns rather than one. The type in the text cards scales with it.
 */
@media (max-width: 639px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .card__body { padding: 12px 12px 13px; gap: 5px; }
  .card__name { font-size: .92rem; }
  .card__desc { font-size: .76rem; -webkit-line-clamp: 3; line-clamp: 3; }
  .card__meta { font-size: .68rem; }
  .card__price { font-size: .92rem; }
  .card__add { padding: 7px 11px; font-size: .74rem; }
  .card__add svg { width: 13px; height: 13px; }
  .card--text .card__kicker { font-size: 1.12rem; padding-right: 30px; }
  .card--text .card__top { min-height: 74px; padding: 14px 12px 11px; }
  .card--text .card__top .card__kicker { margin-top: 20px; }
  .card__fav { width: 28px; height: 28px; top: 8px; right: 8px; }
  .card__fav svg { width: 14px; height: 14px; }
  .card__flags .badge { font-size: .6rem; padding: 3px 7px; }

  /* Branch and review cards stay full width — they are not a scanning list. */
  .branch-card, .review, .panel { grid-column: 1 / -1; }
}
