/* ============================================================
   BASE — El Rancho Auténtico
   Contrast audit (WCAG AA):
     dark bg #1A1714 → text #F5EFE3 (ratio ~12:1 ✓)  gold #C9A02E (ratio ~4.6:1 ✓)
     light bg #F5EFE3 → heading #1A1714 (ratio ~12:1 ✓) body #374151 (ratio ~7.5:1 ✓)
     red bg #B5302A → text #F5EFE3 (ratio ~5.2:1 ✓)
   ============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  background: var(--color-charcoal);
  color: var(--text-on-dark-body);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
fieldset { border: none; }
address { font-style: normal; }

/* ── Skip link ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: var(--z-modal);
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Container / Layout ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.section-py { padding-block: var(--section-py); }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
}
h1 { font-size: var(--text-7xl); }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-3xl); }

.eyebrow,
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-3);
}
.eyebrow--light { color: var(--color-gold-light); }

/* on dark: heading cream, body muted-cream */
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--text-on-dark-heading); }
.on-dark p { color: var(--text-on-dark-body); }

/* on light: heading charcoal, body slate */
.on-light h1, .on-light h2, .on-light h3 { color: var(--text-on-light-heading); }
.on-light p { color: var(--text-on-light-body); }
.on-light .eyebrow,
.on-light .section-label { color: var(--color-red); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
.btn--red {
  background: var(--color-red);
  color: var(--color-cream);
}
.btn--red:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(181,48,42,0.45);
}
.btn--gold {
  background: var(--color-gold);
  color: var(--color-charcoal);
}
.btn--gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,160,46,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--color-cream);
  border: 1px solid rgba(245,239,227,0.35);
}
.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn--outline {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid var(--color-cream);
}
.btn--outline:hover {
  background: var(--color-cream);
  color: var(--color-charcoal);
}
.btn--outline-red {
  background: transparent;
  color: var(--color-red);
  border: 1.5px solid var(--color-red);
}
.btn--outline-red:hover {
  background: var(--color-red);
  color: var(--color-cream);
}
.btn--full { width: 100%; }

/* ── Scroll-reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* ── Parallax ────────────────────────────────────────────── */
[data-parallax] { will-change: transform; transform: translateY(var(--py, 0)); }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
}
.site-header {
  background: rgba(26,23,20,0.0);
  transition: background var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              padding var(--dur-base) var(--ease);
}
.site-header.scrolled {
  background: rgba(26,23,20,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,160,46,0.15);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: var(--header-h);
  transition: height var(--dur-base) var(--ease);
}
.site-header.scrolled .site-header__inner { height: var(--header-h-sm); }

.site-header__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: var(--ls-tight);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-header.scrolled .site-header__logo { font-size: var(--text-lg); }

.site-header__nav {
  display: none;
  gap: var(--sp-6);
  flex: 1;
  justify-content: center;
}
.site-header__nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(245,239,227,0.78);
  transition: color var(--dur-fast);
}
.site-header__nav a:hover { color: var(--color-gold); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-left: auto;
}
.tap-call {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-on-dark-body);
}
.tap-call:hover { color: var(--color-gold); }
.site-header__order { padding: 0.6rem 1.25rem; font-size: var(--text-xs); }

.lang-toggle {
  padding: 0.4rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
}

/* burger */
.site-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: var(--sp-2);
}
.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast);
}
.site-header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger.open span:nth-child(2) { opacity: 0; }
.site-header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--sp-6);
  padding: var(--sp-8) var(--container-px) var(--sp-10);
  background: var(--color-charcoal);
  border-top: var(--border-gold);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease), padding var(--dur-slow) var(--ease);
}
.mobile-nav.open {
  display: flex;
  max-height: 600px;
}
.mobile-nav a {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  color: var(--text-on-dark-heading);
}
.mobile-nav a:hover { color: var(--color-gold); }

/* ── Responsive header ───────────── */
@media (min-width: 900px) {
  .site-header__nav   { display: flex; }
  .tap-call           { display: flex; }
  .site-header__burger { display: none; }
}

/* ══════════════════════════════════════════════════════════
   STICKY CTA (floating — appears after hero)
   ══════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: var(--z-sticky);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}
.sticky-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.sticky-cta__btn {
  box-shadow: 0 4px 24px rgba(181,48,42,0.55);
}
@media (max-width: 599px) {
  .sticky-cta {
    left: var(--sp-4);
    right: var(--sp-4);
    bottom: var(--sp-4);
  }
  .sticky-cta__btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vh, 8rem);
  background:
    radial-gradient(ellipse at 20% 70%, rgba(181,48,42,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 25%, rgba(201,160,46,0.10) 0%, transparent 50%),
    linear-gradient(160deg, #2b1e10 0%, #1a1714 45%, #0d0b09 100%);
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,23,20,0.15) 0%,
    rgba(26,23,20,0.50) 55%,
    rgba(26,23,20,0.92) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  padding-top: var(--header-h);
}
.hero__headline {
  font-size: var(--text-7xl);
  color: var(--text-on-dark-heading);
  max-width: 14ch;
  margin-bottom: var(--sp-6);
}
.hero__sub {
  font-size: var(--text-xl);
  color: var(--text-on-dark-body);
  max-width: 46ch;
  margin-bottom: var(--sp-10);
  line-height: var(--lh-snug);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
/* grain texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--color-cream);
  padding-block: var(--sp-10);
  border-bottom: 1px solid var(--color-cream-2);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-8) var(--sp-12);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.trust-badge__icon {
  width: 40px; height: 40px;
  background: var(--color-red);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  flex-shrink: 0;
}
.trust-badge__text {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-on-light-heading);
}

/* ══════════════════════════════════════════════════════════
   SIGNATURE DISHES
   ══════════════════════════════════════════════════════════ */
