:root {
  /* Moody & rich palette */
  --ink: #1a120b;
  --ink-2: #2b1f17;
  --ink-3: #3a2d23;
  --paper: #f5ebdc;
  --paper-2: #ede0cb;
  --paper-3: #d9c8ad;
  --adobe: #b5472c;
  --adobe-deep: #8f3420;
  --marigold: #e8a838;
  --cilantro: #4a7c3a;
  --cream: #faf4e8;

  /* Alt palette A: Mole (deeper, darker reds) */
  --alt-mole-ink: #15100a;
  --alt-mole-adobe: #9a2f1e;
  --alt-mole-marigold: #d48a1f;
  --alt-mole-paper: #efe3cf;

  /* Alt palette B: Jade (cooler, cilantro-led) */
  --alt-jade-ink: #10190f;
  --alt-jade-adobe: #c2552c;
  --alt-jade-marigold: #e8a838;
  --alt-jade-paper: #f2eada;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(20,12,6,0.08);
  --shadow-md: 0 10px 30px -12px rgba(20,12,6,0.35);
  --shadow-lg: 0 30px 80px -20px rgba(20,12,6,0.55);

  /* Brand type: Fraunces body/display; Caveat for logo-like kickers + "Mi" hand accents */
  --fs-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --fs-body: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --fs-hand: 'Caveat', 'Segoe Print', 'Comic Sans MS', cursive;
  --fs-opsz-body: 18;
  --fs-opsz-ui: 14;
  --fs-opsz-display: 72;
  --fs-soft-body: 35;
  --fs-soft-display: 70;

  --maxw: 1360px;
  /* Shared horizontal shell — keep every band on the same column */
  --gutter: 32px;
  --gutter-sm: 20px;

  /* Vertical rhythm — keep sections tight (was ~120px) */
  --section-y: 72px;
  --section-y-sm: 52px;
  --block-gap: 32px;
  --grid-gap: 40px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--fs-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' var(--fs-opsz-body), 'SOFT' var(--fs-soft-body), 'WONK' 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font-family: inherit; font-variation-settings: inherit; }

/* Type scale */
/* Section kickers — Caveat like logo "Mi" (not body copy) */
.eyebrow {
  font-family: var(--fs-hand);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--adobe);
  line-height: 1.05;
  display: inline-block;
}
.eyebrow--on-dark { color: var(--marigold); }
/* Optional tiny rotation for brand warmth when space allows */
.eyebrow--tilt { transform: rotate(-2deg); transform-origin: left center; }

.display {
  font-family: var(--fs-display);
  font-weight: 420;
  font-variation-settings: 'opsz' 144, 'SOFT' var(--fs-soft-display), 'WONK' 0;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-title {
  font-family: var(--fs-display);
  font-weight: 420;
  font-variation-settings: 'opsz' 80, 'SOFT' 60;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.hand {
  font-family: var(--fs-hand);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}


/* Fixed header clearance for in-page anchors */
#story, #specials, #contact, #signature, #reviews, #top {
  scroll-margin-top: 72px;
}
/* ------------- HEADER ------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid rgba(245,235,220,0.06);
  /* Always readable over hero AND light sections */
  background: rgba(18,12,8,0.55);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}
