/* =============================================================
   CRACK CHICKEN — Lansing, MI
   Design system: gold-on-warm-black chicken-shack signage
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink: #16110b;
  --ink-deep: #0c0906;
  --ink-soft: #241c13;
  --ink-raised: #2c2216;

  --gold: #f7b41c;
  --gold-bright: #ffc72c;
  --gold-deep: #d9930a;

  --orange: #ef5f1e;
  --orange-deep: #cf4b12;

  --cream: #fbf1df;
  --cream-2: #f4e6cd;
  --paper: #fffbf3;
  --blue: #2e93d9;

  --text-light: #fcf4e6;
  --muted-light: rgba(252, 244, 230, 0.66);
  --text-dark: #241c13;
  --muted-dark: #6b5b45;
  --line-dark: rgba(252, 244, 230, 0.14);
  --line-light: rgba(36, 28, 19, 0.14);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.75rem);
  --radius: 18px;
  --radius-sm: 12px;

  --shadow-card: 0 18px 44px -22px rgba(0, 0, 0, 0.55);
  --shadow-lift: 0 26px 60px -26px rgba(0, 0, 0, 0.7);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; line-height: 0.98; font-weight: 400; }

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 400;
}

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Section rhythm ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--dark { background: var(--ink); color: var(--text-light); }
.section--deep { background: var(--ink-deep); color: var(--text-light); }
.section--cream { background: var(--cream); color: var(--text-dark); }
.section--paper { background: var(--paper); color: var(--text-dark); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
}
.section--cream .eyebrow, .section--paper .eyebrow { color: var(--orange-deep); }

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
}
.lede { font-size: clamp(1.05rem, 2.4vw, 1.25rem); max-width: 52ch; }
.section--dark .lede, .section--deep .lede { color: var(--muted-light); }
.section--cream .lede, .section--paper .lede { color: var(--muted-dark); }

.scrawl {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
}
.section--cream .scrawl, .section--paper .scrawl { color: var(--orange-deep); }

/* egg-crack divider */
.crackline {
  height: 14px;
  width: 100%;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='14' viewBox='0 0 120 14'%3E%3Cpath d='M0 7h14l6-6 8 12 9-9 7 8 8-11 9 9 8-6 7 8 9-9 8 6h10' fill='none' stroke='black' stroke-width='2.4'/%3E%3C/svg%3E") repeat-x center / 120px 14px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='14' viewBox='0 0 120 14'%3E%3Cpath d='M0 7h14l6-6 8 12 9-9 7 8 8-11 9 9 8-6 7 8 9-9 8 6h10' fill='none' stroke='black' stroke-width='2.4'/%3E%3C/svg%3E") repeat-x center / 120px 14px;
  opacity: 0.9;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  box-shadow: 0 12px 26px -12px rgba(239, 95, 30, 0.75);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -14px rgba(239, 95, 30, 0.85); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); box-shadow: 0 12px 26px -12px rgba(247, 180, 28, 0.7); }
.btn--gold:hover { box-shadow: 0 20px 34px -14px rgba(247, 180, 28, 0.85); background: var(--gold-bright); }

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--line-dark);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); box-shadow: none; }
.section--cream .btn--ghost, .section--paper .btn--ghost { color: var(--text-dark); border-color: var(--line-light); }
.section--cream .btn--ghost:hover, .section--paper .btn--ghost:hover { border-color: var(--orange-deep); color: var(--orange-deep); }

.btn--lg { padding: 1.1rem 1.9rem; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 9, 6, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.3s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 46px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--text-light);
  line-height: 0.85;
}
.brand-name span { color: var(--gold); display: block; }

