/* ============================================================
   LONE STAR WESTERN OUTFITTERS — cinematic western retail
   Sunrise gold → boutique amber → leather copper → arena bronze → charcoal/brass
   ============================================================ */

/* ---------- 0. Tokens ---------- */
:root {
  --charcoal: #171310;
  --charcoal-deep: #0f0c09;
  --saddle: #6f4a26;
  --chocolate: #3a2717;
  --ivory: #f5ecdd;
  --ivory-soft: #e9dcc6;
  --copper: #b06a35;
  --bronze: #a97f42;
  --brass: #c9974b;
  --brass-bright: #e8c078;
  --denim: #3f5b7d;
  --turquoise: #3aa8a0;
  --sand: #d9b98a;
  --sunset: #d2691e;
  --burgundy: #6e2f2a;
  --muted: #a89478;

  --font-display: "Bitter", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-brass: 0 10px 30px rgba(201, 151, 75, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --z-stage: 1; --z-panel: 5; --z-meter: 60; --z-nav: 70; --z-float: 65;
  --s2: 1rem; --s3: 1.5rem; --s4: 2.5rem; --s5: 4rem; --s6: 6rem;
}

/* ---------- 1. Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body); font-weight: 300; line-height: 1.7;
  color: var(--ivory); background: var(--charcoal-deep);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  transition: background 1.2s ease;
}
body[data-zone="0"] { background: #1a1208; }
body[data-zone="1"] { background: #17100a; }
body[data-zone="2"] { background: #1c120a; }
body[data-zone="3"] { background: #1a1109; }
body[data-zone="4"] { background: var(--charcoal-deep); }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }
.center { text-align: center; margin-top: var(--s4); }
.visually-hidden { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); letter-spacing: -0.005em; }
h2 em { font-style: italic; font-weight: 600; color: var(--brass-bright); }

.eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 0.9rem;
}

/* ---------- 2. Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.95em 2.1em; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  white-space: nowrap; min-width: max-content; text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}
.btn--lg { padding: 1.1em 2.5em; }
.btn--brass {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--brass-bright), var(--brass) 55%, #966c2e);
  color: #241705;
  box-shadow: var(--shadow-brass);
}
.btn--brass::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn--brass:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,151,75,0.5); }
.btn--brass:hover::before { left: 130%; }
.btn--pulse { animation: pulse 3s var(--ease) infinite; }
@keyframes pulse {
  0%,100% { box-shadow: var(--shadow-brass); }
  50% { box-shadow: var(--shadow-brass), 0 0 0 10px rgba(201,151,75,0.08); }
}
.btn--ghost {
  border-color: rgba(245,236,221,0.4); color: var(--ivory);
  background: rgba(245,236,221,0.05); backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-bright); transform: translateY(-3px); }
.btn--ghost-dark { border-color: rgba(245,236,221,0.35); color: var(--ivory); }
.btn--ghost-dark:hover { border-color: var(--brass); color: var(--brass-bright); transform: translateY(-3px); }

/* ---------- 3. Glass + stitched border ---------- */
.glass {
  background: linear-gradient(150deg, rgba(15,12,9,0.6), rgba(15,12,9,0.4));
  border: 1px solid rgba(201,151,75,0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.stitched { position: relative; }
.stitched::after {
  content: ""; position: absolute; inset: 8px;
  border: 1.5px dashed rgba(201,151,75,0.35);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}

/* ---------- 4. Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav); padding: 1rem 0; transition: background 0.4s var(--ease), padding 0.4s, box-shadow 0.4s; }
.nav.is-scrolled {
  background: rgba(15, 12, 9, 0.88);
  backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(201,151,75,0.18);
}
.nav__inner { display: flex; align-items: center; gap: var(--s3); }
.nav__logo { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid var(--brass); border-radius: 8px;
  color: var(--brass-bright); font-size: 1.1rem;
}
.nav__logo-text { font-family: var(--font-display); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.22em; color: var(--ivory); }
.nav__logo-text em { font-style: normal; color: var(--brass-bright); }
.nav__menu { display: flex; gap: 1.05rem; margin-left: auto; }
.nav__menu a {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 0.3rem 0; transition: color 0.3s;
}
.nav__menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--brass); transition: width 0.35s var(--ease);
}
.nav__menu a:hover { color: var(--ivory); }
.nav__menu a:hover::after { width: 100%; }
.nav__cta { margin-left: 0.3rem; flex-shrink: 0; }
.nav__cta-mobile { display: none; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__burger span { width: 24px; height: 2px; background: var(--ivory); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Journey stage ---------- */
.journey { position: relative; height: 560vh; }
.journey__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; z-index: var(--z-stage); }
.journey__clip, .journey__still {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.35s ease;
}
.journey__clip.is-active { opacity: 1; }
.journey__still { background-size: cover; background-position: center; }
.journey__grade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(26,18,8,0.7), rgba(210,105,30,0.08) 45%, rgba(26,18,8,0.3));
  transition: background 1.2s ease;
}
body[data-zone="1"] .journey__grade { background: linear-gradient(to top, rgba(23,16,10,0.75), rgba(120,70,15,0.1) 45%, rgba(23,16,10,0.3)); }
body[data-zone="2"] .journey__grade { background: linear-gradient(to top, rgba(28,18,10,0.75), rgba(176,106,53,0.12) 45%, rgba(28,18,10,0.3)); }
body[data-zone="3"] .journey__grade { background: linear-gradient(to top, rgba(26,17,9,0.72), rgba(210,105,30,0.14) 45%, rgba(26,17,9,0.3)); }
body[data-zone="4"] .journey__grade { background: linear-gradient(to top, rgba(15,12,9,0.8), rgba(201,151,75,0.1) 45%, rgba(15,12,9,0.35)); }

