/* =========================================
   Pho Heaven — Redesign
   Editorial street-food
   Fraunces (display) + Inter (body)
   ========================================= */

:root {
  --ivory: #EEE4D1;    /* warm beige — main surface */
  --ivory-2: #E5D9C0;  /* deeper beige for card/section contrast */
  --ivory-3: #D8C9AB;  /* deepest beige / placeholders */
  --paper: #F7EFDC;    /* lifted beige for cards */

  /* dark surfaces — deep espresso brown, not black */
  --ink: #2E1D10;      /* deep espresso */
  --ink-2: #3A2618;    /* body text on cream */
  --ink-3: #5A4330;    /* muted brown for secondary text */
  --mute: #8A7A5F;

  --red: #C4A265;      /* BRAND GOLD — primary accent */
  --red-deep: #A8893F; /* gold dark */
  --cream: #FAF9F6;

  --brick: #8B2500;    /* deep brick red — for CTAs */
  --brick-hover: #A63000;

  /* greens — two-green system */
  --green-brand: #228B22;  /* logo forest green — brand marks, flourishes, mugunghwa */
  --green-herb: #6B8A4A;   /* muted olive — realistic herb/plant depictions only */

  /* tokens */
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(23,20,16,0.06), 0 2px 8px rgba(23,20,16,0.04);
  --shadow-md: 0 6px 24px rgba(23,20,16,0.08);
  --max: 1280px;
  --nav-h: 96px;

  --ff-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}

h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); letter-spacing: -0.015em; }

p { color: var(--ink-2); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 900px) { .container { padding: 0 40px; } }

/* tiny caps label */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow-mute { color: var(--mute); }

/* Rule */
.rule { height: 1px; background: var(--ink); opacity: 0.12; border: 0; }

/* ================= NAV ================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid rgba(23,20,16,0.08);
  display: flex;
  align-items: center;
}
.nav--over { background: transparent; border-bottom-color: transparent; color: var(--ink); }
.nav--over .nav-link, .nav--over .nav-brand { color: var(--ink); }
.nav.is-scrolled { background: var(--ivory); border-bottom-color: rgba(23,20,16,0.08); color: var(--ink); }
.nav.is-scrolled .nav-link, .nav.is-scrolled .nav-brand { color: var(--ink); }

.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (min-width: 900px) { .nav-inner { padding: 0 40px; } }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.nav-brand img {
  height: 60px;
  width: auto;
  display: block;
}
.nav-brand .tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(58,38,24,0.25);
  border-radius: 999px;
  color: var(--ink-3);
  display: none;
}
@media (max-width: 640px) {
  .nav-brand img { height: 40px; }
}

.nav-links {
  display: none;
  margin-left: auto;
  gap: 40px;
  align-items: center;
}
.nav-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--red); }
.nav-link.is-active { color: var(--red); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--ivory) !important;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--red-deep); transform: translateY(-1px); }
.nav-cta::after { content: "↗"; font-weight: 400; }

.nav-toggle {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
}
.nav-toggle span {
  width: 22px; height: 1.5px; background: currentColor;
}
.nav-drawer {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--ivory);
  display: none;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
  z-index: 99;
  color: var(--ink);
}
.nav-drawer.is-open { display: flex; }
.nav-drawer a {
  padding: 14px 0;
  font-family: var(--ff-display);
  font-size: 28px;
  border-bottom: 1px solid rgba(23,20,16,0.1);
  color: var(--ink);
}
.nav-drawer .nav-cta { margin-top: 24px; align-self: flex-start; font-family: var(--ff-sans); font-size: 13px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 24px) 0 64px;
  background: var(--ivory);
  color: var(--ink-2);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  min-height: calc(100vh - var(--nav-h) - 96px);
  min-height: calc(100dvh - var(--nav-h) - 96px);
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: stretch;
  }
  .hero-image-wrap {
    aspect-ratio: auto;
    height: 100%;
    max-height: calc(100dvh - var(--nav-h) - 120px);
  }
}

.hero-left { padding-top: 8px; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 32px;
}
.hero-meta .dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero-meta .star { color: var(--ivory); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--red);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.hero-h1 .ampersand {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  color: var(--red);
  display: inline-block;
  transform: translateY(0.05em);
}

.hero-answer {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  color: var(--ink-3);
  margin-bottom: 40px;
  max-width: 480px;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-phone {
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--ink-3);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.hero-phone a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(46,29,16,0.25);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.hero-phone a:hover { border-color: var(--red); }
.hero-phone strong { font-weight: 600; letter-spacing: 0.005em; }

.hero-landmark {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-landmark .pin {
  color: var(--red);
  font-size: 7px;
  line-height: 1;
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,58,31,0.3); }
.btn-primary::after { content: "↗"; font-weight: 400; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(58,38,24,0.3);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23,20,16,0.25);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.btn-big { padding: 20px 36px; font-size: 15px; }

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(58,38,24,0.2);
  padding-top: 20px;
  gap: 12px;
}
.hero-stat .n {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero-stat .l {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
}
.hero-image-wrap video,
.hero-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-label {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(23,20,16,0.75);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-image-label .fire { color: var(--red); }

/* Hero FULL variant (video fullbleed) */
.hero-full {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 64px;
}
.hero-full-bg { position: absolute; inset: 0; z-index: 0; }
.hero-full-bg video, .hero-full-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-full-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,20,16,0.35) 0%, rgba(23,20,16,0.6) 60%, rgba(23,20,16,0.85) 100%);
}
.hero-full-inner { position: relative; z-index: 1; max-width: 900px; }
.hero-full h1 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-full h1 em { font-style: italic; color: var(--red); }
.hero-full .hero-answer { margin: 0 auto 40px; color: rgba(246,241,232,0.88); }
.hero-full .hero-ctas { justify-content: center; }