.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav a {
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  color: var(--muted-light);
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--text-light); }
.nav a[aria-current="page"] { color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 0.6rem; }
.halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7cd88f;
  border: 1.5px solid rgba(124, 216, 143, 0.4);
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
}
.halal-badge::before { content: "✓"; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--line-dark);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  color: var(--text-light);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-deep);
    border-bottom: 1px solid var(--line-dark);
    padding: 0.5rem var(--gutter) 1.4rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 0.9rem 0.4rem; font-size: 1.1rem; border-bottom: 1px solid var(--line-dark); border-radius: 0; }
  .nav .btn { margin-top: 1rem; }
  .nav .btn { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink-deep);
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  /* Color-grade the compressed source so it reads brighter, punchier and
     visually crisper on high-DPI screens. */
  filter: saturate(1.16) contrast(1.08) brightness(1.06);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 70% 20%, rgba(247, 180, 28, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(12, 9, 6, 0.38) 0%, rgba(12, 9, 6, 0.08) 32%, rgba(12, 9, 6, 0.8) 84%, var(--ink) 100%);
}
.hero__inner { padding-block: clamp(2.5rem, 7vw, 5rem); width: 100%; }
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
}
.hero__kicker::before { content: ""; width: 30px; height: 2px; background: var(--gold-bright); }

.hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(3.4rem, 15vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 0.004em;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.hero h1 .pop { color: var(--gold); display: inline-block; }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  display: inline-block;
}
.hero__scrawl {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: clamp(1.4rem, 4.5vw, 2.3rem);
  transform: rotate(-4deg);
  display: inline-block;
  margin: 0.4rem 0 0.2rem;
}
.hero__sub {
  max-width: 46ch;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  color: var(--muted-light);
  margin: 1.2rem 0 1.8rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.86rem;
  color: var(--muted-light);
}
.hero__meta strong { color: var(--gold); font-weight: 800; }

/* ---------- Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); box-shadow: var(--shadow-lift); width: 100%; }
.story-stamp {
  position: absolute;
  bottom: -18px;
  right: -10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  line-height: 0.9;
  text-align: center;
  box-shadow: var(--shadow-card);
  transform: rotate(-5deg);
}
.story-stamp b { font-size: 1.9rem; display: block; }
.story-stamp span { font-size: 0.7rem; letter-spacing: 0.14em; font-family: var(--font-body); }

.story-body p { margin: 0 0 1.1rem; }
.story-body .big-quote {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  line-height: 1;
  color: var(--gold);
  margin: 1.4rem 0;
}

/* ---------- Sauce ---------- */
.sauce {
  background:
    radial-gradient(90% 120% at 15% 10%, rgba(239, 95, 30, 0.16), transparent 55%),
    radial-gradient(80% 120% at 90% 90%, rgba(247, 180, 28, 0.12), transparent 55%),
    var(--ink-deep);
  text-align: center;
  overflow: hidden;
}
.sauce__word {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(4rem, 22vw, 15rem);
  line-height: 0.8;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(247, 180, 28, 0.45);
  margin: 0;
  position: relative;
}
.sauce__word .fill { color: var(--gold); -webkit-text-stroke: 0; }
.sauce__tag {
  font-family: var(--font-script);
  color: var(--orange);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  transform: rotate(-3deg);
  display: inline-block;
  margin-top: -0.4rem;
}
.sauce__copy { max-width: 44ch; margin: 1.4rem auto 2rem; color: var(--muted-light); font-size: 1.12rem; }

/* ---------- Cards / menu preview ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--ink-soft);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid var(--line-dark);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card__body { padding: 1.5rem; position: relative; z-index: 1; width: 100%; }
.card__num {
  font-family: var(--font-display);
  color: rgba(247, 180, 28, 0.35);
  font-size: 3rem;
  line-height: 0.8;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}
.card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.85rem;
  color: var(--gold-bright);
}
.card p { color: var(--muted-light); font-size: 0.95rem; margin: 0.4rem 0 0; }
.card__cta { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 800; color: var(--gold); font-size: 0.9rem; }
.card__cta::after { content: "→"; transition: transform 0.25s var(--ease); }
.card:hover .card__cta::after { transform: translateX(5px); }
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12, 9, 6, 0.85) 100%);
  z-index: 0;
}

/* ---------- Recognition strip ---------- */
.recog { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.recog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-card);
}
.recog-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.recog-card figcaption { padding: 1.1rem 1.2rem 1.3rem; }
.recog-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; color: var(--gold-bright); }
.recog-card p { color: var(--muted-light); font-size: 0.9rem; margin: 0.3rem 0 0; }