.journey__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.journey__particles span {
  position: absolute; bottom: -8px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--brass-bright);
  opacity: 0;
  animation: rise linear infinite;
  box-shadow: 0 0 8px rgba(232,192,120,0.8);
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: 0.65; }
  100% { transform: translateY(-108vh) translateX(var(--drift, 24px)); opacity: 0; }
}

/* ---------- 6. Panels ---------- */
.panel {
  position: absolute; inset: 0; z-index: var(--z-panel);
  display: flex; align-items: center;
  padding: 0 6vw;
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
  pointer-events: none;
}
.panel.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.panel__inner { max-width: 620px; padding: 2.3rem 2.5rem; }
.panel__inner--left { margin-right: auto; }
.panel__inner--right { margin-left: auto; }
.panel__inner--center { margin-inline: auto; text-align: center; }
.panel--hero .panel__inner { max-width: 800px; padding: 0; background: none; border: 0; box-shadow: none; backdrop-filter: none; }
.panel--hero .panel__inner::after { display: none; }
.panel__title {
  font-size: clamp(2.8rem, 7.6vw, 5.8rem); font-weight: 900; letter-spacing: 0.01em;
  color: var(--ivory); text-shadow: 0 6px 50px rgba(0,0,0,0.65);
}
.panel__title em { font-style: italic; font-weight: 700; color: var(--brass-bright); }
.panel__sub { max-width: 560px; margin-top: var(--s3); font-size: clamp(1rem, 1.6vw, 1.14rem); color: var(--ivory-soft); }
.panel__actions { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }
.panel__badges { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; margin-top: var(--s4); }
.panel__badges li {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sand); display: flex; align-items: center; gap: 0.5rem;
}
.panel__badges li::before { content: "★"; font-size: 0.55rem; color: var(--turquoise); }
.panel__micro { margin-top: var(--s3); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.panel__copy { color: var(--ivory-soft); font-size: 0.96rem; }
.panel__scrollhint {
  display: flex; align-items: center; gap: 0.7rem; margin-top: var(--s5);
  font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass);
}
.panel__scrollhint span {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--brass));
  animation: hintline 2.2s var(--ease) infinite;
}
@keyframes hintline { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

.factcards {
  position: absolute; right: 6vw; bottom: 8vh;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; max-width: 520px;
}
.fact { padding: 1rem 1.2rem; }
.fact b { font-family: var(--font-display); font-size: 1.05rem; color: var(--brass-bright); }
.fact p { font-size: 0.78rem; color: var(--ivory-soft); }

.callouts { margin-top: var(--s3); display: grid; gap: 0.5rem; }
.callouts li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.84rem; letter-spacing: 0.03em; color: var(--ivory-soft);
}
.callouts li::before { content: "▸"; color: var(--sunset); }

