/* ============================================================
   GRAIL — Premium Thrift & Custom Clothing
   Stack: GSAP + Lenis + SplitType + WebGL
   ============================================================ */

:root {
  --ink:      #080808;
  --ink-2:    #0f0f0f;
  --ink-3:    #161616;
  --ink-4:    #1e1e1e;
  --cream:    #EDE8DF;
  --cream-d:  rgba(237,232,223,0.5);
  --slate:    rgba(237,232,223,0.28);
  --gold:     #C8A86C;
  --gold-d:   rgba(200,168,108,0.18);
  --red:      #CC2200;
  --paper:    #F5F1E8;

  --font-disp:  'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Space Grotesk', system-ui, sans-serif;

  --nav-h:      68px;
  --max-w:      1280px;
  --pad:        clamp(24px, 5vw, 80px);
  --ease-exp:   cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}
body.loading { overflow: hidden; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
em   { font-style: italic; }
sup  { font-size: 0.5em; vertical-align: super; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* ── Accessibility baseline ─────────── */
@media (hover: none) {
  #cursor { display: none !important; }
  body { cursor: auto !important; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-fade,
  .hero-season, .hero-word, .hero-word--serif,
  .hero-sub, .hero-actions, .hero-scroll-cue,
  .hero-float { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.3s !important; }
  #cursor { display: none !important; }
  .ticker-inner { animation: none !important; }
  .hero-bokeh::before, .hero-bokeh::after { animation: none !important; }
}

/* ══════════════════════════════════════
   PRELOADER
══════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); overflow: hidden;
}
.pl-panel {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background: var(--ink); z-index: 1;
}
.pl-panel--l { left: 0; }
.pl-panel--r { right: 0; }
.pl-inner { position: relative; z-index: 2; text-align: center; }
.pl-wordmark {
  display: flex; gap: 0.06em;
  justify-content: center;
  font-family: var(--font-disp);
  font-size: clamp(52px, 10vw, 100px);
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.pl-letter {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
}
.pl-bar {
  width: 200px; height: 1px;
  background: rgba(237,232,223,0.1);
  margin: 0 auto 14px; overflow: hidden;
}
.pl-fill {
  height: 100%; width: 0%;
  background: linear-gradient(to right, var(--gold-d), var(--gold));
}
.pl-meta {
  display: flex; justify-content: space-between; width: 200px; margin: 0 auto;
}
.pl-word {
  font-family: var(--font-disp);
  font-size: 0.8rem; letter-spacing: 0.18em;
  color: var(--cream-d);
}
.pl-pct {
  font-family: var(--font-disp);
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--gold);
}

/* ══════════════════════════════════════
   GRAIN
══════════════════════════════════════ */
.grain {
  position: fixed; inset: 0; z-index: 8000; pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grain 0.5s steps(1) infinite;
}
@keyframes grain {
  0%  { transform:translate(0,0);}    10% { transform:translate(-3%,-3%); }
  20% { transform:translate(3%,3%); } 30% { transform:translate(-3%,3%); }
  40% { transform:translate(3%,-3%);} 50% { transform:translate(-3%,0); }
  60% { transform:translate(3%,0); }  70% { transform:translate(0,-3%); }
  80% { transform:translate(0,3%); }  90% { transform:translate(-3%,3%); }
  100%{ transform:translate(3%,-3%);}
}

/* ══════════════════════════════════════
   PAGE PROGRESS
══════════════════════════════════════ */
.page-progress {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: 2px; z-index: 600; pointer-events: none;
  background: rgba(237,232,223,0.04);
}
.page-progress-fill {
  width: 100%; height: 0%;
  background: linear-gradient(to bottom, var(--gold), rgba(200,168,108,0.1));
  transition: height 0.1s linear;
}

/* ══════════════════════════════════════
   CURSOR
══════════════════════════════════════ */
#cursor {
  position: fixed; z-index: 7999; pointer-events: none;
  top: 0; left: 0;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(237,232,223,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              background 0.3s ease, border-color 0.3s ease;
  will-change: width, height;
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--cream);
  border-radius: 50%;
  position: absolute; top: 0; left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cursor-label {
  position: absolute; top: -4px; left: 26px;
  font-family: var(--font-disp);
  font-size: 0.62rem; letter-spacing: 0.16em;
  color: var(--cream); white-space: nowrap;
  opacity: 0; transition: opacity 0.2s ease;
}
#cursor.cursor-on .cursor-ring {
  width: 60px; height: 60px;
  background: rgba(237,232,223,0.06);
  border-color: var(--cream);
}
#cursor.cursor-label-on .cursor-label { opacity: 1; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500; height: var(--nav-h);
}
.nav::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,8,8,0);
  backdrop-filter: blur(0px);
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}
.nav.scrolled::before {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(237,232,223,0.06);
}
.nav-inner {
  position: relative; max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad); height: 100%;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  font-family: var(--font-disp);
  font-size: 1.5rem; letter-spacing: 0.12em;
  color: var(--cream); flex-shrink: 0;
  transition: opacity 0.25s ease;
}
.nav-logo:hover { opacity: 0.6; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-family: var(--font-disp);
  font-size: 0.82rem; letter-spacing: 0.12em;
  color: var(--cream-d);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--cream);
  transition: width 0.3s var(--ease-exp);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-right {
  display: flex; align-items: center; gap: 20px; margin-left: auto;
}
.nav-drop-badge {
  font-family: var(--font-disp);
  font-size: 0.62rem; letter-spacing: 0.18em;
  color: var(--ink); background: var(--gold);
  padding: 4px 10px;
}
.btn-shop {
  font-family: var(--font-disp);
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--cream);
  border: 1px solid rgba(237,232,223,0.3);
  padding: 8px 20px;
  transition: background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-shop:hover {
  background: rgba(237,232,223,0.08);
  border-color: var(--cream);
}
.nav-burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: none;
  padding: 4px; width: 30px;
}
.nav-burger span {
  display: block; height: 1px; width: 100%;
  background: var(--cream);
  transition: transform 0.4s var(--ease-exp), opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: rotate(38deg) scaleX(1.15); }
