/* Mr. BBQ — Design System v2.0 */

/* ── Tokens ─────────────────────────────────────── */
:root {
  /* Base canvas */
  --bg:      #0a0807;
  --char:    #14110e;
  --coal:    #1f1a14;
  --soot:    #2a2520;
  --cream:   #f4ebd9;
  --paper:   #ddd1b8;

  /* Premium gold (semantic names) */
  --gold:        #d4a948;
  --gold-bright: #e6c068;
  --gold-deep:   #a07d2c;
  --walnut:      #6b4423;
  --espresso:    #3a2515;

  /* Legacy aliases — templates referencing --ember/--flame/--blood
     automatically pick up the gold/walnut palette */
  --ember:   #d4a948;
  --flame:   #e6c068;
  --blood:   #6b4423;
  --smoke:   rgba(244,235,217,.55);
  --rule:    rgba(244,235,217,.08);
  --max:     1200px;
  --gap:     clamp(24px, 5vw, 80px);
  /* Typography — these defaults are overridden at runtime by the
     Customizer (Appearance → Customize → Typography). The Customizer
     emits a :root block in <head> with the chosen font-pair values, which
     takes CSS precedence over these defaults thanks to the cascade. */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  /* Backwards-compat alias — existing rules use --font-display */
  --font-display: var(--font-heading);
  --ease:    cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
/* All headings use the customizer-selected heading font.
   Component-specific rules (.hero__primary, .cut-card__name, etc.) can
   still override font-family individually using var(--font-display) which
   is an alias for --font-heading. */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; }
input, textarea, select { font: inherit; }
address { font-style: normal; }

/* ── Accessibility ──────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 9999;
  background: var(--ember);
  color: var(--bg);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 4px;
  transition: top .25s;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--cream); outline-offset: 3px; }
.screen-reader-text {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── Layout ─────────────────────────────────────── */
.wrap {
    width: min(90%, var(--max));  /* fluid: 90vw on mobile, capped at 1200px */
    margin-inline: auto;
}

/* ── Typography ─────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--flame); font-weight: 600; margin-bottom: 20px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: currentColor; }
.eyebrow--dark { color: var(--blood); }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 400; line-height: 1.1; letter-spacing: -.02em;
  font-variation-settings: 'SOFT' 60, 'WONK' 1, 'opsz' 100;
}
.section-head h2 em { font-style: italic; color: var(--flame); }
.section-head--light h2 { color: var(--bg); }
.section-head--light .eyebrow { color: var(--blood); }
.section-head--light .eyebrow::before { background: var(--blood); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  /* Per AYCE Volume spec: DM Sans, 700, uppercase, 0.05em tracking */
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: 4px;
  transition: all .25s var(--ease); white-space: nowrap; cursor: pointer;
  min-height: 44px;   /* Apple/WCAG recommended touch target */
}
.btn--primary { background: var(--ember); color: var(--bg); border-color: var(--ember); }
.btn--primary:hover { background: var(--flame); border-color: var(--flame); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--cream); border-color: rgba(244,235,217,.3); }
.btn--outline:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn--nav { padding: 10px 20px; font-size: 12px; background: var(--ember); color: var(--bg); border-radius: 999px; border: 0; }
.btn--nav:hover { background: var(--flame); }
.btn--full { width: 100%; justify-content: center; }

/* ── Promo bar ──────────────────────────────────── */
.promo { background: var(--blood); color: var(--cream); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; overflow: hidden; position: relative; z-index: 200; }
.promo__track { display: flex; width: max-content; white-space: nowrap; animation: mrbbq-marquee 32s linear infinite; padding: 9px 0; }
.promo__item { display: inline-flex; align-items: center; gap: 12px; padding: 0 32px; }
.promo__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--flame); flex-shrink: 0; }
@keyframes mrbbq-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .promo__track { animation: none; } }

/* ── Site header ────────────────────────────────── */
.site-header {
  position: fixed; top: 36px; left: 0; right: 0;
  z-index: 100;
  transition: background .4s, backdrop-filter .4s, top .3s;
}
body:not(:has(.promo)) .site-header { top: 0; }
.site-header.scrolled {
  top: 0;
  background: rgba(10,8,7,.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  max-width: var(--max); margin: 0 auto; padding: 16px var(--gap);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
/* ─── Site Logo ───────────────────────────────────────────────────────────────
   Dual-image system: white (idle) and black (hover) logos stacked in a wrapper.
   The hover layer fades in over the idle layer using opacity + transition.
   The wrapper uses background: transparent and overflow: visible so PNG
   transparency renders correctly with no "black box" or edge clipping. */

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent !important;   /* fixes the "black box" issue — !important per spec to override any plugin/admin-bar style conflicts */
    overflow: visible;            /* PNG can extend past the bounding box */
    line-height: 0;               /* prevent ascender/descender spacing */
}

.site-logo__text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 144;
    color: var(--cream);
    line-height: 1;
}
.site-logo__dot { color: var(--ember); margin-left: 2px; }

/* The stack wrapper holds both logo images on top of each other */
.site-logo__stack {
    position: relative;
    display: inline-block;
    line-height: 0;
}

