/* ============================================================
   RACK & BOX — home page styles (heroes + sections)
   ============================================================ */

/* shared hero */
.hero { position: relative; }
.hero-h { font-size: clamp(46px, 7.4vw, 104px); font-weight: 500; }
.hero-sub { max-width: 44ch; margin-top: 22px; }
.hero-cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.on-img { color: #f6f1e7 !important; }
.center-cta { justify-content: center; }

/* ---- 1. SPLIT ---- */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; align-items: center; gap: 0; }
.hero-split-text { padding: 160px clamp(40px, 6vw, 96px) 80px; }
.hero-split-media { position: relative; height: 100vh; }
.hero-split-media .ph { height: 100%; }
.hero-float {
  position: absolute; left: 28px; bottom: 28px; background: var(--bg); padding: 16px 22px;
  display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow); border-radius: var(--radius);
}
.hero-float .mono { font-size: 10px; letter-spacing: 0.18em; color: var(--accent); }
.hero-float .serif { font-size: 20px; }
.hero-meta { display: flex; gap: 44px; margin-top: 54px; }
.hero-meta div { display: flex; flex-direction: column; gap: 3px; }
.hero-meta strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.hero-meta span { font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.04em; }

/* ---- 2. CENTERED ---- */
.hero-centered { height: 100vh; min-height: 640px; display: grid; place-items: center; overflow: hidden; }
.hero-centered-bg { position: absolute; inset: 0; }
.hero-centered-bg.ph { aspect-ratio: auto; }
.hero-centered-bg .ph-label { bottom: 0; }
.hero-centered-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,18,13,0.5) 0%, rgba(10,18,13,0.25) 40%, rgba(10,18,13,0.7) 100%); }
.hero-centered-content { position: relative; z-index: 3; text-align: center; max-width: 900px; padding: 0 24px; }
.hero-centered-content .hero-sub { margin-left: auto; margin-right: auto; }
.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3; color: #f6f1e7; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--accent), transparent); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---- 3. EDITORIAL ---- */
.hero-editorial { padding-top: 120px; }
.hero-ed-grid { display: grid; grid-template-columns: 0.85fr 1.3fr 0.85fr; gap: 30px; align-items: center; padding: 40px var(--gut) 50px; max-width: 1560px; margin: 0 auto; }
.hero-ed-center { text-align: center; padding: 0 10px; }
.hero-ed-h { font-size: clamp(40px, 5.6vw, 88px); margin: 18px 0 20px; }
.hero-ed-center .hero-sub { margin: 0 auto 30px; }
.hero-ed-center .btn { margin: 0 auto; }
.hero-ed-media.a { transform: translateY(-20px); }
.hero-ed-media.b { transform: translateY(28px); }
.hero-ed-media .ph { border-radius: var(--radius); overflow: hidden; }

/* ---- 4. STACKED ---- */
.hero-stacked { padding-top: 150px; }
.hero-stk-top { padding-bottom: 40px; }
.hero-stk-h { font-size: clamp(54px, 11vw, 168px); font-weight: 500; line-height: 0.92; letter-spacing: -0.02em; margin-top: 22px; }
.hero-stk-word { display: inline-block; }
.hero-stk-word:nth-child(even) { font-style: italic; color: var(--accent); }
.hero-stk-band { display: grid; grid-template-columns: 1.5fr 0.9fr 0.7fr; gap: 24px; padding: 0 var(--gut) 40px; max-width: 1560px; margin: 0 auto; align-items: stretch; }
.hero-stk-img .ph { height: 100%; min-height: 360px; border-radius: var(--radius); overflow: hidden; }
.hero-stk-card { background: var(--surface); padding: 36px 30px; display: flex; flex-direction: column; gap: 18px; justify-content: center; border-radius: var(--radius); border: 1px solid var(--line); }
.hero-stk-card .hero-sub { margin: 0; font-size: 16px; }
.hero-stk-link { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); text-align: left; }
.hero-stk-link:hover { color: var(--accent); }