.nav-burger.open span:nth-child(2) { transform: rotate(-38deg) scaleX(1.15); margin-top: -7px; }

.nav-mobile {
  display: none;
  position: fixed; inset: 0; top: var(--nav-h);
  background: var(--ink-2); z-index: 490;
  padding: 60px var(--pad);
  flex-direction: column; justify-content: space-between;
  opacity: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile ul a {
  font-family: var(--font-disp);
  font-size: clamp(48px, 10vw, 80px);
  color: var(--cream); line-height: 1.15; display: block;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.25s ease;
  letter-spacing: 0.04em;
}
.nav-mobile.open ul a { opacity: 1; transform: translateY(0); }
.nav-mobile ul li:nth-child(1) a { transition-delay: 0.04s; }
.nav-mobile ul li:nth-child(2) a { transition-delay: 0.08s; }
.nav-mobile ul li:nth-child(3) a { transition-delay: 0.12s; }
.nav-mobile ul li:nth-child(4) a { transition-delay: 0.16s; }
.nav-mobile ul li:nth-child(5) a { transition-delay: 0.20s; }
.nav-mobile ul a:hover { color: var(--gold); }
.nav-mobile-foot { font-size: 0.82rem; color: var(--cream-d); line-height: 1.8; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; height: 100dvh; min-height: 700px;
  display: flex; align-items: flex-end; overflow: hidden;
}

/* Atmospheric base (always visible — no JS dependency) */
.hero-atmos {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 65% 55% at 5%  100%, rgba(100,55,15,0.38) 0%, transparent 52%),
    radial-gradient(ellipse 45% 40% at 95%  98%, rgba(70,40,10,0.22) 0%, transparent 48%),
    radial-gradient(ellipse 80% 45% at 50% 112%, rgba(40,22,5,0.42)  0%, transparent 44%),
    radial-gradient(ellipse 30% 25% at 72%  12%, rgba(200,168,108,0.04) 0%, transparent 55%);
  pointer-events: none;
  animation: atmosPulse 12s ease-in-out infinite alternate;
}
@keyframes atmosPulse {
  from { opacity: 0.85; }
  to   { opacity: 1; }
}

/* CSS bokeh blobs */
.hero-bokeh { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bokeh::before {
  content: '';
  position: absolute; width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,108,0.065) 0%, transparent 70%);
  top: 6%; left: 2%; filter: blur(80px);
  animation: bokehA 18s ease-in-out infinite alternate;
}
.hero-bokeh::after {
  content: '';
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,90,20,0.055) 0%, transparent 70%);
  bottom: 18%; right: 5%; filter: blur(100px);
  animation: bokehB 22s ease-in-out infinite alternate;
}
@keyframes bokehA { from { transform: translate(0,0) scale(1); } to { transform: translate(55px,-40px) scale(1.12); } }
@keyframes bokehB { from { transform: translate(0,0); } to { transform: translate(-40px,28px) scale(1.08); } }

/* WebGL canvas */
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 1;
}

/* Mouse spotlight */
.hero-spotlight {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(
    650px circle at var(--mx, 50%) var(--my, 50%),
    rgba(237,232,223,0.06) 0%,
    rgba(200,168,108,0.03) 50%,
    transparent 70%
  );
  opacity: 0; transition: opacity 1.5s ease;
}

/* Edge gradient */
.hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.05) 30%, rgba(8,8,8,0.75) 82%, rgba(8,8,8,0.98) 100%),
    linear-gradient(to right, rgba(8,8,8,0.18) 0%, transparent 25%, transparent 75%, rgba(8,8,8,0.18) 100%);
}