/* ================= MARQUEE ================= */
.marquee {
  background: var(--ivory);
  color: var(--ink);
  border-top: 1px solid rgba(58,38,24,0.12);
  border-bottom: 1px solid rgba(58,38,24,0.12);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: scroll 30s linear infinite;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.marquee-track .sep { color: var(--red); font-style: normal; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= SECTION base ================= */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--ink); color: var(--ivory); }
.section-dark h2, .section-dark h3 { color: var(--ivory); }
.section-dark p { color: rgba(246,241,232,0.78); }
.section-paper { background: var(--ivory); }

/* section header pattern */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 48px;
}
@media (min-width: 900px) {
  .section-head {
    grid-template-columns: auto 1fr auto;
    gap: 48px;
  }
}
.section-head .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  align-self: start;
  padding-top: 10px;
}
.section-head h2 { letter-spacing: -0.03em; }
.section-head h2 em {
  font-style: italic;
  color: var(--red);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.section-head .head-kicker {
  max-width: 360px;
  font-size: 15px;
  color: var(--ink-3);
}

/* ================= REVIEWS ================= */
.trust {
  background: var(--ivory);
  padding: 72px 0 88px;
  position: relative;
}

.trust-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 56px;
  text-align: center;
}
.trust-top h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 720px;
  letter-spacing: -0.025em;
}
.trust-top h2 em { font-style: italic; color: var(--red); font-variation-settings: "SOFT" 100, "WONK" 1; }

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border: 1px solid rgba(23,20,16,0.15);
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 500;
}
.rating-chip .stars { color: #E6A817; letter-spacing: 2px; font-size: 14px; }
.rating-chip .score { font-family: var(--ff-display); font-weight: 600; font-size: 16px; }
.rating-chip .count { color: var(--mute); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--paper);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23,20,16,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card .q {
  font-family: var(--ff-display);
  font-size: 48px;
  line-height: 0.8;
  color: var(--red);
  margin-top: -4px;
}
.review-card p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.review-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(23,20,16,0.1);
  font-size: 13px;
}
.review-card .author { font-weight: 600; }
.review-card .stars { color: #E6A817; letter-spacing: 2px; }

/* ================= DISH SHOWCASE ================= */
.signature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .signature { grid-template-columns: repeat(12, 1fr); gap: 24px; }
}

.sig-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sig-card .img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ivory-3);
}
.sig-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sig-card:hover .img img { transform: scale(1.04); }

.sig-card .tag {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sig-card .tag.hot { background: var(--red); color: var(--ivory); }

.sig-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: -0.015em;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.sig-card h3 .price {
  font-size: 0.8em;
  color: var(--red);
  font-family: var(--ff-display);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.sig-card p { font-size: 14.5px; color: var(--ink-3); }

/* feature / big card */
.sig-card.feature { grid-column: span 12; }
@media (min-width: 900px) {
  .sig-card.feature { grid-column: span 6; }
  .sig-card.small   { grid-column: span 3; }
}
.sig-card.feature .img { aspect-ratio: 4 / 4.5; }

/* ================= SCIENCE / STORY SPLIT ================= */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 88px; }
  .split.reverse > :first-child { order: 2; }
}

.split-text h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.split-text h2 em { font-style: italic; color: var(--red); font-variation-settings: "SOFT" 100, "WONK" 1; }
.split-text p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 520px;
}
.split-text .eyebrow { margin-bottom: 16px; display: block; }