/* ---------- Trust bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 10px; color: var(--ink); }
.trust-item:not(:last-child) { border-right: 1px solid var(--line); }
.trust-item svg { color: var(--accent); flex: none; }
.trust-t { display: block; font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em; }
.trust-s { display: block; font-size: 12px; color: var(--ink-soft); }

/* ---------- Category strip ---------- */
.cat-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat-card { display: block; }
.cat-card-btn { display: block; width: 100%; text-align: left; position: relative; border-radius: var(--radius); overflow: hidden; }
.cat-card-btn .ph { transition: transform 1.1s var(--ease); }
.cat-card-btn:hover .ph { transform: scale(1.05); }
.cat-card-btn::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,
    rgba(5,5,5,.72)  0%,
    rgba(5,5,5,.30) 40%,
    rgba(5,5,5,.04) 70%);
  border-radius: inherit;
  pointer-events: none;
}
.cat-card-cap { position: absolute; left: 16px; bottom: 16px; z-index: 3; display: flex; flex-direction: column; gap: 4px; color: #f6f1e7; }
.cat-card-cap .mono { font-size: 10px; letter-spacing: 0.2em; color: #e9c97a; }
.cat-card-cap .serif { font-size: 22px; }

/* ---------- Story ---------- */
.story-sec { background: var(--surface); }
.story-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.story-media .ph { border-radius: var(--radius); overflow: hidden; }
.story-h { font-size: clamp(38px, 5vw, 68px); font-weight: 500; line-height: 1.02; margin: 18px 0 22px; }
.story-stats { display: flex; gap: 34px; }
.story-stats div { display: flex; flex-direction: column; }
.story-stats strong { font-size: 32px; font-weight: 600; line-height: 1; }
.story-stats span { font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.04em; margin-top: 4px; }

/* ---------- Occasions ---------- */
.center-head { justify-content: center; margin-bottom: 48px; }
.occ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: end; }
.occ-card { display: block; }
.occ-card-btn { display: block; width: 100%; text-align: left; position: relative; border-radius: var(--radius); overflow: hidden; }
.occ-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(8,14,10,0.86) 100%); z-index: 2; }
.occ-cap { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 3; display: flex; flex-direction: column; gap: 8px; color: #f6f1e7; }
.occ-cap .mono { font-size: 10px; letter-spacing: 0.2em; color: #e9c97a; }
.occ-title { font-size: 27px; line-height: 1; }
.occ-blurb { font-size: 13px; color: rgba(246,241,231,0.78); line-height: 1.5; max-width: 26ch; }
.occ-card-btn .link-arrow { margin-top: 6px; }

/* ---------- Lookbook teaser ---------- */
.lb-teaser { position: relative; min-height: 76vh; display: grid; place-items: center; overflow: hidden; }
.lb-teaser-bg { position: absolute; inset: 0; }
.lb-teaser-bg.ph { aspect-ratio: auto; }
.lb-teaser-ov { position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 50%, rgba(8,14,10,0.4), rgba(8,14,10,0.78)); }
.lb-teaser-content { position: relative; z-index: 3; text-align: center; padding: 80px 24px; }
.lb-teaser-h { font-size: clamp(52px, 9vw, 132px); font-weight: 500; color: #f6f1e7; line-height: 1; margin: 14px 0 22px; }

/* ---------- Bespoke band ---------- */
.bespoke-band { background: var(--c-deep); color: var(--c-paper); padding: clamp(60px, 8vw, 110px) 0; }
.bespoke-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.bespoke-media .ph { border-radius: var(--radius); overflow: hidden; }
.bespoke-body .eyebrow { color: var(--accent); }
.bespoke-body .lede { color: rgba(244,239,228,0.74); }
.bespoke-h { font-size: clamp(34px, 4.4vw, 60px); font-weight: 500; line-height: 1.04; margin: 18px 0 22px; color: var(--c-paper); max-width: 18ch; }
.bespoke-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; max-width: 460px; }
.bespoke-step { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid rgba(244,239,228,0.18); }
.bespoke-step .mono { color: var(--accent); font-size: 13px; }
.bespoke-step span:last-child { font-size: 14px; color: rgba(244,239,228,0.86); }
.bespoke-band .btn { --b-bg: var(--accent); --b-ink: var(--c-deep); }
.bespoke-band .btn:hover { background: var(--c-paper); border-color: var(--c-paper); color: var(--c-deep); }

/* ---------- Testimonials ---------- */
.testi-sec { background: var(--surface); }
.testi-inner { max-width: 880px; }
.testi-quote { font-size: clamp(26px, 3.6vw, 46px); font-weight: 500; line-height: 1.28; margin: 26px 0; font-style: italic; }
.testi-author { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.testi-author span { color: var(--ink-soft); }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }
.tdot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: all .3s; }
.tdot.on { background: var(--accent); width: 26px; border-radius: 100px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-head { position: sticky; top: 120px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; text-align: left; font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 27px); color: var(--ink); transition: color .3s; }
.faq-q:hover { color: var(--accent); }
.faq-q svg { flex: none; color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding-bottom: 26px; color: var(--ink-soft); max-width: 60ch; font-size: 15px; }