/* Giant parallax wordmark */
.hero-display {
  position: absolute; z-index: 3;
  font-family: var(--font-disp);
  font-size: clamp(150px, 28vw, 380px);
  letter-spacing: -0.01em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237,232,223,0.07);
  bottom: -0.05em; left: calc(var(--pad) - 0.06em);
  user-select: none; pointer-events: none; will-change: transform;
}

/* Season corner badge */
.hero-badge-corner {
  position: absolute; top: calc(var(--nav-h) + 24px); right: var(--pad); z-index: 4;
  font-family: var(--font-disp);
  font-size: 0.68rem; letter-spacing: 0.22em;
  color: var(--gold);
  border: 1px solid rgba(200,168,108,0.3);
  padding: 5px 10px;
  opacity: 0; transform: translateY(-10px);
}

/* Floating edge labels */
.hero-float {
  position: absolute; z-index: 4;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-float span {
  font-family: var(--font-disp);
  font-size: 0.58rem; letter-spacing: 0.22em;
  color: var(--cream-d); text-transform: uppercase;
  display: block;
}
.hero-float--l {
  left: var(--pad); bottom: 100px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  opacity: 0;
}
.hero-float--r {
  right: var(--pad); top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  opacity: 0;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 4;
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad) clamp(64px, 9vh, 120px);
}
.hero-season {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-disp);
  font-size: 0.72rem; letter-spacing: 0.22em;
  color: var(--cream-d); margin-bottom: 20px;
  opacity: 0; transform: translateY(12px);
}
.hero-season-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,168,108,0.6); }
  50%  { transform: scale(1.4); box-shadow: 0 0 0 5px rgba(200,168,108,0); }
}

.hero-headline {
  display: flex; flex-direction: column;
  gap: 0; margin-bottom: 44px;
}
.hero-word {
  display: block;
  font-family: var(--font-disp);
  font-size: clamp(70px, 13vw, 170px);
  color: var(--cream); line-height: 0.9;
  letter-spacing: -0.01em;
  overflow: hidden;
  opacity: 0;
}
.hero-word--push {
  padding-left: clamp(32px, 9vw, 120px);
}
.hero-word--serif {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(38px, 6vw, 80px);
  color: var(--gold); letter-spacing: 0.02em;
  line-height: 1.1;
  text-shadow: 0 0 80px rgba(200,168,108,0.25);
  opacity: 0;
}

.hero-bottom {
  display: flex; align-items: flex-end; gap: 56px; flex-wrap: wrap;
}
.hero-sub {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: var(--cream-d); line-height: 1.8;
  max-width: 360px; opacity: 0;
  min-height: 3.5em;
}
.hero-actions {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  opacity: 0;
}
.hero-link {
  font-family: var(--font-disp);
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--cream-d);
  border-bottom: 1px solid rgba(237,232,223,0.2);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.hero-link:hover { color: var(--cream); border-color: var(--cream); }

.hero-scroll-cue {
  position: absolute; bottom: 44px; right: calc(var(--pad) + 40px); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(237,232,223,0.5), transparent);
  animation: scrollBreathe 2.4s ease-in-out infinite;
}
@keyframes scrollBreathe {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50%  { transform: scaleY(0.3); opacity: 0.2; }
}
.hero-scroll-cue span {
  font-family: var(--font-disp);
  font-size: 0.6rem; letter-spacing: 0.24em;
  color: var(--cream-d); writing-mode: vertical-rl;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  background: var(--cream); color: var(--ink);
  font-family: var(--font-disp);
  font-size: 0.82rem; letter-spacing: 0.12em;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(0,0,0,0.12) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
}
.btn-primary:hover { background: var(--paper); box-shadow: 0 12px 40px rgba(237,232,223,0.15); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary--large { padding: 18px 44px; font-size: 0.9rem; }
.btn-text  { display: inline-block; }
.btn-arrow { display: inline-block; transition: transform 0.3s var(--ease-out); }
.btn-primary:hover .btn-arrow { transform: translate(3px,-3px); }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-wrap {
  background: var(--ink-3);
  border-top:    1px solid rgba(237,232,223,0.07);
  border-bottom: 1px solid rgba(237,232,223,0.07);
  overflow: hidden;
}
.ticker-track { display: flex; overflow: hidden; padding: 14px 0; }
.ticker-track:first-child { border-bottom: 1px solid rgba(237,232,223,0.04); }
.ticker-inner {
  display: flex; align-items: center; white-space: nowrap;
  animation: tickerRun 26s linear infinite;
}
.ticker-track--rev .ticker-inner { animation-direction: reverse; animation-duration: 40s; }
.ticker-inner span {
  font-family: var(--font-disp);
  font-size: 0.72rem; letter-spacing: 0.14em;
  color: var(--cream-d); padding: 0 22px;
}
.ticker-inner .sep { color: var(--gold); padding: 0 6px; opacity: 0.5; }
.ticker-track:hover .ticker-inner { animation-play-state: paused; }
@keyframes tickerRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-disp);
  font-size: 0.72rem; letter-spacing: 0.22em;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateX(-16px);
}
.eyebrow::before {
  content: '';
  display: inline-block; width: 22px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(52px, 8.5vw, 110px);
  line-height: 0.92; letter-spacing: 0.01em;
  color: var(--cream); margin-bottom: 40px;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 300;
  color: var(--gold); font-size: 0.85em;
  letter-spacing: 0.02em;
}
.section-title .line { overflow: hidden; display: block; }

