/* ==========================================================================
   Robertson's BBQ & Catering — Design System
   "Premier BBQ Destination" — charcoal pit, ember glow, brisket gold, cream paper.
   The fourth aesthetic lane: warm, confident, smoke-stained.
   ========================================================================== */

:root {
  /* Pit palette — warm charcoal with ember + brisket-gold accents */
  --bg-deep: #100a06;            /* deepest pit shadow */
  --bg-near: #1a1410;            /* warm charcoal */
  --surface: #241a13;            /* elevated card surface */
  --surface-2: #2e231a;          /* lifted surface */
  --surface-3: #3a2c20;          /* highest contrast surface */

  --ember: #e85a2c;              /* glowing coal — signature accent */
  --ember-bright: #ff7a3d;       /* hover/active */
  --ember-deep: #a83a18;         /* pressed/border */

  --brisket: #c89556;            /* rendered fat / butcher paper twine */
  --brisket-bright: #e0b074;
  --brisket-deep: #946a30;

  --cream: #f4ecd6;              /* primary text — butcher paper */
  --cream-bright: #fdf8ea;
  --cream-muted: #c8b89a;
  --cream-dim: #8e7c66;
  --cream-quiet: #5a4d3e;

  --border: rgba(244, 236, 214, 0.10);
  --border-strong: rgba(244, 236, 214, 0.20);
  --border-ember: rgba(232, 90, 44, 0.35);

  /* Typography */
  --f-display: "DM Serif Display", "Playfair Display", Georgia, serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-mono: "JetBrains Mono", "Courier New", monospace;

  /* Sizing */
  --container: 1240px;
  --container-prose: 720px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,0.4);
  --shadow-2: 0 1px 0 rgba(255,255,255,0.06), 0 24px 56px rgba(0,0,0,0.55);
  --shadow-ember: 0 0 0 1px rgba(232,90,44,0.3), 0 0 40px -8px rgba(232,90,44,0.5);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-body);
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--ember-bright); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--cream-bright); }

::selection { background: var(--ember); color: var(--cream-bright); }

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--ember); color: var(--cream-bright); padding: 8px 14px;
  border-radius: var(--r-sm); font-weight: 600;
  transition: top .2s; z-index: 100;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.prose {
  width: min(100% - var(--gutter)*2, var(--container-prose));
  margin-inline: auto;
}