/* ---------- Seasoning teaser ---------- */
.teaser-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.teaser-media { display: flex; justify-content: center; }
.teaser-media img { max-width: 360px; border-radius: var(--radius); filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5)); }

/* ---------- Menu page ---------- */
.menu-hero {
  background:
    radial-gradient(100% 100% at 80% 0%, rgba(247, 180, 28, 0.12), transparent 60%),
    var(--ink-deep);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
.menu-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.8rem, 11vw, 6rem); line-height: 0.85; }
.menu-hero h1 .pop { color: var(--gold); }
.menu-hero p { color: var(--muted-light); max-width: 46ch; margin: 1rem auto 1.6rem; }

.menu-nav {
  position: sticky;
  top: 68px;
  z-index: 40;
  background: rgba(12, 9, 6, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-block: 1px solid var(--line-dark);
}
.menu-nav__scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.7rem var(--gutter);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-nav__scroll::-webkit-scrollbar { display: none; }
.chip {
  white-space: nowrap;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--line-dark);
  color: var(--muted-light);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  scroll-margin: 1rem;
}
.chip:hover { color: var(--text-light); border-color: var(--gold); }
.chip.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.menu-section { padding-block: clamp(2.4rem, 5vw, 3.6rem); scroll-margin-top: 130px; }
.menu-section__head { margin-bottom: 1.6rem; }
.menu-section__head h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.9rem, 5vw, 3rem); color: var(--gold); }
.menu-section__note { color: var(--muted-light); font-size: 0.95rem; margin-top: 0.4rem; }

.mitems { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.2rem 2.2rem; }
.mitem {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--line-dark);
}
.mitem__name { font-weight: 700; }
.mitem__dots { flex: 1; border-bottom: 2px dotted rgba(252, 244, 230, 0.2); transform: translateY(-4px); min-width: 12px; }
.mitem__price { font-weight: 800; color: var(--gold-bright); white-space: nowrap; }
.mitem__price .was { color: var(--muted-light); text-decoration: line-through; font-weight: 600; margin-right: 0.4rem; font-size: 0.9em; }
.mitem__desc { display: block; color: var(--muted-light); font-size: 0.85rem; font-weight: 400; margin-top: 0.15rem; }

.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7cd88f;
  border: 1.5px solid rgba(124, 216, 143, 0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  vertical-align: middle;
}

.price-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.price-table caption { text-align: left; color: var(--muted-light); font-size: 0.85rem; margin-bottom: 0.6rem; }
.price-table th, .price-table td { padding: 0.6rem 0.7rem; text-align: right; border-bottom: 1px dashed var(--line-dark); }
.price-table th:first-child, .price-table td:first-child { text-align: left; }
.price-table thead th { color: var(--gold); font-family: var(--font-display); text-transform: uppercase; font-weight: 400; letter-spacing: 0.03em; }
.price-table tbody th { font-weight: 700; color: var(--text-light); }
.price-table td { color: var(--gold-bright); font-weight: 700; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  background: linear-gradient(120deg, rgba(247, 180, 28, 0.12), rgba(239, 95, 30, 0.08));
  border: 1px solid rgba(247, 180, 28, 0.3);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.6rem;
}
.feature-item__price { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 0.9; }
.feature-item h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; color: var(--gold-bright); }
.feature-item p { color: var(--muted-light); font-size: 0.92rem; margin: 0.3rem 0 0; }

/* ---------- Sub-page hero (generic) ---------- */
.page-hero {
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(247, 180, 28, 0.14), transparent 60%),
    var(--ink-deep);
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.page-hero .eyebrow { color: var(--gold-bright); }
.page-hero .eyebrow::before { background: var(--gold-bright); }
.page-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.8rem, 11vw, 6rem); line-height: 0.85; }
.page-hero h1 .pop { color: var(--gold); }
.page-hero p { color: var(--muted-light); max-width: 52ch; margin-top: 1.1rem; font-size: 1.1rem; }