.reveal-fade { opacity: 0; transform: translateY(28px); }

/* ══════════════════════════════════════
   COLLECTION
══════════════════════════════════════ */
.collection-section {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.collection-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.collection-sub {
  font-size: 0.88rem; color: var(--cream-d);
  line-height: 1.85; text-align: right; max-width: 200px;
  opacity: 0; transform: translateY(20px);
}

.coll-outer {
  overflow: hidden; cursor: grab; position: relative; padding: 16px 0 0;
}
.coll-outer:active { cursor: grabbing; }
.coll-inner {
  display: flex; gap: 20px;
  padding: 0 var(--pad) 24px;
  width: max-content; will-change: transform;
}

/* Drop card */
.drop-card {
  width: 300px; flex-shrink: 0;
  background: var(--ink-2);
  border: 1px solid rgba(237,232,223,0.06);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.drop-card:hover {
  border-color: rgba(200,168,108,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.drop-img {
  height: 240px; position: relative; overflow: hidden;
  transition: transform 0.7s var(--ease-exp);
}
.drop-card:hover .drop-img { transform: none; }
.drop-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-disp);
  font-size: 0.62rem; letter-spacing: 0.14em;
  color: var(--ink); background: var(--cream);
  padding: 3px 8px;
}
.drop-tag--custom { background: var(--gold); }
.drop-tag--rare   { background: var(--cream); color: var(--ink-3); }
.drop-tag--grail  {
  background: var(--red); color: var(--paper);
  animation: grailPulse 3s ease-in-out infinite;
}
@keyframes grailPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,34,0,0); }
  50%  { box-shadow: 0 0 0 4px rgba(204,34,0,0.25); }
}
.drop-grade {
  position: absolute; bottom: 12px; right: 14px;
  font-family: var(--font-disp); font-size: 2.2rem;
  color: rgba(237,232,223,0.12); line-height: 1; user-select: none;
}
.drop-body { padding: 24px 22px 28px; }
.drop-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.drop-cat {
  font-family: var(--font-disp);
  font-size: 0.62rem; letter-spacing: 0.18em; color: var(--gold);
}
.drop-num {
  font-family: var(--font-disp);
  font-size: 0.62rem; letter-spacing: 0.1em; color: var(--slate);
}
.drop-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 400;
  color: var(--cream); margin-bottom: 8px; line-height: 1.3;
}
.drop-body p { font-size: 0.8rem; color: var(--cream-d); line-height: 1.7; margin-bottom: 18px; }
.drop-footer { display: flex; justify-content: space-between; align-items: center; }
.drop-price {
  font-family: var(--font-disp);
  font-size: 1.1rem; letter-spacing: 0.04em;
  color: var(--cream);
}
.drop-status {
  font-family: var(--font-disp);
  font-size: 0.6rem; letter-spacing: 0.16em;
  color: var(--gold);
  border: 1px solid rgba(200,168,108,0.3);
  padding: 3px 8px;
}
.drop-status--sold { color: var(--slate); border-color: var(--slate); }
.drop-status--hold { color: var(--red);   border-color: rgba(204,34,0,0.4); }

.drop-card--cta {
  background: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
}
.drop-cta-inner { padding: 40px 28px; text-align: center; }
.drop-cta-eyebrow {
  font-family: var(--font-disp);
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.drop-cta-inner h3 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.04em;
  color: var(--cream); line-height: 1.05; margin-bottom: 16px;
}
.drop-cta-note { font-size: 0.78rem; color: var(--cream-d); line-height: 1.7; margin-bottom: 28px; }

.coll-progress {
  display: flex; align-items: center; gap: 20px; margin-top: 24px;
}
.coll-track {
  flex: 1; height: 1px; background: rgba(237,232,223,0.1); overflow: hidden;
}
.coll-fill { height: 100%; width: 0%; background: var(--cream); }
.coll-hint {
  font-family: var(--font-disp);
  font-size: 0.65rem; letter-spacing: 0.16em; color: var(--slate);
  white-space: nowrap;
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink-2);
  border-top: 1px solid rgba(237,232,223,0.05);
}
.process-header { margin-bottom: clamp(48px, 7vw, 80px); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.process-step {
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 48px);
  border-right: 1px solid rgba(237,232,223,0.06);
  opacity: 0; transform: translateY(32px);
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 7vw, 7rem);
  color: rgba(237,232,223,0.05);
  line-height: 1; margin-bottom: 28px; display: block;
}
.process-rule {
  width: 36px; height: 1px; background: var(--gold);
  margin-bottom: 20px;
}
.process-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400; font-style: italic;
  color: var(--cream); margin-bottom: 14px;
}
.process-desc { font-size: 0.88rem; color: var(--cream-d); line-height: 1.8; }