/* =======================  HEADER  ======================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(16, 10, 6, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.hdr-inner {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.brand { display: flex; align-items: center; gap: 14px; color: var(--cream); }
.brand:hover { color: var(--cream); }
.brand-mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border: 1px solid var(--brisket-deep);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ember);
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  color: var(--cream-bright);
}
.brand-sub {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 6px;
}

.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: clamp(10px, 1.8vw, 28px);
  justify-content: center;
}
.primary-nav a {
  color: var(--cream-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ember);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover { color: var(--cream-bright); }
.primary-nav a:hover::after { transform: scaleX(1); }

.hdr-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ember);
  color: var(--cream-bright);
  border-color: var(--ember);
}
.btn-primary:hover {
  background: var(--ember-bright);
  border-color: var(--ember-bright);
  box-shadow: 0 10px 28px -6px rgba(232, 90, 44, 0.55);
  color: var(--cream-bright);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--brisket);
  background: rgba(200, 149, 86, 0.08);
  color: var(--cream-bright);
}
.btn-ghost {
  background: transparent;
  color: var(--cream-muted);
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 11px;
}
.btn-ghost:hover { color: var(--cream-bright); border-color: var(--ember); background: rgba(232, 90, 44, 0.06); }

/* Hamburger */
.hamburger {
  display: none;
  appearance: none; background: transparent;
  border: 1px solid var(--border-strong);
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--cream); border-radius: 1px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(16, 10, 6, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 24px var(--gutter);
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 14px 0;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.m-call { color: var(--ember); }

/* =======================  HERO  ======================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.05) brightness(0.85);
  animation: heroDrift 26s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translateX(-1%); }
  to { transform: scale(1.12) translateX(1.5%); }
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 70% at 50% 30%, rgba(0,0,0,0.0) 0%, rgba(16,10,6,0.45) 55%, rgba(16,10,6,0.95) 100%),
    linear-gradient(180deg, rgba(16,10,6,0.65) 0%, rgba(16,10,6,0.30) 28%, rgba(16,10,6,0.7) 72%, rgba(16,10,6,1) 100%);
}

.hero-inner {
  width: min(100% - var(--gutter)*2, 1100px);
  margin-inline: auto;
  text-align: center;
  padding: 130px 0 80px;
}

.hero-eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ember-bright);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow span.mark {
  display: inline-block;
  width: 32px; height: 1px; background: var(--ember-bright);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 13vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cream-bright);
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 0 80px rgba(232,90,44,0.15);
  overflow-wrap: break-word;
  hyphens: none;
}
.hero-title .apostrophe { color: var(--ember); font-style: italic; }
.hero-title .line-2 {
  display: block;
  font-size: 0.28em;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--brisket-bright);
  margin-top: 18px;
  font-family: var(--f-body);
  text-shadow: none;
}

.hero-tag {
  max-width: 700px;
  margin: 36px auto 12px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
  color: var(--cream);
  font-family: var(--f-display);
  font-weight: 400;
}
.hero-tag em { font-style: italic; color: var(--ember-bright); }

.hero-sub {
  max-width: 580px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--cream-muted);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 40px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.hero-meta {
  margin: 56px auto 0;
  display: flex; gap: clamp(28px, 5vw, 64px);
  justify-content: center; flex-wrap: wrap;
  padding: 22px clamp(28px, 4vw, 56px);
  background: rgba(16, 10, 6, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-ember);
  border-bottom: 1px solid var(--border-strong);
  width: fit-content;
}
.meta-item { text-align: center; }
.meta-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--ember);
  line-height: 1;
  text-shadow: 0 0 24px rgba(232, 90, 44, 0.35);
}
.meta-lbl {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 10px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  display: grid; place-items: start center;
  padding-top: 8px;
  text-decoration: none;
}
.scroll-cue span {
  width: 2px; height: 8px; background: var(--ember);
  border-radius: 1px; display: block;
  animation: cueFall 1.8s var(--ease) infinite;
}
@keyframes cueFall {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =======================  SECTIONS — generic  ======================= */
.band { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.band-near { background: var(--bg-near); }
.band-surface { background: var(--surface); }
.band-head { max-width: 760px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; }
.band-head .lede {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--cream-muted);
  line-height: 1.65;
  margin: 22px 0 0;
  font-family: var(--f-display);
  font-weight: 400;
}
.band-head .lede em { font-style: italic; color: var(--ember-bright); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ember-bright);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow.with-mark::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px;
  background: var(--ember-bright);
}
.eyebrow.brisket { color: var(--brisket-bright); }
.eyebrow.brisket.with-mark::before { background: var(--brisket-bright); }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--cream-bright);
  margin: 0 0 14px;
}
.display em { font-style: italic; color: var(--ember); }
.display .apostrophe { color: var(--ember); font-style: italic; }
.display-xl {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--cream-bright);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.display-xl em { font-style: italic; color: var(--ember); text-transform: lowercase; }

.lede { color: var(--cream-muted); }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Figure styles */
.fig {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 16/8;
  background: var(--surface);
}
.fig.fig-wide { aspect-ratio: 21/9; }
.fig.fig-square { aspect-ratio: 1/1; }
.fig.fig-portrait { aspect-ratio: 4/5; }
.fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.fig:hover img { transform: scale(1.04); }
.fig figcaption {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-bright);
  background: rgba(16,10,6,0.7);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
}

/* =======================  AWARDS BAR  ======================= */
.awards-bar {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-near) 100%);
  padding: 48px 0;
  border-top: 1px solid var(--border-ember);
  border-bottom: 1px solid var(--border-ember);
}
.awards-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 60px);
  justify-content: center;
  align-items: center;
}
.award {
  text-align: center;
  position: relative;
}
.award-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--ember);
  line-height: 1;
  text-shadow: 0 0 24px rgba(232, 90, 44, 0.4);
}
.award-lbl {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 10px;
}
.award-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--cream);
  max-width: 520px;
  line-height: 1.5;
}
.award-quote::before, .award-quote::after {
  content: '"';
  color: var(--ember);
  font-size: 1.2em;
}
.award-cite {
  display: block;
  margin-top: 8px;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brisket);
  font-style: normal;
}

/* =======================  STORY  ======================= */
.band-story { background: var(--bg-near); }
.story-copy p {
  color: var(--cream-muted);
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.75;
}
.story-copy p:first-of-type { font-size: 18px; color: var(--cream); }
.story-copy strong { color: var(--cream-bright); font-weight: 600; }
.story-sign {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--brisket-bright);
}

