﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOKENS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --bg: #120604;
  --ember: #9b2020;
  --ember2: #c3381f;
  --ember3: #8b1a1a;
  --gold: #f5b800;
  --gold2: #ffd45a;
  --cream: #fff8ea;
  --muted: #e8d4a3;
  --dim: #d0b27a;
  --line: rgba(245, 184, 0, 0.22);
  --max: 1160px;
  --font-primary: "Cormorant Garamond", serif;
  --site-yellow: #f8c81d;
  --site-yellow2: #ffd255;
  --site-red: #9b2020;
  --site-red2: #8b1a1a;
  --site-red-deep: #6f1414;
  --site-ink: #111111;
  --site-copy: rgba(17, 17, 17, 0.82);
  --site-border: rgba(139, 26, 26, 0.16);
  --site-line: rgba(139, 26, 26, 0.1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
  width: 100%;
  overflow-x: clip;
} /* GSAP handles scroll */
body {
  background: var(--site-yellow);
  color: var(--cream);
  font-family: var(--font-primary);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  cursor: default;
}

body * {
  font-family: var(--font-primary) !important;
}

/* â”€â”€ Scroll progress bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 9998;
  background: linear-gradient(90deg, var(--ember3), var(--ember), var(--gold));
  width: 0%;
  transform-origin: left;
  box-shadow: 0 0 10px var(--ember);
}

/* â”€â”€ Page reveal overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#reveal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reveal-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.reveal-lockup-panel {
  fill: #fff;
  opacity: 0;
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: left center;
}
.reveal-biltong {
  position: absolute;
  top: 38.7%;
  left: 51.7%;
  transform: translateX(-50%);
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 500;
  font-size: clamp(70px, 34vw, 180px);
  letter-spacing: 0.03em;
  color: #111111;
  line-height: 0.88;
  opacity: 0;
  white-space: nowrap;
  text-align: center;
  z-index: 3;
}
/* SVG paths start invisible â€” GSAP sets strokeDashoffset */
#egEieSvg path,
#egEieSvg circle {
  opacity: 1;
}

/* â”€â”€ Grain overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.028'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* â”€â”€ Ambient glow â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 40% 30% at 14% 18%,
      rgba(139, 26, 26, 0.06),
      transparent
    ),
    radial-gradient(
      ellipse 32% 25% at 86% 10%,
      rgba(245, 184, 0, 0.08),
      transparent
    ),
    radial-gradient(
      ellipse 50% 35% at 50% 100%,
      rgba(139, 26, 26, 0.04),
      transparent
    );
}

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAV
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 7, 7, 0.94);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.brand-logo {
  width: clamp(8rem, 18vw, 12rem);
  border-radius: 16px;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}
.brand strong {
  display: inline-block;
  min-width: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.18rem;
  color: var(--cream);
  text-shadow: 0 0 30px rgba(155, 32, 32, 0.18);
}
.brand-copy span {
  font-size: 0.66rem;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(248, 239, 218, 0.7);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold2);
}
.nav-cta {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.22rem;
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ember3), var(--ember), #b82a1c);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow:
    0 18px 38px rgba(155, 32, 32, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 80%
  );
  transform: translateX(-140%);
  transition: transform 0.6s ease;
}
.nav-cta:hover::after {
  transform: translateX(140%);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MARQUEE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.marquee-band {
  background: linear-gradient(90deg, var(--ember3), var(--ember), #b82a1c);
  padding: 0.55rem 0;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.mq-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  /* GSAP owns this â€” no CSS animation */
}
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24rem;
  color: rgba(255, 255, 255, 0.88);
}
.mq-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(38, 10, 10, 0.94) 0%, var(--bg) 62%);
}

/* ghost watermark â€” parallax target */
.ghost-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ghost-word span {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(8rem, 22vw, 20rem);
  letter-spacing: 0.6rem;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(155, 32, 32, 0.08);
  will-change: transform;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  min-height: calc(100vh - 68px - 36px);
  align-items: center;
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 2;
}

/* COPY side */
.hero-copy {
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.96rem;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  flex: 0 0 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* h1 â€” each word wrapped for splitting */
.hero-h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.2rem;
  color: var(--cream);
  text-shadow: 0 0 60px rgba(155, 32, 32, 0.18);
  margin-bottom: 0.5rem;
}
.hero-h1 .word {
  display: inline-block;
  overflow: hidden;
  padding: 0.04em 0;
}
.hero-h1 .inner {
  display: inline-block;
}
.hero-h1 .ember-line .inner {
  color: var(--ember2);
  text-shadow: 0 0 30px rgba(155, 32, 32, 0.55);
}

.hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.15rem;
  font-style: italic;
  margin-bottom: 1.6rem;
  line-height: 1.6;
  opacity: 0;
}
.hero-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  color: #f6ecd7;
  opacity: 0;
}
.hero-list li::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle, var(--gold2), var(--ember));
  box-shadow: 0 0 12px rgba(155, 32, 32, 0.4);
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
  opacity: 0;
}
.btn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.22rem;
  padding: 13px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.btn::after {
  display: none;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--ember3), var(--ember), #b82a1c);
  color: #fff;
  box-shadow:
    0 14px 28px rgba(155, 32, 32, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.btn-primary:hover {
  box-shadow:
    0 18px 34px rgba(155, 32, 32, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.btn-ghost {
  border: 1px solid rgba(245, 184, 0, 0.3);
  background: rgba(245, 184, 0, 0.06);
  color: var(--cream);
}
.btn-ghost:hover {
  background: rgba(245, 184, 0, 0.12);
  border-color: rgba(245, 184, 0, 0.46);
}
.meta-chips {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  opacity: 0;
}
.chip {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 184, 0, 0.18);
  background: rgba(245, 184, 0, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: var(--gold2);
}
.hero-note {
  margin-top: 1rem;
  color: var(--gold2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  line-height: 1.55;
}

/* STAGE side */
.hero-stage {
  position: relative;
  min-height: 640px;
  opacity: 0; /* GSAP handles reveal */
}
.stage-bg {
  position: absolute;
  inset: 1.5rem 0 1rem 2.5rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(245, 184, 0, 0.14);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}
.stage-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 7, 5, 0.08), rgba(8, 3, 2, 0.84)),
    linear-gradient(130deg, rgba(245, 184, 0, 0.18), transparent 42%),
    linear-gradient(30deg, rgba(155, 32, 32, 0.22), transparent 48%);
}
.stage-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.stage-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(14px);
}
.glow-a {
  width: 20rem;
  height: 20rem;
  right: 5rem;
  top: 4rem;
  background: radial-gradient(circle, rgba(155, 32, 32, 0.32), transparent);
}
.glow-b {
  width: 14rem;
  height: 14rem;
  left: 1rem;
  bottom: 6rem;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.18), transparent);
}