/* ══════════════════════════════════════
   EDITORIAL STATEMENT
══════════════════════════════════════ */
.statement-section {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--ink);
  text-align: center;
  border-top: 1px solid rgba(237,232,223,0.05);
}
.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.2vw, 2.8rem);
  font-weight: 300; color: var(--cream);
  line-height: 1.5; max-width: 900px; margin: 0 auto 24px;
}
.statement-text .char { display: inline-block; }
.statement-text em { color: var(--gold); font-style: italic; }
.statement-attr {
  font-family: var(--font-disp);
  font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--slate);
  opacity: 0;
}

/* ══════════════════════════════════════
   LOOKBOOK
══════════════════════════════════════ */
.lookbook-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink-2);
}
.lookbook-header { margin-bottom: clamp(40px, 5vw, 64px); }
.lookbook-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 10px; align-items: start;
}
.lk-col { display: flex; flex-direction: column; gap: 10px; }
.lk-item {
  position: relative; overflow: hidden;
  min-height: 240px; border-radius: 1px;
  cursor: none; will-change: transform;
  transition: box-shadow 0.4s ease;
}
.lk-item:hover { box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
.lk-item--tall { min-height: 520px; }
.lk-item--accent { min-height: 260px; }
.lk-item::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit; background-size: cover;
  filter: grayscale(22%) contrast(1.18) brightness(0.78) saturate(0.5);
  transition: transform 0.75s var(--ease-exp), filter 0.6s ease; z-index: 0; will-change: transform;
}
.lk-item:hover::before { transform: scale(1.07); filter: grayscale(8%) contrast(1.12) brightness(0.88) saturate(0.7); }
.lk-label {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  font-family: var(--font-disp);
  font-size: 0.64rem; letter-spacing: 0.2em;
  color: rgba(237,232,223,0.5);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lk-item:hover .lk-label { opacity: 1; transform: translateY(0); }
.lk-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,8,8,0.65) 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.lk-item:hover .lk-overlay { opacity: 1; }

/* ══════════════════════════════════════
   NUMBERS
══════════════════════════════════════ */
.numbers-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--ink-3);
  border-top: 1px solid rgba(237,232,223,0.05);
}
.numbers-grid { display: flex; align-items: stretch; }
.number-item {
  flex: 1; text-align: center; padding: 32px 20px;
  transition: background 0.4s ease; cursor: default;
}
.number-item:hover { background: rgba(200,168,108,0.04); }
.number-value {
  font-family: var(--font-disp);
  font-size: clamp(48px, 7vw, 90px);
  color: var(--cream); line-height: 1; margin-bottom: 14px;
  transition: color 0.3s ease; letter-spacing: 0.02em;
}
.number-item:hover .number-value { color: var(--gold); }
.number-value sup { font-size: 0.45em; color: var(--gold); vertical-align: super; }
.number-label {
  font-family: var(--font-disp);
  font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--slate); line-height: 1.6;
}
.number-divider { width: 1px; background: rgba(237,232,223,0.07); align-self: stretch; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  border-top: 1px solid rgba(237,232,223,0.05);
}
.services-header { margin-bottom: clamp(40px, 5vw, 64px); }
.services-list { display: flex; flex-direction: column; }

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr auto 32px;
  gap: 0 32px; align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(237,232,223,0.07);
  cursor: none;
  transition: background 0.3s ease, padding-left 0.4s var(--ease-out);
  opacity: 0; transform: translateY(24px);
}
.service-item:hover { background: rgba(237,232,223,0.025); padding-left: 12px; }
.svc-num {
  font-family: var(--font-disp);
  font-size: 0.8rem; letter-spacing: 0.08em; color: var(--slate);
}
.svc-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 400; font-style: italic;
  color: var(--cream); margin-bottom: 4px;
}
.svc-body p { font-size: 0.8rem; color: var(--cream-d); }
.svc-price {
  font-family: var(--font-disp);
  font-size: 0.82rem; letter-spacing: 0.08em;
  color: var(--gold); white-space: nowrap;
}
.svc-arrow {
  color: var(--slate);
  transition: color 0.3s ease, transform 0.35s var(--ease-out);
  font-size: 1rem;
}
.service-item:hover .svc-arrow { color: var(--cream); transform: translateX(5px); }