.stitch-line { margin-top: var(--s3); }
.stitch-line svg { width: min(300px, 60vw); height: 12px; margin-inline: auto; }
.stitch-path { stroke-dashoffset: 200; }
.panel.is-active .stitch-path { animation: stitch 1.8s var(--ease) 0.4s forwards; }
@keyframes stitch { to { stroke-dashoffset: 0; } }

/* ---------- 7. Trail meter ---------- */
.meter {
  position: fixed; right: 1.6rem; top: 50%; transform: translateY(-50%);
  z-index: var(--z-meter);
  display: flex; gap: 0.9rem; align-items: stretch;
}
.meter__line { position: relative; width: 2px; border-radius: 2px; background: rgba(245,236,221,0.15); }
.meter__progress {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--brass-bright), var(--bronze));
  box-shadow: 0 0 12px rgba(232,192,120,0.6);
  transition: height 0.2s linear;
}
.meter__labels { display: flex; flex-direction: column; justify-content: space-between; padding: 0.1rem 0; }
.meter__labels li {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,236,221,0.35);
  transition: color 0.4s, text-shadow 0.4s;
  padding: 0.35rem 0;
}
.meter__labels li.is-active { color: var(--brass-bright); text-shadow: 0 0 14px rgba(232,192,120,0.5); }
.meter__particles { position: absolute; inset: -10px; pointer-events: none; }
.meter__particles span {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--brass-bright); opacity: 0;
  animation: meterspark 4s ease-in-out infinite;
}
.meter__particles span:nth-child(1) { left: -6px; top: 12%; animation-delay: 0s; }
.meter__particles span:nth-child(2) { left: 8px;  top: 30%; animation-delay: 0.9s; }
.meter__particles span:nth-child(3) { left: -4px; top: 48%; animation-delay: 1.6s; }
.meter__particles span:nth-child(4) { left: 10px; top: 62%; animation-delay: 2.3s; }
.meter__particles span:nth-child(5) { left: -7px; top: 78%; animation-delay: 3s; }
.meter__particles span:nth-child(6) { left: 6px;  top: 92%; animation-delay: 3.5s; }
@keyframes meterspark { 0%,100% { opacity: 0; transform: translateY(0); } 50% { opacity: 0.8; transform: translateY(-8px); } }

/* ---------- 8. Floating shop ---------- */
.float-shop {
  position: fixed; left: 1.6rem; bottom: 1.6rem; z-index: var(--z-float);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #241705;
  background: linear-gradient(120deg, var(--brass-bright), var(--brass));
  padding: 0.85em 1.6em; border-radius: 10px;
  box-shadow: var(--shadow-brass);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  animation: pulse 3.4s var(--ease) infinite;
}
.float-shop.is-visible { opacity: 1; transform: none; }