/* ---------- Seasoning page ---------- */
.season-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.season-hero-grid img { max-width: 420px; margin-inline: auto; filter: drop-shadow(0 30px 45px rgba(0,0,0,0.55)); }
.offer-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  box-shadow: 0 14px 30px -14px rgba(247, 180, 28, 0.7);
}
.uses { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.use-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  text-align: center;
  color: var(--text-dark);
}
.use-card .ico { font-size: 2rem; }
.use-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.2rem; margin: 0.4rem 0 0.2rem; color: var(--orange-deep); }
.use-card p { font-size: 0.88rem; color: var(--muted-dark); margin: 0; }

/* ---------- Catering ---------- */
.pack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
.pack {
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.pack:hover { transform: translateY(-5px); border-color: var(--gold); }
.pack__tag { color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }
.pack h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.9rem; color: var(--gold-bright); margin: 0.3rem 0; }
.pack ul { list-style: none; padding: 0; margin: 0.8rem 0 0; }
.pack li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; border-bottom: 1px dashed var(--line-dark); font-size: 0.95rem; }
.pack li span:last-child { color: var(--gold-bright); font-weight: 800; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.3rem; }
.info-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.info-ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(247, 180, 28, 0.14);
  color: var(--gold);
  flex-shrink: 0;
}
.info-ico svg { width: 22px; height: 22px; }
.info-list h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; color: var(--gold-bright); letter-spacing: 0.03em; }
.info-list p, .info-list a { color: var(--muted-light); margin: 0.15rem 0 0; }
.info-list a:hover { color: var(--gold); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark); box-shadow: var(--shadow-card); }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px dashed var(--line-dark); }
.hours-table td:last-child { text-align: right; color: var(--gold-bright); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(90% 140% at 10% 10%, rgba(239, 95, 30, 0.2), transparent 55%),
    var(--gold);
  color: var(--ink);
  text-align: center;
}
.cta-band h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.2rem, 7vw, 4rem); line-height: 0.9; }
.cta-band p { max-width: 46ch; margin: 0.8rem auto 1.6rem; color: rgba(22, 17, 11, 0.75); font-weight: 500; }
.cta-band .btn--gold { --btn-bg: var(--ink); --btn-fg: var(--gold); }
.cta-band .btn--gold:hover { background: var(--ink-soft); }
.cta-band .btn--ghost { color: var(--ink); border-color: rgba(22,17,11,0.3); }
.cta-band .btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); border-top: 1px solid var(--line-dark); padding-block: 3rem 6.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand img { height: 60px; margin-bottom: 0.8rem; }
.footer-brand p { color: var(--muted-light); font-size: 0.92rem; max-width: 30ch; }
.footer-col h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; color: var(--gold); letter-spacing: 0.04em; margin: 0 0 0.9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-col a, .footer-col p { color: var(--muted-light); font-size: 0.92rem; margin: 0; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  justify-content: space-between;
  align-items: center;
  color: var(--muted-light);
  font-size: 0.82rem;
}
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- Sticky mobile order bar ---------- */
.order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem;
  padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
  background: rgba(12, 9, 6, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
}
.order-bar .btn { flex: 1; padding: 0.85rem 0.5rem; font-size: 0.86rem; }
@media (max-width: 720px) {
  .order-bar { display: flex; }
  .site-footer { padding-bottom: 7rem; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

.hero__anim { opacity: 0; transform: translateY(20px); animation: heroIn 0.9s var(--ease) forwards; }
.hero__anim.a1 { animation-delay: 0.1s; }
.hero__anim.a2 { animation-delay: 0.28s; }
.hero__anim.a3 { animation-delay: 0.46s; }
.hero__anim.a4 { animation-delay: 0.62s; }
.hero__anim.a5 { animation-delay: 0.78s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__anim { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .btn, .card, .pack { transition: none !important; }
  /* The hero video is core brand content, so it stays visible and playing
     even under reduced motion. The gratuitous scroll/hover animations above
     are the ones that get disabled. */
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .story-grid, .teaser-grid, .season-hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .teaser-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .story-stamp { right: 10px; }
  .hero__meta { gap: 1rem 1.2rem; }
}