/* ══════════════════════════════════════
   STUDIO
══════════════════════════════════════ */
.studio-section {
  position: relative; overflow: hidden;
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--ink-2);
}
.studio-atmos {
  position: absolute; inset: -30%;
  background:
    radial-gradient(ellipse 70% 60% at 25% 55%, rgba(100,55,12,0.25) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 80% 45%, rgba(65,35,8,0.18) 0%, transparent 50%),
    var(--ink-2);
  will-change: transform;
}
.studio-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom, var(--ink-2) 0%, transparent 20%, transparent 80%, var(--ink-2) 100%);
}
.studio-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 36px;
}
.studio-title {
  font-family: var(--font-disp);
  font-size: clamp(56px, 10vw, 130px);
  line-height: 0.9; letter-spacing: 0.02em; color: var(--cream);
}
.studio-title .line { overflow: hidden; display: block; }
.studio-details {
  display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap;
  opacity: 0; transform: translateY(24px);
}
.studio-detail { display: flex; flex-direction: column; gap: 8px; }
.studio-label {
  font-family: var(--font-disp);
  font-size: 0.62rem; letter-spacing: 0.2em; color: var(--gold); display: block;
}
.studio-detail > span:not(.studio-label) { font-size: 0.9rem; color: var(--cream-d); line-height: 1.7; }
.studio-detail a { transition: color 0.25s ease; }
.studio-detail a:hover { color: var(--gold); }
.studio-actions {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
}
.studio-map-link {
  font-family: var(--font-disp);
  font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--cream-d);
  border-bottom: 1px solid rgba(237,232,223,0.2); padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.studio-map-link:hover { color: var(--cream); border-color: var(--cream); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(237,232,223,0.06);
  padding: clamp(40px, 5vw, 64px) 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 40px; align-items: center;
}
.footer-logo span {
  font-family: var(--font-disp);
  font-size: 1.8rem; letter-spacing: 0.1em;
  color: var(--cream); display: block; margin-bottom: 8px;
}
.footer-logo p { font-size: 0.78rem; color: var(--cream-d); line-height: 1.7; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-family: var(--font-disp);
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--slate); transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--cream); }
.footer-right { text-align: right; display: flex; flex-direction: column; gap: 4px; }
.footer-right p { font-size: 0.75rem; color: var(--slate); }
.footer-right a { transition: color 0.25s ease; }
.footer-right a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(237,232,223,0.05); }
  .process-step:last-child { border-bottom: none; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
  .lk-item--tall { min-height: 380px; grid-row: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-links { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-drop-badge { display: none; }
  .nav-burger { display: flex; }
  .hero-word { font-size: clamp(54px, 14vw, 90px); }
  .hero-display { font-size: clamp(110px, 30vw, 160px); }
  .hero-float { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
  .collection-header { flex-direction: column; align-items: flex-start; }
  .collection-sub { text-align: left; }
  .drop-card { width: 260px; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .lk-col { display: contents; }
  .lk-item--tall { min-height: 300px; }
  .numbers-grid { flex-wrap: wrap; }
  .number-item { flex: 0 0 50%; }
  .number-divider { display: none; }
  .service-item { grid-template-columns: 44px 1fr; gap: 0 16px; }
  .svc-price, .svc-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .hero-badge-corner { display: none; }
  .br-d { display: none; }
}

/* ══════════════════════════════════════
   ANIMATION SYSTEM UPGRADES
══════════════════════════════════════ */

/* Hero photo layer — Chrome Hearts filter treatment */
.hero-photo-bg {
  filter: grayscale(12%) contrast(1.1) brightness(0.5) saturate(0.45);
}

/* Drop photo — dedicated bg element (separate from tags so filter doesn't bleed) */
.drop-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 20%;
  filter: grayscale(18%) contrast(1.22) brightness(0.7) saturate(0.48);
  transition: transform 0.85s var(--ease-exp), filter 0.6s ease;
  will-change: transform;
}
.drop-card:hover .drop-photo {
  transform: scale(1.07);
  filter: grayscale(6%) contrast(1.12) brightness(0.82) saturate(0.65);
}

/* Card glare overlay — mouse-reactive radial light */
.card-glare {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 3;
  border-radius: inherit;
  will-change: background;
}

/* Reveal-fade initial clip state */
.reveal-fade {
  clip-path: inset(0 0 100% 0);
  opacity: 1 !important;
  transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-fade { clip-path: none !important; opacity: 1 !important; }
}

/* Eyebrow clip-path initial state */
.eyebrow { clip-path: inset(0 100% 0 0); opacity: 1 !important; transform: none !important; }

/* Statement section — needs height for pin travel */
.statement-section { position: relative; }

/* Collection section — pinned horizontal on desktop */
.coll-outer { cursor: none; }
@media (hover: none) { .coll-outer { cursor: auto; } }

/* Service item — clip reveal initial */
.service-item { clip-path: inset(0 100% 0 0); opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .service-item { clip-path: none !important; }
}

/* Process step initial state for scrubbed reveal */
.process-step { opacity: 0; transform: translateY(45px); }
@media (prefers-reduced-motion: reduce) {
  .process-step { opacity: 1 !important; transform: none !important; }
}

/* Number items initial */
.number-item { opacity: 0; transform: translateY(40px); }
@media (prefers-reduced-motion: reduce) {
  .number-item { opacity: 1 !important; transform: none !important; }
}

/* Split-lines: overflow hidden on each line */
.split-lines .line { overflow: hidden; display: block; }

/* Marquee speed control via CSS variable */
.ticker-inner { animation-duration: var(--ticker-dur, 30s); }

/* ══════════════════════════════════════
   HERO v2 — image-forward elements
══════════════════════════════════════ */

/* Primary fashion photo */
.hero-main-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: 60% center;
  filter: grayscale(10%) contrast(1.18) brightness(0.55) saturate(0.42);
  will-change: transform;
  transition: filter 0.5s ease;
}

/* Secondary inset photo — editorial collage */
.hero-inset-photo {
  position: absolute;
  top: calc(var(--nav-h) + 32px);
  right: var(--pad);
  width: clamp(160px, 20vw, 280px);
  height: clamp(200px, 32vw, 380px);
  z-index: 4;
  background-size: cover; background-position: center 20%;
  filter: grayscale(15%) contrast(1.2) brightness(0.65) saturate(0.4);
  outline: 1px solid rgba(237,232,223,0.12);
  outline-offset: -1px;
  opacity: 0; transform: translateY(-20px);
  will-change: transform, opacity;
}

/* Text veil layers */
.hero-veil {
  position: absolute; z-index: 3; pointer-events: none;
}
.hero-veil--l {
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.55) 38%,
    rgba(8,8,8,0.12) 68%,
    transparent 100%
  );
}
.hero-veil--b {
  bottom: 0; left: 0; right: 0; top: auto;
  height: 42%;
  background: linear-gradient(to top, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.5) 55%, transparent 100%);
}