/* floating pack cards */
.pack {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(34, 10, 9, 0.94), rgba(14, 4, 3, 0.98));
  border: 1px solid rgba(245, 184, 0, 0.2);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
  opacity: 0; /* GSAP */
  will-change: transform;
}
.pack-visual,
.product-visual,
.cta-visual {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 40%),
    radial-gradient(circle at bottom, rgba(245, 184, 0, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(70, 18, 18, 0.92), rgba(20, 7, 5, 0.98));
  border: 1px solid rgba(245, 184, 0, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.pack-visual::before,
.product-visual::before,
.cta-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%),
    radial-gradient(circle at 50% 16%, rgba(255, 212, 90, 0.24), transparent 36%);
  pointer-events: none;
}
.pack-visual {
  width: 100%;
  min-height: 11rem;
  padding: 1rem 0.8rem 0.7rem;
  border-radius: 16px;
}
/* 3D tilt â€” class added via GSAP */
.pack img {
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.38));
  position: relative;
  z-index: 1;
}
.product-badge {
  --badge-size: 5.2rem;
  --badge-font-size: 0.58rem;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: var(--badge-size);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0.55rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif !important;
  font-size: var(--badge-font-size);
  line-height: 1.02;
  letter-spacing: 0.08rem;
  color: var(--site-red-deep);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.98), rgba(255, 248, 231, 0.96) 34%, rgba(248, 200, 29, 0.9) 100%);
  border: 1px solid rgba(139, 26, 26, 0.18);
  box-shadow:
    0 14px 28px rgba(17, 17, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  z-index: 3;
  pointer-events: none;
  text-wrap: balance;
}
.product-badge-hero {
  --badge-size: clamp(5.4rem, 8vw, 6.6rem);
  --badge-font-size: clamp(0.62rem, 0.9vw, 0.76rem);
  top: clamp(0.5rem, 1.2vw, 0.95rem);
  right: clamp(0.15rem, 1vw, 0.8rem);
}
.pack .p-lbl {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--gold);
}
.pack .p-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  color: var(--cream);
}
.pack-main {
  right: 3.5rem;
  top: 3rem;
  width: min(22rem, 50vw);
}
.pack-sec {
  left: 0.5rem;
  bottom: 7.5rem;
  width: min(10.5rem, 30vw);
}
.pack-tert {
  right: 0.5rem;
  bottom: 1rem;
  width: min(9.5rem, 27vw);
}

/* stage card */
.stage-card {
  position: absolute;
  left: 1.5rem;
  top: 3rem;
  max-width: 13rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(25, 8, 8, 0.88);
  border: 1px solid rgba(245, 184, 0, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.44);
  opacity: 0;
  z-index: 5;
}
.stage-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--gold2);
  margin-bottom: 0.4rem;
  font-style: italic;
}
.stage-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

/* badge */
.stage-badge {
  position: absolute;
  right: 0.2rem;
  top: 0.8rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 2px solid rgba(245, 184, 0, 0.36);
  background: rgba(28, 8, 8, 0.74);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--gold2);
  line-height: 1.3;
  opacity: 0;
  z-index: 5;
}

/* fireline */
.fireline {
  position: absolute;
  bottom: 0.8rem;
  left: 2.5rem;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(155, 32, 32, 0.72) 24%,
    rgba(245, 184, 0, 0.95) 50%,
    rgba(155, 32, 32, 0.72) 76%,
    transparent
  );
  box-shadow: 0 0 18px rgba(245, 184, 0, 0.25);
  z-index: 3;
  transform-origin: left;
  transform: scaleX(0); /* GSAP draws this */
}

/* embers (CSS handles the ongoing loop) */
.embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.em {
  position: absolute;
  bottom: -1rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 90, 0.92),
    rgba(155, 32, 32, 0.68) 45%,
    rgba(155, 32, 32, 0) 72%
  );
  box-shadow: 0 0 12px rgba(155, 32, 32, 0.4);
  animation:
    eRise linear infinite,
    eFlick ease-in-out infinite;
  opacity: 0; /* GSAP reveals embers after load */
  will-change: transform, opacity;
  mix-blend-mode: screen;
}
@keyframes eRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    transform: translate3d(-1.4rem, -35rem, 0) scale(0.12);
    opacity: 0;
  }
}
@keyframes eFlick {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.4) blur(0.5px);
  }
}

