/* Unique Taste of Soul, shared stylesheet */

@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/nunito-sans.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url('../fonts/playfair-display.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg:          #FBF6EE;
  --bg-alt:      #F3E7D1;
  --surface:     #FFFFFF;
  --maroon:      #7A1220;
  --maroon-deep: #4A0D16;
  --gold:        #B8862A;
  --gold-dark:   #8C6620;
  --gold-bright: #EFCB74;
  --ink:         #2A1710;
  --ink-muted:   #6B5142;
  --cream:       #FBF1E1;
  --cream-muted: rgba(251, 241, 225, 0.78);
  --white:       #FFFFFF;
  --border:      rgba(42, 23, 16, 0.12);
  --border-dark: rgba(251, 241, 225, 0.20);
  --radius:      14px;
  --font-body:   'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head:   'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.18; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 800; font-size: 0.95rem;
  font-family: var(--font-body); letter-spacing: 0.02em;
  border: none; cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #2A1508; box-shadow: 0 0 0 rgba(184,134,42,0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,134,42,0.32); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--gold-dark); color: var(--gold-dark); transform: translateY(-2px); }
/* On dark maroon sections (hero, cta-banner, warranty-band), the outline button needs light text/border */
.hero .btn-secondary, .cta-banner .btn-secondary, .warranty-band .btn-secondary { color: var(--cream); border-color: var(--border-dark); }
.hero .btn-secondary:hover, .cta-banner .btn-secondary:hover, .warranty-band .btn-secondary:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.btn-block { width: 100%; }
.btn small { display: block; font-size: 0.7rem; opacity: 0.8; font-weight: 600; letter-spacing: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(251,246,238,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 6px 24px; max-width: 1180px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; letter-spacing: 0.01em; color: var(--ink); }
/* One fixed size, fully contained inside the header bar at all times, no
   overflow and no scroll-based resizing, so it never overlaps page content.
   The source file (images/brand/logo.png) is cropped tight to its visible
   artwork, previously it had a huge transparent margin baked in, so this
   height renders a much bigger logo than the same number did before. */
.logo-mark { height: 110px; width: auto; display: block; margin: 0; }
.site-footer .logo-mark { height: 150px; margin: 0; }
@media (max-width: 620px) {
  .header-inner { padding: 4px 24px; }
  .logo-mark { height: 70px; }
  .site-footer .logo-mark { height: 100px; }
}
.nav-desktop { display: none; align-items: center; gap: 40px; }
.nav-desktop a { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink-muted); transition: color 0.2s; position: relative; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--ink); }
.nav-desktop a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--gold-dark); }
@media (min-width: 900px) { .nav-desktop { display: flex; } }
.header-actions { display: flex; align-items: center; gap: 16px; }
.call-link { display: none; }
@media (min-width: 900px) {
  .call-link { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); transition: background 0.2s, color 0.2s; }
  .call-link:hover { background: var(--gold); color: #2A1508; }
}
.order-pill { display: none; }
@media (min-width: 900px) {
  .order-pill { display: inline-flex; align-items: center; gap: 8px; padding: 15px 30px; border-radius: 999px; background: var(--gold); color: #2A1508; border: none; font-weight: 800; font-size: 1.02rem; transition: transform 0.2s, box-shadow 0.2s; }
  .order-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(184,134,42,0.3); }
}
.hamburger { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; z-index: 600; }
.hamburger span { display: block; height: 2px; width: 26px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .hamburger { display: none; } }

.mobile-nav {
  position: fixed; inset: 0; background: var(--bg); z-index: 400;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), visibility 0.35s, transform 0.35s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.mobile-nav a.active { color: var(--gold-dark); }
@media (min-width: 900px) { .mobile-nav { display: none; } }