/* Vertical side labels */
.hero-side {
  position: absolute; z-index: 5;
  display: flex; flex-direction: column; gap: 6px;
  writing-mode: vertical-rl;
  font-family: var(--font-disp);
  font-size: 0.54rem; letter-spacing: 0.24em;
  color: rgba(237,232,223,0.28);
  pointer-events: none; user-select: none;
  opacity: 0;
}
.hero-side--l {
  left: 16px; top: 50%; transform: translateY(-50%) rotate(180deg);
}
.hero-side--r {
  right: 16px; top: 50%; transform: translateY(-50%);
}

/* ══════════════════════════════════════
   IMAGE REEL — infinite fashion strip
══════════════════════════════════════ */
.reel-section {
  background: var(--ink); overflow: hidden;
  padding: 0; height: 260px; position: relative;
  border-top: 1px solid rgba(237,232,223,0.05);
  border-bottom: 1px solid rgba(237,232,223,0.05);
}
.reel-track { overflow: hidden; height: 100%; position: relative; }
.reel-inner {
  display: flex; gap: 8px; height: 100%;
  /* GSAP drives transform; no CSS animation needed */
  will-change: transform;
}
.reel-item {
  flex: 0 0 clamp(200px, 22vw, 340px);
  height: 100%;
  background-size: cover; background-position: center;
  filter: grayscale(22%) contrast(1.2) brightness(0.62) saturate(0.4);
  transition: filter 0.5s ease;
  cursor: none;
}
.reel-item:hover {
  filter: grayscale(5%) contrast(1.1) brightness(0.78) saturate(0.65);
}

/* ══════════════════════════════════════
   EDITORIAL SPLIT — dissect section
══════════════════════════════════════ */
.editorial-section {
  padding: clamp(80px, 11vw, 160px) 0;
  background: var(--ink-2);
  overflow: hidden;
}
.editorial-split {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.editorial-img-side {
  position: relative;
  height: clamp(480px, 60vw, 680px);
  will-change: transform;
}
.editorial-img {
  position: absolute;
  background-size: cover; background-position: center;
  filter: grayscale(18%) contrast(1.2) brightness(0.65) saturate(0.45);
  transition: filter 0.6s ease;
}
.editorial-img--a {
  inset: 0;
  clip-path: inset(0 0 0% 0);  /* reveals on scroll */
}
.editorial-img--b {
  width: 55%;
  height: 52%;
  bottom: -28px;
  right: -28px;
  outline: 1px solid rgba(237,232,223,0.1);
  filter: grayscale(25%) contrast(1.25) brightness(0.55) saturate(0.35);
  z-index: 1;
  clip-path: inset(0 0 0% 0);
}
.editorial-img-num {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  font-family: var(--font-disp);
  font-size: clamp(80px, 10vw, 140px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(237,232,223,0.08);
  line-height: 1; user-select: none; pointer-events: none;
}
.editorial-text-side { will-change: transform; }
.editorial-heading {
  font-family: var(--font-disp);
  font-size: clamp(60px, 8vw, 110px);
  line-height: 0.9; letter-spacing: -0.01em;
  color: var(--cream); margin: 16px 0 36px;
}
.editorial-heading em { color: var(--gold); font-style: italic; font-family: var(--font-serif); font-size: 0.75em; }
.editorial-body {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 40px;
}
.editorial-body p {
  font-size: clamp(0.88rem, 1.15vw, 1.0rem);
  color: var(--cream-d); line-height: 1.8; max-width: 460px;
}
.editorial-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding-top: 40px;
  border-top: 1px solid rgba(237,232,223,0.08);
}
.editorial-stat { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--cream); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; color: var(--slate);
  letter-spacing: 0.06em; line-height: 1.5;
}

