/* ============================================================
   Golden Corral Menu & Prices Guide — Design System
   An independent Golden Corral menu & prices guide
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand-neutral warm palette */
  --cream:        #FBF6EC;
  --cream-2:      #F4EADA;
  --paper:        #FFFFFF;
  --ink:          #241d17;
  --ink-soft:     #4a3f36;
  --muted:        #7a6d60;
  --line:         #e7dcc9;

  /* Golden Corral official brand scheme: candy-apple red + golden yellow */
  --gold:         #F2A81D;   /* brand gold / secondary */
  --gold-deep:    #B4770F;   /* legible gold text on light */
  --gold-soft:    #FCEBC6;   /* light gold tint */
  --ember:        #D81F2A;   /* brand red / primary CTA */
  --ember-deep:   #A5121B;
  --sage:         #4E7A5A;   /* fresh / "open now" cue only */
  --sage-soft:    #e3ede4;

  --charcoal:     #241d17;   /* dark sections */
  --charcoal-2:   #2f2721;

  --shadow-sm: 0 1px 2px rgba(36,29,23,.06), 0 1px 3px rgba(36,29,23,.08);
  --shadow-md: 0 6px 18px rgba(36,29,23,.10), 0 2px 6px rgba(36,29,23,.06);
  --shadow-lg: 0 18px 44px rgba(36,29,23,.16);

  --radius:   14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --gap: clamp(16px, 3vw, 28px);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ember); text-decoration: none; }