/* ---------- Hero: pure black, split layout with a photo swiper on the right ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 158px 0 80px; overflow: hidden; background: #000; }
@media (max-width: 620px) { .hero { padding-top: 108px; } }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-content { max-width: 100%; }
.hero .eyebrow { color: var(--gold-bright); }
.hero .eyebrow::before { background: var(--gold-bright); }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); margin-bottom: 20px; color: var(--cream); }
.hero h1 .accent { color: var(--gold-bright); }
.hero p.lead { font-size: 1.15rem; color: var(--cream-muted); max-width: 520px; margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badge { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: rgba(251,241,225,0.06); border: 1px solid rgba(251,241,225,0.16); font-size: 0.82rem; font-weight: 700; color: var(--cream-muted); }
.hero-badge svg { color: var(--gold-bright); flex-shrink: 0; }

/* Hero photo stack: a handful of real dish photos scattered like they were
   tossed on a table, static, no auto-motion. Only reacts on hover. */
.hero-stack { position: relative; aspect-ratio: 4/5; }
@media (max-width: 900px) { .hero-stack { aspect-ratio: 5/4; width: 100%; max-width: 460px; margin: 0 auto; } }
.stack-photo {
  position: absolute; width: 60%; aspect-ratio: 1/1; border-radius: 16px; overflow: hidden;
  border: 7px solid var(--cream); box-shadow: 0 18px 36px rgba(0,0,0,0.5);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), z-index 0s;
}
.stack-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stack-photo:hover { z-index: 10; box-shadow: 0 24px 46px rgba(0,0,0,0.6); }
.stack-photo.p1 { width: 66%; top: 2%; left: 0; transform: rotate(-6deg); z-index: 1; }
.stack-photo.p1:hover { transform: rotate(-6deg) scale(1.04); }
.stack-photo.p2 { width: 44%; top: 0; right: 0; transform: rotate(8deg); z-index: 2; }
.stack-photo.p2:hover { transform: rotate(8deg) scale(1.06); }
.stack-photo.p3 { width: 42%; bottom: 4%; left: 4%; transform: rotate(-10deg); z-index: 3; }
.stack-photo.p3:hover { transform: rotate(-10deg) scale(1.06); }
.stack-photo.p4 { width: 38%; bottom: 0; right: 8%; transform: rotate(6deg); z-index: 4; }
.stack-photo.p4:hover { transform: rotate(6deg) scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Trust bar ---------- */
.trust-bar { padding: 20px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px; text-align: center; }
.trust-row div { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 700; color: var(--ink-muted); }
.trust-row svg { color: var(--gold-dark); flex-shrink: 0; }

/* ---------- Section heads ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: var(--ink-muted); font-size: 1.05rem; }
.section-alt { background: var(--bg-alt); }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; box-shadow: 0 1px 3px rgba(42,23,16,0.05);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(184,134,42,0.5); box-shadow: 0 16px 32px rgba(42,23,16,0.10); }
.card .icon-wrap { width: 52px; height: 52px; border-radius: 12px; background: rgba(184,134,42,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--gold-dark); }
.card h3 { font-size: 1.15rem; margin-bottom: 12px; letter-spacing: 0.01em; }
.card p { color: var(--ink-muted); font-size: 0.95rem; }
.card .tag { display: inline-block; margin-top: 16px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-dark); }

/* ---------- Expanding cards (click to expand, others collapse to a strip) ----------
   Adapted from "Expanding flex cards" by Zed Dash (codepen.io/z-/pen/OBPJKK):
   a row of flex items where the active one grows via flex-grow and the rest
   collapse to thin strips, each with a real dish photo as its background. */
.expand-cards { display: flex; flex-direction: row; align-items: stretch; overflow: hidden; width: 100%; max-width: 700px; height: 380px; margin: 0 auto; }
.expand-card {
  position: relative; display: block; overflow: hidden; flex-grow: 1; min-width: 50px; margin: 8px;
  border-radius: 22px; cursor: pointer; text-decoration: none;
  background-color: var(--bg-alt); background-size: auto 122%; background-position: center;
  transition: flex-grow 0.5s cubic-bezier(0.05,0.61,0.41,0.95), max-width 0.5s cubic-bezier(0.05,0.61,0.41,0.95),
              margin 0.5s cubic-bezier(0.05,0.61,0.41,0.95), border-radius 0.5s cubic-bezier(0.05,0.61,0.41,0.95),
              background-size 0.5s cubic-bezier(0.05,0.61,0.41,0.95);
}
.expand-card.active { flex-grow: 10000; max-width: 620px; margin: 0 6px; border-radius: 28px; background-size: auto 100%; }
.expand-card__shadow { position: absolute; inset: 0; pointer-events: none; transition: box-shadow 0.5s cubic-bezier(0.05,0.61,0.41,0.95); }
.expand-card:not(.active) .expand-card__shadow { box-shadow: inset 0 -60px 0px -40px rgba(20,9,7,0.55); }
.expand-card.active .expand-card__shadow { box-shadow: inset 0 -150px 110px -100px rgba(20,9,7,0.85); }
.expand-card__label { display: flex; align-items: center; position: absolute; right: 0; height: 40px; transition: left 0.5s cubic-bezier(0.05,0.61,0.41,0.95), bottom 0.5s cubic-bezier(0.05,0.61,0.41,0.95); }
.expand-card:not(.active) .expand-card__label { left: 8px; bottom: 10px; }
.expand-card.active .expand-card__label { left: 22px; bottom: 20px; }
.expand-card__icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; min-width: 40px; border-radius: 50%; background: var(--white); color: var(--maroon); box-shadow: 0 2px 8px rgba(20,9,7,0.25); }
.expand-card__info { display: flex; flex-direction: column; justify-content: center; margin-left: 10px; color: var(--white); white-space: pre; }
.expand-card__info > div { position: relative; transition: left 0.5s cubic-bezier(0.05,0.61,0.41,0.95), opacity 0.5s ease-out; }
.expand-card:not(.active) .expand-card__info > div { left: 16px; opacity: 0; }
.expand-card.active .expand-card__info > div { left: 0; opacity: 1; }
.expand-card__main { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.expand-card__sub { font-size: 0.8rem; opacity: 0.9; transition-delay: 0.1s; }
@media (max-width: 700px) { .expand-cards { max-width: 100%; height: 320px; } .expand-card.active { max-width: 440px; } }
@media (max-width: 480px) {
  .expand-cards { height: 260px; }
  .expand-card { min-width: 34px; margin: 6px; }
  .expand-card.active { margin: 0 4px; }
  .expand-card__icon { width: 32px; height: 32px; min-width: 32px; }
  .expand-card__main { font-size: 0.92rem; }
  .expand-card__sub { font-size: 0.72rem; }
}

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 1px 3px rgba(42,23,16,0.06); }
.split-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.02); transition: transform 0.6s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
/* Matches the real headshot photo's own aspect ratio, so the full photo
   shows with no cropping instead of being cover-cropped into a 4:3 box. */