.site-header--scrolled {
  background: rgba(26,18,11,0.94);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border-bottom-color: rgba(245,235,220,0.1);
  box-shadow: 0 12px 40px -24px rgba(0,0,0,0.75);
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  /* padding-block only — never clobber .container horizontal gutters */
  padding-block: 16px;
  color: var(--cream);
  position: relative;
}
/* Logo left — stays out of the centered link track */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fs-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--cream);
}
.brand .brand-mark {
  font-family: var(--fs-hand);
  font-size: 34px;
  color: var(--marigold);
  line-height: 1;
  transform: translateY(3px);
  text-shadow: 0 2px 18px rgba(232,168,56,0.25);
  margin-right: 0.18em;
}
.brand-text {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
/* Primary links truly centered in the bar (GFB client chrome) */
.nav-links {
  display: flex;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fs-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' var(--fs-opsz-ui), 'SOFT' 40, 'WONK' 0;
  z-index: 1;
}
.nav-links a {
  opacity: 0.82;
  transition: opacity 0.15s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { right: 0; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--marigold);
  transition: right 0.25s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto; /* pin CTA / hamburger to the right when links are absolute or hidden */
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(245,235,220,0.08);
  border: 1px solid rgba(245,235,220,0.14);
  border-radius: 100px;
  padding: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.lang-toggle button {
  padding: 6px 12px;
  border-radius: 100px;
  color: var(--cream);
  opacity: 0.6;
  transition: all 0.2s;
}
.lang-toggle button.active {
  background: var(--marigold);
  color: var(--ink);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 100px;
  font-family: var(--fs-display);
  font-weight: 550;
  font-size: 15px;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' var(--fs-opsz-ui), 'SOFT' 45, 'WONK' 0;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
  position: relative;
}
.btn:focus-visible {
  outline: 2px solid var(--marigold);
  outline-offset: 3px;
}
.btn--primary {
  background: linear-gradient(180deg, #c55335 0%, var(--adobe) 55%, var(--adobe-deep) 100%);
  color: var(--cream);
  box-shadow:
    0 10px 28px -12px rgba(181,71,44,0.95),
    inset 0 1px 0 rgba(255,255,255,0.14);
  border: 1px solid rgba(255,220,180,0.08);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #d15d3d 0%, #a53f28 55%, #7d2e1c 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -12px rgba(181,71,44,1);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(245,235,220,0.04);
  color: var(--cream);
  border: 1px solid rgba(245,235,220,0.28);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(232,168,56,0.65);
  color: var(--marigold);
  background: rgba(232,168,56,0.06);
}
.btn--dark {
  background: var(--ink);
  color: var(--cream);
}
.btn--dark:hover { background: var(--ink-2); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn svg { width: 14px; height: 14px; }

/* ------------- HERO ------------- */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 110px 0 40px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(232,168,56,0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(181,71,44,0.35), transparent 70%),
    linear-gradient(180deg, #1a120b 0%, #0f0905 100%);
}
.hero__bg::before {
  /* textured noise */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.6 0 0 0 0 0.3 0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
}
.hero__dish {
  position: absolute;
  right: -4%;
  top: 6%;
  width: 58%;
  height: 92%;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  border-radius: 46% 54% 48% 52% / 52% 46% 54% 48%;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 80px rgba(0,0,0,0.15);
  filter: saturate(1.08) contrast(1.04);
  opacity: 1;
  mask-image: radial-gradient(ellipse 74% 80% at 48% 48%, #000 52%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 74% 80% at 48% 48%, #000 52%, transparent 76%);
}
.hero__dish::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(15,9,5,0.55) 0%, transparent 42%, rgba(15,9,5,0.2) 100%),
    radial-gradient(ellipse at 60% 40%, rgba(232,168,56,0.12), transparent 55%);
  pointer-events: none;
}
.hero__dish::after {
  content: '';
  position: absolute;
  inset: -8%;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(15,9,5,0.55) 78%);
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(245,235,220,0.06) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.4;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--grid-gap);
  align-items: end;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--marigold);
}
.hero__title {
  font-family: var(--fs-display);
  font-weight: 420;
  /* SOFT 100 + WONK 1 read as a wavy optical illusion at display size — keep Fraunces clean */
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
  font-size: clamp(52px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--marigold);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: inline-block;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.5;
  max-width: 44ch;
  color: rgba(250,244,232,0.8);
  margin: 0 0 22px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 12px;
}
.hero__card {
  background: rgba(18,12,8,0.45);
  border: 1px solid rgba(245,235,220,0.14);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.55);
}
.hero__card-title {
  font-family: var(--fs-display);
  font-size: 22px;
  margin: 0 0 4px;
  font-variation-settings: 'opsz' 72;
}
.hero__card-sub {
  font-size: 13px;
  color: rgba(250,244,232,0.62);
  margin: 0 0 14px;
}
.hero__card-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(245,235,220,0.08);
  font-size: 14px;
}
.hero__card-stat:first-of-type { border-top: 0; padding-top: 0; }
.hero__card-stat b {
  font-family: var(--fs-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--marigold);
}