.split-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ivory-3);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* Science 3-col */
.science-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 800px) { .science-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

.science-col {
  padding-top: 24px;
  border-top: 1px solid rgba(246,241,232,0.22);
}
.sci-icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}
.science-col .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.55);
  margin-bottom: 20px;
}
.science-col h3 {
  font-size: 28px;
  color: var(--ivory);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.science-col h3 em { font-style: italic; color: var(--red); font-variation-settings: "SOFT" 100, "WONK" 1; }
.science-col p { font-size: 15.5px; line-height: 1.6; color: rgba(246,241,232,0.75); }

/* ================= ORDER STRIP ================= */
.order-strip {
  background: var(--red);
  color: var(--ivory);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.order-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 800px) { .order-strip-inner { grid-template-columns: 1fr auto; } }
.order-strip h2 {
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.order-strip h2 em {
  font-style: italic;
  color: var(--cream);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.order-strip p { color: rgba(255,248,234,0.82); margin-top: 12px; max-width: 440px; }
.order-strip .btn-primary { background: var(--ink); color: var(--ivory); }
.order-strip .btn-primary:hover { background: var(--paper); color: var(--ink); }
.order-strip .btn-outline { border-color: rgba(255,248,234,0.5); color: var(--ivory); }

/* ================= LOCATION ================= */
.location {
  background: var(--ink);
  color: var(--ivory);
  padding: 96px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .location-grid { grid-template-columns: 1fr 1.2fr; gap: 72px; } }

.location h2 { color: var(--ivory); margin-bottom: 24px; font-size: clamp(2rem, 4vw, 3rem); }
.location h2 em { font-style: italic; color: var(--red); font-variation-settings: "SOFT" 100, "WONK" 1; }

.location-list { list-style: none; margin: 32px 0; }
.location-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(246,241,232,0.12);
  font-size: 15px;
}
.location-list li strong {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.55);
  padding-top: 3px;
}
.location-list li a { color: var(--ivory); border-bottom: 1px solid rgba(246,241,232,0.3); }
.location-list li a:hover { color: var(--red); border-bottom-color: var(--red); }

.map-box {
  aspect-ratio: 4/3;
  background: var(--ink-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(246,241,232,0.1);
  position: relative;
}
.map-box iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* ================= FAQ ================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(23,20,16,0.12);
}
.faq-item summary {
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--ff-sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--red); }
.faq-item p {
  padding: 0 0 28px;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-3);
}

/* ================= FOOTER ================= */
.footer {
  background: var(--ink);
  color: rgba(246,241,232,0.65);
  padding: 80px 0 32px;
}
.footer a { color: var(--ivory); }
.footer a:hover { color: var(--red); }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 800px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
}

.footer-brand {
  display: block;
  margin-bottom: 18px;
}
.footer-brand img {
  height: 72px;
  width: auto;
}
.footer-tagline {
  max-width: 320px;
  font-size: 14.5px;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.55);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(246,241,232,0.12);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.55);
}

/* ================= MENU PAGE ================= */
.page-intro {
  padding: calc(var(--nav-h) + 80px) 0 64px;
  background: var(--ivory);
}
.page-intro h1 {
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin-bottom: 20px;
}
.page-intro h1 em { font-style: italic; color: var(--red); font-variation-settings: "SOFT" 100, "WONK" 1; }
.page-intro .lede {
  max-width: 560px;
  font-size: 18px;
  color: var(--ink-3);
  line-height: 1.5;
}

.menu-filters-wrap {
  position: sticky;
  top: var(--nav-h);
  background: var(--ivory);
  z-index: 40;
  border-top: 1px solid rgba(23,20,16,0.08);
  border-bottom: 1px solid rgba(23,20,16,0.08);
  padding: 14px 0;
}
.menu-filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 24px;
  max-width: var(--max);
  margin: 0 auto;
  scrollbar-width: none;
}
.menu-filters::-webkit-scrollbar { display: none; }
.menu-filter {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  border: 1px solid rgba(23,20,16,0.15);
  white-space: nowrap;
  transition: all 0.2s;
}
.menu-filter:hover { color: var(--ink); border-color: var(--ink); }
.menu-filter.is-active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.menu-cat { padding: 64px 0 8px; }
.menu-cat-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(23,20,16,0.12);
}
.menu-cat-head .num {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--mute);
  text-transform: uppercase;
}
.menu-cat-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.025em;
}
.menu-cat-head h2 em { font-style: italic; color: var(--red); font-variation-settings: "SOFT" 100, "WONK" 1; }
.menu-cat-head .sub { grid-column: 2; font-size: 15px; color: var(--ink-3); margin-top: -6px; max-width: 560px; }

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px) { .menu-items { grid-template-columns: repeat(2, 1fr); gap: 0 48px; } }