.split-media.portrait { aspect-ratio: 1452 / 2048; }
.split-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 18px; }
.split-text p { color: var(--ink-muted); margin-bottom: 16px; }
.split-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.split-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.split-list svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 3px; }

/* ---------- Event list (editorial numbered list, not icon cards) ---------- */
.event-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
@media (max-width: 700px) { .event-list { grid-template-columns: 1fr; } }
.event-row { display: flex; gap: 22px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.event-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--gold-dark); opacity: 0.55; flex-shrink: 0; min-width: 54px; }
.event-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.event-body p { color: var(--ink-muted); font-size: 0.95rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step .num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px var(--gold-dark); opacity: 0.55; margin-bottom: 14px; display: block; }
.step h4 { font-size: 1rem; margin-bottom: 8px; }
.step p { color: var(--ink-muted); font-size: 0.88rem; }

/* ---------- Badge band (kept as a maroon/gold accent section) ---------- */
.warranty-band { background: linear-gradient(120deg, var(--maroon), var(--maroon-deep)); border-radius: 20px; padding: 48px; display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; }
.warranty-band .eyebrow { color: var(--gold-bright); }
.warranty-band .eyebrow::before { background: var(--gold-bright); }
.warranty-band .wtext { max-width: 520px; }
.warranty-band h3 { font-size: 1.6rem; margin-bottom: 12px; color: var(--cream); }
.warranty-band p { color: var(--cream-muted); }
.warranty-badge { width: 108px; height: 108px; border-radius: 50%; border: 2px dashed var(--gold-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; line-height: 1.3; color: var(--gold-bright); }

/* ---------- Gallery / Menu grid ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn { padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border); background: transparent; color: var(--ink-muted); font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; cursor: pointer; transition: all 0.25s var(--ease); }
.filter-btn:hover { color: var(--ink); border-color: var(--gold); }
.filter-btn.active { background: var(--gold); color: #2A1508; border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative; opacity: 1; transform: scale(1); box-shadow: 0 1px 3px rgba(42,23,16,0.08); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.gallery-item.hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; background: linear-gradient(0deg, rgba(20,9,7,0.85), transparent); color: var(--cream); font-size: 0.82rem; font-weight: 700; opacity: 0; transform: translateY(8px); transition: all 0.3s var(--ease); }
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

/* ---------- Menu dish cards ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dish-grid { grid-template-columns: 1fr; } }
.dish-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 3px rgba(42,23,16,0.05); transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.dish-card.hidden { display: none; }
.menu-category-head.hidden { display: none; }
.dish-card:hover { transform: translateY(-6px); border-color: rgba(184,134,42,0.5); box-shadow: 0 16px 32px rgba(42,23,16,0.10); }
.dish-photo { aspect-ratio: 1/1; overflow: hidden; }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.dish-card:hover .dish-photo img { transform: scale(1.06); }
.dish-body { padding: 20px 22px 24px; }
.dish-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.dish-body p { color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 14px; }
.dish-order { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-dark); }
.menu-category-head { display: flex; align-items: baseline; gap: 14px; margin: 64px 0 28px; }
.menu-category-head:first-of-type { margin-top: 0; }
.menu-category-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.menu-category-head .rule { flex: 1; height: 1px; background: var(--border); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 700; }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s var(--ease); color: var(--gold-dark); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--ink-muted); font-size: 0.95rem; }
.faq-note { margin-top: 18px; font-size: 0.82rem; color: var(--ink-muted); opacity: 0.8; font-style: italic; }

/* ---------- Contact ---------- */
.contact-single { max-width: 560px; margin: 0 auto; }
.info-block { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: none; }
.info-block .icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: rgba(184,134,42,0.14); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-block h4 { font-size: 0.95rem; margin-bottom: 4px; letter-spacing: 0; }
.info-block p, .info-block a { color: var(--ink-muted); font-size: 0.92rem; }
.info-block a:hover { color: var(--gold-dark); }
.form-note { margin-top: 14px; font-size: 0.78rem; color: var(--ink-muted); opacity: 0.8; text-align: center; }

/* ---------- CTA banner (kept as a maroon/gold accent section) ---------- */
.cta-banner { background: linear-gradient(120deg, var(--maroon), var(--maroon-deep)); border-radius: 20px; padding: 60px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(239,203,116,0.2), transparent 60%); }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; position: relative; color: var(--cream); }
.cta-banner p { color: var(--cream-muted); max-width: 480px; margin: 0 auto 30px; position: relative; }
.cta-banner .hero-ctas { justify-content: center; position: relative; }