.dishes {
  background: var(--color-charcoal);
  padding-block: var(--section-py);
}
.dishes__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.dishes__header h2 { color: var(--text-on-dark-heading); }
.dishes__header p  { color: var(--text-on-dark-body); margin-top: var(--sp-4); max-width: 52ch; margin-inline: auto; }

.dishes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}
.dish-card {
  background: var(--color-charcoal-2);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,160,46,0.5);
}
.dish-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
}
/* gradient placeholders — replace with real photos */
.dish-card:nth-child(1) .dish-card__img { background: linear-gradient(135deg,#4a2010 0%,#2a1408 60%,#1a1714 100%); }
.dish-card:nth-child(2) .dish-card__img { background: linear-gradient(135deg,#4a1010 0%,#2a0808 60%,#1a1714 100%); }
.dish-card:nth-child(3) .dish-card__img { background: linear-gradient(135deg,#3d3010 0%,#1e1808 60%,#1a1714 100%); }
.dish-card:nth-child(4) .dish-card__img { background: linear-gradient(135deg,#1a3020 0%,#0d1a0e 60%,#1a1714 100%); }

.dish-card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.dish-card__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--text-on-dark-heading);
}
.dish-card__desc {
  font-size: var(--text-sm);
  color: var(--text-on-dark-body);
  line-height: var(--lh-normal);
  flex: 1;
}
.dish-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: var(--border-gold);
}
.dish-card__price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
}
.dish-card__add {
  font-size: var(--text-xs);
  padding: 0.5rem 1rem;
}

/* ══════════════════════════════════════════════════════════
   STORY TEASER
   ══════════════════════════════════════════════════════════ */
.story-teaser {
  background: var(--color-cream);
  padding-block: var(--section-py);
}
.story-teaser__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.story-teaser__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.story-teaser__image-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 60%, rgba(181,48,42,0.25) 0%, transparent 60%),
    linear-gradient(135deg,#2b1e10 0%,#1a1714 100%);
  transform: translateY(var(--py, 0));
}
.story-teaser__text .eyebrow { color: var(--color-red); }
.story-teaser__text h2 { color: var(--text-on-light-heading); margin-bottom: var(--sp-6); }
.story-teaser__text p  { color: var(--text-on-light-body);    margin-bottom: var(--sp-8); line-height: var(--lh-loose); max-width: 50ch; }
@media (min-width: 780px) {
  .story-teaser__inner { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   ORDER PATHWAY
   ══════════════════════════════════════════════════════════ */
.order-pathway {
  background: var(--color-cream-2);
  padding-block: var(--section-py);
}
.order-pathway__header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.order-pathway__header .eyebrow { color: var(--color-red); }
.order-pathway__header h2 { color: var(--text-on-light-heading); }
.order-pathway__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-8);
}
.order-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  border-top: 4px solid var(--color-red);
}
.order-card__icon {
  width: 52px; height: 52px;
  background: rgba(181,48,42,0.10);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
}
.order-card h3 { font-size: var(--text-3xl); color: var(--text-on-light-heading); }
.order-card p  { color: var(--text-on-light-body); line-height: var(--lh-normal); }

/* ══════════════════════════════════════════════════════════
   CATERING BAND
   ══════════════════════════════════════════════════════════ */
.catering-band {
  background: var(--color-red);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
/* subtle texture */
.catering-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,0.04) 0px,
    rgba(0,0,0,0.04) 1px,
    transparent 1px,
    transparent 12px
  );
  pointer-events: none;
}
.catering-band__inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.catering-band__inner .eyebrow { color: rgba(245,239,227,0.70); }
.catering-band__inner h2 { color: var(--color-white); margin-bottom: var(--sp-5); }
.catering-band__inner p  { color: rgba(245,239,227,0.88); font-size: var(--text-lg); margin-bottom: var(--sp-10); line-height: var(--lh-snug); }
.catering-band__inner .btn--outline { border-color: var(--color-white); color: var(--color-white); }
.catering-band__inner .btn--outline:hover { background: var(--color-white); color: var(--color-red); }

/* ══════════════════════════════════════════════════════════
   SOCIAL PROOF (reviews + IG)
   ══════════════════════════════════════════════════════════ */