.hero__scroll {
  position: absolute;
  left: 32px;
  bottom: 24px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: var(--fs-hand);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(250,244,232,0.65);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--marigold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(1.4); opacity: 0.4; }
}

.hero__marquee {
  position: absolute;
  right: 32px;
  bottom: 24px;
  z-index: 3;
  font-family: var(--fs-hand);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(250,244,232,0.7);
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero__marquee span { color: var(--marigold); }

/* ------------- INTRO BAND ------------- */
.intro {
  background: var(--paper);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--grid-gap);
  align-items: center;
}
.intro__photos {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro__photo {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-3);
}
.intro__photo--old {
  top: 0; left: 0;
  width: 58%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  filter: sepia(0.35) contrast(0.98);
}
.intro__photo--old::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px),
    radial-gradient(ellipse 120% 80% at 30% 40%, transparent 30%, rgba(0,0,0,0.35) 100%);
}
.intro__photo--new {
  bottom: 0; right: 0;
  width: 62%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.intro__photo--new::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 40%);
  pointer-events: none;
}
.intro__photo-caption {
  position: absolute;
  left: 8px; right: 8px; bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 6px 10px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  border-radius: 2px;
}

.intro__body {
  max-width: 560px;
}
.intro__title {
  font-family: var(--fs-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 380;
  font-variation-settings: 'opsz' 120, 'SOFT' 80;
  margin: 12px 0 20px;
  text-wrap: balance;
}
.intro__title em {
  font-style: italic;
  color: var(--adobe);
}
.intro__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
  margin: 0 0 18px;
}
.intro__hand {
  font-family: var(--fs-hand);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--adobe);
  line-height: 1;
  transform: rotate(-2deg);
  display: inline-block;
  margin-top: 10px;
}

/* ------------- DISHES ------------- */
.dishes {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.dishes__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(45deg, var(--marigold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--marigold) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--marigold) 75%),
    linear-gradient(-45deg, transparent 75%, var(--marigold) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.dishes__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: var(--block-gap);
}
.dishes__note {
  font-size: 14px;
  color: rgba(250,244,232,0.6);
  max-width: 320px;
  line-height: 1.5;
  text-align: right;
}
.dishes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dish-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink-2);
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.22, 0.7, 0.2, 1), box-shadow 0.45s ease;
  border: 1px solid rgba(245,235,220,0.06);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,0.8);
}
.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px -24px rgba(0,0,0,0.85);
}
.dish-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.dish-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-card__img img {
  transform: scale(1.05);
}
.dish-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(15,10,6,0.72);
  backdrop-filter: blur(8px);
  color: var(--marigold);
  font-family: var(--fs-hand);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 5px 12px 6px;
  border-radius: 100px;
  border: 1px solid rgba(232,168,56,0.3);
  line-height: 1;
}
.dish-card__price {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: var(--fs-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--cream);
  background: rgba(15,10,6,0.72);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 100px;
}
.dish-card__body {
  padding: 14px 14px 16px;
}
.dish-card__name {
  font-family: var(--fs-display);
  font-size: 20px;
  font-weight: 420;
  font-variation-settings: 'opsz' 48, 'SOFT' 60;
  line-height: 1.1;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}
.dish-card__es {
  font-family: var(--fs-display);
  font-style: italic;
  font-size: 14px;
  color: var(--marigold);
  margin: 0 0 12px;
  opacity: 0.85;
}
.dish-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(250,244,232,0.72);
  margin: 0;
}