/* Both logo layers share the same dimensions; idle is fully opaque, hover
   sits on top at opacity 0 and fades in on hover. Using two <img> tags
   (rather than CSS background-image) so the right one shows even before
   CSS finishes loading and the white logo can be lazy-loaded if needed.

   The transform transition + transform-origin: left center are for the
   smooth scroll-triggered scale-up (see .site-header.logo-scaled rule
   below). Transform is purely visual — it does not affect layout — so
   the navbar links never get pushed down/aside by the scale. The header
   min-height ensures the visually-larger logo doesn't appear clipped.
*/
.site-logo__img {
    display: block;
    max-height: 60px;             /* mobile: 60px */
    width: auto;
    height: auto;
    transition: opacity .25s var(--ease),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

@media (min-width: 768px) {
    .site-logo__img { max-height: 85px; }    /* desktop: 85px */
}

/* Scroll-triggered logo scale-up. Class is toggled by mr-bbq.js when
   window.scrollY > 100. The 15% scale and easing curve match spec.
   transform-origin: left center keeps the logo growing rightward into
   header padding, never overlapping the nav menu links. */
.site-header.logo-scaled .site-logo__img--idle,
.site-header.logo-scaled .site-logo__img--hover {
    transform: scale(1.15);
}

/* Reserve enough vertical space in the header inner row so the scaled
   logo (max-height 85 × 1.12 ≈ 95.2px on desktop) fits cleanly without
   touching the nav rule below. Empty-cell aware: applies even before
   JS adds the logo-scaled class so the page doesn't shift on first scroll. */
.site-header__inner { min-height: 76px; }
@media (min-width: 768px) {
    .site-header__inner { min-height: 110px; }
}

/* Hover layer is positioned absolutely over the idle layer */
.site-logo__img--hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    opacity: 0;
    pointer-events: none;
}

/* Swap on hover/focus */
.site-logo:hover .site-logo__img--idle,
.site-logo:focus-visible .site-logo__img--idle { opacity: 0; }
.site-logo:hover .site-logo__img--hover,
.site-logo:focus-visible .site-logo__img--hover { opacity: 1; }

/* Footer logo — slightly smaller; uses single white logo (no hover swap) */
.site-logo--footer .site-logo__img,
.site-logo--footer img { max-height: 56px; }
@media (min-width: 768px) {
    .site-logo--footer .site-logo__img,
    .site-logo--footer img { max-height: 72px; }
}
.nav-menu {
  display: flex; gap: 28px;
  /* AYCE Volume spec: DM Sans, 700, uppercase, 0.05em */
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-menu a { color: rgba(244,235,217,.75); transition: color .25s; position: relative; padding: 4px 0; display: inline-flex; align-items: center; min-height: 44px; }
.nav-menu a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--ember); transition:width .3s var(--ease); }
.nav-menu a:hover { color: var(--cream); }
.nav-menu a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; min-width: 44px; min-height: 44px; background: transparent; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: transform .35s var(--ease), opacity .25s; }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .btn--nav { display: none; }
  #primary-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,8,7,.97); border-bottom: 1px solid var(--rule); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 24px var(--gap); }
  .site-header.nav-open #primary-nav { display: block; }
  .nav-menu { flex-direction: column; gap: 18px; }
  .nav-menu a { font-size: 16px; letter-spacing: .12em; }
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 80px; overflow: hidden; isolation: isolate;
  padding-top: clamp(120px, 18vw, 200px);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.hero__bg--default {
  background:
    radial-gradient(ellipse at 25% 65%, rgba(255,77,26,.6) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 35%, rgba(255,174,61,.4) 0%, transparent 45%),
    linear-gradient(175deg, #0a0807 0%, #1a0e06 55%, #050302 100%);
}
.hero__overlay { position: absolute; inset: 0; z-index: -1; background: rgba(10,8,7,.45); }
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    /* hero__inner uses .wrap for width constraint; padding here adds breathing room */
    padding-inline: clamp(16px, 4vw, 24px);
}
.hero__primary {
    font-family: var(--font-display);
    /* Reduced 20% from clamp(48px, 9vw, 110px) per AYCE Volume spec */
    font-size: clamp(38px, 7.2vw, 88px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.025em;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    font-variation-settings: 'SOFT' 70, 'WONK' 1, 'opsz' 144;
}
.hero__primary .accent { color: var(--gold); font-style: italic; }
.hero__primary-line { display: block; }

/* Hero "View Menu" button — primary CTA below the h1, larger than the
   default .btn so it functions as a single-action call to action. */
.hero__menu-cta {
    margin-top: 8px;
    margin-bottom: 24px;
    align-self: flex-start;
    padding: 16px 36px;
    font-size: 14px;
}
.hero__headline { font-family: var(--font-display); font-size: clamp(26px, 4vw, 46px); font-weight: 400; line-height: 1.15; color: var(--cream); margin-bottom: 20px; font-variation-settings: 'SOFT' 60, 'WONK' 1, 'opsz' 100; }
.hero__body { color: var(--smoke); max-width: 52ch; margin-bottom: 32px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { display: flex; align-items: center; gap: 16px; padding: 18px var(--gap); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke); border-top: 1px solid var(--rule); margin-top: 60px; flex-wrap: wrap; }
.hero__meta-sep { opacity: .4; }
.hero__meta a { color: var(--cream); }
.hero__meta a:hover { color: var(--ember); }
@media (max-width: 760px) { .hero__inner { grid-template-columns: 1fr; gap: 32px; } }

/* ── Gallery ─────────────────────────────────────── */
.gallery-section { padding: clamp(60px, 8vw, 100px) 0 0; }
.gallery-section__head { text-align: center; margin-bottom: clamp(32px, 4vw, 56px); }
.gallery-section__sub { color: var(--smoke); font-size: 18px; margin-top: 12px; }
.carousel { position: relative; overflow: hidden; background: var(--char); }
.carousel__track { display: flex; transition: transform .6s var(--ease); will-change: transform; }
.carousel__slide { flex: 0 0 100%; position: relative; }
.carousel__slide img {
    width: 100%;
    height: clamp(260px, 50vw, 640px);
    object-fit: contain;        /* show entire image — no cropping */
    background: #000;            /* fills letterbox space when aspect ratios mismatch */
}
.carousel__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 24px; background: linear-gradient(to top, rgba(0,0,0,.7), transparent); color: var(--cream); font-size: 14px; }
.carousel__btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; border-radius: 50%; background: rgba(10,8,7,.65); border: 1px solid var(--rule); color: var(--cream); font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background .25s; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.carousel__btn:hover { background: var(--ember); }
.carousel__prev { left: 16px; }
.carousel__next { right: 16px; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; padding: 16px; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(244,235,217,.2); border: 0; padding: 0; cursor: pointer; transition: background .25s, transform .25s; }
.carousel__dot.is-active { background: var(--ember); transform: scale(1.35); }
@media (max-width: 600px) { .carousel__btn { width: 38px; height: 38px; font-size: 15px; } }

