/* ==========================================================================
   Archibald & Woodrow's BBQ — Design System
   Lane: "heritage pit" — deep pit black + cinderblock grey + ember orange +
   sauce brick-red + bone cream. Different from Robertson's smoky-warm lane
   (charcoal/ember/brisket-gold) — this one leans darker, more rooted, with
   the cinderblock grey as the unique heritage nod to the 1962 Northport building.
   Type: Yeseva One (display, vintage signpainter feel) + Lora (body) + Inter (sans accent).
   ========================================================================== */

:root {
  /* Palette — pit / coal / cinderblock / ember / sauce / bone */
  --pit:           #0c0807;       /* deepest, the inside of the smoker */
  --pit-near:      #1a130d;       /* warm dark, the wood before it lights */
  --coal:          #221913;       /* surface dark, elevated cards */
  --coal-2:        #2c2117;
  --char:          #3b2d20;

  --cinder:        #6b6359;       /* cinderblock grey — the 1962 building */
  --cinder-warm:   #847766;
  --cinder-bright: #a0958a;

  --ember:         #d4622a;       /* warm fire-orange */
  --ember-bright:  #e87a44;
  --ember-deep:    #a64b1f;

  --sauce:         #9a2818;       /* deep brick-red sauce */
  --sauce-bright:  #b53824;
  --sauce-deep:    #6f1a0e;

  --bone:          #f1ebde;       /* cream/bone */
  --bone-bright:   #faf5e9;
  --bone-warm:     #e6dfcf;
  --bone-muted:    #b8b0a4;
  --bone-quiet:    #7a7368;
  --bone-faint:    #4a443c;

  --border:        rgba(241, 235, 222, 0.10);
  --border-strong: rgba(241, 235, 222, 0.22);
  --border-ember:  rgba(212, 98, 42, 0.36);
  --border-cinder: rgba(160, 149, 138, 0.28);

  /* Typography */
  --f-display: "Yeseva One", "DM Serif Display", Georgia, serif;
  --f-serif:   "Lora", Georgia, serif;
  --f-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --container-prose: 720px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 2px;
  --r-md: 6px;
  --r-lg: 12px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04), 0 10px 24px rgba(0,0,0,0.45);
  --shadow-2: 0 1px 0 rgba(255,255,255,0.06), 0 28px 64px rgba(0,0,0,0.55);

  --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-serif);
  background: var(--pit);
  color: var(--bone);
  line-height: 1.75;
  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 .2s var(--ease); }
a:hover { color: var(--bone-bright); }

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

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--ember); color: var(--pit);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: 0.04em;
  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: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(12, 8, 7, 0.92);
  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(--bone); }