/* ------------- SPECIALS ------------- */
.specials {
  background: var(--paper);
  padding: var(--section-y) 0;
  position: relative;
}
.specials__header {
  margin-bottom: var(--block-gap);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.specials__hand {
  font-family: var(--fs-hand);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--adobe);
  transform: rotate(-3deg);
  max-width: 300px;
  line-height: 1.1;
}
.specials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.special-card {
  background: linear-gradient(180deg, var(--cream) 0%, #f7efe0 100%);
  border: 1px solid var(--paper-3);
  border-radius: 14px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.special-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(181,71,44,0.28);
}
.special-card__day {
  font-family: var(--fs-hand);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--adobe);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.special-card__day::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--paper-3);
}
.special-card__name {
  font-family: var(--fs-display);
  font-size: 32px;
  line-height: 1.05;
  font-weight: 380;
  font-variation-settings: 'opsz' 72, 'SOFT' 80;
  letter-spacing: -0.02em;
  margin: 10px 0 12px;
  text-wrap: balance;
}
.special-card__detail {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.45;
  margin: 0 0 14px;
}
.special-card__accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fs-hand);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--cilantro);
  padding: 4px 12px 5px;
  background: rgba(74,124,58,0.08);
  border-radius: 100px;
  line-height: 1;
}
.special-card__bg {
  position: absolute;
  right: -30px;
  bottom: -30px;
  font-family: var(--fs-display);
  font-size: 180px;
  line-height: 1;
  color: var(--paper-2);
  font-weight: 400;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}
.special-card > * { position: relative; z-index: 1; }
.special-card--photo {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.special-card__media {
  height: 160px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  overflow: hidden;
}
.special-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.special-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.special-card--photo .special-card__day::after {
  background: rgba(181,71,44,0.18);
}

/* ------------- HOUSE STRIP (real photos only) ------------- */
.house-strip {
  background: var(--cream);
  padding: var(--section-y) 0;
}
.house-strip__header {
  max-width: 640px;
  margin-bottom: var(--block-gap);
}
.house-strip__note {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 52ch;
}
.house-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.house-strip__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--paper-3);
  position: relative;
}
.house-strip__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.house-strip__item:hover img {
  transform: scale(1.04);
}
.house-strip__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 12px 10px;
  font-family: var(--fs-hand);
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  background: linear-gradient(to top, rgba(15,10,6,0.75), transparent);
  line-height: 1.15;
}

