/* =========================================================================
   Menupedia — Shared Stylesheet
   One file. Used by every page on the site.
   Premium, modern, cuisine-agnostic.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Palette — warm-neutral premium */
  --bg:           #fbf7f1;   /* cream */
  --bg-cream:    #f4ecdf;
  --bg-light:    #fffaf2;
  --bg-dark:     #1d1812;   /* deep espresso */
  --bg-mid:      #2a221a;
  --ink:         #1d1812;
  --ink-soft:    #4a3f33;
  --ink-mute:    #76695a;
  --line:        #e6dccc;
  --line-soft:   #efe7d8;
  --accent:      #c2562a;   /* clay-warm */
  --accent-deep: #9a3f1c;
  --accent-soft: #f4d6c4;
  --accent-2:    #4a6b5d;   /* refined secondary — muted sage */
  --gold:        #b8893c;
  --ok:          #4f7d4b;
  --warn:        #c47a1a;

  /* Type */
  --display: "Fraunces", "Playfair Display", Georgia, serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(29,24,18,.06), 0 2px 8px rgba(29,24,18,.04);
  --shadow-2: 0 4px 14px rgba(29,24,18,.08), 0 10px 30px rgba(29,24,18,.06);
  --shadow-3: 0 20px 50px rgba(29,24,18,.12);

  /* Layout */
  --max:     1180px;
  --max-narrow: 880px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--accent-deep); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 var(--s-4);
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { margin: 0 0 var(--s-4); }
ul, ol { margin: 0 0 var(--s-4); padding-left: 1.2rem; }
li { margin-bottom: .25rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-6) 0; }
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
strong { font-weight: 600; color: var(--ink); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.section {
  padding: var(--s-8) 0;
  position: relative;
}
.section-light { background: var(--bg-light); }
.section-cream { background: var(--bg-cream); }
.section-dark  { background: var(--bg-dark); color: #f4ecdf; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fffaf2; }
.section-dark p, .section-dark li { color: #d9ccb7; }
.section-dark a { color: #f4d6c4; }
.section-head {
  max-width: var(--max-narrow);
  margin-bottom: var(--s-6);
}
.section-head.center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.section-dark .eyebrow { color: var(--accent-soft); }
.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- Top disclaimer bar ---------- */
.top-disclaimer {
  background: var(--bg-dark);
  color: #d9ccb7;
  font-size: .82rem;
  text-align: center;
  padding: 8px var(--s-4);
  letter-spacing: .02em;
}
.top-disclaimer strong { color: #fffaf2; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(120%) blur(6px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding-top: var(--s-4);
  padding-bottom: var(--s-4);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: inline-grid;
  place-items: center;
  color: #fffaf2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.site-nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .98rem;
}
.site-nav a:hover { color: var(--accent-deep); }
.nav-cta {
  background: var(--ink);
  color: #fffaf2 !important;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-weight: 500;
}
.nav-cta:hover { background: var(--accent-deep); color: #fffaf2 !important; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 40px; height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after  { position: absolute; top:  6px; left: 0; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: var(--s-4) 0 0;
  font-size: .9rem;
  color: var(--ink-mute);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before {
  content: "›";
  color: var(--ink-mute);
  margin-right: var(--s-2);
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent-deep); }

/* ---------- Page hero ---------- */
.page-hero {
  padding: var(--s-7) 0 var(--s-8);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--s-7);
  align-items: center;
}
.hero-copy h1 { margin-top: var(--s-3); }
.hero-copy .lede { font-size: 1.18rem; }
.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  z-index: 0;
}
.hero-card > * { position: relative; z-index: 1; }
.hero-mini {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--line);
  font-size: .98rem;
}
.hero-mini:last-child { border-bottom: 0; }
.hero-mini-name { font-weight: 500; color: var(--ink); }
.hero-mini-price { font-family: var(--display); font-weight: 600; color: var(--accent-deep); }
.hero-stamp {
  position: absolute;
  top: var(--s-3); right: var(--s-3);
  background: var(--ink);
  color: #fffaf2;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-weight: 600;
}

/* ---------- Meta pills ---------- */
.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: var(--s-5) 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 500;
}
.pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-4);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fffaf2 !important;
}
.btn-primary:hover { background: var(--accent-deep); color: #fffaf2 !important; }
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line);
}
.btn-ghost:hover { background: #fff; border-color: var(--ink); color: var(--ink) !important; }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--s-7);
  align-items: center;
}
.split-copy h2 { margin-top: 0; }
.split-art {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  padding: var(--s-6);
  box-shadow: var(--shadow-1);
  min-height: 320px;
  display: grid;
  place-items: center;
  position: relative;
}
.split-art::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, var(--accent-soft) 0%, transparent 55%);
  opacity: .8;
}
.split-art > * { position: relative; z-index: 1; }