.brand:hover { color: var(--bone); }
.brand-mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--sauce);
  border: 1px solid var(--border-ember);
  border-radius: 50%;
  color: var(--bone-bright);
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
}
.brand-name {
  font-family: var(--f-display);
  font-size: 21px;
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--bone-bright);
}
.brand-sub {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  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, 26px);
  justify-content: center;
}
.primary-nav a {
  color: var(--bone-muted);
  font-family: var(--f-sans);
  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-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover { color: var(--bone-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 26px;
  border-radius: var(--r-sm);
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  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(--pit);
  border-color: var(--ember);
}
.btn-primary:hover {
  background: var(--ember-bright);
  border-color: var(--ember-bright);
  color: var(--pit);
  box-shadow: 0 10px 28px -6px rgba(212, 98, 42, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--bone-bright);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--ember);
  background: rgba(212, 98, 42, 0.08);
  color: var(--bone-bright);
}
.btn-sauce {
  background: var(--sauce);
  color: var(--bone-bright);
  border-color: var(--sauce);
}
.btn-sauce:hover {
  background: var(--sauce-bright);
  border-color: var(--sauce-bright);
  box-shadow: 0 10px 28px -6px rgba(154, 40, 24, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  appearance: none; background: transparent;
  border: 1px solid var(--border-strong);
  width: 44px; height: 44px; border-radius: 4px;
  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(--bone); 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(12, 8, 7, 0.97);
  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(--bone);
  font-family: var(--f-display);
  font-size: 22px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.m-call { color: var(--ember-bright); }

/* =======================  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;
  object-position: center 60%;
  transform: scale(1.04);
  filter: saturate(0.95) contrast(1.10) brightness(0.55);
  animation: heroDrift 32s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.03) translateX(-0.5%); }
  to   { transform: scale(1.09) translateX(0.7%); }
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 70% at 50% 30%, rgba(0,0,0,0) 0%, rgba(12,8,7,0.55) 60%, rgba(12,8,7,0.95) 100%),
    linear-gradient(180deg, rgba(12,8,7,0.7) 0%, rgba(12,8,7,0.30) 30%, rgba(12,8,7,0.80) 78%, rgba(12,8,7,1) 100%);
}

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

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

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 11vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--bone-bright);
  text-shadow: 0 6px 40px rgba(0,0,0,0.7);
  overflow-wrap: break-word;
}
.hero-title .amp {
  color: var(--ember-bright);
  font-style: italic;
  font-size: 0.86em;
}
.hero-title .line-2 {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.13em;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: var(--bone-muted);
  margin-top: 26px;
  text-shadow: none;
  text-transform: uppercase;
}

.hero-tag {
  max-width: 740px;
  margin: 40px auto 12px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--bone-bright);
  font-weight: 500;
}
.hero-tag em { color: var(--ember-bright); font-style: italic; }

.hero-sub {
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--f-serif);
  font-size: 16px;
  color: var(--bone-muted);
  line-height: 1.7;
}

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

.hero-meta {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(22px, 4vw, 56px);
  justify-content: center;
  padding: 24px clamp(28px, 4vw, 64px);
  background: rgba(12, 8, 7, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-ember);
  border-radius: 2px;
  width: fit-content;
}
.meta-item { text-align: center; }
.meta-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--ember-bright);
  line-height: 1;
  letter-spacing: -0.015em;
}
.meta-lbl {
  display: block;
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-muted);
  margin-top: 10px;
}

/* =======================  PRESS WALL  ======================= */
.band-press {
  background: linear-gradient(180deg, var(--pit) 0%, var(--pit-near) 100%);
  border-top: 1px solid var(--border-ember);
  border-bottom: 1px solid var(--border-ember);
  padding: clamp(72px, 8vw, 112px) 0;
}
.press-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.press-head .display { color: var(--bone-bright); }

.press-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.press-quote {
  padding: 28px 30px;
  border-left: 2px solid var(--ember);
  background: rgba(212, 98, 42, 0.04);
}
.press-quote blockquote {
  margin: 0 0 14px;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.32;
  color: var(--bone-bright);
}
.press-quote cite {
  display: block;
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
}
.press-quote cite em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bone-muted);
  font-size: 13px;
  margin-left: 8px;
}

.press-logos {
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-muted);
}
.press-logos span.sep { color: var(--bone-faint); }

/* =======================  GENERIC SECTION  ======================= */
.band { padding: clamp(90px, 10vw, 140px) 0; position: relative; }
.band-pit  { background: var(--pit); }
.band-near { background: var(--pit-near); }
.band-coal { background: var(--coal); }

.band-head { max-width: 820px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; }
.band-head .lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--bone-muted);
  line-height: 1.65;
  margin: 22px 0 0;
}
.band-head .lede em { color: var(--ember-bright); }

.eyebrow {
  font-family: var(--f-sans);
  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.cinder { color: var(--cinder-bright); }
.eyebrow.cinder.with-mark::before { background: var(--cinder-bright); }

.display {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--bone-bright);
  margin: 0 0 14px;
}
.display em { color: var(--ember-bright); font-style: italic; }
.display-xl {
  font-family: var(--f-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone-bright);
  margin: 0 0 14px;
}
.display-xl em { color: var(--ember-bright); font-style: italic; }

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

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

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