/* ------------- REVIEWS ------------- */
.reviews {
  background: var(--paper-2);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.reviews__header {
  text-align: center;
  margin-bottom: var(--block-gap);
}
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid var(--paper-3);
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
}
.reviews__rating b { font-weight: 700; }
.reviews__stars {
  color: var(--marigold);
  letter-spacing: 2px;
  font-size: 14px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-card {
  background: var(--cream);
  border: 1px solid rgba(217,200,173,0.7);
  border-radius: 14px;
  padding: 20px 18px 18px;
  box-shadow: 0 10px 30px -22px rgba(20,12,6,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-card__quote {
  font-family: var(--fs-display);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0;
  flex: 1;
  font-weight: 380;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}
.review-card__quote::before {
  content: '“';
  color: var(--adobe);
  font-size: 1.4em;
  line-height: 0;
  margin-right: 2px;
  font-family: var(--fs-display);
}
.review-card__by {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--paper-3);
}
.review-card__author {
  font-weight: 600;
  font-size: 14px;
}
.review-card__source {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  opacity: 0.75;
}

/* ------------- HOURS / LOCATION ------------- */
.location {
  background: var(--ink);
  color: var(--cream);
  /* tight seam into footer — map height already gives the band weight */
  padding: var(--section-y) 0 24px;
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--grid-gap);
  align-items: start;
}
.location__title {
  font-family: var(--fs-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 420;
  font-variation-settings: 'opsz' 100, 'SOFT' 30, 'WONK' 0;
  margin: 10px 0 18px;
  text-wrap: balance;
}
.location__address {
  font-family: var(--fs-display);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 14px;
}
.location__phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.location__phones a {
  font-size: 16px;
  color: rgba(250,244,232,0.82);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.location__phones a:hover { color: var(--marigold); }
.location__phones a svg { width: 14px; height: 14px; opacity: 0.6; }

.location__hours {
  margin: 18px 0;
  border-top: 1px solid rgba(245,235,220,0.1);
}
.location__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(245,235,220,0.08);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  transition: background 0.2s;
}
.location__hours-row.today {
  color: var(--marigold);
  font-weight: 600;
}
.location__hours-row.today::after {
  content: 'Open now';
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--cilantro);
  color: var(--cream);
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: 10px;
}
.location__hours-row .day { opacity: 0.85; }
.location__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.location__map {
  position: relative;
  aspect-ratio: 4/3;
  min-height: 280px;
  max-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: #1d2617;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(245,235,220,0.08);
}
/* Locked embed: Google places pin stays put; no pan/scroll hijack */
.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: grayscale(0.12) contrast(1.04) saturate(0.95);
}
.location__map-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(to top, rgba(15,10,6,0.45) 0%, transparent 42%);
  text-decoration: none;
  color: inherit;
}
.location__map-badge {
  background: var(--cream);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-md);
  max-width: calc(100% - 8px);
}
.location__map-hint {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250,244,232,0.88);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.location__map-cover:hover .location__map-hint,
.location__map-cover:focus-visible .location__map-hint {
  opacity: 1;
  transform: translateY(0);
}
.location__map-cover:focus-visible {
  outline: 2px solid var(--marigold);
  outline-offset: -2px;
}

/* ------------- FOOTER (compact utility bar) ------------- */
.footer {
  background: var(--ink);
  color: rgba(250,244,232,0.55);
  padding: 18px 0 14px;
  border-top: 1px solid rgba(245,235,220,0.08);
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245,235,220,0.08);
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
  flex-shrink: 0;
}
.footer__brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}
.footer__word {
  font-family: var(--fs-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}
.footer__mi {
  color: var(--marigold);
  font-family: var(--fs-hand);
  font-size: 30px;
  margin-right: 0.12em;
}
.footer__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  flex: 1 1 220px;
  font-size: 13px;
  line-height: 1.35;
  min-width: 0;
}
.footer__fact {
  color: rgba(250,244,232,0.72);
  transition: color 0.15s ease;
  white-space: nowrap;
}
a.footer__fact:hover { color: var(--marigold); }
.footer__fact--mute { color: rgba(250,244,232,0.45); white-space: normal; text-align: center; }
.footer__sep { opacity: 0.45; }
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.footer__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(245,235,220,0.14);
  display: inline-grid;
  place-items: center;
  color: rgba(250,244,232,0.78);
  background: rgba(245,235,220,0.04);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.footer__icon:hover {
  color: var(--marigold);
  border-color: rgba(232,168,56,0.45);
  background: rgba(232,168,56,0.08);
}
.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: rgba(250,244,232,0.42);
}
.gfb-egg {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  animation: gfb-pulse 2.8s ease-in-out infinite;
  transition: opacity 0.3s ease;
}
.gfb-egg:hover { animation-play-state: paused; opacity: 1; }
@keyframes gfb-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
  .gfb-egg { animation: none; opacity: 0.6; }
}
/* Footer stacks at 960px — same breakpoint the fixed order-dock appears —
   so it never renders in a cramped horizontal row while the dock overlaps. */