/* ---------- Cards / Grids ---------- */
.card-grid {
  display: grid;
  gap: var(--s-5);
}
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cols-auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.soft-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-1);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.soft-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.soft-card .kicker {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-deep);
  font-weight: 600;
}
.soft-card .card-num {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--ink);
  font-weight: 600;
}
.soft-card h3 { margin: 0; font-size: 1.15rem; }
.soft-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-5);
}
.why-card {
  background: #fff;
  padding: var(--s-5);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  color: var(--accent-deep);
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: var(--s-2); }
.why-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- Related strip ---------- */
.related-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
}
.related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  color: var(--ink) !important;
  transition: transform .18s ease, box-shadow .18s ease;
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--accent);
}
.related-card .kicker {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.related-card h3 { font-size: 1.1rem; margin: 0 0 var(--s-2); }
.related-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.rc-price {
  display: inline-block;
  margin-top: var(--s-3);
  font-family: var(--display);
  font-size: .9rem;
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Highlight panel ---------- */
.hl-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--s-6);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--shadow-1);
}
.hl-panel-copy h3 { margin-top: 0; }
.hl-panel-side {
  background: var(--bg-cream);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  color: var(--ok);
  font-weight: 700;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--ink);
  color: #fffaf2;
  border-radius: var(--r-xl);
  padding: var(--s-6) var(--s-6);
  margin: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--s-5);
}
.stat { text-align: center; }
.stat .num {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  color: #fffaf2;
  line-height: 1.05;
}
.stat .lbl {
  display: block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #c2a47a;
  margin-top: 6px;
}

/* ---------- Favorites / Price table ---------- */
.fav-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.fav-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
}
.fav-table thead th {
  text-align: left;
  background: var(--bg-cream);
  color: var(--ink);
  padding: 14px var(--s-5);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--line);
}
.fav-table tbody td {
  padding: 14px var(--s-5);
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
}
.fav-table tbody tr:last-child td { border-bottom: 0; }
.fav-table tbody td:last-child {
  font-family: var(--display);
  color: var(--accent-deep);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

/* ---------- Menu list (the full priced menu) ---------- */
.menu-list {
  display: grid;
  gap: var(--s-4);
}
.menu-category {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  scroll-margin-top: 100px;
}
.menu-category h3 {
  margin: 0 0 var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
}
.menu-category h3 .cat-count {
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-3) var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--line-soft);
  align-items: baseline;
}
.menu-row:last-child { border-bottom: 0; }
.menu-row .item-name {
  font-weight: 600;
  color: var(--ink);
  margin-right: var(--s-2);
}
.menu-row .item-desc {
  display: block;
  color: var(--ink-soft);
  font-size: .92rem;
  margin-top: 4px;
}
.menu-row .item-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-left: var(--s-2);
  vertical-align: middle;
}
.menu-row .item-price {
  font-family: var(--display);
  font-weight: 600;
  color: var(--accent-deep);
  white-space: nowrap;
  font-size: 1.02rem;
}
.menu-row .item-price.np {
  color: var(--ink-mute);
  font-style: italic;
  font-size: .85rem;
  font-family: var(--body);
  font-weight: 500;
}