.menu-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(23,20,16,0.15);
  align-items: start;
}
.menu-item .thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ivory-3);
}
.menu-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-item .thumb.placeholder {
  background: repeating-linear-gradient(
    -45deg,
    var(--ivory-2) 0 6px,
    var(--ivory-3) 6px 12px
  );
}
.menu-item .info h3 {
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.menu-item .info h3 .code {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--mute);
  background: var(--ivory-2);
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}
.menu-item .info .badge-hot {
  font-family: var(--ff-mono);
  font-size: 10px;
  background: var(--red);
  color: var(--ivory);
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.menu-item .info p { font-size: 14px; color: var(--ink-3); line-height: 1.5; }
.menu-item .info .opts { font-size: 12.5px; color: var(--mute); margin-top: 6px; font-family: var(--ff-mono); }
.menu-item .price {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--red);
  letter-spacing: -0.01em;
  font-weight: 500;
}

.menu-item.expand {
  grid-template-columns: 80px 1fr auto auto;
}
.menu-item.expand summary {
  display: contents;
  cursor: pointer;
}
.menu-item.expand summary::-webkit-details-marker,
.menu-item.expand summary::marker { display: none; content: ""; }
.menu-item.expand .chev {
  font-size: 14px;
  color: var(--mute);
  transition: transform 0.2s;
}
.menu-item.expand[open] .chev { transform: rotate(180deg); }
.proteins {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 20px;
  background: var(--ivory-2);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 600px) { .proteins { grid-template-columns: repeat(2, 1fr); } }
.proteins h4 {
  grid-column: 1 / -1;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}
.proteins h4:first-child { margin-top: 0; }
.protein-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--paper);
  border-radius: var(--radius);
  font-size: 14px;
}
.protein-row .p {
  color: var(--red);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 15px;
}

.menu-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--ivory-2);
  border-radius: var(--radius);
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--ink-3);
}
.menu-note strong {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10.5px;
}

.menu-cat--addons .addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}
@media (min-width: 720px) {
  .menu-cat--addons .addons-grid { grid-template-columns: repeat(2, 1fr); gap: 10px 32px; }
}
.menu-cat--addons .addon {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 16px;
  background: var(--ivory-2);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--ink);
}
.menu-cat--addons .addon .p {
  color: var(--red);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 16px;
}

/* ================= ABOUT PAGE ================= */
.about-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--ivory);
}
.about-hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 16ch;
}
.about-hero h1 em { font-style: italic; color: var(--red); font-variation-settings: "SOFT" 100, "WONK" 1; }
.about-hero .lede { max-width: 600px; font-size: 18px; color: var(--ink-3); margin-bottom: 24px; }

.about-bigimage {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--ivory-3);
}
.about-bigimage img { width: 100%; height: 100%; object-fit: cover; }

/* SVG line-art replacements on About page */
.about-bigimage.about-art,
.split-img.about-art {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory-2);
  color: var(--ink);
  padding: 32px;
  box-sizing: border-box;
}
.about-bigimage.about-art svg,
.split-img.about-art svg {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
}
.split-img.about-art { padding: 24px; }

.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose p {
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 24px;
  color: var(--ink-2);
  font-variation-settings: "opsz" 24;
}
.prose p.lead {
  font-family: var(--ff-display);
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.prose p.lead em { font-style: italic; color: var(--red); }

.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(23,20,16,0.12);
  border-bottom: 1px solid rgba(23,20,16,0.12);
  margin: 64px 0;
}
@media (min-width: 700px) { .stats-band { grid-template-columns: repeat(4, 1fr); } }
.stats-band .cell {
  padding: 40px 24px;
  border-right: 1px solid rgba(23,20,16,0.12);
  text-align: center;
}
.stats-band .cell:last-child { border-right: 0; }
@media (max-width: 700px) {
  .stats-band .cell:nth-child(2n) { border-right: 0; }
  .stats-band .cell:nth-child(-n+2) { border-bottom: 1px solid rgba(23,20,16,0.12); }
}
.stats-band .n {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  color: var(--red);
  line-height: 1;
}
.stats-band .l {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 12px;
}