.em1 {
  left: 3%;
  width: 7px;
  height: 7px;
  animation-duration: 8s, 2.6s;
  animation-delay:
    -1.2s,
    -0.6s;
}
.em2 {
  left: 9%;
  width: 10px;
  height: 10px;
  animation-duration: 9.5s, 3s;
  animation-delay:
    -4s,
    -1.2s;
}
.em3 {
  left: 17%;
  width: 6px;
  height: 6px;
  animation-duration: 6.8s, 2.8s;
  animation-delay:
    -2.5s,
    -0.4s;
}
.em4 {
  left: 25%;
  width: 9px;
  height: 9px;
  animation-duration: 11s, 3.1s;
  animation-delay:
    -7s,
    -1.8s;
}
.em5 {
  left: 34%;
  width: 11px;
  height: 11px;
  animation-duration: 8.4s, 2.3s;
  animation-delay:
    -5.2s,
    -1s;
}
.em6 {
  left: 41%;
  width: 5px;
  height: 5px;
  animation-duration: 7.1s, 2.4s;
  animation-delay:
    -2s,
    -1.4s;
}
.em7 {
  left: 49%;
  width: 8px;
  height: 8px;
  animation-duration: 10.8s, 2.9s;
  animation-delay:
    -6.2s,
    -0.8s;
}
.em8 {
  left: 57%;
  width: 12px;
  height: 12px;
  animation-duration: 8.8s, 2.7s;
  animation-delay:
    -3.6s,
    -1.1s;
}
.em9 {
  left: 64%;
  width: 7px;
  height: 7px;
  animation-duration: 9.8s, 2.2s;
  animation-delay:
    -6.8s,
    -0.7s;
}
.em10 {
  left: 71%;
  width: 5px;
  height: 5px;
  animation-duration: 7.6s, 2.1s;
  animation-delay:
    -4.4s,
    -1.3s;
}
.em11 {
  left: 79%;
  width: 9px;
  height: 9px;
  animation-duration: 10.2s, 2.8s;
  animation-delay:
    -8.2s,
    -0.9s;
}
.em12 {
  left: 87%;
  width: 6px;
  height: 6px;
  animation-duration: 7.4s, 2.5s;
  animation-delay:
    -2.8s,
    -1.7s;
}
.em13 {
  left: 93%;
  width: 10px;
  height: 10px;
  animation-duration: 8.9s, 2.6s;
  animation-delay:
    -5.5s,
    -0.5s;
}
.em14 {
  left: 13%;
  width: 4px;
  height: 4px;
  animation-duration: 6.5s, 2s;
  animation-delay:
    -3.2s,
    -0.3s;
}
.em15 {
  left: 30%;
  width: 8px;
  height: 8px;
  animation-duration: 9.1s, 3.2s;
  animation-delay:
    -7.4s,
    -1.6s;
}
.em16 {
  left: 46%;
  width: 6px;
  height: 6px;
  animation-duration: 7.8s, 2.4s;
  animation-delay:
    -1.8s,
    -1.1s;
}
.em17 {
  left: 60%;
  width: 10px;
  height: 10px;
  animation-duration: 11.4s, 2.9s;
  animation-delay:
    -9.1s,
    -1.4s;
}
.em18 {
  left: 75%;
  width: 5px;
  height: 5px;
  animation-duration: 6.9s, 2.3s;
  animation-delay:
    -4.8s,
    -0.6s;
}
.em19 {
  left: 7%;
  width: 14px;
  height: 14px;
  animation-duration: 12.4s, 3.4s;
  animation-delay:
    -8.8s,
    -1.4s;
  opacity: 0.5;
}
.em20 {
  left: 21%;
  width: 13px;
  height: 13px;
  animation-duration: 10.6s, 3.1s;
  animation-delay:
    -5.1s,
    -1.6s;
  opacity: 0.48;
}
.em21 {
  left: 37%;
  width: 16px;
  height: 16px;
  animation-duration: 13.8s, 3.5s;
  animation-delay:
    -10.2s,
    -1.1s;
  opacity: 0.44;
}
.em22 {
  left: 52%;
  width: 12px;
  height: 12px;
  animation-duration: 11.1s, 3.2s;
  animation-delay:
    -6.4s,
    -0.8s;
  opacity: 0.5;
}
.em23 {
  left: 68%;
  width: 15px;
  height: 15px;
  animation-duration: 12.9s, 3.3s;
  animation-delay:
    -9.5s,
    -1.8s;
  opacity: 0.46;
}
.em24 {
  left: 84%;
  width: 13px;
  height: 13px;
  animation-duration: 10.9s, 3.4s;
  animation-delay:
    -7.3s,
    -0.7s;
  opacity: 0.52;
}
.em25 {
  left: 16%;
  width: 9px;
  height: 9px;
  animation-duration: 9.4s, 3s;
  animation-delay:
    -4.2s,
    -1.3s;
  opacity: 0.38;
  filter: blur(1px);
}
.em26 {
  left: 44%;
  width: 11px;
  height: 11px;
  animation-duration: 10.1s, 2.9s;
  animation-delay:
    -6.8s,
    -0.9s;
  opacity: 0.4;
  filter: blur(1px);
}
.em27 {
  left: 73%;
  width: 10px;
  height: 10px;
  animation-duration: 9.7s, 3.1s;
  animation-delay:
    -5.7s,
    -1.5s;
  opacity: 0.42;
  filter: blur(1px);
}
.em28 {
  left: 91%;
  width: 8px;
  height: 8px;
  animation-duration: 8.8s, 2.8s;
  animation-delay:
    -3.3s,
    -1s;
  opacity: 0.36;
  filter: blur(1px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTIONS â€” shared
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}
.section-intro {
  margin-bottom: 2rem;
}
.section-alt {
  background: linear-gradient(180deg, rgba(28, 8, 8, 0.94), rgba(12, 4, 3, 0.98));
}

.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.88rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.s-eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.s-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  letter-spacing: 0.16rem;
  line-height: 1;
  color: var(--cream);
}
.s-title .highlight {
  color: var(--gold);
}
.s-title .ember-hl {
  color: var(--ember2);
}

/* GSAP split chars â€” each .char is a span */
.split-wrap {
  overflow: hidden;
  display: inline-block;
}
.char {
  display: inline-block;
}

.gold-rule {
  height: 1px;
  margin: 2.5rem 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(155, 32, 32, 0.55) 24%,
    rgba(245, 184, 0, 0.88) 50%,
    rgba(155, 32, 32, 0.55) 76%,
    transparent
  );
  box-shadow: 0 0 14px rgba(245, 184, 0, 0.2);
  transform-origin: left;
  will-change: transform;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TRUST SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-card {
  padding: 1.6rem 1.4rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(33, 10, 10, 0.94), rgba(13, 4, 3, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  will-change: transform;
  transition:
    transform 0.26s ease,
    border-color 0.3s,
    box-shadow 0.3s;
}
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 0, 0.3);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.38);
}
.trust-num {
  font-size: 0.74rem;
  letter-spacing: 0.2rem;
  font-weight: 900;
  color: var(--ember);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.trust-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(155, 32, 32, 0.3);
}
.trust-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  color: var(--gold2);
  margin-bottom: 0.55rem;
  font-style: italic;
}
.trust-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.92rem;
}
.clean-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  margin-top: 1.4rem;
  padding: 1.7rem;
  border-radius: 28px;
  border: 1px solid rgba(245, 184, 0, 0.18);
  background:
    linear-gradient(140deg, rgba(34, 10, 10, 0.96), rgba(12, 4, 3, 0.98)),
    radial-gradient(circle at top right, rgba(245, 184, 0, 0.1), transparent 46%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}