/* ---------- 9. Sections ---------- */
.section { position: relative; padding: var(--s6) 0; z-index: 2; }
.section--charcoal {
  background:
    radial-gradient(1000px 420px at 85% -5%, rgba(201,151,75,0.08), transparent),
    linear-gradient(160deg, #1b1510, var(--charcoal-deep) 70%);
}
.section--saddle {
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(210,105,30,0.1), transparent),
    linear-gradient(160deg, #241a10, #171009 75%);
}
.section__head { max-width: 720px; margin-bottom: var(--s5); }
.section__lede { margin-top: var(--s2); color: var(--muted); font-size: 1rem; }

.grid { display: grid; gap: 1.4rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

/* ---------- 10. Collections showcase ---------- */
.collections {
  display: flex; gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 6vw 1.6rem;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
}
.collections::-webkit-scrollbar { height: 6px; }
.collections::-webkit-scrollbar-thumb { background: rgba(201,151,75,0.5); border-radius: 3px; }
.ccard {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: center;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(201,151,75,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.ccard:hover { transform: translateY(-10px); border-color: rgba(232,192,120,0.6); box-shadow: var(--shadow-card), 0 0 34px rgba(201,151,75,0.2); }
.ccard__media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.ccard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.ccard:hover .ccard__media img { transform: scale(1.07); }
.ccard__price {
  position: absolute; bottom: 0.9rem; right: 0.9rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  color: #241705; background: linear-gradient(120deg, var(--brass-bright), var(--brass));
  padding: 0.25em 0.9em; border-radius: 8px;
  box-shadow: var(--shadow-brass);
}
.ccard__body { padding: 1.3rem 1.4rem 1.5rem; }
.ccard__body h3 { font-size: 1.25rem; color: var(--ivory); margin-bottom: 0.3rem; }
.ccard__body p { font-size: 0.84rem; color: var(--muted); }
.ccard__tags { margin-top: 0.8rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ccard__tags span {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass); border: 1px solid rgba(201,151,75,0.35);
  padding: 0.3em 0.8em; border-radius: 6px;
}
.ccard__tags span.tag--faux { color: var(--turquoise); border-color: rgba(58,168,160,0.45); }
.ccard__cta {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass-bright);
  transition: gap 0.3s var(--ease);
}
.ccard__cta::after { content: "→"; }
.ccard:hover .ccard__cta { gap: 0.85rem; }
.collections__hint { text-align: center; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

/* ---------- 11. Style builder ---------- */
.builder { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s4); align-items: stretch; }
.builder__visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid rgba(201,151,75,0.25); }
.builder__visual img { width: 100%; height: 100%; object-fit: cover; }
.builder__panel { padding: 2rem 2.1rem; }
.builder__looks { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.4rem; }
.builder__looks button {
  font-family: var(--font-body); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); background: rgba(245,236,221,0.05);
  border: 1px solid rgba(201,151,75,0.3); border-radius: 8px;
  padding: 0.55em 1em; cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.builder__looks button.is-active, .builder__looks button:hover {
  color: #241705; background: linear-gradient(120deg, var(--brass-bright), var(--brass));
  border-color: transparent;
}
.builder__panel h3 { font-size: 1.6rem; color: var(--ivory); margin-bottom: 0.4rem; }
.builder__panel > p { font-size: 0.88rem; color: var(--muted); }
.builder__pieces { margin: 1.3rem 0 1.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.builder__pieces .piece {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: var(--ivory-soft);
  border: 1px dashed rgba(201,151,75,0.3);
  border-radius: 8px; padding: 0.5em 0.8em;
}
.builder__pieces .piece::before { content: "✓"; color: var(--turquoise); font-weight: 700; }
.builder__pieces .piece--faux::after {
  content: "FAUX"; margin-left: auto;
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--turquoise);
}
.builder__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- 12. Cards (tack / growth / seasonal / experience) ---------- */
.tcard, .gcard, .scard, .xcard {
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid rgba(201,151,75,0.2);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.tcard:hover, .gcard:hover, .scard:hover, .xcard:hover {
  transform: translateY(-6px); border-color: rgba(232,192,120,0.55); background: rgba(201,151,75,0.06);
}
.tcard .icon, .gcard .icon, .scard .icon, .xcard .icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
.tcard h3, .gcard h3, .scard h3, .xcard h3 { font-family: var(--font-body); font-size: 0.94rem; font-weight: 700; color: var(--ivory); margin-bottom: 0.3rem; }
.tcard p, .gcard p, .scard p, .xcard p { font-size: 0.79rem; color: var(--muted); line-height: 1.55; }

.feature-img { margin-bottom: var(--s5); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); position: relative; border: 1px solid rgba(201,151,75,0.2); }
.feature-img img { width: 100%; aspect-ratio: 16/7.5; object-fit: cover; }
.feature-img figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 2rem 1.2rem;
  background: linear-gradient(to top, rgba(15,12,9,0.85), transparent);
  font-size: 0.84rem; letter-spacing: 0.04em; color: var(--ivory-soft);
}

/* ---------- 13. CTA ---------- */
.cta { position: relative; padding: calc(var(--s6) * 1.4) 0; overflow: hidden; z-index: 2; }
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,12,9,0.72), rgba(15,12,9,0.5) 50%, rgba(15,12,9,0.85)); }
.cta__content { position: relative; z-index: 2; text-align: center; }
.cta__content h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); text-shadow: 0 6px 44px rgba(0,0,0,0.6); }
.cta__content > p { max-width: 560px; margin: var(--s3) auto var(--s4); color: var(--ivory-soft); }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; margin-bottom: var(--s3); }