/* ── Cuts ────────────────────────────────────────── */
.cuts-section { padding: clamp(60px, 8vw, 100px) 0; }
/* ── Cuts grid + K-Street reel ─────────────────────────────────────────────
   Two display modes from one component:
   1. Mobile (< 700px): horizontal scroll-snap reel. Cards are ~80% wide so
      the next card peeks at the right edge — the universal "swipe for more"
      affordance. Native CSS, no JS, no swipe library, no dependencies.
   2. Tablet+ (700px+): standard responsive auto-fit grid (existing behavior).
   The .card-reel class enables the mobile scroll behavior; without it the
   grid is desktop-only. Both Cuts and K-Street use these classes together. */
.cuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2px;
    margin-top: clamp(32px, 4vw, 56px);
}

@media (max-width: 700px) {
    .cuts-grid.card-reel {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: var(--gap);
        /* Allow cards to escape the .wrap padding so the reel runs edge-to-edge
           on mobile. Negative margin + matching padding pulls this off without
           disturbing the desktop grid layout. */
        margin-inline: calc(-1 * var(--gap));
        padding-inline: var(--gap);
        padding-bottom: 12px;          /* room for scrollbar/scroll shadow */
        /* Note (v4.4.0): scroll-snap removed per spec. Cards now free-scroll
           rather than snapping to start position. */
    }
    .cuts-grid.card-reel .cut-card {
        flex: 0 0 80%;                 /* 80% wide so next card peeks ~16% */
    }
    /* Hide scrollbar but keep scrollability */
    .cuts-grid.card-reel::-webkit-scrollbar { height: 4px; }
    .cuts-grid.card-reel::-webkit-scrollbar-thumb { background: var(--ember); border-radius: 2px; }
}

.cut-card { background: var(--char); display: flex; flex-direction: column; }
.cut-card__img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.cut-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cut-card:hover .cut-card__img-wrap img { transform: scale(1.04); }
.cut-card__img-placeholder { width: 100%; aspect-ratio: 4/3; background: radial-gradient(ellipse at 50% 70%, rgba(255,77,26,.35) 0%, transparent 60%), var(--coal); }
.cut-card__body { padding: 28px 24px; flex: 1; }
.cut-card__num { font-size: 11px; letter-spacing: .24em; color: var(--flame); font-weight: 600; display: block; margin-bottom: 10px; }
.cut-card__name { font-family: var(--font-display); font-size: clamp(20px, 2.8vw, 28px); font-weight: 400; line-height: 1.1; margin-bottom: 4px; font-variation-settings: 'SOFT' 50, 'opsz' 80; }
.cut-card__korean { font-family: var(--font-korean); font-size: 18px; color: var(--ember); margin-bottom: 14px; }
.cut-card__desc { color: var(--smoke); font-size: 14px; line-height: 1.65; }

/* K-Street section reuses .cuts-section but gets a slightly different background
   so visitors can tell the two AYCE sections apart at a glance */
.kstreet-section { background: var(--char); }

/* ── Banchan ─────────────────────────────────────── */
.banchan-section { background: var(--cream); color: var(--bg); padding: clamp(60px, 8vw, 100px) 0; }
.banchan-section__inner { width: min(90%, var(--max)); margin-inline: auto; }
.banchan-reel { display: flex; gap: 2px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; margin-top: clamp(32px, 4vw, 56px); }
.banchan-reel::-webkit-scrollbar { height: 4px; }
.banchan-reel::-webkit-scrollbar-thumb { background: var(--blood); border-radius: 2px; }
.banchan-card { flex: 0 0 clamp(180px, 26vw, 260px); background: var(--paper); padding: 0 0 20px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.banchan-card__img-wrap { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--rule); margin-bottom: 8px; }
.banchan-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.banchan-card__name { font-weight: 600; font-size: 14px; color: var(--bg); padding: 0 20px; }
.banchan-card__korean { font-family: var(--font-korean); font-size: 16px; color: var(--blood); padding: 0 20px; }
.banchan-card__desc { font-size: 12px; line-height: 1.5; color: rgba(10,8,7,.62); padding: 0 20px; margin-top: 4px; }
/* Restore the original text-card padding when no image is present so existing
   data without image_id continues to look balanced. */