@media (max-width: 960px) {
  .footer {
    padding: 16px 0 12px;
    /* Clear the fixed .order-dock (≈64px pill + 12px inset + safe-area)
       so the copyright bar is never hidden behind it. */
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer__facts {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    flex: 0 1 auto;
  }
  .footer__fact--mute { text-align: left; }
  .footer__bar {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ------------- TWEAKS PANEL ------------- */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 280px;
  background: rgba(26,18,11,0.95);
  backdrop-filter: blur(16px);
  color: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(245,235,220,0.12);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  overflow: hidden;
}
.tweaks__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(245,235,220,0.08);
  font-family: var(--fs-display);
  font-size: 18px;
}
.tweaks__body { padding: 16px; display: flex; flex-direction: column; gap: 18px; }
.tweaks__row label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 8px;
  font-weight: 600;
}
.tweaks__opts { display: flex; flex-wrap: wrap; gap: 6px; }
.tweaks__chip {
  padding: 7px 12px;
  border-radius: 100px;
  font-size: 12px;
  background: rgba(245,235,220,0.06);
  border: 1px solid rgba(245,235,220,0.12);
  color: var(--cream);
  transition: all 0.15s;
}
.tweaks__chip:hover { background: rgba(245,235,220,0.12); }
.tweaks__chip.active {
  background: var(--marigold);
  color: var(--ink);
  border-color: var(--marigold);
}

/* ------------- PALETTE VARIANTS ------------- */
body[data-palette="mole"] {
  --ink: var(--alt-mole-ink);
  --adobe: var(--alt-mole-adobe);
  --marigold: var(--alt-mole-marigold);
  --paper: var(--alt-mole-paper);
}
body[data-palette="jade"] {
  --ink: var(--alt-jade-ink);
  --adobe: var(--alt-jade-adobe);
  --paper: var(--alt-jade-paper);
}

/* ------------- HERO VARIANTS ------------- */
body[data-hero="split"] .hero__title {
  font-size: clamp(44px, 6vw, 88px);
}
body[data-hero="editorial"] .hero {
  padding-top: 80px;
}
body[data-hero="editorial"] .hero__title {
  font-size: clamp(72px, 12vw, 180px);
  letter-spacing: -0.04em;
}
body[data-hero="editorial"] .hero__aside { display: none; }
body[data-hero="editorial"] .hero__inner { grid-template-columns: 1fr; }

/* ------------- REVEAL (progressive enhancement) -------------
   Content stays visible without JS. Only hide when html.js is set
   and the section has not yet been marked .is-visible.
-------------------------------------------------------------- */
/* Reveal never blanks content (GFB edge). Soft lift only when .is-visible. */
html.js .reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal.is-visible {
  /* optional polish; content already visible */
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal:not(.is-visible),
  html.js .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__scroll::after,
  .location__map-hint { opacity: 0.85; transform: none; }
  .dish-card:hover,
  .special-card:hover,
  .btn--primary:hover { transform: none; }
}