/* Menu navigation grid (category jump links) */
.menu-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-3);
}
.menu-nav-link {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-4);
  text-align: left;
  color: var(--ink) !important;
  font-weight: 500;
  transition: all .15s ease;
}
.menu-nav-link:hover {
  border-color: var(--accent);
  background: var(--bg-cream);
  color: var(--accent-deep) !important;
}
.menu-nav-link small {
  display: block;
  margin-top: 4px;
  font-size: .78rem;
  color: var(--ink-mute);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- Tag chips ---------- */
.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--bg-cream);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.tag-seasonal      { background: #fce8d6; color: #9a3f1c; border-color: #f0c8a8; }
.tag-vegan         { background: #e3f0dc; color: #3f6638; border-color: #cbe2c0; }
.tag-vegetarian    { background: #edf3e6; color: #4f7d4b; border-color: #d6e4c8; }
.tag-gf            { background: #fbf0d4; color: #8c6a13; border-color: #efdca8; }
.tag-spicy         { background: #fce0d8; color: #a83018; border-color: #f5bca8; }
.tag-new           { background: #e6e3f6; color: #4a3f8b; border-color: #d2cdec; }
.tag-allergen-peanut { background: #f6e4d0; color: #7a4810; border-color: #e8c79c; }
.tag-allergen-dairy  { background: #eef0fa; color: #4a5380; border-color: #d6dcef; }
.tag-allergen-gluten { background: #f6efde; color: #7a5a1a; border-color: #e8d9aa; }
.tag-allergen-egg    { background: #fdf3d3; color: #806014; border-color: #f0deaa; }
.tag-allergen-soy    { background: #efe7d4; color: #695a30; border-color: #ddd1ad; }

/* ---------- Pair card ---------- */
.pair-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: center;
  text-align: center;
}
.pair-line {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
}
.dot.alt { background: var(--accent-2); }
.pair-plus {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ---------- Bar-chart infographic ---------- */
.ig-bars {
  display: grid;
  gap: var(--s-3);
}
.ig-row {
  display: grid;
  grid-template-columns: 130px 1fr 60px;
  gap: var(--s-3);
  align-items: center;
  font-size: .9rem;
}
.ig-row .ig-label { color: var(--ink-soft); font-weight: 500; }
.ig-track {
  background: var(--line-soft);
  height: 10px;
  border-radius: var(--r-pill);
  overflow: hidden;
}
.ig-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: var(--r-pill);
}
.ig-row .ig-val {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

/* ---------- Note banner ---------- */
.note-banner {
  background: var(--bg-cream);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  color: var(--ink-soft);
  font-size: .93rem;
}
.note-banner strong { color: var(--ink); }

/* ---------- Value strip (for fast-food value menus etc.) ---------- */
.value-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--s-4);
}
.value-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  text-align: center;
}
.value-item .vnum {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--accent-deep);
  line-height: 1.1;
  display: block;
}
.value-item small {
  display: block;
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--ink) 0%, var(--bg-mid) 100%);
  color: #fffaf2;
  border-radius: var(--r-xl);
  padding: var(--s-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(194,86,42,.32) 0%, transparent 70%);
}
.cta-strip > * { position: relative; }
.cta-strip h2 { color: #fffaf2; margin-bottom: var(--s-3); }
.cta-strip p {
  color: #d9ccb7;
  max-width: 56ch;
  margin: 0 auto var(--s-5);
}
.cta-strip .btn-ghost {
  color: #fffaf2 !important;
  border-color: rgba(255,250,242,.3);
}
.cta-strip .btn-ghost:hover {
  background: rgba(255,250,242,.08);
  border-color: #fffaf2;
}

/* ---------- FAQ accordion ---------- */
.faq {
  display: grid;
  gap: var(--s-3);
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0;
  overflow: hidden;
  transition: box-shadow .15s ease;
}
.faq details[open] { box-shadow: var(--shadow-1); border-color: var(--accent-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) var(--s-5);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  padding-right: 50px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: var(--s-5); top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "−";
}
.faq .faq-body {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--ink-soft);
}
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #c2b29a;
  padding: var(--s-8) 0 var(--s-5);
}
.site-footer .container > .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-6);
}
.site-footer h4 {
  color: #fffaf2;
  font-family: var(--body);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: var(--s-4);
  font-weight: 600;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li { margin-bottom: var(--s-2); }
.site-footer a {
  color: #c2b29a;
  font-size: .94rem;
}
.site-footer a:hover { color: #fffaf2; }
.footer-brand .brand { color: #fffaf2; }
.footer-blurb {
  font-size: .94rem;
  margin-top: var(--s-3);
  color: #c2b29a;
}
.footer-bottom {
  border-top: 1px solid #3a2e22;
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  font-size: .86rem;
  color: #97876f;
}
.disclaimer-block {
  background: #2a221a;
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  margin: var(--s-5) 0 0;
  font-size: .88rem;
  color: #c2b29a;
  line-height: 1.55;
}
.disclaimer-block strong { color: #fffaf2; }

/* ---------- Homepage directory ---------- */
.dir-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  max-width: 540px;
  box-shadow: var(--shadow-1);
  margin: var(--s-5) 0 var(--s-6);
}
.dir-search input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: var(--body);
  font-size: 1rem;
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
}
.cuisine-group { margin-bottom: var(--s-8); }
.cuisine-group h2 {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--s-5);
}
.cuisine-group h2 .count {
  font-family: var(--body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--s-4);
}
.dir-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  color: var(--ink) !important;
  transition: all .18s ease;
  position: relative;
}
.dir-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--accent);
}
.dir-card .dir-brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.dir-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-cream) 100%);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.dir-card h3 {
  font-size: 1.1rem;
  margin: 0;
}
.dir-card .dir-meta {
  display: flex;
  gap: var(--s-3);
  font-size: .82rem;
  color: var(--ink-mute);
  margin-bottom: var(--s-3);
}
.dir-card .dir-meta span { display: inline-flex; align-items: center; gap: 4px; }
.dir-card p {
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Static info pages ---------- */
.info-prose {
  max-width: 760px;
  font-size: 1.05rem;
}
.info-prose h2 { margin-top: var(--s-7); }
.info-prose h3 { margin-top: var(--s-6); }
.info-prose ul li { margin-bottom: var(--s-2); }

/* ---------- Menu at a glance (SEO: high-intent panel right under hero) ---------- */
.menu-tldr {
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--shadow-1);
  margin-top: calc(var(--s-7) * -1);
  position: relative;
  z-index: 2;
}
.menu-tldr h2 {
  font-size: 1.4rem;
  margin: 0 0 var(--s-2);
}
.menu-tldr .tldr-sub {
  color: var(--ink-mute);
  font-size: .92rem;
  margin: 0 0 var(--s-5);
}
.tldr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-3);
}
.tldr-item {
  background: var(--bg-cream);
  border-radius: var(--r-md);
  padding: var(--s-4);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tldr-item .ti-name {
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.25;
}
.tldr-item .ti-price {
  font-family: var(--display);
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 1.05rem;
}
.tldr-item .ti-note {
  font-size: .8rem;
  color: var(--ink-mute);
}

/* ---------- Intent grid (quick answers — Cheapest / Popular / Newest / Best deal) ---------- */
.intent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
}
.intent-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.intent-card .ic-label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-mute);
  font-weight: 600;
}
.intent-card .ic-answer {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.intent-card .ic-price {
  color: var(--accent-deep);
  font-family: var(--display);
  font-weight: 600;
}
.intent-card .ic-note {
  color: var(--ink-soft);
  font-size: .88rem;
  margin: 0;
}

/* ---------- Combo / Meal-deal table ---------- */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
}
.combo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-1);
}
.combo-card h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
  font-size: 1.1rem;
  margin: 0 0 var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.combo-card h3 .combo-price {
  font-family: var(--display);
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
}
.combo-card .combo-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-3);
}
.combo-card .combo-includes li {
  padding: 5px 0 5px 18px;
  position: relative;
  color: var(--ink-soft);
  font-size: .94rem;
}
.combo-card .combo-includes li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.combo-card .combo-includes li:first-child::before { content: "•"; color: var(--accent-deep); }
.combo-card .combo-note {
  font-size: .85rem;
  color: var(--ink-mute);
  margin: 0;
  padding-top: var(--s-2);
  border-top: 1px dashed var(--line);
}