.clean-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--gold);
}
.clean-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.15;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.clean-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.94rem;
}
.clean-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.75rem;
}
.clean-tags span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 184, 0, 0.14);
  background: rgba(245, 184, 0, 0.08);
  color: var(--cream);
  font-size: 0.76rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 2.5rem;
  background: linear-gradient(160deg, rgba(33, 10, 10, 0.94), rgba(13, 4, 3, 0.98));
}
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line);
  transition:
    background 0.24s ease,
    transform 0.24s ease;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(155, 32, 32, 0.08);
  transform: translateY(-2px);
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1rem;
  color: var(--ember2);
  display: block;
  line-height: 1;
  text-shadow: 0 0 20px rgba(155, 32, 32, 0.24);
}
.stat-lbl {
  font-size: 0.74rem;
  letter-spacing: 0.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.5rem;
  display: block;
}

/* WHAT MAKES US DIFFERENT */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.difference-card {
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(33, 10, 10, 0.94), rgba(13, 4, 3, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.26s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.difference-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 0, 0.26);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.36);
}
.difference-num {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  color: var(--ember);
}
.difference-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--gold2);
  margin-bottom: 0.55rem;
}
.difference-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HORIZONTAL PRODUCTS SCROLL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.h-scroll-outer {
  overflow: hidden;
} /* pin wrapper */
.h-scroll-inner {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  padding: 0 2rem;
}
.product-card {
  width: 280px;
  padding: 1.4rem;
  flex-shrink: 0;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(33, 10, 10, 0.94), rgba(13, 4, 3, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.28s ease,
    border-color 0.3s,
    box-shadow 0.3s;
  will-change: transform;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 184, 0, 0.28);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.38);
}
.product-visual {
  min-height: 17.5rem;
  padding: 1.2rem 1rem 0.9rem;
  border-radius: 20px;
}
.product-card img {
  width: 100%;
  max-height: 15rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.38));
  transition: transform 0.45s ease;
  position: relative;
  z-index: 1;
}
.product-card:hover img {
  transform: translateY(-4px) scale(1.02);
}
.p-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.product-card strong {
  display: block;
  margin: 0.8rem 0 0.4rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  color: var(--cream);
}
.product-card p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.88rem;
}
.product-lines {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(245, 184, 0, 0.12);
}
.product-lines span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: var(--gold);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STORY / BRAND
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.story-stack {
  display: grid;
  gap: 1rem;
}
.story-card {
  padding: 1.6rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(33, 10, 10, 0.94), rgba(13, 4, 3, 0.98));
  transition:
    transform 0.26s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 0, 0.24);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}
.story-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--gold2);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.story-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.story-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.story-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9rem;
}
.story-list li::before {
  content: "";
  flex: 0 0 0.45rem;
  height: 0.45rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  box-shadow: 0 0 8px rgba(155, 32, 32, 0.28);
}
.story-img {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  will-change: transform;
}
.story-img img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}
.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.image-pair figure {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 14rem;
}
.image-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SOCIAL PROOF */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.proof-card {
  padding: 1.8rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(33, 10, 10, 0.94), rgba(13, 4, 3, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.26s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 0, 0.24);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
}
.proof-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--gold);
}
.proof-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--cream);
  font-style: italic;
}
.proof-meta {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.88rem;
}

