/* ============================================================
   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(4, 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; }

/* ---------- Section heads ---------- */
.center-head { justify-content: center; margin-bottom: 48px; }

/* ---------- 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  — light video-grid collage
   Content on the cream field · media framed, never dark
   ════════════════════════════════════════════════════════════ */
.hcol-root {
  position: relative;
  background: var(--bg);
  padding: clamp(120px,15vh,152px) 0 clamp(56px,8vh,80px);
}
.hcol-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px,5vw,72px);
  align-items: center;
}

/* ── Content — plain cream field, dark ink, no overlay needed ── */
.hcol-content { max-width: 480px; }
.hcol-eyebrow {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 20px;
  display: flex; align-items: center; gap: 12px;
}
.hcol-eyebrow::before {
  content: ""; display: block;
  width: 24px; height: 1px; background: var(--accent); flex-shrink: 0;
}
.hcol-h1 {
  font-size: clamp(42px, 5.4vw, 74px); line-height: 1.0;
  color: var(--ink); margin: 0 0 20px;
}
.hcol-h1-line { display: block; }
.hcol-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--ink-soft);
  line-height: 1.65; margin: 0 0 30px; max-width: 40ch;
}
.hcol-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Video-grid collage ── */
.hcol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: clamp(420px, 56vh, 640px);
}
.hcol-panel {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-2);
}
.hcol-panel:first-child { grid-row: 1 / 3; }
.hcol-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
/* video sits above the still but stays invisible until it actually plays */
.hcol-video { opacity: 0; transition: opacity .6s ease; background: transparent; }
.hcol-video.ready { opacity: 1; }
.hcol-panel-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; background: rgba(14,28,21,0.55);
  padding: 6px 12px; border-radius: 99px;
  backdrop-filter: blur(4px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hcol-inner { grid-template-columns: 1fr; gap: 36px; }
  .hcol-content { max-width: none; }
  .hcol-grid { height: 62vh; }
}
@media (max-width: 560px) {
  .hcol-grid { grid-template-columns: 1fr; grid-template-rows: none; height: auto; gap: 12px; }
  .hcol-panel { height: 44vh; }
  .hcol-panel:first-child { grid-row: auto; }
}

/* ════════════════════════════════════════════════════════════
   REFINED ASYMMETRIC COLLAGE HERO  (.hca-*)
   Spine | Primary (55%) | Stacked pair (45%)
   ════════════════════════════════════════════════════════════ */
.hca-root {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: #080808;
}

/* ── grid backdrop ── */
.hca-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 42px 1fr 42%;
  grid-template-rows: 1fr;
}

/* brand spine */
.hca-spine {
  position: relative; z-index: 4;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  padding: 28px 0;
  border-right: 1px solid rgba(200,162,74,.18);
  background: rgba(8,8,8,.55);
  backdrop-filter: blur(2px);
}
.hca-spine-text {
  font-family: var(--font-sans, sans-serif);
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(200,162,74,.7);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hca-spine-year {
  font-size: 9px; letter-spacing: 0.22em;
  color: rgba(200,162,74,.35);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

/* primary panel */
.hca-primary {
  position: relative; overflow: hidden;
  border-right: 1px solid rgba(200,162,74,.12);
}

/* stacked right */
.hca-stack {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1px 1fr;
}
.hca-stack-top, .hca-stack-bot { position: relative; overflow: hidden; }
.hca-stack-rule { background: rgba(200,162,74,.18); z-index: 2; }

/* video fills panel */
.hca-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hca-panel { position: relative; }
.hca-panel:hover .hca-video { transform: scale(1.08); }
.hca-panel-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(8,8,8,.25) 0%, transparent 60%);
}

/* master cinematic overlay */
.hca-master-ov {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(to top,  rgba(6,6,6,.92) 0%, rgba(6,6,6,.45) 38%, transparent 65%),
    linear-gradient(to right, rgba(6,6,6,.55) 0%, transparent 55%);
}