.banchan-card:not(:has(.banchan-card__img-wrap)) { padding: 28px 20px; }
.banchan-card:not(:has(.banchan-card__img-wrap)) .banchan-card__name,
.banchan-card:not(:has(.banchan-card__img-wrap)) .banchan-card__korean,
.banchan-card:not(:has(.banchan-card__img-wrap)) .banchan-card__desc { padding: 0; }

/* ── Location ────────────────────────────────────── */
.location-section { padding: clamp(60px, 8vw, 100px) 0; }
.location-card { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2px; margin-top: clamp(32px, 4vw, 56px); border: 1px solid var(--rule); overflow: hidden; }
.location-card__info { background: var(--char); padding: clamp(32px, 5vw, 60px); display: flex; flex-direction: column; gap: 24px; }

/* Heading hierarchy (v4.4.0):
   • .location-card__city-eyebrow  — small eyebrow ABOVE the H3 (the city, e.g. "Tustin")
   • .location-card__name          — large H3 primary heading (the display name)
   • .location-card__label / .location-card__city — kept as aliases so legacy
     stored values or inline markup that still references these classes continues
     to render with correct styling. */
.location-card__city-eyebrow,
.location-card__label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--flame); font-weight: 600; }
.location-card__name,
.location-card__city  { font-family: var(--font-display); font-size: clamp(44px, 6vw, 80px); font-weight: 400; line-height: .95; font-variation-settings: 'SOFT' 70, 'opsz' 144; }
.location-card__address { color: var(--cream); font-size: 16px; line-height: 1.7; }
.location-card__phone { color: var(--ember); border-bottom: 1px solid transparent; transition: border-color .25s; }
.location-card__phone:hover { border-bottom-color: var(--ember); }
.location-card__hours { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--rule); padding-top: 20px; }
.location-card__hours > div { display: flex; justify-content: space-between; gap: 16px; }
.location-card__hours dt { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--flame); font-weight: 600; }
.location-card__hours dd { font-family: var(--font-display); font-size: 15px; }
.location-card__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.location-card__map { background: var(--coal); position: relative; min-height: 400px; display: flex; flex-direction: column; }
.location-card__map iframe { width: 100%; flex: 1; min-height: 400px; border: 0; filter: grayscale(.25) contrast(1.05); }
.location-card__map-empty { flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; color: var(--smoke); font-size: 15px; line-height: 1.7; }
.location-card__map-empty strong { color: var(--cream); }
@media (max-width: 860px) { .location-card { grid-template-columns: 1fr; } .location-card__map { min-height: 300px; } }

/* ── Events ──────────────────────────────────────── */
.events-section { padding: clamp(60px, 8vw, 100px) 0; background: var(--char); }
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 2px;
    margin-top: clamp(32px, 4vw, 56px);
}
.event-card { background: var(--bg); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 12px; }
.event-card--featured { background: var(--coal); }
.event-card__tag { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--flame); font-weight: 600; }
.event-card__title { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 30px); font-weight: 400; font-variation-settings: 'SOFT' 40, 'opsz' 60; }
.event-card__desc { color: var(--smoke); font-size: 14px; line-height: 1.65; }

/* events-grid auto-fits on mobile */

/* ── Reviews ─────────────────────────────────────── */
.reviews-section { padding: clamp(60px, 8vw, 100px) 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px,100%),1fr)); gap: 2px; margin-top: clamp(32px,4vw,56px); }
.review-card { background: var(--char); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 16px; }
.review-card__stars { color: var(--flame); font-size: 18px; letter-spacing: 3px; }
.review-card__quote { color: var(--cream); font-family: var(--font-display); font-size: clamp(16px, 1.8vw, 20px); font-style: italic; line-height: 1.5; font-variation-settings: 'SOFT' 60, 'opsz' 24; flex: 1; }
.review-card__author { font-size: 12px; letter-spacing: .1em; color: var(--smoke); margin-top: auto; }
.review-card__author strong { color: var(--cream); }

/* ── PAYCE Club ──────────────────────────────────── */
.payce-section { padding: clamp(60px, 8vw, 100px) 0; background: var(--coal); }
.payce-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.payce-section__text h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 50px); font-weight: 400; line-height: 1.1; margin-bottom: 20px; font-variation-settings: 'SOFT' 60, 'opsz' 80; }
.payce-section__text h2 em { color: var(--flame); font-style: italic; }
.payce-section__body { color: var(--smoke); max-width: 48ch; margin-bottom: 8px; }
.payce-section__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.payce-stat { background: var(--char); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 8px; }
.payce-stat__num { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); font-weight: 300; color: var(--ember); line-height: 1; font-variation-settings: 'opsz' 72; }
.payce-stat__label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--smoke); }
@media (max-width: 760px) { .payce-section__inner { grid-template-columns: 1fr; gap: 40px; } }