.social-proof {
  background: var(--color-cream);
  padding-block: var(--section-py);
}
.social-proof__header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.social-proof__header h2 { color: var(--text-on-light-heading); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-16);
}
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.review-card__stars {
  color: var(--color-gold);
  font-size: var(--text-lg);
  letter-spacing: 2px;
}
.review-card__text {
  font-size: var(--text-base);
  color: var(--text-on-light-body);
  line-height: var(--lh-loose);
  font-style: italic;
  flex: 1;
}
.review-card__author {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-on-light-heading);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

/* IG reel thumbnail */
.ig-reel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  text-align: center;
}
.ig-reel__thumb {
  width: min(320px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse at 50% 40%, rgba(181,48,42,0.30) 0%, transparent 65%),
    linear-gradient(180deg,#2b1e10 0%,#1a1714 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.ig-reel__play {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  background: rgba(245,239,227,0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
}
.ig-reel__title { font-family: var(--font-display); font-size: var(--text-3xl); color: var(--text-on-light-heading); }
.ig-reel__sub   { color: var(--text-on-light-body); max-width: 42ch; }

/* ══════════════════════════════════════════════════════════
   VISIT
   ══════════════════════════════════════════════════════════ */
.visit {
  background: var(--color-charcoal);
  padding-block: var(--section-py);
}
.visit__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.visit__info h2 { color: var(--text-on-dark-heading); margin-bottom: var(--sp-10); }
.visit__info-block { margin-bottom: var(--sp-8); }
.visit__info-block h3 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-3);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(245,239,227,0.08);
  color: var(--text-on-dark-body);
  font-size: var(--text-sm);
}
.hours-table th { text-align: left; font-weight: 600; }
.hours-table td { text-align: right; }

.visit__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.visit__map iframe { display: block; width: 100%; height: 400px; border: 0; }
@media (min-width: 820px) {
  .visit__inner { grid-template-columns: 1fr 1.4fr; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: #111009;
  border-top: 1px solid rgba(201,160,46,0.20);
  padding-block: var(--sp-16) var(--sp-8);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}
@media (min-width: 640px)  { .site-footer__inner { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: 2fr 1fr 1.5fr 2fr; } }

.site-footer__logo {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: var(--sp-3);
}
.site-footer__tagline {
  font-size: var(--text-sm);
  color: var(--text-on-dark-muted);
  margin-bottom: var(--sp-6);
}
.site-footer__socials { display: flex; gap: var(--sp-4); }
.site-footer__socials a {
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast);
}
.site-footer__socials a:hover { color: var(--color-gold); }

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-2);
}
.site-footer__nav a {
  font-size: var(--text-sm);
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast);
}
.site-footer__nav a:hover { color: var(--color-gold); }

.site-footer__contact address p {
  font-size: var(--text-sm);
  color: var(--text-on-dark-muted);
  margin-bottom: var(--sp-3);
}
.site-footer__contact a:hover { color: var(--color-gold); }

/* newsletter */
.footer-nl__title { color: var(--text-on-dark-heading); font-weight: 700; margin-bottom: var(--sp-1); }
.footer-nl__sub   { font-size: var(--text-sm); color: var(--text-on-dark-muted); margin-bottom: var(--sp-4); }
.form--demo fieldset {
  display: flex;
  gap: var(--sp-2);
  opacity: 0.55;
  cursor: not-allowed;
}
.form--demo input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem var(--sp-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(245,239,227,0.20);
  background: rgba(245,239,227,0.06);
  color: var(--text-on-dark-body);
  font: inherit;
  font-size: var(--text-sm);
}
.form--demo input::placeholder { color: var(--text-on-dark-muted); }
.form--demo .btn { padding: 0.65rem 1.25rem; font-size: var(--text-xs); }
.form-demo-note {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-on-dark-muted);
  font-style: italic;
}

/* footer bottom bar */
.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(245,239,227,0.08);
}
.site-footer__bottom small { color: var(--text-on-dark-muted); font-size: var(--text-xs); }
.footer-legal { display: flex; gap: var(--sp-6); }
.footer-legal a { font-size: var(--text-xs); color: var(--text-on-dark-muted); }
.footer-legal a:hover { color: var(--color-gold); }

/* ══════════════════════════════════════════════════════════
   COOKIE BANNER
   Contrast: #F5EFE3 on rgba(26,23,20,0.97) dark → 12:1 ✓
             gold link #C9A02E on same dark → 4.6:1 ✓
   ══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-modal);
  background: rgba(26,23,20,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(245,239,227,0.12);
  padding-block: var(--sp-4);
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: var(--text-sm);
  color: var(--text-on-dark-body);       /* #F5EFE3 82% → 9:1 ✓ */
  max-width: 62ch;
}
.cookie-banner__link {
  color: var(--color-gold);              /* #C9A02E on dark → 4.6:1 ✓ */
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__link:hover { color: var(--color-gold-light); }
.cookie-banner__actions { flex-shrink: 0; }

.site-footer__order-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: var(--sp-4);
}