/* ---------- 14. Footer ---------- */
.footer { position: relative; z-index: 2; background: #0b0906; color: var(--muted); padding: var(--s5) 0 var(--s3); border-top: 1px solid rgba(201,151,75,0.15); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 0.9fr 0.9fr 1.2fr; gap: var(--s4); }
.footer h4 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.8rem; }
.footer p, .footer a { font-size: 0.84rem; line-height: 2; }
.footer a:hover { color: var(--brass-bright); }
.footer__tag { margin-top: 0.8rem; max-width: 38ch; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.footer__social a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid rgba(245,236,221,0.16); border-radius: 8px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.footer__social a:hover { border-color: var(--brass); color: var(--brass-bright); transform: translateY(-3px); }
.footer__form { display: flex; gap: 0.6rem; margin-top: 0.9rem; }
.footer__form input {
  flex: 1; min-width: 0; padding: 0.75em 1.1em;
  border-radius: 10px; border: 1px solid rgba(245,236,221,0.18);
  background: rgba(245,236,221,0.05); color: var(--ivory);
  font-family: var(--font-body); font-size: 0.85rem;
}
.footer__form input:focus { outline: none; border-color: var(--brass); }
.footer__legal { margin-top: var(--s4); padding-top: var(--s3); border-top: 1px solid rgba(245,236,221,0.08); display: grid; gap: 0.4rem; }
.footer__legal p { font-size: 0.72rem; color: #6f6552; line-height: 1.7; }

/* ---------- 15. Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn--pulse, .float-shop, .meter__particles span, .journey__particles span, .panel__scrollhint span { animation: none; }
}

/* ---------- 16. Responsive ---------- */
@media (max-width: 1280px) {
  .nav__menu { gap: 0.7rem; }
  .nav__menu a { font-size: 0.6rem; }
  .nav__cta { padding: 0.8em 1.4em; font-size: 0.72rem; }
}
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .factcards { position: static; margin: 1.2rem 6vw 0 auto; max-width: 520px; }
  .panel { flex-direction: column; justify-content: center; align-items: flex-start; }
  .builder { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .meter { right: 0.7rem; }
  .meter__labels li { font-size: 0.5rem; letter-spacing: 0.16em; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    flex-direction: column; gap: 0.3rem;
    background: rgba(11, 9, 6, 0.97); backdrop-filter: blur(18px);
    padding: 5.5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    border-left: 1px solid rgba(201,151,75,0.25);
  }
  .nav__menu.is-open { transform: none; }
  .nav__menu a { font-size: 0.92rem; padding: 0.6rem 0; }
  .nav__cta { display: none; }
  .nav__cta-mobile { display: inline-block; margin-top: 1rem; }
  .nav__burger { display: flex; z-index: 110; }
  .journey { height: 400vh; }
  .panel__inner { padding: 1.7rem 1.5rem; max-width: 92vw; }
  .factcards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .panel__actions .btn, .cta__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s3); }
  .builder__pieces { grid-template-columns: 1fr; }
  .float-shop { left: 50%; transform: translateX(-50%) translateY(12px); }
  .float-shop.is-visible { transform: translateX(-50%); }
}