/* ── Contact ─────────────────────────────────────── */
.contact-section { padding: clamp(60px, 8vw, 100px) 0; }
.contact-section__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-section__info h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 400; line-height: 1.1; margin-bottom: 32px; font-variation-settings: 'SOFT' 60, 'opsz' 80; }
.contact-section__info h2 em { font-style: italic; color: var(--flame); }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-details dt { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--flame); font-weight: 600; margin-bottom: 2px; }
.contact-details dd { font-size: 16px; }
.contact-details a { color: var(--cream); border-bottom: 1px solid transparent; transition: border-color .25s, color .25s; }
.contact-details a:hover { border-bottom-color: var(--ember); color: var(--ember); }
@media (max-width: 760px) { .contact-section__inner { grid-template-columns: 1fr; gap: 48px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--flame); font-weight: 600; }
.form-field input, .form-field textarea, .form-field select { background: var(--char); border: 1px solid var(--rule); color: var(--cream); padding: 12px 16px; border-radius: 3px; font-size: 16px; /* 16px prevents iOS zoom */ width: 100%; transition: border-color .25s; min-height: 44px; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--ember); outline: none; box-shadow: 0 0 0 3px rgba(255,77,26,.2); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-success { background: rgba(39,174,96,.12); border: 1px solid rgba(39,174,96,.4); color: #2ecc71; padding: 14px 18px; border-radius: 4px; margin-bottom: 20px; }
.form-error   { background: rgba(192,57,43,.12); border: 1px solid rgba(192,57,43,.4); color: #e74c3c; padding: 14px 18px; border-radius: 4px; margin-bottom: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ── Footer ──────────────────────────────────────── */
.site-footer { background: var(--char); border-top: 1px solid var(--rule); padding: clamp(48px, 6vw, 80px) 0 0; }

/* Footer grid:
     row 1: Brand (spans full width)
     row 2: Visit | Locations | Explore  (3 equal columns)
     row 3: Connect (spans full width, with border-top divider above) */
.site-footer__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gap);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: clamp(40px, 5vw, 60px);
}
.site-footer__brand    { grid-column: 1 / -1; }
.site-footer__connect  { grid-column: 1 / -1; border-top: 1px solid #333; padding-top: 28px; margin-top: 8px; }

.site-footer__brand p { color: var(--smoke); font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 36ch; }
.site-footer__nav h4, .site-footer__connect h4 { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--flame); font-weight: 600; margin-bottom: 16px; }
.site-footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.site-footer__nav a, .site-footer__connect a { color: var(--smoke); font-size: 14px; transition: color .25s; }
.site-footer__nav a:hover, .site-footer__connect a:hover { color: var(--cream); }

/* Locations column items: stacked label / address / hours, with split hours
   on their own lines and the day labels in italic (em). */
.site-footer__nav-list--locations { gap: 18px; }
.site-footer__loc-item       { display: flex; flex-direction: column; gap: 4px; line-height: 1.55; }
.site-footer__loc-label      { color: var(--cream); font-size: 14px; }
.site-footer__loc-addr       { color: var(--smoke); font-size: 13px; }
.site-footer__loc-hours      { display: flex; flex-direction: column; gap: 2px; color: var(--smoke); font-size: 13px; }
.site-footer__loc-hours em   { color: var(--flame); font-style: normal; font-weight: 500; margin-right: 6px; }

/* Connect: centered icon row spanning the full footer width. */
.site-footer__connect              { text-align: center; }
.site-footer__connect h4           { margin-bottom: 18px; }
.site-footer__connect-list         { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; padding: 0; list-style: none; }
.site-footer__connect-list a       { display: inline-flex; align-items: center; gap: 8px; }
.site-footer__icon                 { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; }
.site-footer__icon svg             { width: 100%; height: 100%; }

.site-footer__base { border-top: 1px solid var(--rule); padding: 20px var(--gap); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: rgba(244,235,217,.35); letter-spacing: .06em; }
@media (max-width: 860px) { .site-footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .site-footer__base  { justify-content: center; text-align: center; } }

/* Hero hours blocks — keep each block on a single line at all viewports.
   The `//` separator IS allowed to wrap (it sits between blocks); only the
   blocks themselves are nowrap-locked. Used in the hero meta strip and
   reused inside the footer Locations column for compact hour display. */
.hero__hours-block { white-space: nowrap; }

/* ── Interior pages ──────────────────────────────── */
.interior-page { padding: clamp(100px, 12vw, 160px) 0 clamp(60px, 8vw, 100px); min-height: 70vh; }
.interior-page h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); margin-bottom: 32px; font-variation-settings: 'SOFT' 50, 'opsz' 80; }
.interior-page .entry-content p { max-width: 70ch; color: var(--smoke); margin-bottom: 1.5em; }

/* ── Focus & grain ───────────────────────────────── */
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 2px; }
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .14; mix-blend-mode: overlay;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } html { scroll-behavior: auto; } }

/* ── Classes not auto-detected by the linter ─── */
/* Hero grid children */
.hero__left  { display: flex; flex-direction: column; justify-content: flex-end; }
.hero__right { display: flex; flex-direction: column; justify-content: flex-end; }

/* Contact section columns */

/* PAYCE text column */

/* section-head light variant (banchan) */
.section-head--light { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--light h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 400; line-height: 1.1; letter-spacing: -.02em;
  font-variation-settings: 'SOFT' 60, 'WONK' 1, 'opsz' 100;
  color: var(--bg);
}
.section-head--light h2 em { font-style: italic; color: var(--blood); }
.section-head--light .eyebrow { color: var(--blood); }
.section-head--light .eyebrow::before { background: var(--blood); }