/* ---------- Footer (kept as a maroon/gold accent section) ---------- */
.site-footer { background: var(--maroon-deep); padding: 60px 0 26px; }
.site-footer .logo { color: var(--cream); }
.site-footer .logo .mark { color: var(--gold-bright); }
.site-footer .logo-badge { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(251,241,225,0.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-grid h5 { font-size: 0.82rem; letter-spacing: 0.08em; color: rgba(251,241,225,0.55); margin-bottom: 18px; text-transform: uppercase; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: var(--cream-muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-about p { color: var(--cream-muted); font-size: 0.92rem; max-width: 320px; margin-top: 14px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; border-top: 1px solid var(--border-dark); font-size: 0.8rem; color: rgba(251,241,225,0.55); }

/* ---------- Page hero (interior pages, kept as a maroon/gold accent section) ---------- */
.page-hero { padding: 158px 0 70px; position: relative; overflow: hidden; }
@media (max-width: 620px) { .page-hero { padding-top: 108px; } }
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.46) saturate(1.25); }
.page-hero-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(42,10,15,0.42), var(--maroon-deep) 92%), radial-gradient(circle at 82% 15%, rgba(239,203,116,0.14), transparent 55%); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; color: var(--cream); }
.page-hero p { color: var(--cream-muted); max-width: 560px; font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--cream-muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.breadcrumb .accent { color: var(--gold-bright); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 60px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .two-col { grid-template-columns: 1fr; } }