/* =======================  ORIGIN (cinderblock callout)  ======================= */
.band-origin {
  background: var(--pit-near);
  border-top: 1px solid var(--border);
}
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.origin-logo-frame {
  background: var(--bone);
  border: 1px solid var(--border-cinder);
  padding: 32px;
  text-align: center;
  position: relative;
}
.origin-logo-frame::before, .origin-logo-frame::after {
  content: ""; position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--cinder);
}
.origin-logo-frame::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.origin-logo-frame::after  { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.origin-logo-frame img {
  max-width: 280px;
  margin: 0 auto;
  filter: contrast(1.05) saturate(1.1);
}
.origin-logo-frame p {
  margin: 24px 0 0;
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cinder);
}

.origin-copy p {
  font-family: var(--f-serif);
  font-size: 17.5px;
  line-height: 1.78;
  color: var(--bone);
  margin: 0 0 18px;
}
.origin-copy p:first-of-type {
  font-size: 19.5px;
  color: var(--bone-bright);
}
.origin-copy strong { color: var(--bone-bright); font-weight: 600; }
.origin-copy em { color: var(--ember-bright); font-style: italic; }

/* =======================  FAMILY  ======================= */
.band-family {
  background: var(--pit);
}
.family-lineage {
  max-width: 880px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.6;
  color: var(--bone);
  text-align: center;
}
.family-lineage strong {
  font-family: var(--f-display);
  font-style: normal;
  color: var(--ember-bright);
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  max-width: 1000px;
  margin: 0 auto;
}
.family-card { text-align: center; }
.family-card .f-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--coal);
  border: 1px solid var(--border-cinder);
  margin-bottom: 22px;
}
.family-card .f-img img { width: 100%; height: 100%; object-fit: cover; }
.family-card .f-img.placeholder {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--coal) 0%, var(--coal-2) 100%);
}
.family-card .f-img.placeholder span {
  font-family: var(--f-display);
  font-size: 52px;
  color: var(--ember);
}
.family-card h4 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--bone-bright);
  margin: 0 0 6px;
  line-height: 1.15;
}
.family-card .f-role {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
}
.family-card .f-note {
  margin-top: 12px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--bone-muted);
  line-height: 1.55;
}

.family-quote {
  max-width: 720px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding: 28px 30px;
  border-left: 2px solid var(--ember);
  background: rgba(212, 98, 42, 0.05);
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--bone-bright);
}
.family-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
}

/* =======================  PIT (cinematic)  ======================= */
.band-pit-cinematic {
  position: relative;
  isolation: isolate;
  padding: clamp(110px, 12vw, 180px) 0;
  overflow: hidden;
}
.pit-bg { position: absolute; inset: 0; z-index: -2; }
.pit-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.90) contrast(1.10) brightness(0.50);
}
.pit-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(12,8,7,0.92) 0%, rgba(12,8,7,0.55) 55%, rgba(12,8,7,0.18) 100%),
    radial-gradient(70% 60% at 25% 50%, rgba(212,98,42,0.15) 0%, transparent 70%);
}
.pit-card {
  max-width: 640px;
  background: rgba(20, 14, 10, 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-md);
  padding: clamp(36px, 5vw, 60px);
}
.pit-card p {
  font-family: var(--f-serif);
  color: var(--bone);
  font-size: 17.5px;
  line-height: 1.75;
  margin: 16px 0 0;
}
.pit-card p:first-of-type {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--bone-bright);
}

/* =======================  THREE LOCATIONS  ======================= */
.band-locations {
  background: var(--pit-near);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.loc {
  background: var(--coal);
  border: 1px solid var(--border);
  border-top: 3px solid var(--ember);
  border-radius: var(--r-sm);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 12px;
}
.loc.original { border-top-color: var(--sauce); }
.loc.new      { border-top-color: var(--ember-bright); }
.loc .loc-tag {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ember-bright);
}
.loc.original .loc-tag { color: var(--sauce-bright); }
.loc.new      .loc-tag { color: var(--ember-bright); }