/* STOCKISTS */
.stockist-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
}
.stockist-map,
.stockist-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(33, 10, 10, 0.94), rgba(13, 4, 3, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.26s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.stockist-map {
  min-height: 28rem;
}
.stockist-map:hover,
.stockist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 0, 0.24);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
}
.stockist-map iframe {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border: 0;
  display: block;
}
.stockist-card {
  padding: 1.8rem;
}
.stockist-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--gold2);
  margin-bottom: 0.6rem;
  font-style: italic;
}
.stockist-card > p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}
.delivery-note {
  margin: -0.2rem 0 1.3rem;
  padding: 0.9rem 1rem;
  border-left: 2px solid rgba(245, 184, 0, 0.55);
  border-radius: 18px;
  background: rgba(245, 184, 0, 0.08);
  color: var(--gold2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  line-height: 1.55;
}
.stockist-list {
  list-style: none;
  display: grid;
  gap: 0.95rem;
}
.stockist-list li {
  display: grid;
  gap: 0.24rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stockist-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.stockist-list span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--gold);
}
.stockist-list strong {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.contact-card {
  padding: 1.8rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(33, 10, 10, 0.94), rgba(13, 4, 3, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.26s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 0, 0.24);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
}
.cta-card {
  margin-bottom: 1rem;
}
.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--gold2);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.contact-card > p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.c-list {
  list-style: none;
  display: grid;
  gap: 0.88rem;
}
.c-list li {
  display: grid;
  gap: 0.22rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.c-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.c-list span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--gold);
}
.c-list strong,
.c-list a {
  color: var(--cream);
  font-size: 0.96rem;
}
.c-list a:hover {
  color: var(--gold2);
}
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.cta-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cta-imgs figure {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 13rem;
}
.cta-visual {
  min-height: 13rem;
  padding: 0.8rem;
  border-radius: 20px;
}
.cta-imgs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  position: relative;
  z-index: 1;
}
.order-steps {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 0.2rem 0 0.8rem;
}
.order-steps li {
  display: flex;
  gap: 0.7rem;
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  line-height: 1.55;
}
.order-steps li::before {
  content: "";
  flex: 0 0 0.5rem;
  height: 0.5rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold2), var(--ember2));
  box-shadow: 0 0 10px rgba(245, 184, 0, 0.3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(139, 26, 26, 0.3);
  background: linear-gradient(180deg, #0c0400, var(--site-red-deep));
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-mark {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  flex: 0 0 auto;
}
.footer-logo {
  width: clamp(6.8rem, 14vw, 10.5rem);
  border-radius: 12px;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1 15rem;
}
.footer-meta strong {
  font-size: 1.4rem;
  letter-spacing: 0.08rem;
  color: var(--site-yellow);
}
.footer-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.faith-note {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(139, 26, 26, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.faith-note .faith-verse {
  font-size: 0.72rem;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  color: #f3a1a1;
}
.faith-note .faith-line {
  font-size: 1rem;
  letter-spacing: 0.04rem;
  font-style: italic;
  color: var(--cream);
}
.footer-points {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: 0.7rem;
}
.footer-points span {
  font-size: 0.68rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer-credit {
  flex: 1 0 100%;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(139, 26, 26, 0.3);
  font-size: 0.72rem;
  letter-spacing: 0.08rem;
  color: rgba(255, 255, 255, 0.62);
}
.footer-credit a {
  color: var(--site-yellow);
  text-decoration: none;
}
.footer-credit a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.footer-cow {
  width: clamp(3.6rem, 5.5vw, 4.8rem);
  opacity: 0.92;
  filter: drop-shadow(0 8px 18px rgba(17, 17, 17, 0.1));
  transform: translateY(-0.1rem);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + 15px);
  z-index: 9995;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fcb72, #0b7a43);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(11, 122, 67, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(11, 122, 67, 0.42);
}
.whatsapp-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.78rem;
  letter-spacing: 0.08rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.whatsapp-icon img {
  width: 1.18rem;
  height: 1.18rem;
  object-fit: contain;
}

/* V2 yellow site treatment */
.marquee-band,
.section,
.section-alt {
  background: var(--site-yellow);
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.14));
}

.marquee-band {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
}

.mq-item {
  color: var(--site-ink);
}

.s-title,
.trust-card h3,
.clean-copy h3,
.difference-card h3,
.product-card strong,
.story-card h3,
.proof-card blockquote,
.stockist-card h3,
.stockist-list li strong,
.contact-card h3,
.c-list li a,
.c-list li strong {
  color: var(--site-ink);
  text-shadow: none;
}

.s-title .highlight,
.s-title .ember-hl {
  color: var(--site-red2);
}

.s-eyebrow,
.clean-kicker,
.p-kicker,
.delivery-note,
.stockist-list li span,
.c-list li span,
.proof-kicker,
.trust-num,
.difference-num,
.stat-num,
.faith-note .faith-verse {
  color: var(--site-red2);
}

.trust-card p,
.clean-copy p,
.stat-lbl,
.difference-card p,
.product-card p,
.story-card p,
.story-list li,
.proof-meta,
.stockist-card > p,
.contact-card > p,
.footer-meta span,
.footer-points span {
  color: var(--site-copy);
}

.gold-rule,
.hero-note {
  color: var(--site-red2);
}

.pack,
.stage-card,
.stage-badge,
.trust-card,
.clean-block,
.stats-strip,
.difference-card,
.product-card,
.story-card,
.proof-card,
.stockist-map,
.stockist-card,
.contact-card,
.cta-card,
.cta-imgs figure {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--site-border);
  box-shadow: 0 20px 46px rgba(17, 17, 17, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--site-red2), var(--site-red-deep));
  color: #fff;
  box-shadow: 0 14px 34px rgba(139, 26, 26, 0.24), 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.btn-ghost {
  border: 1.5px solid rgba(139, 26, 26, 0.26);
  background: rgba(255, 255, 255, 0.9);
  color: var(--site-ink);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(139, 26, 26, 0.46);
  color: var(--site-ink);
}

.pack,
.stage-card,
.stage-badge,
.trust-card,
.clean-block,
.stats-strip,
.difference-card,
.product-card,
.story-card,
.proof-card,
.stockist-card,
.contact-card,
.cta-card {
  color: var(--site-ink);
}

.trust-card:hover,
.difference-card:hover,
.product-card:hover,
.story-card:hover,
.stockist-map:hover,
.stockist-card:hover,
.contact-card:hover {
  border-color: rgba(139, 26, 26, 0.28);
  box-shadow: 0 22px 50px rgba(17, 17, 17, 0.1);
}

.delivery-note {
  background: rgba(245, 184, 0, 0.08);
  border-left-color: rgba(139, 26, 26, 0.45);
}

.clean-copy h3 {
  color: var(--site-ink);
}

.clean-copy p {
  color: var(--site-copy);
}

.clean-tags span {
  border-color: rgba(139, 26, 26, 0.22);
  background: rgba(245, 184, 0, 0.08);
  color: var(--site-ink);
}

.product-lines span,
.story-list li,
.proof-meta,
.stockist-card p,
.stockist-list strong,
.contact-card p,
.c-list strong,
.c-list a,
.order-steps li,
.stat-lbl {
  color: var(--site-ink);
}

.product-lines span,
.stockist-list span,
.c-list span,
.proof-kicker,
.p-kicker {
  color: var(--site-red2);
}

.stockist-map iframe {
  filter: saturate(0.9) brightness(1);
}

.cta-card {
  background: linear-gradient(180deg, #fff, #fff8e7);
  border-color: rgba(245, 184, 0, 0.24);
}

.cta-imgs figure,
.cta-visual {
  background: #fff;
}

.product-badge {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.98), rgba(255, 248, 231, 0.96) 32%, rgba(245, 184, 0, 0.88) 100%);
  border-color: rgba(139, 26, 26, 0.18);
  color: var(--site-red-deep);
}

.footer-meta span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-points span {
  color: rgba(255, 255, 255, 0.45);
}

.faith-note .faith-verse {
  color: #f3a1a1;
}