/* ---------- Instagram ---------- */
.insta-sec { padding: clamp(60px, 7vw, 100px) 0 0; }
.insta-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.insta-cell { position: relative; overflow: hidden; }
.insta-cell .ph { border-radius: 0; }
.insta-ic { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(8,14,10,0.55); color: #fff; opacity: 0; transition: opacity .4s; z-index: 3; }
.insta-cell:hover .insta-ic { opacity: 1; }

/* ---- 5. CAROUSEL ---- */
.hero-carousel {
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hc-bgs { position: absolute; inset: 0; z-index: 0; }
.hc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1), transform 1.2s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.hc-bg.active { opacity: 1; transform: scale(1); }
.hc-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, rgba(6,6,6,.72) 0%, rgba(6,6,6,.30) 58%, rgba(6,6,6,.12) 100%);
}
.hc-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.52), transparent);
}
.hc-content {
  position: relative; z-index: 10;
  padding-top: 160px; padding-bottom: 110px;
  max-width: 660px;
  animation: hcFadeUp .7s cubic-bezier(0.22,1,0.36,1) both;
}
.hc-headline {
  font-size: clamp(50px, 7vw, 96px); line-height: 1.0;
  color: #fff; white-space: pre-line; margin: 16px 0 20px;
  animation: hcFadeUp .75s .05s cubic-bezier(0.22,1,0.36,1) both;
}
.hc-sub {
  color: rgba(244,239,228,.78); max-width: 44ch;
  animation: hcFadeUp .75s .12s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes hcFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
/* Progress bar */
.hc-progress-track {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 30;
  background: rgba(255,255,255,.12);
}
.hc-progress-fill {
  height: 100%; width: 0%;
  background: var(--hc-accent, var(--accent));
  animation: hcProgress var(--hc-dur, 4800ms) linear forwards;
}
@keyframes hcProgress { from { width: 0%; } to { width: 100%; } }
/* Arrows */
.hc-arrow {
  position: absolute; z-index: 20; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.22); backdrop-filter: blur(8px);
  color: rgba(255,255,255,.82);
  transition: background .3s, color .3s, transform .3s;
}
.hc-arrow:hover { background: rgba(0,0,0,.55); color: #fff; transform: translateY(-50%) scale(1.08); }
.hc-prev { left: clamp(16px, 2vw, 32px); }
.hc-next { right: clamp(16px, 2vw, 32px); }
/* Dots */
.hc-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; align-items: center; gap: 8px;
}
.hc-dot {
  width: 8px; height: 8px; border-radius: 99px; border: none; cursor: pointer;
  background: rgba(255,255,255,.38);
  transition: all .45s cubic-bezier(0.22,1,0.36,1);
}
.hc-dot.active { width: 28px; background: var(--dot-accent, var(--accent)); }
/* Counter */
.hc-counter {
  position: absolute; top: 26px; right: var(--gut); z-index: 30;
  display: none; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.18em; color: rgba(255,255,255,.5);
}
.hc-counter .mono { color: rgba(255,255,255,.82); }
@media (min-width: 640px) { .hc-counter { display: flex; } }
@media (max-width: 760px) {
  .hc-arrow { display: none; }
  .hc-content { padding-top: 140px; padding-bottom: 90px; }
}

/* ═══════════════════════════════════════════════════════════
   NEW HERO VARIANTS (Amy Aghomi-inspired)
   ═══════════════════════════════════════════════════════════ */