/* gold hairlines */
.hca-hairlines { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.hca-hl {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(200,162,74,.3) 30%, rgba(200,162,74,.3) 70%, transparent 100%);
}
.hca-hl-1 { left: 42px; }
.hca-hl-2 { right: 42%; }

/* editorial copy */
.hca-copy {
  position: relative; z-index: 10;
  padding: 0 clamp(28px,5vw,80px) clamp(80px,10vh,120px) 72px;
  max-width: 680px;
  pointer-events: all;
}
.hca-copy-in  { animation: hcaIn  0.8s cubic-bezier(0.22,1,0.36,1) both; }
.hca-copy-out { animation: hcaOut 0.45s cubic-bezier(0.55,0,1,0.45) both; }
@keyframes hcaIn  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes hcaOut { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-12px); } }

.hca-eyebrow {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent, #c8a24a); margin: 0 0 20px;
  display: flex; align-items: center; gap: 14px;
}
.hca-eyebrow::before {
  content: ""; display: block;
  width: 28px; height: 1px; background: var(--accent, #c8a24a); flex-shrink: 0;
}
.hca-h1 {
  font-size: clamp(48px, 6.5vw, 100px); line-height: 0.92;
  color: #f4efe4; margin: 0 0 20px;
  font-weight: 500;
}
.hca-h1-line { display: block; }
.hca-h1-em   { font-style: italic; color: rgba(244,239,228,.72); }
.hca-sub {
  font-size: clamp(13px,1.2vw,15.5px); color: rgba(244,239,228,.6);
  line-height: 1.65; margin: 0 0 30px; max-width: 42ch;
  letter-spacing: 0.015em;
}
.hca-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* slide counter */
.hca-counter {
  position: absolute; bottom: clamp(40px,7vh,70px); right: calc(42% + 20px);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(244,239,228,.4); letter-spacing: 0.1em;
}
.hca-counter-cur { font-size: 19px; color: var(--accent, #c8a24a); line-height: 1; }
.hca-counter-sep { width: 1px; height: 22px; background: rgba(200,162,74,.3); }
.hca-counter-tot { font-size: 11px; }

/* bottom rule */
.hca-footer-rule {
  position: absolute; bottom: 0; left: 42px; right: 0;
  z-index: 10; height: 36px;
  display: flex; align-items: center; gap: 18px;
  padding: 0 24px;
  border-top: 1px solid rgba(200,162,74,.12);
  background: rgba(6,6,6,.55); backdrop-filter: blur(4px);
  pointer-events: none;
}
.hca-footer-tag {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(200,162,74,.4); white-space: nowrap;
}
.hca-footer-line { flex: 1; height: 1px; background: rgba(200,162,74,.1); }

/* scroll indicator */
.hca-scroll {
  position: absolute; right: 22px; bottom: 80px;
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(200,162,74,.4); pointer-events: none;
}
.hca-scroll-pulse {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent, #c8a24a));
  animation: hcaScrollPulse 2s ease-in-out infinite;
}
@keyframes hcaScrollPulse {
  0%,100% { transform: scaleY(0.4) translateY(-50%); opacity: 0.3; }
  50%      { transform: scaleY(1)   translateY(0);   opacity: 1;   }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hca-grid { grid-template-columns: 32px 1fr 38%; }
  .hca-copy { padding-left: 52px; }
  .hca-hl-2 { right: 38%; }
  .hca-counter { right: calc(38% + 16px); }
  .hca-footer-rule { left: 32px; }
}
@media (max-width: 640px) {
  .hca-grid { grid-template-columns: 0 1fr; }
  .hca-spine { display: none; }
  .hca-stack { display: none; }
  .hca-hl-1, .hca-hl-2 { display: none; }
  .hca-copy { padding-left: clamp(20px,5vw,40px); max-width: 100%; }
  .hca-counter { display: none; }
  .hca-footer-rule { left: 0; }
  .hca-h1 { font-size: clamp(42px,11vw,72px); }
}

/* ---------- 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); }
  .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 { grid-template-columns: 1fr; }
  .insta-row { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { gap: 28px; }
  .bespoke-steps { grid-template-columns: 1fr; }
}