.faith-note .faith-line {
  color: var(--cream);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MAGNETIC button class (GSAP adds hover)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.magnetic {
  display: inline-block;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 980px) {
  .nav {
    min-height: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.85rem 1rem;
    padding: 0.9rem 0;
  }
  .brand {
    flex: 1 1 14rem;
  }
  .brand-logo {
    width: clamp(7rem, 20vw, 10rem);
  }
  .brand strong {
    min-width: 0;
    font-size: 1.3rem;
    letter-spacing: 0.14rem;
  }
  .brand-copy span {
    letter-spacing: 0.16rem;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.12rem;
  }
  .nav-cta {
    padding: 10px 20px;
  }
  .hero-grid,
  .story-grid,
  .contact-grid,
  .proof-grid,
  .stockist-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    min-height: auto;
    gap: 1.5rem;
    padding: 2.5rem 0 2rem;
  }
  .hero-sub {
    font-size: 1rem;
    letter-spacing: 0.09rem;
  }
  .hero-list li {
    align-items: flex-start;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
  }
  .hero-stage {
    min-height: 32rem;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
  }
  .stage-bg {
    inset: 1rem 0 0.75rem 0;
  }
  .stage-card {
    left: 1rem;
    top: 1.25rem;
    max-width: 12rem;
  }
  .stage-badge {
    top: 1rem;
    right: 0.75rem;
    width: 5.25rem;
    height: 5.25rem;
  }
  .product-badge {
    --badge-size: 4.75rem;
    --badge-font-size: 0.54rem;
    top: 0.7rem;
    right: 0.7rem;
    padding: 0.5rem;
  }
  .pack-main {
    right: 1.5rem;
    top: 3rem;
    width: min(18rem, 58vw);
  }
  .pack-sec {
    left: 0;
    bottom: 5.75rem;
    width: min(9.75rem, 34vw);
  }
  .pack-tert {
    right: 0;
    bottom: 0.75rem;
    width: min(8.75rem, 30vw);
  }
  .fireline {
    left: 0.75rem;
  }
  .trust-grid,
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
  .clean-block,
  .story-grid,
  .contact-grid,
  .proof-grid,
  .stockist-grid {
    grid-template-columns: 1fr;
  }
  .difference-grid {
    grid-template-columns: 1fr 1fr;
  }
  .h-scroll-outer {
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 0.4rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .h-scroll-inner {
    min-width: 100%;
    padding: 0 1rem 0.5rem;
  }
  .product-card {
    width: min(20rem, 72vw);
    scroll-snap-align: start;
  }
  .story-img img {
    min-height: 18rem;
  }
  .stockist-map,
  .stockist-map iframe {
    min-height: 22rem;
  }
  .section {
    padding: 4.5rem 0;
  }
  .s-title {
    line-height: 0.98;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .footer-points {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max));
  }
  .nav {
    gap: 0.75rem;
    padding: 0.75rem 0;
  }
  .brand {
    align-items: flex-start;
    gap: 0.7rem;
  }
  .brand-logo {
    width: 8.5rem;
    border-radius: 14px;
  }
  .brand strong {
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
  }
  .brand-copy span {
    font-size: 0.58rem;
    letter-spacing: 0.12rem;
  }
  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
  }
  .nav-cta {
    margin-left: auto;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.14rem;
  }
  .mq-item {
    gap: 0.8rem;
    padding: 0 1.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.16rem;
  }
  .ghost-word span {
    font-size: clamp(5rem, 32vw, 8rem);
    letter-spacing: 0.24rem;
  }
  .eyebrow,
  .s-eyebrow {
    gap: 0.55rem;
    font-size: 0.75rem;
    letter-spacing: 0.16rem;
  }
  .eyebrow::before,
  .eyebrow::after {
    flex-basis: 1.2rem;
  }
  .s-eyebrow::before {
    width: 1rem;
  }
  .hero-grid {
    gap: 1.1rem;
    padding: 2rem 0 1.5rem;
  }
  .trust-grid,
  .stats-strip,
  .image-pair,
  .cta-imgs {
    grid-template-columns: 1fr;
  }
  .hero-h1 {
    font-size: clamp(3rem, 12vw, 5rem);
    letter-spacing: 0.08rem;
  }
  .hero-sub {
    font-size: 0.94rem;
    line-height: 1.5;
    letter-spacing: 0.03rem;
  }
  .hero-note {
    font-size: 0.68rem;
    letter-spacing: 0.12rem;
  }
  .hero-list {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .hero-list li {
    font-size: 0.74rem;
    line-height: 1.5;
    letter-spacing: 0.08rem;
  }
  .hero-actions,
  .cta-strip {
    flex-direction: column;
  }
  .hero-actions .btn,
  .cta-strip .btn {
    width: 100%;
    text-align: center;
  }
  .meta-chips {
    gap: 0.5rem;
  }
  .chip {
    padding: 0.55rem 0.75rem;
    font-size: 0.66rem;
    letter-spacing: 0.1rem;
  }
  .hero-stage {
    min-height: 26rem;
  }
  .stage-bg {
    inset: 0.75rem 0 0.6rem 0;
    border-radius: 24px;
  }
  .stage-card {
    left: 0.75rem;
    top: 0.85rem;
    max-width: 10rem;
    padding: 0.75rem;
  }
  .stage-card p {
    font-size: 0.75rem;
    line-height: 1.45;
  }
  .stage-badge {
    top: 0.6rem;
    right: 0.35rem;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 0.6rem;
  }
  .product-badge {
    --badge-size: 4.1rem;
    --badge-font-size: 0.45rem;
    top: 0.45rem;
    right: 0.45rem;
    padding: 0.38rem;
    letter-spacing: 0.06rem;
  }
  .pack {
    gap: 0.45rem;
    padding: 0.7rem;
    border-radius: 18px;
  }
  .pack .p-lbl {
    font-size: 0.58rem;
    letter-spacing: 0.14rem;
  }
  .pack .p-name {
    font-size: 0.74rem;
    letter-spacing: 0.1rem;
    text-align: center;
  }
  .pack-main {
    right: 0.6rem;
    top: 2.6rem;
    width: min(11.75rem, 52vw);
  }
  .pack-sec {
    left: 0;
    bottom: 4.6rem;
    width: min(7rem, 34vw);
  }
  .pack-tert {
    right: 0;
    bottom: 0.35rem;
    width: min(6.6rem, 31vw);
  }
  .glow-a {
    width: 12rem;
    height: 12rem;
    right: 1rem;
    top: 2.5rem;
  }
  .glow-b {
    width: 8rem;
    height: 8rem;
    left: -0.5rem;
    bottom: 3.5rem;
  }
  .fireline {
    left: 0.2rem;
    bottom: 0.35rem;
  }
  .section {
    padding: 3.75rem 0;
  }
  .gold-rule {
    margin: 1.8rem 0;
  }
  .s-title {
    font-size: clamp(2rem, 12vw, 2.8rem);
    letter-spacing: 0.08rem;
  }
  .stats-strip {
    border-radius: 20px;
  }
  .clean-block {
    padding: 1.2rem;
    border-radius: 22px;
  }
  .clean-copy h3 {
    font-size: 1.25rem;
  }
  .clean-tags span {
    width: 100%;
    text-align: center;
  }
  .difference-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    padding: 1.3rem 1rem;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .stat-num {
    font-size: 2.4rem;
  }
  .h-scroll-outer {
    overflow: visible;
    scroll-snap-type: none;
  }
  .h-scroll-inner {
    display: grid;
    width: 100%;
    padding: 0 0.75rem;
  }
  .product-card {
    width: 100%;
  }
  .product-card img {
    max-height: 14rem;
  }
  .story-card,
  .proof-card,
  .stockist-card,
  .contact-card {
    padding: 1.25rem;
    border-radius: 20px;
  }
  .proof-card blockquote {
    font-size: 1.1rem;
  }
  .delivery-note {
    font-size: 0.68rem;
    letter-spacing: 0.1rem;
  }
  .stockist-map,
  .stockist-map iframe {
    min-height: 18rem;
  }
  .footer-logo {
    width: 100%;
  }
  .footer-meta strong {
    font-size: 1.2rem;
    letter-spacing: 0.12rem;
  }
  .footer-meta span,
  .footer-points {
    font-size: 0.66rem;
    letter-spacing: 0.12rem;
  }
  .footer-credit {
    font-size: 0.68rem;
    text-align: left;
  }
  .whatsapp-float {
    right: 0.75rem;
    bottom: calc(0.75rem + 15px);
    gap: 0.55rem;
    padding: 0.8rem 0.95rem;
  }
  .whatsapp-float span:last-child {
    display: none;
  }
}
@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }
  .btn,
  .nav-cta {
    cursor: pointer;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════
   DRAMATIC HERO OVERRIDE
═══════════════════════════════════════ */
.hero-premium-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(160, 84, 40, 0.14), transparent 24%),
    linear-gradient(180deg, #0b0706 0%, #060404 58%, #030202 100%);
}