/* ── shared token ── */
:root {
  --hv-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ────────────────────────────────────────────────────────
   1. CINEMATIC VIDEO HERO
   ──────────────────────────────────────────────────────── */
.hv-root {
  height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden; background: #040404;
}
.hv-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 20%;
  opacity: 0; transition: opacity 1.4s var(--hv-ease);
}
.hv-bg.loaded {
  opacity: 1;
  animation: hvKenBurns 22s ease-in-out infinite alternate;
}
@keyframes hvKenBurns {
  from { transform: scale(1.0) translateX(0); }
  to   { transform: scale(1.07) translateX(-1%); }
}
.hv-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right,  rgba(4,4,4,.82) 0%, rgba(4,4,4,.22) 55%, rgba(4,4,4,.04) 100%),
    linear-gradient(to top,    rgba(4,4,4,.62) 0%, transparent 40%);
}
.hv-rule {
  position: absolute; top: 0; left: var(--gut); right: var(--gut);
  height: 1px; z-index: 10;
  background: linear-gradient(to right, var(--accent), transparent 60%);
  opacity: 0.55;
}
.hv-content {
  position: relative; z-index: 10;
  padding-top: 180px; padding-bottom: 120px; max-width: 680px;
}
.hv-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
  animation: hvUp .9s var(--hv-ease) both;
}
.hv-h {
  font-size: clamp(54px, 8vw, 112px); line-height: 0.95;
  color: #f4efe4; margin: 0 0 28px;
}
.hv-word {
  display: inline-block;
  animation: hvUp .85s var(--hv-ease) both;
}
.hv-word:nth-child(1) { animation-delay: .05s; }
.hv-word:nth-child(2) { animation-delay: .12s; }
.hv-word:nth-child(3) { animation-delay: .18s; font-style: italic; }
.hv-word:nth-child(4) { animation-delay: .24s; }
.hv-word:nth-child(5) { animation-delay: .30s; }
.hv-gold { color: var(--accent); }
.hv-sub {
  color: rgba(244,239,228,.72); max-width: 46ch;
  animation: hvUp .85s .28s var(--hv-ease) both;
}
.hv-cta {
  display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap;
  animation: hvUp .85s .34s var(--hv-ease) both;
}
@keyframes hvUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.hv-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hv-scroll-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,239,228,.5); }
.hv-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: hvScrollLine 2.2s ease-in-out infinite;
}
@keyframes hvScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.hv-corner {
  position: absolute; bottom: 36px; right: var(--gut); z-index: 10;
  font-size: 10px; letter-spacing: 0.2em; color: rgba(244,239,228,.28);
}

/* ────────────────────────────────────────────────────────
   2. AGHOMI MINIMAL SLIDER
   ──────────────────────────────────────────────────────── */
.ha-root {
  height: 100vh; min-height: 640px; overflow: hidden; background: #080808;
}
.ha-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  opacity: 0; transition: opacity 1.6s var(--hv-ease);
}
.ha-bg.active { opacity: 1; }
.ha-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(120deg, rgba(4,4,4,.75) 0%, rgba(4,4,4,.25) 65%, rgba(4,4,4,.08) 100%);
}
.ha-content {
  position: absolute; z-index: 10;
  left: var(--gut); bottom: clamp(90px, 14vh, 160px);
  max-width: 640px;
}
.ha-eyebrow {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  animation: haUp 1s .05s var(--hv-ease) both;
}
.ha-h {
  font-size: clamp(52px, 9vw, 124px); line-height: 0.94;
  color: #f4efe4; margin: 0 0 32px;
}
.ha-h-line {
  display: block;
  animation: haUp 1s .1s var(--hv-ease) both;
}
.ha-h-em {
  font-style: italic; color: rgba(244,239,228,.78);
  animation-delay: .18s;
}
.ha-cta-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,239,228,.72); border-bottom: 1px solid rgba(244,239,228,.22);
  padding-bottom: 6px; transition: color .3s, border-color .3s;
  animation: haUp 1s .28s var(--hv-ease) both;
}
.ha-cta-link:hover { color: var(--accent); border-color: var(--accent); }
@keyframes haUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
/* Side counter */
.ha-counter {
  position: absolute; right: clamp(20px, 3vw, 44px); top: 50%; z-index: 10;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.ha-counter .mono { font-size: 13px; letter-spacing: 0.12em; color: rgba(244,239,228,.8); }
.ha-count-bar { width: 1px; height: 44px; background: rgba(244,239,228,.22); }
.ha-count-total { opacity: .38; }
/* Progress lines */
.ha-lines {
  position: absolute; bottom: 40px; left: var(--gut); z-index: 10;
  display: flex; gap: 10px;
}
.ha-line-btn { display: flex; align-items: center; width: 56px; height: 24px; cursor: pointer; }
.ha-line-track {
  position: relative; width: 100%; height: 1.5px;
  background: rgba(244,239,228,.2);
}
.ha-line-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--accent);
  animation: haLineFill var(--ha-dur, 5400ms) linear forwards;
}
@keyframes haLineFill { from { width: 0; } to { width: 100%; } }