/* ══════════════════════════════════════
   LOOKBOOK STRIP — second row
══════════════════════════════════════ */
.lookbook-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 10px;
}
.lk-wide {
  position: relative; overflow: hidden;
  height: clamp(200px, 22vw, 300px);
  cursor: none; will-change: transform;
  transition: box-shadow 0.4s ease;
  clip-path: inset(0 0 100% 0);  /* revealed by JS */
}
.lk-wide:hover { box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
.lk-wide::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit; background-size: cover;
  filter: grayscale(22%) contrast(1.18) brightness(0.78) saturate(0.5);
  transition: transform 0.75s var(--ease-exp), filter 0.6s ease; z-index: 0; will-change: transform;
}
.lk-wide:hover::before { transform: scale(1.07); filter: grayscale(8%) contrast(1.12) brightness(0.88) saturate(0.7); }

/* Scramble text — initial and animating states */
.hero-word[data-scramble] { position: relative; }

/* editorial responsive */
@media (max-width: 1024px) {
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-img-side { height: clamp(320px, 55vw, 500px); }
  .hero-inset-photo { display: none; }
  .hero-side { display: none; }
}
@media (max-width: 768px) {
  .lookbook-strip { grid-template-columns: 1fr 1fr; }
  .lookbook-strip .lk-wide:last-child { display: none; }
  .editorial-stats { grid-template-columns: repeat(2, 1fr); }
  .reel-section { height: 180px; }
}

/* ══════════════════════════════════════
   DRAG BADGE — rotating circular SVG
══════════════════════════════════════ */
.collection-section { position: relative; }
.coll-drag-badge {
  position: fixed;
  width: 110px; height: 110px;
  pointer-events: none;
  z-index: 200;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.coll-drag-badge svg {
  width: 100%; height: 100%;
  animation: dragSpin 9s linear infinite;
}
.coll-drag-badge text {
  font-family: var(--font-sans);
  font-size: 8.5px;
  fill: rgba(237,232,223,0.8);
  letter-spacing: 1.8px;
}
.drag-badge-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--cream);
  opacity: 0.9;
}
@keyframes dragSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ══════════════════════════════════════
   KINETIC FULL-WIDTH TYPE
══════════════════════════════════════ */
.kinetic-section {
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid rgba(237,232,223,0.06);
  border-bottom: 1px solid rgba(237,232,223,0.06);
  background: var(--ink);
  position: relative;
}
.kinetic-inner {
  padding: 0 var(--pad);
  overflow: hidden;
}
.kinetic-line {
  font-family: var(--font-disp);
  white-space: nowrap;
  line-height: 0.88;
  font-size: 10px; /* set by JS */
  color: transparent;
  -webkit-text-stroke: 1px rgba(237,232,223,0.12);
  letter-spacing: -0.01em;
  will-change: transform;
  transition: -webkit-text-stroke 0.4s ease;
}
.kinetic-section:hover .kinetic-line {
  -webkit-text-stroke: 1px rgba(237,232,223,0.28);
}

/* ══════════════════════════════════════
   SERVICE IMAGE FOLLOWER
══════════════════════════════════════ */
.svc-img-follower {
  position: fixed;
  width: 200px;
  height: 265px;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 8500;
  opacity: 0;
  top: 0; left: 0;
  transform: translate(0,0) scale(0.88);
  filter: grayscale(22%) contrast(1.18) brightness(0.62) saturate(0.42);
  will-change: transform, opacity;
}

/* ══════════════════════════════════════
   NAV ROLLING TEXT
══════════════════════════════════════ */
.nav-links a {
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  height: 1.25em;
  vertical-align: bottom;
}
.nav-roll-wrap {
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav-roll-t {
  display: block;
  height: 1.25em;
  line-height: 1.25;
}

/* ══════════════════════════════════════
   SECTION ATMOSPHERE OVERLAY
══════════════════════════════════════ */
.section-atmos {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  transition: background 0.8s ease;
  mix-blend-mode: multiply;
}

/* ══════════════════════════════════════
   CURSOR ENHANCED STATES
══════════════════════════════════════ */
.cursor-ring.cursor--img { transform: scale(2.4) translate(-50%,-50%); }
.cursor-ring.cursor--drag { transform: scale(3.2) translate(-50%,-50%); border-color: rgba(237,232,223,0.4); }

@media (max-width: 768px) {
  .coll-drag-badge { display: none; }
  .svc-img-follower { display: none; }
  .kinetic-section { padding: 32px 0; }
}