.loc h3 {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--bone-bright);
  margin: 0;
  line-height: 1.1;
}
.loc h3 em { color: var(--ember-bright); font-style: italic; }
.loc .loc-since {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--bone-muted);
  margin-top: -2px;
}
.loc .loc-addr {
  font-family: var(--f-serif);
  font-size: 15.5px;
  color: var(--bone);
  line-height: 1.55;
  margin: 16px 0 6px;
}
.loc .loc-phone {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--bone-bright);
  text-decoration: none;
  margin-top: 4px;
}
.loc .loc-phone:hover { color: var(--ember-bright); }
.loc .loc-hours {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bone-muted);
  line-height: 1.7;
}
.loc .loc-status {
  margin-top: 8px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ember-bright);
}

/* =======================  MENU  ======================= */
.band-menu { background: var(--pit); }

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-card {
  background: var(--coal);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 30px 28px;
}
.menu-card h4 {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--bone-bright);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.menu-card h4 em { color: var(--ember-bright); font-style: italic; }

.menu-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  font-family: var(--f-serif);
  font-size: 15px;
  color: var(--bone);
}
.menu-row .m-name { flex: 1; }
.menu-row .m-name em {
  display: block;
  font-style: italic;
  font-size: 13px;
  color: var(--bone-muted);
  margin-top: 2px;
}
.menu-row .m-price {
  font-family: var(--f-display);
  color: var(--ember-bright);
  font-size: 16px;
  white-space: nowrap;
  font-feature-settings: "tnum";
}

.menu-footnote {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--bone-quiet);
}

/* =======================  CATERING  ======================= */
.band-catering { background: var(--coal); }
.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.catering-copy h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--bone-bright);
  margin: 0 0 14px;
  line-height: 1.1;
}
.catering-copy h3 em { color: var(--ember-bright); font-style: italic; }
.catering-copy p {
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--bone);
  margin: 0 0 16px;
}
.catering-copy .cat-cta {
  margin-top: 28px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.catering-phone {
  display: inline-flex;
  flex-direction: column;
  padding: 16px 28px;
  background: var(--sauce);
  color: var(--bone-bright);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background .25s var(--ease);
}
.catering-phone:hover { background: var(--sauce-bright); color: var(--bone-bright); }
.catering-phone .cp-label {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.85;
}
.catering-phone .cp-num {
  font-family: var(--f-display);
  font-size: 24px;
  margin-top: 4px;
  letter-spacing: -0.005em;
}

/* =======================  CLOSER  ======================= */
.band-closer {
  background: var(--pit);
  padding: clamp(80px, 9vw, 130px) 0;
  text-align: center;
  border-top: 1px solid var(--border-ember);
}
.closer-display {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--bone-bright);
  max-width: 880px;
  margin: 0 auto 24px;
}
.closer-display em { color: var(--ember-bright); font-style: italic; }
.closer-sub {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--bone-muted);
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

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

/* =======================  FOOTER  ======================= */
.site-footer {
  background: #050302;
  border-top: 2px solid var(--ember);
  padding: 72px 0 26px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.ft-brand h4 {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--bone-bright);
  margin: 0 0 12px;
  line-height: 1.1;
}
.ft-brand h4 em { color: var(--ember-bright); font-style: italic; }
.ft-brand p {
  font-family: var(--f-serif);
  color: var(--bone-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  max-width: 360px;
}
.ft-col h5 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  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(--bone-muted);
  text-decoration: none;
  line-height: 1.5;
  margin: 0 0 8px;
  display: block;
}
.ft-col a:hover { color: var(--bone-bright); }
.ft-col p.small {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--bone-quiet);
  margin-top: 6px;
}

.ft-base {
  margin-top: 56px;
  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;
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--bone-faint);
}
.ft-base a { color: var(--ember); }

/* =======================  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; }
  .hero-meta { grid-template-columns: repeat(2, auto); gap: 22px 40px; }
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .origin-grid { grid-template-columns: 1fr; }
  .catering-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 9px; }
  .hero-actions .btn { padding: 12px 20px; font-size: 12px; }
  .hero-meta { padding: 18px 24px; }
  .meta-num { font-size: 28px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: repeat(2, 1fr); }
}