/* ═══════════════════════════════════════════════════════════════════════════
   MENU PAGE  (page-menu.php)
   Dark, restaurant-grade design. Multi-column grid. Matches brand aesthetics.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────── */
.menu-page { padding-top: 0; }

.mp-hero {
  position: relative;
  padding-top: clamp(130px, 20vw, 200px);
  padding-bottom: clamp(48px, 6vw, 80px);
  background:
    radial-gradient(ellipse at 15% 80%, rgba(255,77,26,.55) 0%, transparent 48%),
    radial-gradient(ellipse at 85% 20%, rgba(255,174,61,.32) 0%, transparent 42%),
    linear-gradient(170deg, #0a0807 0%, #1c0f06 55%, #050302 100%);
  overflow: hidden;
  isolation: isolate;
}
.mp-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .12; mix-blend-mode: overlay; pointer-events: none;
}
.mp-hero__eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--flame);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mp-hero__eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--flame); }
.mp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 11vw, 120px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--cream);
  font-variation-settings: 'SOFT' 70, 'WONK' 1, 'opsz' 144;
  margin-bottom: 20px;
}
.mp-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--smoke);
  letter-spacing: .04em;
}

/* ── Sticky tab bar ──────────────────────────────────── */
.mp-tabs {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--char);
  border-bottom: 2px solid var(--rule);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.mp-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 20px 16px;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: background .25s, border-color .25s;
  color: rgba(244,235,217,.5);
}
.mp-tab:hover { background: rgba(255,77,26,.06); color: var(--cream); }
.mp-tab.is-active {
  background: rgba(255,77,26,.1);
  border-bottom-color: var(--ember);
  color: var(--cream);
}
.mp-tab__service {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
}
.mp-tab__price {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 300;
  line-height: 1;
  color: var(--flame);
  font-variation-settings: 'opsz' 48;
}
.mp-tab.is-active .mp-tab__price { color: var(--ember); }
.mp-tab__note {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* ── Price stripe ────────────────────────────────────── */
.mp-price-stripe {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
}
.mp-price-stripe--lunch  { background: #7a1009; }
.mp-price-stripe--dinner { background: #991209; }
.mp-price-stripe__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mp-price-stripe__service {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.mp-price-stripe__price {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  font-variation-settings: 'opsz' 60;
  line-height: 1;
}
.mp-price-stripe__unit {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-left: 12px;
}
.mp-price-stripe__kids {
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.8);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

/* ── Menu section block ──────────────────────────────── */
.mp-section {
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

.mp-section__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: clamp(24px, 3.5vw, 44px) var(--gap);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.mp-section__icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.mp-section__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  font-variation-settings: 'SOFT' 55, 'WONK' 1, 'opsz' 80;
  margin: 0;
  flex: 1;
}
.mp-section__count {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── Item grid ───────────────────────────────────────── */
.mp-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  max-width: var(--max);
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.mp-item {
  background: var(--char);
  padding: clamp(18px, 2.5vw, 28px) clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .2s;
}
.mp-item:hover { background: var(--coal); }

.mp-item__name {
  display: block;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  letter-spacing: -.01em;
}

.mp-item__desc {
  display: block;
  font-size: 12px;
  color: var(--smoke);
  line-height: 1.5;
  font-style: italic;
}

/* Tablet: 3 columns */
@media (max-width: 1000px) {
  .mp-items { grid-template-columns: repeat(3, 1fr); }
}
/* Mobile landscape: 2 columns */
@media (max-width: 680px) {
  .mp-items { grid-template-columns: repeat(2, 1fr); }
  .mp-section__header { flex-wrap: wrap; gap: 12px; }
  .mp-section__count { display: none; }
  .mp-price-stripe__unit { display: none; }
}
/* Mobile portrait: 1 column */
@media (max-width: 400px) {
  .mp-items { grid-template-columns: 1fr; }
}

/* ── Reserve CTA ─────────────────────────────────────── */
.mp-cta {
  background: var(--coal);
  border-top: 1px solid var(--rule);
  padding: clamp(56px, 7vw, 96px) 0;
}
.mp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.mp-cta__label {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--flame);
  font-weight: 600;
  margin-bottom: 10px;
}
.mp-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--cream);
  font-variation-settings: 'SOFT' 55, 'opsz' 72;
  line-height: 1.1;
  margin: 0;
}
@media (max-width: 600px) { .mp-cta__inner { flex-direction: column; align-items: flex-start; } }

/* ── 404 page ────────────────────────────────────────── */
.error-404-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 16vw, 180px) 0 clamp(60px, 8vw, 100px);
}
.error-404-page__inner { text-align: center; }
.error-404-page__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin: 12px 0 24px;
  font-variation-settings: 'SOFT' 60, 'WONK' 1, 'opsz' 100;
}
.error-404-page__body {
  color: var(--smoke);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 44ch;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.error-404-page__ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Footer Widget Area ──────────────────────────────── */
.site-footer__widgets {
    padding-block: clamp(40px, 5vw, 72px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer-widget__title {
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--flame);
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-widget ul { display: flex; flex-direction: column; gap: 10px; }
.footer-widget a { color: var(--smoke); font-size: 14px; transition: color .25s; }
.footer-widget a:hover { color: var(--cream); }

/* ─── Adaptive Hero Picture Element ──────────────────────────────────────────
   Replaces the CSS background-image approach. The <picture> element allows
   srcset/responsive images so mobile users don't download a 4K desktop photo.
   ─────────────────────────────────────────────────────────────────────────── */
.hero__bg-picture {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}
.hero__bg-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ─── Hero Background Video (desktop only) ────────────────────────────────────
   Sits at the same depth as the .hero__bg-picture (z-index: -2), so the
   .hero__overlay (z-index: -1) and .hero__inner content remain layered above.
   On screens < 768px the video is hidden so the responsive <picture> below
   it takes over for performance and battery life on mobile devices.
   ───────────────────────────────────────────────────────────────────────── */
.hero__video {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;        /* clicks pass through to underlying content */
    background: var(--bg);       /* matches dark canvas if video hasn't loaded */
}
@media (max-width: 767px) {
    .hero__video { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    /* Honor users' motion preference — show the still image instead */
    .hero__video { display: none; }
}

/* ─── Mobile-First Breakpoint Additions ──────────────────────────────────────
   Fine-tuning for small screens that the auto-fit grids don't cover.
   ─────────────────────────────────────────────────────────────────────────── */

/* Tighter payce grid on mobile */
@media (max-width: 540px) {
    .payce-section__inner { gap: 28px; }
    .payce-section__stats { grid-template-columns: 1fr 1fr; }
}

/* Contact form — single column on narrow screens */
@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-section__inner { gap: 32px; }
}

/* Menu page — 1 column on very small screens */
@media (max-width: 360px) {
    .mp-items { grid-template-columns: 1fr; }
    .mp-tab { padding: 14px 10px; }
    .mp-tab__price { font-size: 22px; }
}

/* Footer — single column on phones */
@media (max-width: 480px) {
    .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .site-footer__base { flex-direction: column; align-items: center; gap: 6px; }
}

/* Location card stacks cleanly on narrow screens */
@media (max-width: 600px) {
    .location-card__info { padding: clamp(24px, 6vw, 40px); }
    .location-card__ctas { flex-direction: column; }
    .location-card__ctas .btn { width: 100%; justify-content: center; }
}

/* Hero meta strip wraps gracefully */
@media (max-width: 480px) {
    .hero__meta {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding-block: 14px;
    }
    .hero__meta-sep { display: none; }
}

/* Larger tap targets for nav in mobile drawer */
@media (max-width: 860px) {
    .nav-menu li { width: 100%; }
    .nav-menu a {
        width: 100%;
        padding-block: 12px;
        min-height: 48px;
    }
}

/* Promo track — respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .promo__track { animation: none; }
}

/* ─── Interior Pages (page.php, single.php, archive.php) ─────────────────────
   For static pages, blog posts, and category/archive views. The homepage uses
   bespoke section components; these rules cover the standard-content fallback
   so blog posts and event pages are still readable and on-brand. */

.interior-page {
    padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 10vw, 120px);
    min-height: 60vh;
}
.interior-page .wrap { max-width: 760px; }
.interior-page header.entry-header,
.interior-page .archive-header {
    margin-bottom: clamp(32px, 5vw, 56px);
    text-align: center;
}
.interior-page h1,
.interior-page .archive-header h1,
.interior-page .entry-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 16px;
    font-variation-settings: 'SOFT' 60, 'WONK' 1, 'opsz' 100;
}
.interior-page .entry-meta {
    color: var(--smoke);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.interior-page .entry-meta a { color: var(--ember); }
.interior-page .entry-meta a:hover { color: var(--flame); }
.interior-page .archive-description {
    color: var(--smoke);
    max-width: 60ch;
    margin: 0 auto;
}

/* Long-form content — the actual prose body of pages and posts */
.interior-page .entry-content,
.interior-page .post-content {
    color: var(--cream);
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.75;
}
.interior-page .entry-content p,
.interior-page .post-content p { margin-bottom: 1.4em; }
.interior-page .entry-content h2 { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 36px); margin: 2em 0 .6em; color: var(--cream); }
.interior-page .entry-content h3 { font-family: var(--font-heading); font-size: clamp(20px, 2.4vw, 28px); margin: 1.6em 0 .5em; color: var(--cream); }
.interior-page .entry-content a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }
.interior-page .entry-content a:hover { color: var(--flame); }
.interior-page .entry-content blockquote {
    border-left: 3px solid var(--ember);
    margin: 1.6em 0;
    padding: .4em 0 .4em 1.6em;
    color: var(--cream);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15em;
}
.interior-page .entry-content ul,
.interior-page .entry-content ol { margin: 0 0 1.4em 1.5em; }
.interior-page .entry-content ul { list-style: disc; }
.interior-page .entry-content ol { list-style: decimal; }
.interior-page .entry-content li { margin-bottom: .5em; }
.interior-page .entry-content img,
.interior-page .entry-content .wp-block-image { margin: 1.6em 0; border-radius: 4px; }
.interior-page .entry-content figcaption { color: var(--smoke); font-size: 14px; margin-top: 8px; text-align: center; }
.interior-page .entry-content code {
    background: var(--char);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: .9em;
    font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, monospace;
}
.interior-page .entry-content pre {
    background: var(--char);
    padding: 16px 20px;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1.6em 0;
}