/* =======================  MENU  ======================= */
.band-menu {
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(232,90,44,0.07) 0%, transparent 70%),
    var(--bg-deep);
}
.menu-banner {
  max-width: 760px;
  margin: 0 auto 60px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(232,90,44,0.10) 0%, rgba(200,149,86,0.06) 100%),
    var(--surface);
  border: 1px solid var(--border-ember);
  border-radius: var(--r-md);
  text-align: center;
}
.menu-banner-eyebrow {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ember-bright);
  margin: 0 0 12px;
}
.menu-banner-h {
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--cream-bright);
  margin: 0 0 8px;
  line-height: 1.2;
}
.menu-banner-h em { font-style: italic; color: var(--ember); }
.menu-banner-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--brisket-bright);
  margin: 6px 0 0;
}
.menu-banner-meta {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin: 10px 0 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 6vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
}
.menu-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--cream-bright);
  margin: 0 0 4px;
  line-height: 1.1;
}
.menu-card h3 em { font-style: italic; color: var(--ember); }
.menu-card-meta {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brisket);
  margin: 0 0 22px;
  font-weight: 600;
}
.menu-list {
  list-style: none; padding: 0; margin: 0;
}
.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dotted var(--border-strong);
  font-size: 16px;
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list .item-name {
  color: var(--cream);
}
.menu-list .item-name strong {
  font-weight: 500;
  display: block;
}
.menu-list .item-sub {
  color: var(--cream-dim);
  font-size: 13px;
  font-style: italic;
  margin-top: 2px;
  display: block;
}
.menu-list .item-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ember);
  font-feature-settings: "tnum";
  white-space: nowrap;
}
.menu-fineprint {
  margin: 56px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--cream-dim);
  font-style: italic;
}

/* =======================  PIT (cinematic full-bleed)  ======================= */
.band-pit {
  position: relative;
  isolation: isolate;
  padding: clamp(120px, 14vw, 200px) 0;
  overflow: hidden;
}
.pit-bg { position: absolute; inset: 0; z-index: -2; }
.pit-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.12) contrast(1.08) brightness(0.7); }
.pit-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(16,10,6,0.95) 0%, rgba(16,10,6,0.5) 55%, rgba(16,10,6,0.2) 100%),
    radial-gradient(70% 60% at 25% 50%, rgba(232,90,44,0.18) 0%, transparent 70%);
}
.pit-card {
  max-width: 640px;
  background: rgba(26,20,16,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--border-ember);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 60px);
}
.pit-card .eyebrow { margin-bottom: 16px; }
.pit-card p {
  color: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  margin: 16px 0 0;
}
.pit-card p:first-of-type { font-family: var(--f-display); font-size: 22px; line-height: 1.5; color: var(--cream-bright); }
.pit-card .display-xl { margin-bottom: 8px; }

/* =======================  CATERING  ======================= */
.band-catering {
  background:
    radial-gradient(60% 40% at 100% 0%, rgba(200,149,86,0.10) 0%, transparent 60%),
    var(--bg-near);
}
.catering-pull {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.3;
  color: var(--cream-bright);
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.catering-pull em { color: var(--ember); }
.catering-pull .mark {
  display: block;
  width: 40px; height: 1px;
  background: var(--ember);
  margin: 28px auto 0;
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.catering-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 26px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.catering-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.catering-card h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--cream-bright);
  margin: 0 0 16px;
  line-height: 1.2;
}
.catering-card h4 em { font-style: italic; color: var(--ember); }
.catering-card-num {
  display: inline-block;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--brisket);
  font-size: 15px;
  margin-bottom: 8px;
}
.catering-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.catering-card li {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--cream-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}

.catering-cta {
  text-align: center;
  margin-top: clamp(48px, 6vw, 70px);
  padding: clamp(36px, 4vw, 60px);
  background:
    linear-gradient(135deg, rgba(232,90,44,0.08) 0%, rgba(200,149,86,0.06) 100%),
    var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  max-width: 800px;
  margin-inline: auto;
}
.catering-cta h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 0 0 14px;
  color: var(--cream-bright);
}
.catering-cta h3 em { font-style: italic; color: var(--ember); }
.catering-cta p { color: var(--cream-muted); font-size: 16px; margin: 0 0 28px; }
.catering-cta .phone {
  display: inline-block;
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--ember-bright);
  margin-bottom: 14px;
  text-decoration: none;
}
.catering-cta .phone:hover { color: var(--cream-bright); }
.catering-cta .phone-lbl {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brisket);
  margin-bottom: 6px;
}