/* ---------- Size matrix (S/M/L tables for sized items) ---------- */
.size-matrix {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.size-matrix table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.size-matrix thead th {
  background: var(--bg-cream);
  padding: 12px var(--s-4);
  text-align: left;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.size-matrix thead th:not(:first-child) { text-align: right; }
.size-matrix tbody td {
  padding: 12px var(--s-4);
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
}
.size-matrix tbody tr:last-child td { border-bottom: 0; }
.size-matrix tbody td:first-child {
  color: var(--ink);
  font-weight: 500;
}
.size-matrix tbody td:not(:first-child) {
  font-family: var(--display);
  color: var(--accent-deep);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

/* ---------- Rank list (Top 5 cheapest / most popular) ---------- */
.rank-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-3);
}
.rank-list li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: var(--s-4);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-4);
}
.rank-list .rl-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  line-height: 1;
}
.rank-list .rl-name {
  font-weight: 600;
  color: var(--ink);
}
.rank-list .rl-name small {
  display: block;
  font-weight: 400;
  color: var(--ink-mute);
  font-size: .82rem;
  margin-top: 2px;
}
.rank-list .rl-price {
  font-family: var(--display);
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
}

/* "What's new" / LTO callout */
.lto-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
}
.lto-card {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
  border: 1px solid var(--accent-soft);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  position: relative;
}
.lto-card .lto-tag {
  display: inline-block;
  background: var(--accent);
  color: #fffaf2;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-3);
}
.lto-card h3 { margin: 0 0 var(--s-2); font-size: 1.08rem; }
.lto-card p { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.lto-card .lto-price {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--display);
  color: var(--accent-deep);
  font-weight: 600;
}