/* Featured image on single posts */
.interior-page .post-thumbnail {
    margin-bottom: clamp(24px, 4vw, 48px);
}
.interior-page .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Pagination (next/previous post and archive paging) */
.interior-page .post-navigation,
.interior-page .pagination,
.interior-page .nav-links {
    margin-top: clamp(40px, 6vw, 80px);
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.interior-page .post-navigation a,
.interior-page .nav-links a,
.interior-page .pagination a {
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 20px;
    border: 1px solid var(--rule);
    border-radius: 3px;
    transition: all .2s var(--ease);
}
.interior-page .post-navigation a:hover,
.interior-page .nav-links a:hover,
.interior-page .pagination a:hover {
    border-color: var(--ember);
    color: var(--ember);
}
.interior-page .pagination .current,
.interior-page .nav-links .current {
    background: var(--ember);
    color: var(--bg);
    padding: 12px 20px;
    border-radius: 3px;
}

/* Archive post grid (for archive.php — Events, News, etc.) */
.interior-page .post-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: clamp(24px, 3vw, 40px);
}
.interior-page .post-card {
    background: var(--char);
    padding: clamp(24px, 3vw, 32px);
    border-radius: 4px;
    transition: transform .25s var(--ease), background .25s var(--ease);
}
.interior-page .post-card:hover {
    transform: translateY(-4px);
    background: var(--coal);
}
.interior-page .post-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.6vw, 28px);
    margin-bottom: 12px;
    line-height: 1.2;
}
.interior-page .post-card h2 a { color: var(--cream); }
.interior-page .post-card h2 a:hover { color: var(--ember); }
.interior-page .post-card .entry-meta {
    margin-bottom: 14px;
    text-align: left;
}
.interior-page .post-card .entry-summary {
    color: var(--smoke);
    font-size: 15px;
    line-height: 1.65;
}