.hero-premium-header .hero-bg-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-premium-header .hero-bg-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: blur(0.6px) saturate(0.98);
}

.hero-premium-header .hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0.34) 64%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-premium-header .hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.54;
  filter: blur(28px);
  background:
    radial-gradient(circle at 28% 50%, rgba(255, 255, 255, 0.1), transparent 10%),
    radial-gradient(circle at 41% 37%, rgba(255, 255, 255, 0.06), transparent 14%),
    radial-gradient(circle at 60% 35%, rgba(255, 255, 255, 0.09), transparent 12%),
    radial-gradient(circle at 72% 52%, rgba(255, 255, 255, 0.06), transparent 13%),
    radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.05), transparent 16%);
}

.hero-premium-header .hero-floor {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -8%;
  height: 38vh;
  z-index: 1;
  transform: perspective(1200px) rotateX(76deg) scale(1.35);
  transform-origin: center bottom;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(226, 126, 67, 0.22) 0%, rgba(226, 126, 67, 0.1) 18%, rgba(0, 0, 0, 0) 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 8, 6, 0.34) 18%, rgba(13, 7, 5, 0.88) 100%);
  overflow: hidden;
}

.hero-premium-header .hero-floor::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 3px, transparent 24px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, transparent 2px, transparent 22px);
  mix-blend-mode: soft-light;
}

.hero-premium-header .hero-floor::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 18%;
  height: 12%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 70%);
  filter: blur(8px);
  opacity: 0.46;
}

.hero-premium-header .ghost-word,
.hero-premium-header #embers,
.hero-premium-header .stage-ghost {
  display: none;
}

.sticky-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 14px 18px;
  opacity: 0;
  pointer-events: none;
}

.sticky-shell::before {
  display: none;
}

.sticky-shell .sticky-bar {
  min-height: 68px;
  padding: 0 1rem;
  border-radius: 22px;
  border: 1px solid var(--site-border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
  pointer-events: auto;
}

.sticky-shell .sticky-brand {
  flex: 0 0 auto;
}

.sticky-shell .brand strong {
  color: var(--site-ink);
  text-shadow: none;
}

.sticky-shell .brand-copy span {
  color: var(--site-red2);
}

.sticky-shell .sticky-cta {
  box-shadow: 0 14px 34px rgba(139, 26, 26, 0.24), 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.sticky-nav {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  pointer-events: auto;
}

.sticky-nav a {
  color: rgba(17, 17, 17, 0.72);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s linear, color 0.2s ease;
}

.sticky-nav a:hover {
  color: var(--site-red-deep);
}

.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}

.mobile-nav-toggle {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--site-ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.mobile-nav-toggle span {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.sticky-shell.is-mobile-menu-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sticky-shell.is-mobile-menu-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.sticky-shell.is-mobile-menu-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-panel {
  margin-top: 0.65rem;
  padding: 0.95rem 1rem 1rem;
  border-radius: 22px;
  border: 1px solid var(--site-border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.1);
}

.mobile-nav-panel[hidden] {
  display: none !important;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-nav-links a {
  color: var(--site-ink);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.mobile-nav-cta {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.nav-fly-layer {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
}

.nav-fly-item {
  position: fixed;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--cream);
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform, width, height, opacity;
}

.hero-premium-header .hero-side-links,
.hero-premium-header .hero-nav-source {
  position: absolute;
  left: max(1rem, calc((100vw - var(--max)) / 2 + 0.5rem));
  top: 50%;
  transform: translateY(-42%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
  will-change: opacity;
}

.hero-premium-header .hero-side-links a,
.hero-premium-header .hero-nav-source a {
  position: relative;
  padding-bottom: 0.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  font-weight: 500;
  color: rgba(255, 248, 234, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-premium-header .hero-side-links a::after,
.hero-premium-header .hero-nav-source a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(245, 184, 0, 0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.hero-premium-header .hero-side-links a:hover,
.hero-premium-header .hero-nav-source a:hover {
  color: var(--gold2);
}

.hero-premium-header .hero-side-links a:hover::after,
.hero-premium-header .hero-nav-source a:hover::after {
  transform: scaleX(1);
}

.hero-premium-header .hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  min-height: 100svh;
  padding: 1.35rem 0 1.5rem;
  position: relative;
  z-index: 3;
}

.hero-premium-header .hero-stage {
  order: 1;
  min-height: 0;
  width: auto;
  display: block;
  opacity: 1;
}

.hero-premium-header .hero-product-wrap {
  position: relative;
  width: min(440px, 29vw);
  margin: 0 auto;
  isolation: isolate;
  overflow: visible;
}

.hero-premium-header .hero-product-cutout {
  position: relative;
  z-index: 3;
  width: 150%;
  max-width: none;
  margin-left: -25%;
  display: block;
  transform-origin: center center;
  will-change: transform;
  filter:
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28))
    drop-shadow(0 34px 44px rgba(0, 0, 0, 0.32));
}

.hero-premium-header .product-shadow {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  width: 54%;
  height: 64px;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.68) 20%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.16) 56%, rgba(0, 0, 0, 0) 74%);
  filter: blur(18px);
  opacity: 0.94;
  will-change: transform, opacity;
}

.hero-premium-header .product-shadow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 56%;
  height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0) 72%);
  filter: blur(7px);
  opacity: 0.72;
}