/* =======================  THE BARN  ======================= */
.band-barn {
  background:
    radial-gradient(50% 40% at 0% 50%, rgba(200,149,86,0.08) 0%, transparent 60%),
    var(--bg-deep);
}
.barn-figure {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface);
}
.barn-figure img { width: 100%; height: 100%; object-fit: cover; }
.barn-list {
  list-style: none; padding: 0; margin: 28px 0;
  display: grid; gap: 14px;
}
.barn-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px;
  color: var(--cream-muted);
}
.barn-list li::before {
  content: "·";
  color: var(--ember);
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.barn-list strong { color: var(--cream-bright); font-weight: 600; }
.barn-partner {
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brisket);
  border-radius: var(--r-sm);
}
.barn-partner p { margin: 0; color: var(--cream-muted); font-size: 14px; line-height: 1.55; }
.barn-partner strong { color: var(--cream-bright); font-weight: 600; }

/* =======================  VISIT  ======================= */
.band-visit { background: var(--bg-near); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.locations-grid {
  display: grid; gap: 28px;
  margin-top: 32px;
}
.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ember);
  border-radius: var(--r-md);
  padding: 28px 30px;
}
.location-card.barn-loc { border-left-color: var(--brisket); }
.location-card .loc-eyebrow {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember-bright);
  margin: 0 0 10px;
}
.location-card.barn-loc .loc-eyebrow { color: var(--brisket-bright); }
.location-card h3 {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--cream-bright);
  margin: 0 0 8px;
  line-height: 1.15;
}
.location-card h3 em { font-style: italic; color: var(--ember); }
.location-card .loc-addr {
  font-size: 15.5px;
  color: var(--cream);
  margin: 0 0 14px;
  line-height: 1.55;
}
.location-card .loc-contact {
  display: grid; gap: 6px;
  font-size: 14px;
  color: var(--cream-muted);
}
.location-card .loc-contact a {
  color: var(--cream);
  text-decoration: none;
}
.location-card .loc-contact a:hover { color: var(--ember-bright); }
.location-card .loc-phone-num {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--cream-bright);
}

.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 30px;
}
.hours-card h3 {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--cream-bright);
  margin: 0 0 16px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  text-align: left;
  font-size: 15px;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { color: var(--cream-muted); font-weight: 500; }
.hours-table td { color: var(--cream); text-align: right; font-feature-settings: "tnum"; }
.hours-table .closed { color: var(--cream-dim); font-style: italic; }
.hours-status {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--ember-bright);
  font-style: italic;
  font-family: var(--f-display);
}
.lunch-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--cream-muted);
}
.lunch-note strong { color: var(--brisket-bright); }

.visit-map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  filter: grayscale(40%) contrast(0.95) saturate(0.9) sepia(8%);
  transition: filter .35s var(--ease);
  margin-top: 32px;
}
.visit-map:hover { filter: none; }
.visit-map iframe { width: 100%; height: 100%; border: 0; }

/* =======================  GALLERY STRIP  ======================= */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
}
.gallery-strip .fig { aspect-ratio: 1/1; }

/* =======================  FOOTER  ======================= */
.site-footer {
  background: #08050a;
  border-top: 2px solid var(--ember);
  padding: 80px 0 24px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.ft-brand .brand-mark {
  width: 60px; height: 60px;
  font-size: 28px;
}
.ft-brand h4 {
  font-family: var(--f-display);
  font-size: 26px;
  margin: 16px 0 12px;
  color: var(--cream-bright);
  font-weight: 400;
  line-height: 1.1;
}
.ft-brand p {
  color: var(--cream-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0;
}
.ft-col h5 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember-bright);
  margin: 0 0 18px;
}
.ft-col p, .ft-col a {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--cream-muted);
  text-decoration: none;
  line-height: 1.5;
  margin: 0 0 8px;
  display: block;
}
.ft-col a:hover { color: var(--ember-bright); }
.ft-col p.small {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--cream-dim);
  margin-top: 6px;
}

.ft-base {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.ft-base p {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--cream-quiet);
  margin: 0;
}
.ft-credit a { color: var(--ember); }

/* =======================  REVEAL ANIMATIONS  ======================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =======================  RESPONSIVE  ======================= */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; }
  .hdr-cta .btn { display: none; }
  .hdr-inner { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .visit-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { gap: 26px; padding: 18px 24px; }
  .meta-num { font-size: 36px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 9px; }
  .scroll-cue { display: none; }
  .ft-base { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { padding: 12px 20px; font-size: 12px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
  .menu-list li { grid-template-columns: 1fr; gap: 4px; }
  .menu-list .item-price { font-size: 17px; }
}