/* ─── Card Carousel (cuts + K-Street) ────────────────────────────────────────
   The .card-carousel wrapper is added by JS; the prev/next buttons are
   absolutely positioned over the right and left edges. On mobile the buttons
   are hidden because users naturally swipe; on tablet+ they appear on hover. */

.card-carousel {
    position: relative;
}

.card-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    display: none;                  /* hidden on mobile (swipe is enough) */
    align-items: center;
    justify-content: center;
    background: var(--ember);
    color: var(--bg);
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    transition: transform .2s var(--ease), background .2s var(--ease), opacity .2s var(--ease);
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.card-carousel__btn:hover { background: var(--flame); transform: translateY(-50%) scale(1.05); }
.card-carousel__btn:disabled { cursor: not-allowed; pointer-events: none; }
.card-carousel__btn--prev { left: -24px; }
.card-carousel__btn--next { right: -24px; }

/* Show buttons on tablet and larger */
@media (min-width: 700px) {
    .card-carousel__btn { display: inline-flex; }
    /* When the JS carousel is active on tablet+, force the grid into a
       horizontal scroll layout so prev/next pagination actually works.
       Note (v4.4.0): scroll-snap removed per spec. Prev/Next buttons still
       paginate by a fixed pixel step; cards may drift slightly off the left
       edge over time. Re-add `scroll-snap-type: x mandatory` here and
       `scroll-snap-align: start` on the .cut-card child if precise alignment
       is needed. */
    .card-carousel .cuts-grid.js-card-carousel {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    .card-carousel .cuts-grid.js-card-carousel .cut-card {
        flex: 0 0 calc((100% - 16px) / 2);   /* 2 cards visible on tablet */
    }
    /* Hide native scrollbar — buttons handle paging */
    .card-carousel .cuts-grid.js-card-carousel::-webkit-scrollbar { display: none; }
    .card-carousel .cuts-grid.js-card-carousel { scrollbar-width: none; }
}

@media (min-width: 1100px) {
    .card-carousel .cuts-grid.js-card-carousel .cut-card {
        flex: 0 0 calc((100% - 32px) / 3);   /* 3 cards visible on desktop */
    }
}

/* ─── Location Carousel (multi-location mode) ─────────────────────────────
   Activated when more than one location exists. Each card is a full slide;
   one location visible at a time. Wraps the existing .location-card markup. */

.location-carousel {
    position: relative;
    overflow: hidden;
    margin-top: clamp(32px, 4vw, 56px);
}

.location-carousel__track {
    display: flex;
    transition: transform .6s var(--ease);
    will-change: transform;
}

/* Each location-card becomes a full-width slide inside the track */
.location-section--multi .location-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;          /* allow children to shrink past intrinsic size */
}

.location-section--multi .location-carousel .location-card {
    margin: 0;
}

/* Carousel controls — buttons and dots reuse the gallery carousel CSS,
   but constrained to inside .location-carousel for spec specificity */
.location-carousel .carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ember);
    color: var(--bg);
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    transition: transform .2s var(--ease), background .2s var(--ease);
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.location-carousel .carousel__btn:hover { background: var(--flame); transform: translateY(-50%) scale(1.05); }
.location-carousel .carousel__prev { left: 12px; }
.location-carousel .carousel__next { right: 12px; }

.location-carousel .carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding-bottom: 4px;
}
.location-carousel .carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(244,235,217,0.3);
    cursor: pointer;
    transition: background .2s var(--ease), transform .2s var(--ease);
}
.location-carousel .carousel__dot.is-active {
    background: var(--ember);
    transform: scale(1.3);
}
.location-carousel .carousel__dot:hover { background: var(--cream); }

/* Hide arrow buttons on small screens (swipe is the affordance there) */
@media (max-width: 600px) {
    .location-carousel .carousel__btn { display: none; }
}