a:hover { color: var(--ember-deep); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: .35rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 32px); }
.container-narrow { max-width: 820px; }
.section { padding-block: clamp(48px, 7vw, 90px); }
.section-tight { padding-block: clamp(32px, 4vw, 52px); }
.bg-paper { background: var(--paper); }
.bg-cream2 { background: var(--cream-2); }
.bg-dark { background: var(--charcoal); color: #f3e9da; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-gold-soft { background: var(--gold-soft); }
.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: .8rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.bg-dark .eyebrow { color: var(--gold); }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.bg-dark .lead { color: #d8cbb8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 700; font-size: 1rem; padding: .8em 1.5em; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ember); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ember-deep); color: #fff; box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #3a2708; }
.btn-gold:hover { background: var(--gold-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.bg-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.bg-dark .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { font-size: 1.08rem; padding: .95em 1.9em; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .card-icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px;
  background: var(--gold-soft); color: var(--gold-deep); font-size: 1.6rem; margin-bottom: 1rem;
}
.card h3 { margin-bottom: .4rem; }
.card p:last-child { margin-bottom: 0; }

/* ---------- Badges / pills ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .4em; font-size: .78rem; font-weight: 700;
  padding: .35em .8em; border-radius: var(--radius-pill); letter-spacing: .02em;
}
.badge-gold { background: var(--gold-soft); color: var(--gold-deep); }
.badge-ember { background: #fbe3df; color: var(--ember-deep); }
.badge-sage { background: var(--sage-soft); color: var(--sage); }
.badge-new { background: var(--ember); color: #fff; }

/* ---------- Price cards ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--gap); }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center; position: relative; box-shadow: var(--shadow-sm);
}
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-md); }
.price-card.featured::before {
  content: "Best Value"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #3a2708; font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: .4em .9em; border-radius: var(--radius-pill);
}
.price-card .tier { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: .2rem; }
.price-card .price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--gold-deep); line-height: 1; }
.price-card .price small { font-size: .95rem; color: var(--muted); font-weight: 400; }
.price-card .price-note { color: var(--muted); font-size: .9rem; margin-top: .35rem; }
.price-card ul { text-align: left; list-style: none; padding: 0; margin: 18px 0 0; }
.price-card ul li { padding-left: 1.6em; position: relative; font-size: .95rem; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 800; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--paper); }
table.menu-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.menu-table caption { text-align: left; padding: 16px 20px; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); background: var(--gold-soft); }
.menu-table thead th { background: var(--charcoal); color: #f3e9da; text-align: left; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; padding: 12px 20px; font-weight: 700; }
.menu-table th, .menu-table td { padding: 13px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.menu-table tbody tr:nth-child(even) { background: #fdfaf3; }
.menu-table tbody tr:hover { background: var(--gold-soft); }
.menu-table td.num, .menu-table th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Mobile: fit tables without horizontal scrolling */
@media (max-width: 640px) {
  table.menu-table { min-width: 0; font-size: .85rem; }
  .menu-table caption { padding: 12px 14px; font-size: 1.05rem; line-height: 1.3; }
  .menu-table thead th { padding: 10px 12px; font-size: .7rem; letter-spacing: .04em; }
  .menu-table th, .menu-table td { padding: 10px 12px; }
  .menu-table .item-desc { font-size: .78rem; }
  .menu-table .num { white-space: nowrap; }
}
@media (max-width: 480px) {
  table.menu-table { font-size: .75rem; }
  .menu-table caption { padding: 10px 12px; font-size: .95rem; }
  .menu-table thead th { padding: 8px 7px; font-size: .62rem; letter-spacing: .02em; }
  .menu-table th, .menu-table td { padding: 8px 7px; }
  .menu-table .item-desc { font-size: .7rem; }
  /* let price ranges wrap at the dash instead of forcing sideways scroll */
  .menu-table td.num, .menu-table th.num { white-space: normal; } /* wraps at the – dash, never mid-number */
}
.menu-table .price-cell { font-weight: 700; color: var(--gold-deep); }
.menu-table .item-name { font-weight: 600; color: var(--ink); }
.menu-table .item-desc { color: var(--muted); font-size: .88rem; display: block; margin-top: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #fff 0%, var(--cream) 45%, var(--cream-2) 100%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,56px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } .hero .btn-row { justify-content: center; } }
.hero h1 span { color: var(--gold-deep); }
.hero-art {
  aspect-ratio: 4/3.4; border-radius: var(--radius-lg); background: var(--gold-soft);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.hero-badge {
  position: absolute; background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 12px 16px; font-size: .85rem; font-weight: 700; display: flex; align-items: center; gap: 10px;
}
.hero-badge .big { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-deep); }

/* Decorative food emoji plate used as lightweight imagery */
.food-plate { font-size: clamp(4rem, 14vw, 8rem); filter: drop-shadow(0 10px 18px rgba(0,0,0,.18)); }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
@media (max-width:720px){ .stat-strip{ grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; padding: 10px; }
.stat .n { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.6rem); color: var(--gold-deep); line-height:1; }
.bg-dark .stat .n { color: var(--gold); }
.stat .l { font-size: .85rem; color: var(--muted); letter-spacing: .03em; }
.bg-dark .stat .l { color: #c9bba7; }

/* ---------- Page header (interior pages) ---------- */
.page-hero { background: linear-gradient(160deg, var(--charcoal) 0%, #3a2f26 100%); color: #f3e9da; padding-block: clamp(44px, 6vw, 76px); }
.page-hero.photo { background: linear-gradient(90deg, rgba(20,15,11,.94) 0%, rgba(20,15,11,.66) 58%, rgba(20,15,11,.42) 100%), var(--hero-img, none); background-size: cover; background-position: center; }
/* Ghost buttons sit on the dark hero — force legible light styling regardless of inline overrides */
.page-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.page-hero .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #e0d3c0; max-width: 680px; }
.breadcrumbs { font-size: .85rem; color: #c9bba7; margin-bottom: 1rem; }
.breadcrumbs a { color: var(--gold); }
.breadcrumbs span { opacity: .6; margin-inline: .4em; }

/* ---------- FAQ accordion ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-deep); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--ink-soft); }

/* ---------- Callout / notes ---------- */
.callout { border-left: 4px solid var(--gold); background: var(--gold-soft); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; }
.callout.ember { border-color: var(--ember); background: #fbe3df; }
.callout.sage { border-color: var(--sage); background: var(--sage-soft); }
.callout strong { display: block; margin-bottom: .2rem; }

/* ---------- Feature list w/ icons ---------- */
.feature-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list .ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px; background: var(--sage-soft); color: var(--sage); display: grid; place-items: center; font-weight: 800; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--ember) 0%, var(--gold-deep) 100%); color: #fff; border-radius: var(--radius-lg); padding: clamp(32px,5vw,56px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #ffe9d8; }

/* ---------- Prose (article pages) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose ul li { margin-bottom: .5rem; }

/* ---------- Disclaimer bar ---------- */
.disclaimer {
  background: var(--cream-2); border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line);
  font-size: .85rem; color: var(--muted); text-align: center; padding: 14px 20px;
}

/* ============================================================
   HEADER / NAV  (injected by main.js)
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,246,236,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
/* Top utility bar (company / legal links) */
.topbar { background: var(--charcoal); color: #cdbfae; font-size: .8rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 34px; }
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-links a { color: #cdbfae; font-weight: 500; }
.topbar-links a:hover { color: var(--gold); }
.topbar-links a[aria-current="page"] { color: var(--gold); }
.topbar-note { color: #9c8d7b; white-space: nowrap; }
@media (max-width: 1040px) { .topbar { display: none; } }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand .logo { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--gold) 0%, var(--ember) 100%); display: grid; place-items: center; color: #fff; font-size: 1.25rem; box-shadow: var(--shadow-sm); }
.brand small { display: block; font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a, .nav-link { display: inline-flex; align-items: center; gap: 5px; padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: .95rem; color: var(--ink-soft); }
.nav-menu > li > a:hover, .nav-link:hover { background: var(--gold-soft); color: var(--gold-deep); }
.nav-menu .has-dd > .nav-link::after { content: "▾"; font-size: .7em; opacity: .6; }

.dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .16s ease; }
.nav-menu > li.has-dd:hover .dropdown, .nav-menu > li.has-dd:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .92rem; color: var(--ink-soft); font-weight: 500; }
.dropdown a:hover { background: var(--gold-soft); color: var(--gold-deep); }
.dropdown a b { display: block; font-weight: 700; color: var(--ink); }
.dropdown a span { font-size: .8rem; color: var(--muted); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; border-radius: 10px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px; max-height: calc(100vh - 70px);
    overflow-y: auto; box-shadow: var(--shadow-lg); transform: translateY(-120%); transition: transform .25s ease; z-index: 99;
  }
  .site-header.open .nav-menu { transform: translateY(0); overscroll-behavior: contain; }
  .nav-menu > li > a, .nav-link { width: 100%; padding: 12px 14px; }
  .dropdown { position: static; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--gold-soft); border-radius: 0; margin: 2px 0 6px 14px; padding: 2px 0; display: none; opacity: 1; visibility: visible; }
  .nav-menu .has-dd.expanded > .dropdown { display: block; }
  .nav-menu .has-dd > .nav-link::after { margin-left: auto; transition: transform .18s ease; }
  .nav-menu .has-dd.expanded > .nav-link::after { transform: rotate(180deg); }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle { flex: 0 0 auto; }
}
@media (max-width: 560px) {
  .nav { gap: 8px; }
  .nav-cta .btn-primary { padding: 9px 14px; font-size: .85rem; }
  .brand { font-size: 1.1rem; }
  .brand small { letter-spacing: .08em; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); color: #cdbfae; padding-block: clamp(44px, 6vw, 68px) 0; }
.site-footer a { color: #cdbfae; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: #9c8d7b; }
.footer-brand p { color: #a89a88; font-size: .92rem; max-width: 300px; margin-top: 12px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: .93rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding: 22px 0; font-size: .82rem; color: #8f8070; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.footer-disclaimer { background: #1c1712; color: #8f8070; font-size: .8rem; text-align: center; padding: 16px 20px; line-height: 1.6; }

/* ============================================================
   MODERN MEDIA COMPONENTS (photos, video, maps)
   ============================================================ */

/* Full-bleed photo hero */
.hero-photo { position: relative; min-height: min(84vh, 720px); display: flex; align-items: flex-end; overflow: hidden; background: var(--charcoal); }
.hero-photo .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.hero-photo .hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,15,11,.92) 0%, rgba(20,15,11,.72) 42%, rgba(20,15,11,.25) 100%); }
.hero-photo .container { position: relative; z-index: 2; padding-block: clamp(40px, 7vw, 90px); }
.hero-photo h1, .hero-photo p, .hero-photo .eyebrow { color: #fff; }
.hero-photo h1 { text-shadow: 0 2px 30px rgba(0,0,0,.35); max-width: 16ch; }
.hero-photo h1 span { color: var(--gold); }
.hero-photo .lead { color: #f0e6d8; max-width: 46ch; }
.hero-photo .eyebrow { color: var(--gold); }
.hero-photo .eyebrow::before { background: var(--gold); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-badges .hb { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px); color: #fff; padding: .55em 1em; border-radius: var(--radius-pill); font-weight: 600; font-size: .9rem; }
.hero-badges .hb b { color: var(--gold); }

/* Dish photo cards */
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--gap); }
.dish-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.dish-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dish-card .dish-img { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.dish-card .dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dish-card:hover .dish-img img { transform: scale(1.06); }
.dish-card .dish-tag { position: absolute; top: 12px; left: 12px; background: rgba(20,15,11,.72); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .35em .8em; border-radius: var(--radius-pill); backdrop-filter: blur(4px); }
.dish-card .dish-price { position: absolute; bottom: 12px; right: 12px; background: var(--gold); color: #3a2708; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; padding: .25em .7em; border-radius: 10px; box-shadow: var(--shadow-sm); }
.dish-card .dish-body { padding: 18px 20px 22px; }
.dish-card .dish-body h3 { margin-bottom: .35rem; }
.dish-card .dish-body p { margin: 0; color: var(--muted); font-size: .92rem; }

/* Split image + content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 60px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Responsive embeds (YouTube 16:9, maps) */
.embed { position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); background: var(--charcoal); }
.embed::before { content: ""; display: block; padding-top: 56.25%; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed.embed-map::before { padding-top: 66%; }
@media (max-width: 620px) { .embed.embed-map::before { padding-top: 90%; } }

/* Image tiles with caption (category imagery) */
.img-tile { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-sm); }
.img-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.img-tile:hover img { transform: scale(1.07); }
.img-tile .img-cap { position: absolute; inset: auto 0 0 0; background: linear-gradient(transparent, rgba(20,15,11,.85)); color: #fff; font-weight: 700; padding: 26px 14px 12px; font-size: .95rem; }

/* Decorative divider */
.divider-eat { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold-deep); font-size: 1.3rem; margin: 4px 0; }
.divider-eat::before, .divider-eat::after { content: ""; height: 1px; width: min(120px, 20vw); background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-eat::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* Today's hours widget */
.hours-widget { display: grid; gap: 2px; }
.hours-widget .hrow { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-radius: 10px; font-size: .95rem; }
.hours-widget .hrow:nth-child(odd) { background: var(--cream-2); }
.hours-widget .hrow.today { background: var(--gold-soft); border: 1px solid var(--gold); font-weight: 700; }
.hours-widget .hrow .d { font-weight: 600; }
.hours-widget .hrow .t { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.hours-widget .hrow.today .t { color: var(--gold-deep); }
.badge-open { display: inline-flex; align-items: center; gap: 6px; background: var(--sage-soft); color: var(--sage); font-weight: 700; font-size: .8rem; padding: .3em .8em; border-radius: var(--radius-pill); }
.badge-open::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--dot, var(--sage)); box-shadow: 0 0 0 3px rgba(78,122,90,.25); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.hidden { display: none; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .4em .9em; font-size: .88rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: .15s; }
.chip:hover, .chip.active { background: var(--gold); color: #3a2708; border-color: var(--gold); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