.hero-premium-header .hero-copy {
  order: 2;
  position: relative;
  max-width: min(100%, 980px);
  text-align: center;
  margin-top: 0;
}

.hero-premium-header .eyebrow {
  justify-content: center;
  margin-bottom: 0.9rem;
}

.hero-premium-header .hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.55rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 0;
}

.hero-premium-header .hero-h1 .word {
  display: inline-block;
  overflow: visible;
  padding: 0;
}

.hero-premium-header .hero-h1 .ember-line .inner,
.hero-premium-header .hero-h1 .inner {
  color: var(--cream);
  text-shadow: inherit;
}

.hero-premium-header .hero-sub {
  margin: 0.5rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  max-width: 46rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.98rem, 1.45vw, 1.32rem);
  font-style: italic;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: var(--gold2);
}

.hero-premium-header .hero-sub::before,
.hero-premium-header .hero-sub::after {
  content: "";
  width: clamp(2.5rem, 6vw, 5rem);
  height: 1px;
  background: rgba(245, 184, 0, 0.58);
}

.hero-premium-header .hero-list,
.hero-premium-header .meta-chips,
.hero-premium-header .hero-note {
  display: none;
}

.hero-premium-header .hero-actions {
  justify-content: center;
  margin-top: 0.8rem;
  margin-bottom: 0;
  opacity: 1;
}

.hero-premium-header .hero-actions .btn {
  min-width: 276px;
  padding: 16px 32px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(0, 0, 0, 0.14);
  color: var(--cream);
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.hero-premium-header .hero-actions .btn::after {
  display: none;
}

.hero-premium-header .hero-actions .btn-primary,
.hero-premium-header .hero-actions .btn-ghost {
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.marquee-relocated {
  position: relative;
  z-index: 4;
  margin-top: -1px;
}

@media (max-width: 980px) {
  .sticky-shell .sticky-bar {
    padding: 0 0.85rem;
  }

  .sticky-nav {
    gap: 22px;
  }

  .sticky-shell .brand-copy {
    display: none;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-points {
    margin-left: 0;
    justify-content: flex-start;
  }

  .hero-premium-header .hero-side-links {
    left: 1.25rem;
  }

  .hero-premium-header .hero-grid {
    padding: 1rem 0 1.35rem;
  }

  .hero-premium-header .hero-product-wrap {
    width: min(410px, 38vw);
  }

  .hero-premium-header .product-badge-hero {
    --badge-size: 5rem;
    --badge-font-size: 0.56rem;
    top: 0.3rem;
    right: 0.1rem;
  }

  .hero-premium-header .hero-copy {
    max-width: min(100%, 860px);
  }

  .hero-premium-header .hero-h1 {
    font-size: clamp(2.35rem, 5vw, 3.85rem);
  }

  .hero-premium-header .hero-sub {
    font-size: clamp(0.94rem, 1.5vw, 1.16rem);
  }
}

@media (max-width: 768px) {
  .sticky-shell {
    top: 10px;
    right: 10px;
    left: auto;
    width: auto;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    max-width: calc(100vw - 20px);
    overflow: visible;
  }

  .sticky-shell .wrap {
    width: auto;
    max-width: none;
  }

  .sticky-shell .sticky-bar {
    min-height: 0;
    width: auto;
    gap: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .sticky-shell .sticky-brand {
    display: none;
  }

  .sticky-nav {
    display: none;
  }

  .sticky-shell .sticky-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-nav-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
  }

  .mobile-nav-panel {
    display: grid;
    gap: 0.5rem;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(260px, calc(100vw - 20px));
    margin-top: 0;
    padding: 0.7rem 0.8rem 0.8rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 26px rgba(17, 17, 17, 0.08);
    max-width: 100%;
    overflow-x: clip;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 0.25rem 0.15rem;
    border-bottom: 1px solid rgba(139, 26, 26, 0.08);
    font-size: 0.88rem;
    letter-spacing: 0.11rem;
    line-height: 1.2;
  }

  .mobile-nav-links a:last-child {
    border-bottom: none;
  }

  .mobile-nav-cta {
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    text-align: center;
    line-height: 1;
    font-size: 0.88rem;
    letter-spacing: 0.14rem;
  }

  .nav-fly-layer {
    display: none;
  }

  .footer-brand {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 1rem;
  }

  .footer-mark {
    width: 100%;
    margin-inline: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.7rem;
  }

  .footer-meta {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .footer-points {
    width: 100%;
    text-align: left;
  }

  .faith-note {
    align-items: flex-start;
    text-align: left;
  }

  .hero-premium-header .hero-side-links {
    display: none;
  }

  .hero-premium-header .hero-side-links a,
  .hero-premium-header .hero-nav-source a {
    font-size: 0.84rem;
    letter-spacing: 0.04em;
  }

  .hero-premium-header .hero-grid {
    min-height: auto;
    padding: 1.9rem 0 1.2rem;
    gap: 0.9rem;
    overflow-x: clip;
  }

  .hero-premium-header .hero-product-wrap {
    width: min(228px, 58vw);
    max-width: 100%;
    overflow: clip;
  }

  .hero-premium-header .product-badge-hero {
    --badge-size: 4.2rem;
    --badge-font-size: 0.45rem;
    top: 0.3rem;
    right: 0;
    padding: 0.36rem;
    letter-spacing: 0.05rem;
  }

  .hero-premium-header .hero-product-cutout {
    width: 110%;
    margin-left: -5%;
    filter: none;
  }

  .hero-premium-header .product-shadow {
    display: none;
  }

  .hero-premium-header .eyebrow {
    margin-bottom: 0.65rem;
  }

  .hero-premium-header .hero-h1 {
    font-size: clamp(1.9rem, 8vw, 2.95rem);
  }

  .hero-premium-header .hero-sub {
    gap: 0.55rem;
    font-size: clamp(0.84rem, 3.7vw, 1.05rem);
  }

  .hero-premium-header .hero-sub::before,
  .hero-premium-header .hero-sub::after {
    width: 26px;
  }

  .hero-premium-header .hero-actions {
    gap: 0.85rem;
    flex-direction: column;
    align-items: center;
  }

  .hero-premium-header .hero-actions .btn {
    min-width: 0;
    width: min(100%, 312px);
    padding: 13px 18px;
    font-size: 0.88rem;
  }
}