/* ────────────────────────────────────────────────────────
   3. LUXURY SPLIT HERO
   ──────────────────────────────────────────────────────── */
.hls-root {
  display: grid; grid-template-columns: 1fr 1.15fr;
  min-height: 100vh; overflow: hidden;
  background: var(--c-deep, #0e1c15);
}
.hls-panel {
  position: relative; display: flex; align-items: stretch;
  padding: clamp(120px, 14vh, 180px) clamp(40px, 5vw, 80px) 80px clamp(32px, 5vw, 80px);
}
.hls-panel-inner {
  flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.hls-vline {
  position: absolute; top: 15%; right: 0; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
  opacity: 0.5;
}
.hls-eyebrow {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.hls-h {
  font-size: clamp(40px, 5.6vw, 82px); line-height: 1.0;
  color: var(--c-paper, #f4efe4); max-width: 14ch; margin: 0;
}
.hls-rule {
  width: 48px; height: 1px; background: var(--accent);
  margin: 28px 0; opacity: .7;
}
.hls-sub {
  color: rgba(244,239,228,.68); max-width: 40ch; margin: 0 0 32px;
}
.hls-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hls-meta {
  display: flex; gap: 40px;
  border-top: 1px solid rgba(244,239,228,.1); padding-top: 28px;
}
.hls-meta div { display: flex; flex-direction: column; gap: 4px; }
.hls-meta strong { font-size: 28px; color: var(--c-paper, #f4efe4); font-weight: 500; line-height: 1; }
.hls-meta span { font-size: 11.5px; color: rgba(244,239,228,.45); letter-spacing: 0.04em; }
/* Right image side */
.hls-media {
  display: grid; grid-template-columns: 1fr 200px; gap: 0;
  overflow: hidden;
}
.hls-main-img { overflow: hidden; }
.hls-main-img .ph, .hls-main-img img { height: 100%; object-fit: cover; }
.hls-thumbs {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid rgba(244,239,228,.06);
}
.hls-thumb { flex: 1; overflow: hidden; }
.hls-thumb .ph { height: 100%; }
.hls-thumb:first-child { border-bottom: 1px solid rgba(244,239,228,.06); }

/* ────────────────────────────────────────────────────────
   4. MINIMAL TYPOGRAPHIC HERO
   ──────────────────────────────────────────────────────── */
.ht-root {
  min-height: 100vh; display: flex; align-items: stretch;
  overflow: hidden; background: var(--bg);
  position: relative;
}
.ht-bg-wrap {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
  pointer-events: none;
}
.ht-bg-wrap .ph { height: 100%; border-radius: 0; }
.ht-bg-fade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, var(--bg) 38%, rgba(var(--bg-rgb, 244,239,228), 0) 72%),
    linear-gradient(to top,   var(--bg) 0%, transparent 18%);
}
.ht-content {
  position: relative; z-index: 2;
  width: 100%; display: flex; flex-direction: column;
  padding-top: clamp(160px, 18vh, 220px);
  padding-bottom: 80px;
}
.ht-badge {
  display: flex; align-items: center; gap: 16px; margin-bottom: 44px;
}
.ht-badge .mono { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.ht-badge-line { flex: none; width: 40px; height: 1px; background: var(--accent); opacity: .6; }
.ht-h {
  font-size: clamp(60px, 10vw, 148px); line-height: 0.92; letter-spacing: -0.015em;
  max-width: 14ch; color: var(--ink); margin: 0;
}
.ht-word {
  display: inline-block; margin-right: 0.22em;
  animation: htWordIn 1s var(--hv-ease) both;
}
@media (prefers-reduced-motion: no-preference) {
  body.anim-ready .ht-word { animation-name: htWordIn; }
}
@keyframes htWordIn {
  from { opacity: 0; transform: translateY(0.3em) skewY(3deg); }
  to   { opacity: 1; transform: none; }
}
.ht-footer {
  margin-top: auto; padding-top: 60px;
  display: flex; align-items: flex-end; gap: clamp(32px, 6vw, 80px); flex-wrap: wrap;
}
.ht-sub {
  max-width: 38ch; color: var(--ink-soft); font-size: 15px;
  line-height: 1.65; flex: 1; min-width: 240px;
}
.ht-foot-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ────────────────────────────────────────────────────────
   5. MOSAIC / PARALLAX HERO
   ──────────────────────────────────────────────────────── */
.hm-root {
  height: 100vh; min-height: 640px;
  background: #050505; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
/* Floating cards */
.hm-card {
  position: absolute; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.hm-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Card positions — editorial asymmetry */
.hm-c1 { width: clamp(200px, 20vw, 300px); height: clamp(270px, 28vw, 420px); top: 8%;  left: 4%;  border-radius: 2px; animation: hmFloat 7s  ease-in-out infinite alternate; }
.hm-c2 { width: clamp(160px, 16vw, 240px); height: clamp(220px, 22vw, 340px); top: 12%; right: 6%; border-radius: 2px; animation: hmFloat 9s  ease-in-out infinite alternate-reverse; }
.hm-c3 { width: clamp(180px, 18vw, 270px); height: clamp(240px, 26vw, 380px); bottom: 6%; left: 10%; border-radius: 2px; animation: hmFloat 8s  ease-in-out infinite alternate; }
.hm-c4 { width: clamp(140px, 14vw, 210px); height: clamp(190px, 20vw, 300px); bottom: 8%; right: 3%; border-radius: 2px; animation: hmFloat 10s ease-in-out infinite alternate-reverse; }
@keyframes hmFloat {
  from { transform: translateY(-8px) rotate(-0.5deg); }
  to   { transform: translateY(8px)  rotate(0.5deg); }
}
/* Central scrim + content */
.hm-scrim {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(ellipse 52% 60% at 50% 50%, rgba(5,5,5,.78) 0%, rgba(5,5,5,.25) 80%, transparent 100%);
}
.hm-content {
  position: relative; z-index: 5;
  text-align: center; max-width: 720px; padding: 0 24px;
}
.hm-eyebrow {
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  animation: hvUp 1s var(--hv-ease) both;
}
.hm-h {
  font-size: clamp(56px, 9vw, 128px); line-height: 0.94;
  color: #f4efe4; margin: 0 0 18px;
  animation: hvUp 1s .08s var(--hv-ease) both;
}
.hm-sub {
  color: rgba(244,239,228,.55); font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 34px;
  animation: hvUp 1s .16s var(--hv-ease) both;
}
.hm-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: hvUp 1s .24s var(--hv-ease) both;
}
/* Corner text */
.hm-corner-tl, .hm-corner-br {
  position: absolute; z-index: 10;
  font-size: 10px; letter-spacing: 0.2em; color: rgba(244,239,228,.2);
}
.hm-corner-tl { top: 28px; left: var(--gut); }
.hm-corner-br { bottom: 28px; right: var(--gut); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hls-root { grid-template-columns: 1fr; min-height: auto; }
  .hls-media { height: 70vh; grid-template-columns: 1fr; }
  .hls-thumbs { display: none; }
  .hls-vline { display: none; }
  .hls-panel { padding-top: 130px; padding-bottom: 60px; }
  .ha-counter { display: none; }
  .ht-bg-wrap { width: 35%; }
}
@media (max-width: 680px) {
  .hv-content, .ha-content { max-width: 92vw; }
  .hm-c2, .hm-c4 { display: none; }
  .hm-c1 { width: 42vw; height: 56vw; left: 2%; top: 6%; }
  .hm-c3 { width: 38vw; height: 50vw; right: 2%; bottom: 6%; left: auto; }
  .ht-bg-wrap { display: none; }
  .ht-bg-fade { display: none; }
}

/* ════════════════════════════════════════════════════════════
   COLLAGE HERO  — 3 equal vertical video strips
   ════════════════════════════════════════════════════════════ */
.hcol-root {
  position: relative;
  height: 100vh; min-height: 660px;
  overflow: hidden;
  background: #050505;
  display: flex; align-items: center; justify-content: center;
}

/* ── 4 equal strips, single row ── */
.hcol-strips {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 2px;
  pointer-events: none;
}

.hcol-strip {
  position: relative; overflow: hidden;
}

/* Videos fill their panel (fully covers height, no letterboxing) */
.hcol-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  background: #0c0c0c;
  animation: hcolMediaIn 1.6s cubic-bezier(0.22,1,0.36,1) both;
}
/* Brand-photo poster layered beneath the video */
.hcol-poster { z-index: 0; }
.hcol-strip video.hcol-media { z-index: 1; }
@keyframes hcolMediaIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Cinematic overlay for text legibility ── */
.hcol-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(105deg,
      rgba(3,3,3,.90)  0%,
      rgba(3,3,3,.58) 32%,
      rgba(3,3,3,.18) 60%,
      rgba(3,3,3,.06) 100%),
    linear-gradient(to top,
      rgba(3,3,3,.70) 0%,
      transparent     30%);
}

/* ── Thin dividers (gold tint), matching the 4-column grid ── */
.hcol-dividers {
  position: absolute; inset: 0; z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 2px;
  pointer-events: none;
}
.hcol-dividers span {
  box-shadow: inset -1px 0 0 rgba(200,162,74,.12);
}

/* ── Gold top rule ── */
.hcol-top-rule {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  z-index: 10; pointer-events: none;
  background: linear-gradient(to right, var(--accent) 0%, transparent 50%);
  opacity: 0.5;
}

/* ── Editorial content ── */
.hcol-content {
  position: relative; z-index: 10;
  padding: 0 var(--gut);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: all;
}
.hcol-content-in  { animation: hcolTxtIn  0.75s cubic-bezier(0.22,1,0.36,1) both; }
.hcol-content-out { animation: hcolTxtOut 0.45s cubic-bezier(0.55,0,1,0.45) both; }

@keyframes hcolTxtIn  {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hcolTxtOut {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(-10px); }
}

.hcol-eyebrow {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 22px;
}
.hcol-h {
  font-size: clamp(52px, 7.5vw, 108px); line-height: 0.94;
  color: #f4efe4; margin: 0 0 34px;
}
.hcol-hline  { display: block; }
.hcol-hem    { font-style: italic; color: rgba(244,239,228,.80); }
.hcol-sub    { max-width: 46ch; margin: 0 auto 30px; color: rgba(244,239,228,.82); }
.hcol-cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Dots ── */
.hcol-dots {
  position: absolute; bottom: clamp(32px,5vh,52px); left: 50%;
  transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px; align-items: center;
}
.hcol-dot {
  width: 6px; height: 6px; border-radius: 99px;
  background: rgba(244,239,228,.3);
  border: none; cursor: pointer;
  transition: width .5s cubic-bezier(0.22,1,0.36,1), background .5s;
}
.hcol-dot.active { width: 26px; background: var(--accent); }

/* ── Corner label ── */
.hcol-corner {
  position: absolute; bottom: clamp(32px,5vh,52px); right: var(--gut);
  z-index: 10; font-size: 10px; letter-spacing: 0.2em;
  color: rgba(244,239,228,.22);
}

/* ── Scroll pulse line ── */
.hcol-scroll {
  position: absolute; top: 0; left: calc(var(--gut) + 30px);
  z-index: 10; width: 1px; height: 100%;
  pointer-events: none; overflow: hidden;
}
.hcol-scroll-line {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: hcolScrollPulse 3.2s ease-in-out infinite;
}
@keyframes hcolScrollPulse {
  0%   { transform: translateY(-60px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hcol-strips { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
  .hcol-dividers { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
  .hcol-h { font-size: clamp(44px,10vw,76px); }
  .hcol-scroll { display: none; }
}
@media (max-width: 560px) {
  .hcol-strips { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr 1fr 1fr; }
  .hcol-dividers { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr 1fr 1fr; }
  .hcol-overlay {
    background: linear-gradient(to top,
      rgba(3,3,3,.88) 0%, rgba(3,3,3,.40) 55%, rgba(3,3,3,.10) 100%);
  }
  .hcol-content { padding-bottom: 80px; }
}

/* ---------- Responsive home ---------- */
@media (max-width: 1080px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-media { height: 70vh; order: -1; }
  .hero-split-text { padding: 130px 24px 60px; }
  .hero-ed-grid { grid-template-columns: 1fr; }
  .hero-ed-media { display: none; }
  .hero-stk-band { grid-template-columns: 1fr; }
  .hero-stk-img.b { display: none; }
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .faq-grid, .bespoke-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .insta-row { grid-template-columns: repeat(3, 1fr); }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
  .cat-strip, .occ-grid { grid-template-columns: 1fr; }
  .insta-row { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { gap: 28px; }
  .bespoke-steps { grid-template-columns: 1fr; }
}