/* ================= BLOG ================= */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 800px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s;
}
.post-card:hover { transform: translateY(-4px); }
.post-card .img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ivory-3);
}
.post-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.post-card:hover .img img { transform: scale(1.03); }
.post-card .img > div {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--ivory-3), var(--ivory-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 80px;
  color: var(--red);
  opacity: 0.5;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.post-card .meta {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
}
.post-card h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.post-card:hover h3 { color: var(--red); }
.post-card p { font-size: 14.5px; color: var(--ink-3); }

/* ================= STICKY ORDER (mobile) ================= */
.sticky-order {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px env(safe-area-inset-bottom);
  background: var(--ink);
  display: none;
  gap: 10px;
  border-top: 1px solid rgba(246,241,232,0.15);
}
.sticky-order.is-on { display: flex; }
.sticky-order .btn { flex: 1; justify-content: center; padding: 14px 16px; font-size: 14px; }
@media (min-width: 900px) { .sticky-order { display: none !important; } }

/* ================= TWEAKS panel ================= */
.tweaks {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(23,20,16,0.25);
  border: 1px solid rgba(23,20,16,0.1);
  width: 300px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  font-family: var(--ff-sans);
  display: none;
}
.tweaks.is-on { display: block; }
.tweaks header {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(23,20,16,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks header .title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.tweaks header .title em { font-style: italic; color: var(--red); }
.tweaks .body { padding: 10px 16px 18px; }
.tweaks .group { padding: 10px 0; border-bottom: 1px solid rgba(23,20,16,0.06); }
.tweaks .group:last-child { border-bottom: none; }
.tweaks .group h4 {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}
.tweaks .opts { display: flex; flex-wrap: wrap; gap: 6px; }
.tweaks .opt {
  padding: 6px 10px;
  font-size: 12px;
  background: var(--ivory-2);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
}
.tweaks .opt:hover { background: var(--ivory-3); }
.tweaks .opt.is-on { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.tweaks .swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px rgba(23,20,16,0.15);
  cursor: pointer;
  transition: transform 0.15s;
}
.tweaks .swatch:hover { transform: scale(1.1); }
.tweaks .swatch.is-on { box-shadow: 0 0 0 2px var(--ink); }

/* ================= STORY SECTION ================= */
.section-story { padding: 112px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 5fr 7fr; gap: 88px; }
}
.story-art {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F7A2E;
}
.story-art-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
}
.story-text .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.story-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--ink);
  text-wrap: pretty;
}
.story-text h2 em {
  font-style: italic;
  color: var(--red);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.story-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 52ch;
  margin-bottom: 28px;
}
.story-pull {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.35;
  color: var(--ink);
  border-left: 2px solid var(--red);
  padding-left: 20px;
  margin: 0 0 32px;
  max-width: 44ch;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}

/* ==========================================================
   Individual blog article styles
   Ported from styles.css 2026-04-23, mapped to new tokens:
   --gold → --red | --charcoal → --ink | --cream-dark → --paper
   ========================================================== */
.blog-hero {
  width: 100%;
  max-height: 56vh;
  overflow: hidden;
}
.blog-hero img {
  width: 100%;
  height: 56vh;
  object-fit: cover;
  display: block;
}
.blog-article {
  max-width: 65ch;
  margin: 0 auto;
  padding: 48px 20px 64px;
}
.blog-article .blog-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.blog-article .blog-meta {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-bottom: 32px;
}
.blog-article h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.blog-article h2 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 12px;
}
.blog-article h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 8px;
}
.blog-article p {
  margin-bottom: 24px;
  line-height: 1.7;
  color: var(--ink-2);
}
.blog-article blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--ink-3);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.blog-article .blog-cta {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}
.blog-article .blog-cta h3 {
  margin-top: 0;
}
.blog-article .blog-back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.blog-article .blog-back:hover {
  color: var(--red);
}
.blog-article figure {
  margin: 32px 0;
}
.blog-article figure img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.blog-article figcaption {
  font-size: 0.8rem;
  color: var(--ink-3);
  text-align: center;
  margin-top: 8px;
}
.blog-article .blog-media {
  margin: 32px 0;
  text-align: center;
}
.blog-article .blog-media img {
  max-width: 100%;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}
.social-proof-quote {
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  margin: 40px 0;
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.social-proof-quote p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--ink-2);
}
.social-proof-quote cite {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-3);
  font-style: normal;
}
.social-proof-quote .review-stars {
  color: #FBBC04;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}
.pull-quote {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  border-left: 4px solid var(--red);
  padding: 8px 0 8px 24px;
  margin: 36px 0;
  color: var(--ink);
}
.blog-rule {
  border: none;
  width: 3rem;
  height: 2px;
  background: var(--red);
  margin: 44px auto;
}