/* ---------- Comparison strip (vs. peers) ---------- */
.compare-table {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.compare-table thead th {
  background: var(--ink);
  color: #fffaf2;
  padding: 12px var(--s-4);
  text-align: left;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.compare-table thead th:not(:first-child) { text-align: right; }
.compare-table tbody td {
  padding: 12px var(--s-4);
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr.is-self td { background: var(--bg-cream); }
.compare-table tbody tr.is-self td:first-child { color: var(--ink); font-weight: 600; }
.compare-table tbody td:first-child { color: var(--ink); font-weight: 500; }
.compare-table tbody td:not(:first-child) {
  font-family: var(--display);
  color: var(--accent-deep);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

/* ---------- Quick TOC (jump-to anchor list right under hero) ---------- */
.quick-toc {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: .92rem;
}
.quick-toc strong {
  color: var(--ink);
  margin-right: var(--s-2);
}
.quick-toc a {
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--ink-mute);
  padding-bottom: 1px;
}
.quick-toc a:hover { color: var(--accent-deep); border-bottom-color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .split { grid-template-columns: 1fr; gap: var(--s-6); }
  .hl-panel { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer .container > .footer-grid { grid-template-columns: 1fr 1fr; }
  .ig-row { grid-template-columns: 100px 1fr 50px; }
}

@media (max-width: 960px) {
  .menu-tldr { margin-top: var(--s-5); }
  .rank-list li { grid-template-columns: 32px 1fr auto; gap: var(--s-3); padding: var(--s-3) var(--s-4); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: var(--s-7) 0; }
  .site-header .container { padding-top: var(--s-3); padding-bottom: var(--s-3); }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    flex-direction: column;
    align-items: stretch;
    padding: var(--s-4) var(--s-5);
    gap: var(--s-3);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 8px 0; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .site-footer .container > .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .menu-row { grid-template-columns: 1fr; }
  .menu-row .item-price { justify-self: start; }
  .stats-band { padding: var(--s-5); }
  .cta-strip { padding: var(--s-6) var(--s-5); }
  .ig-row { grid-template-columns: 1fr; gap: 6px; }
  .ig-row .ig-val { text-align: left; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }
  .container { padding: 0 var(--s-4); }
  .hero-card { padding: var(--s-5); }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .top-disclaimer, .cta-strip { display: none; }
  body { background: #fff; }
  .section { padding: var(--s-5) 0; }
  .menu-category, .soft-card { break-inside: avoid; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-mute); }
.small { font-size: .88rem; }
.nowrap { white-space: nowrap; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