/* ------------- MOBILE NAV + ORDER DOCK ------------- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(245,235,220,0.18);
  background: rgba(245,235,220,0.06);
  color: var(--cream);
  flex-shrink: 0;
}
.nav-toggle__bars {
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle__bars span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
html.nav-open .nav-toggle__bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
html.nav-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
html.nav-open .nav-toggle__bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

.nav-drawer {
  display: none;
}

.order-dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  background: rgba(26,18,11,0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(245,235,220,0.12);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 18px 50px -18px rgba(0,0,0,0.65);
  color: var(--cream);
}
.order-dock__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.order-dock__meta strong {
  font-family: var(--fs-display);
  font-weight: 420;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.order-dock__meta span {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(250,244,232,0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.order-dock .btn { padding: 12px 18px; }

/* ------------- RESPONSIVE ------------- */
@media (max-width: 1100px) {
  .dishes__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero__title { font-size: clamp(48px, 9vw, 96px); }
  /* nav-links gap shrink */
  .nav-links { gap: 18px; font-size: 13px; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { justify-content: space-between; }
  .nav-right { margin-left: auto; }
  .nav-drawer {
    display: block;
    position: fixed;
    inset: 0;
    /* above order-dock (60) and header (50) so panel + backdrop cover chrome */
    z-index: 80;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease;
  }
  /* Keep hamburger tappable above the drawer backdrop */
  .site-header { z-index: 90; }
  .nav-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,6,3,0.55);
  }
  .nav-drawer__panel {
    position: absolute;
    top: 0; right: 0;
    width: min(360px, 88vw);
    height: 100%;
    background: linear-gradient(180deg, #1f160f 0%, #120c08 100%);
    border-left: 1px solid rgba(245,235,220,0.1);
    padding: 96px 28px 40px;
    transform: translateX(104%);
    transition: transform 0.32s cubic-bezier(0.22, 0.7, 0.2, 1);
    box-shadow: -30px 0 80px rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  html.nav-open .nav-drawer {
    pointer-events: auto;
    opacity: 1;
  }
  html.nav-open .nav-drawer__panel { transform: none; }
  html.nav-open { overflow: hidden; }
  .nav-drawer__panel a {
    font-family: var(--fs-display);
    font-size: 32px;
    font-weight: 380;
    letter-spacing: -0.02em;
    color: var(--cream);
    padding: 12px 0;
    border-bottom: 1px solid rgba(245,235,220,0.08);
  }
  .nav-drawer__panel a:hover { color: var(--marigold); }
  .nav-drawer__cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .nav-right .btn--primary { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__aside { display: none; }
  /* Mobile hero: the dish photo is a landscape shot, so a tall box + cover
     crops it badly. Keep it a shorter full-width band anchored to the bottom
     with the food centered, and let the scrim carry legibility above it. */
  .hero__dish {
    width: 100%;
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    height: 34%;
    opacity: 1;
    border-radius: 0;
    box-shadow: none;
    background-size: cover;
    background-position: center 55%;
    mask-image: linear-gradient(to top, #000 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, #000 60%, transparent 100%);
  }
  /* Stronger scrim so any CTA that overlaps the top of the photo band
     stays fully legible — the buttons should never sit on raw food. */
  .hero__dish::after {
    inset: 0;
    background: linear-gradient(to top,
      rgba(15,9,5,0.72) 0%,
      rgba(15,9,5,0.45) 30%,
      rgba(15,9,5,0.15) 60%,
      transparent 85%);
  }
  .hero__dish::before { display: none; }
  .intro__grid,
  .location__grid { grid-template-columns: 1fr; gap: 28px; }
  .dishes__grid { grid-template-columns: repeat(2, 1fr); }
  .house-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .specials__grid,
  .reviews__grid { grid-template-columns: 1fr; }
  .special-card__media { height: 180px; }
  /* footer stacks via its own @media (max-width: 720px) */
  .dishes__header { grid-template-columns: 1fr; align-items: start; }
  .dishes__note { text-align: left; max-width: none; }
  .specials__header { flex-direction: column; align-items: flex-start; }
  .order-dock { display: flex; }
  /* Dock clearance is now owned by .footer's bottom padding (see footer @media),
     so the footer's own dark background extends under the dock instead of leaving
     a slab of paper-colored dead space below it. */
  .container { padding-inline: var(--gutter-sm); }
  /* Extra bottom room so stacked CTAs + marquee clear the fixed order dock */
  .hero {
    padding: 96px 0 calc(80px + env(safe-area-inset-bottom, 0px));
    min-height: 78svh;
  }
  /* Vertical SCROLL cue collides with full-width CTAs on phone widths */
  .hero__scroll { display: none; }
  .hero__marquee {
    right: 20px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    max-width: calc(100% - 40px);
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 4px;
  }
  .hero__ctas { position: relative; z-index: 4; }
  .intro, .dishes, .specials, .house-strip, .reviews { padding-top: var(--section-y-sm); padding-bottom: var(--section-y-sm); }
  .location { padding-top: var(--section-y-sm); padding-bottom: 20px; }
  .location__map { min-height: 220px; max-height: 300px; aspect-ratio: 4/3; }
}

@media (max-width: 640px) {
  .dishes__grid { grid-template-columns: 1fr; }
  .house-strip__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .house-strip__item figcaption { font-size: 15px; padding: 20px 10px 8px; }
  .hero__title { font-size: clamp(40px, 11vw, 56px); }
  .hero__sub { font-size: 16px; max-width: 36ch; }
  .hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  /* Marquee fights the dock on short phones — drop it */
  .hero__marquee { display: none; }
  .order-dock {
    left: 10px;
    right: 10px;
    padding: 8px 8px 8px 14px;
  }
  .order-dock__meta strong { font-size: 14px; }
  .order-dock__meta span { font-size: 10px; }
  .order-dock .btn { padding: 11px 16px; flex-shrink: 0; }
  .intro__photos { aspect-ratio: 1 / 1.15; max-width: 420px; }
  .location__title { font-size: clamp(40px, 11vw, 56px); }
  .section-title { font-size: clamp(32px, 9vw, 48px); }
  .nav-right .lang-toggle { display: none; }
  .nav-drawer__panel .lang-toggle { margin-bottom: 18px; align-self: flex-start; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}


/* map embed base styles live in the location block above */
.location__hours-row.today {
  color: var(--marigold);
  font-weight: 600;
}
.social-links a {
  color: rgba(250,244,232,0.75);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.social-links a:hover { color: var(--marigold); }


/* === GFB edge: brand mark + polish === */
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
/* footer brand styles live in FOOTER block above */
.dish-card__img img {
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dish-card:hover .dish-card__img img {
  transform: scale(1.05);
}


/* Location CTAs on dark band */
.location .btn--outline {
  color: var(--cream);
  border-color: rgba(245,235,220,0.35);
}
.location .btn--outline:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.location .btn--ghost {
  color: var(--cream);
  border-color: rgba(245,235,220,0.28);
}


.location__status {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.location__status[data-state="open"] { color: var(--marigold); }
.location__status[data-state="closed"] { color: rgba(250,244,232,0.55); }
/* today row: no fake always-open badge */
.location__hours-row.today::after { content: none; }
.location__hours-row.today {
  color: var(--marigold);
  font-weight: 600;
}

/* Quiet secondary row under CTAs — not plain underlined links */
.location__meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(245,235,220,0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 2px;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: rgba(250,244,232,0.42);
}
.location__meta-link {
  color: rgba(250,244,232,0.58);
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.location__meta-link:hover,
.location__meta-link:focus-visible {
  color: var(--marigold);
  background: rgba(232,168,56,0.08);
  outline: none;
}
.location__meta-sep {
  opacity: 0.45;
  user-select: none;
  padding: 0 2px;
}
/* legacy class hooks (kept harmless if referenced elsewhere) */
.location__order-row { margin-top: 16px; }
.location__grubhub-link { color: rgba(250,244,232,0.58); text-decoration: none; }
.social-links--row { display: flex; gap: 10px; }

/* score-harden utilities — replace inline styles for clean CSP */
.hand--hoy {
  color: var(--marigold);
  font-size: 28px;
  margin-right: 6px;
}
.section-title--cream { margin-top: 8px; color: var(--cream); }
.section-title--mt8 { margin-top: 8px; }
.section-title--mt10 { margin-top: 10px; }
.center-mt28 { text-align: center; margin-top: 28px; }
.reviews-dot { opacity: 0.6; }
.hero__dish--photo {
  background-image: url('/images/site/hero-tacos.webp?v=20260712ai');
}
@media (max-width: 899px) {
  .hero__dish--photo {
    background-image: url('/images/site/hero-tacos-xs.webp?v=20260712ai');
  }
}
