@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Space+Mono:ital@0;1&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --ink:        #0a0908;
  --ink-soft:   #1c1a18;
  --parchment:  #f0ede6;
  --parchment-d:#e8e4da;
  --gold:       #c9a96e;
  --gold-dim:   rgba(201,169,110,.18);
  --gold-line:  rgba(201,169,110,.35);
  --mist:       rgba(240,237,230,.06);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --mono:       'Space Mono', monospace;
  --ease-silk:  cubic-bezier(.16,1,.3,1);
  --ease-expo:  cubic-bezier(.87,0,.13,1);
  --ease-circ:  cubic-bezier(.85,0,.15,1);
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────────────────────── */
body { cursor: none; }
#cursor-dot {
  position: fixed; top: 0; left: 0; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .08s, opacity .2s;
  will-change: transform;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; width: 38px; height: 38px;
  border: 1px solid var(--gold-line); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s var(--ease-silk), width .3s var(--ease-silk),
              height .3s var(--ease-silk), opacity .2s, border-color .3s;
  will-change: transform;
}
#cursor-ring.expanded { width: 70px; height: 70px; border-color: var(--gold); }
#cursor-ring.hidden { opacity: 0; }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } body { cursor: auto; } }

/* ─── PAGE LOADER ─────────────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; background: var(--ink); z-index: 9000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease-silk), transform .8s var(--ease-silk);
}
#loader.out { opacity: 0; pointer-events: none; }
#loader-logo {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; letter-spacing: .35em; color: var(--parchment);
  overflow: hidden;
}
#loader-logo span { display: inline-block; transform: translateY(110%); animation: loaderReveal .9s var(--ease-expo) .2s forwards; }
#loader-bar {
  margin-top: 2.5rem; width: 120px; height: 1px;
  background: rgba(240,237,230,.15); overflow: hidden;
}
#loader-fill {
  height: 100%; width: 0; background: var(--gold);
  transition: width 1.6s var(--ease-expo);
}
@keyframes loaderReveal { to { transform: translateY(0); } }

/* ─── NOISE OVERLAY ──────────────────────────────────────────────────────── */
#noise {
  position: fixed; inset: 0; z-index: 8000; pointer-events: none;
  opacity: .03;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── NAV ─────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 2rem 4vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .6s var(--ease-silk), padding .4s var(--ease-silk);
}
#nav.scrolled { background: rgba(10,9,8,.88); backdrop-filter: blur(24px); padding: 1.2rem 4vw; }
.nav-logo {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300;
  letter-spacing: .35em; color: var(--parchment);
}
.nav-links { display: flex; gap: 3rem; align-items: center; }
.nav-links a {
  font-family: var(--sans); font-size: .72rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,237,230,.65);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .4s var(--ease-silk);
}
.nav-links a:hover { color: var(--parchment); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .6rem 1.6rem; border: 1px solid var(--gold-line);
  color: var(--gold); transition: background .3s, color .3s;
  border-radius: 0;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--parchment); transition: .3s; }

/* ─── MOBILE NAV ─────────────────────────────────────────────────────────── */
#mobile-nav {
  position: fixed; inset: 0; z-index: 490; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease-silk);
}
#mobile-nav.open { opacity: 1; pointer-events: all; }
#mobile-nav a {
  font-family: var(--serif); font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300; letter-spacing: .1em; color: var(--parchment);
  transform: translateY(20px); opacity: 0;
  transition: transform .6s var(--ease-silk), opacity .6s var(--ease-silk), color .3s;
}
#mobile-nav.open a { transform: translateY(0); opacity: 1; }
#mobile-nav.open a:nth-child(1) { transition-delay: .1s; }
#mobile-nav.open a:nth-child(2) { transition-delay: .18s; }
#mobile-nav.open a:nth-child(3) { transition-delay: .26s; }
#mobile-nav.open a:nth-child(4) { transition-delay: .34s; }
#mobile-nav a:hover { color: var(--gold); }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
#hero {
  position: relative; height: 100dvh; min-height: 700px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  background: #090706;
}
/* Ambient warm glow — always visible, provides depth when no video */
#hero { cursor: grab; }
#hero:active { cursor: grabbing; }
#hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 28% 62%, rgba(45,27,8,.55) 0%, transparent 68%),
    radial-gradient(ellipse 55% 65% at 72% 28%, rgba(22,13,4,.4)  0%, transparent 62%);
  animation: heroAmbient 18s ease-in-out infinite alternate;
}
@keyframes heroAmbient {
  from { opacity: .55; transform: scale(1); }
  to   { opacity: .85; transform: scale(1.04); }
}
/* Background video */
#hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1; opacity: 0;
  transition: opacity 1.8s ease;
}
#hero-video.ready { opacity: .58; }
/* Dark vignette overlay */
#hero-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(9,7,6,.5) 0%, rgba(9,7,6,.2) 50%, rgba(9,7,6,.65) 100%),
    radial-gradient(ellipse 110% 110% at 50% 50%, transparent 30%, rgba(9,7,6,.7) 100%);
}
/* Soundwave canvas on top of video */
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 3; opacity: .92; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 4; text-align: center;
  padding: 0 5vw;
}
.hero-eyebrow {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .8s var(--ease-silk) 1s forwards;
}
.hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: .92; letter-spacing: -.02em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block; transform: translateY(110%);
  animation: slideUp 1s var(--ease-expo) forwards;
}
.hero-title .line:nth-child(1) .word { animation-delay: 1.1s; }
.hero-title .line:nth-child(2) .word { animation-delay: 1.25s; }
.hero-sub {
  font-family: var(--sans); font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-weight: 300; color: rgba(240,237,230,.55);
  letter-spacing: .05em; margin-top: 2.5rem;
  opacity: 0; animation: fadeUp .8s var(--ease-silk) 1.6s forwards;
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem;
  left: 0; right: 0; width: fit-content; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 1rem; z-index: 4;
  opacity: 0; animation: fadeUp .8s var(--ease-silk) 2s forwards;
  background: none; border: none; padding: .5rem 1.2rem;
  cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease-silk);
}
.hero-scroll-hint:hover { transform: translateY(3px); }
.hero-scroll-hint:hover span { color: rgba(201,169,110,.85); }
.hero-scroll-hint:hover .scroll-line { animation-duration: 1.1s; opacity: 1; }
.hero-scroll-hint span {
  font-family: var(--mono); font-size: clamp(.8rem, 1vw, .95rem);
  letter-spacing: .3em; text-transform: uppercase; color: rgba(240,237,230,.45);
  transition: color .3s ease;
}
.scroll-line {
  width: 1px; height: 44px; background: linear-gradient(to bottom, var(--gold-line), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{transform:scaleY(.3);transform-origin:top;opacity:.4} 50%{transform:scaleY(1);opacity:1} }
@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ─── SECTION BASE ────────────────────────────────────────────────────────── */
section { position: relative; }
.section-light {
  background: var(--parchment); color: var(--ink);
}
.section-dark { background: var(--ink); color: var(--parchment); }
.section-mid { background: #111009; color: var(--parchment); }

/* ─── SCROLL NARRATIVE ───────────────────────────────────────────────────── */
#scroll-narrative {
  height: 600vh; position: relative;
}
.narrative-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: background 1s cubic-bezier(.16,1,.3,1);
}
/* Phase 0 — "Not just fabric." — dramatic warm burst */
.narrative-sticky.phase-0 {
  background: #0f0800;
}
/* Phase 1 — "A story." — deep blue night / constellation */
.narrative-sticky.phase-1 {
  background: #050a12;
}
/* Phase 2 — "A moment in time." — deep teal / water */
.narrative-sticky.phase-2 {
  background: #061210;
}
.narrative-inner {
  position: relative; width: 100%; max-width: 900px;
  padding: 0 5vw; text-align: center;
}
.narrative-text {
  font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -.01em;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 100%; padding: 0 5vw;
  opacity: 0; transition: opacity .6s var(--ease-silk), transform .6s var(--ease-silk);
  pointer-events: none;
}
.narrative-text.active { opacity: 1; pointer-events: all; }
.narrative-text em { font-style: italic; color: var(--gold); }

/* Phase 0 text — bigger, glowing */
.narrative-text.phase-hero {
  font-size: clamp(3rem, 7.5vw, 7rem);
  letter-spacing: -.03em;
  text-shadow: 0 0 80px rgba(201,169,110,.35), 0 0 160px rgba(201,169,110,.12);
}

/* ─── NARRATIVE BG GLOW ──────────────────────────────────────────────────── */
#narrative-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(201,169,110,.14) 0%, transparent 70%);
  opacity: 0; transition: opacity 1.2s var(--ease-silk);
}
#narrative-glow.active { opacity: 1; }

/* ─── NARRATIVE PHASE COLOUR OVERRIDES ──────────────────────────────────── */

/* Phase 0 glow: amber */
.narrative-sticky.phase-0 #narrative-glow {
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(201,169,110,.14) 0%, transparent 70%);
}
/* Phase 1 glow: blue */
.narrative-sticky.phase-1 #narrative-glow {
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(80,120,255,.14) 0%, transparent 70%);
}
/* Phase 2 glow: teal */
.narrative-sticky.phase-2 #narrative-glow {
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(50,190,150,.14) 0%, transparent 70%);
}

/* Phase 1 text: blue glow + em colour */
.narrative-sticky.phase-1 .narrative-text.active {
  text-shadow: 0 0 80px rgba(100,150,255,.32), 0 0 160px rgba(80,120,255,.12);
}
.narrative-sticky.phase-1 .narrative-text em { color: var(--gold); }

/* Phase 2 text: teal glow */
.narrative-sticky.phase-2 .narrative-text.active {
  text-shadow: 0 0 80px rgba(64,200,160,.32), 0 0 160px rgba(40,180,140,.12);
}

/* ─── SIDE PANELS — PER-PHASE COLOURS ───────────────────────────────────── */

/* Phase 1: blue */
.narrative-sticky.phase-1 .side-dot { background: rgba(120,160,255,1); }
.narrative-sticky.phase-1 .side-line {
  background: linear-gradient(to bottom, transparent, rgba(100,150,255,.35), transparent);
}
.narrative-sticky.phase-1 .side-label { color: rgba(120,160,255,.45); }
.narrative-sticky.phase-1 .narrative-side svg * { stroke: rgba(100,150,255,.4); }

/* Phase 2: teal */
.narrative-sticky.phase-2 .side-dot { background: rgba(64,200,160,1); }
.narrative-sticky.phase-2 .side-line {
  background: linear-gradient(to bottom, transparent, rgba(64,200,160,.35), transparent);
}
.narrative-sticky.phase-2 .side-label { color: rgba(64,200,160,.45); }
.narrative-sticky.phase-2 .narrative-side svg * { stroke: rgba(64,200,160,.4); }

/* ─── NARRATIVE SIDE PANELS ──────────────────────────────────────────────── */
.narrative-side {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: clamp(80px, 12vw, 160px); height: 70vh;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2rem; z-index: 1;
  opacity: 0; pointer-events: none;
  transition: opacity .9s var(--ease-silk), transform .9s var(--ease-silk);
}
.narrative-side.left  { left: 3vw;  transform: translateY(-50%) translateX(-20px); }
.narrative-side.right { right: 3vw; transform: translateY(-50%) translateX(20px); }
.narrative-side.visible.left  { opacity: 1; transform: translateY(-50%) translateX(0); }
.narrative-side.visible.right { opacity: 1; transform: translateY(-50%) translateX(0); }

.side-line {
  width: 1px; flex: 1; max-height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold-line), transparent);
  animation: sideLinePulse 2.8s ease-in-out infinite;
}
.side-line:nth-child(2) { animation-delay: .4s; }
@keyframes sideLinePulse {
  0%,100% { opacity: .3; transform: scaleY(.6); }
  50%      { opacity: 1;  transform: scaleY(1); }
}
.side-symbol {
  width: 48px; height: 48px; flex-shrink: 0;
  animation: sideSpin 12s linear infinite;
}
.side-symbol.rev { animation-direction: reverse; animation-duration: 18s; }
@keyframes sideSpin { to { transform: rotate(360deg); } }

.side-dot-row {
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.side-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  animation: dotFade 1.8s ease-in-out infinite;
}
.side-dot:nth-child(1) { animation-delay: 0s; }
.side-dot:nth-child(2) { animation-delay: .3s; }
.side-dot:nth-child(3) { animation-delay: .6s; }
.side-dot:nth-child(4) { animation-delay: .9s; }
.side-dot:nth-child(5) { animation-delay: 1.2s; }
@keyframes dotFade { 0%,100%{opacity:.15;transform:scale(.7)} 50%{opacity:1;transform:scale(1.2)} }

.side-label {
  font-family: var(--mono); font-size: .55rem; letter-spacing: .25em;
  color: rgba(201,169,110,.45); text-transform: uppercase;
  writing-mode: vertical-rl; text-orientation: mixed;
  animation: sideLinePulse 3.5s ease-in-out infinite;
}

/* ─── NARRATIVE BG CANVAS ────────────────────────────────────────────────── */
#narrative-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0; transition: opacity 1s var(--ease-silk);
}
#narrative-canvas.active { opacity: 1; }
.shirt-3d-wrap {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(540px, 82vw); height: min(620px, 88vw);
  z-index: -1; opacity: 0;
  transition: opacity .8s var(--ease-silk);
}
.shirt-3d-wrap.visible { opacity: 1; }

/* ─── 3D SHIRT SVG ───────────────────────────────────────────────────────── */
.shirt-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 60px rgba(201,169,110,.12));
}
.shirt-svg path { transition: d .5s var(--ease-silk); }

/* ─── DIVIDER ─────────────────────────────────────────────────────────────── */
.gold-divider {
  width: 60px; height: 1px; background: var(--gold); margin: 0 auto;
}
.section-label {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}

/* ─── FEATURED COLLECTION ─────────────────────────────────────────────────── */
#collection {
  padding: clamp(6rem, 12vw, 11rem) 5vw;
}
.collection-header {
  text-align: center; margin-bottom: clamp(4rem, 8vw, 7rem);
}
.collection-title {
  font-family: var(--serif); font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300; letter-spacing: -.02em; line-height: 1;
  margin-bottom: 1.5rem;
}
.collection-desc {
  max-width: 480px; margin: 0 auto;
  font-size: .95rem; color: rgba(240,237,230,.5);
  letter-spacing: .04em;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 2px;
  max-width: 1400px; margin: 0 auto;
}
.product-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--ink-soft);
  cursor: none;
}
.product-card:nth-child(2) { margin-top: clamp(2rem, 5vw, 5rem); }
.product-card:nth-child(4) { margin-top: clamp(-3rem, -5vw, -5rem); }
.product-bg {
  position: absolute; inset: 0;
  transition: transform 1.2s var(--ease-silk);
}
.product-card:hover .product-bg { transform: scale(1.06); }
.product-bg-1 { background: radial-gradient(ellipse 80% 80% at 40% 30%, #1a1614 0%, #0a0908 100%); }
.product-bg-2 { background: radial-gradient(ellipse 80% 80% at 60% 70%, #161311 0%, #0a0908 100%); }
.product-bg-3 { background: radial-gradient(ellipse 80% 80% at 50% 40%, #12100e 0%, #0a0908 100%); }
.product-bg-4 { background: radial-gradient(ellipse 80% 80% at 30% 60%, #18150f 0%, #0a0908 100%); }

.product-art {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease-silk);
}
.product-art svg { width: 55%; height: 55%; opacity: .7; }
.product-card:hover .product-art { opacity: .3; }

.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,.92) 0%, transparent 50%);
}
.product-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 2rem;
  transform: translateY(0); transition: transform .6s var(--ease-silk);
}
.product-card:hover .product-info { transform: translateY(-1.5rem); }
.product-code {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .25em;
  color: var(--gold); margin-bottom: .7rem; text-transform: uppercase;
}
.product-name {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.2rem;
}
.product-hover-info {
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--ease-silk) .05s, transform .5s var(--ease-silk) .05s;
  font-size: .82rem; color: rgba(240,237,230,.6);
  letter-spacing: .04em; line-height: 1.6;
}
.product-card:hover .product-hover-info { opacity: 1; transform: translateY(0); }
.product-cta {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .65rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-top: 1.2rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease-silk) .12s, transform .5s var(--ease-silk) .12s;
}
.product-card:hover .product-cta { opacity: 1; transform: translateY(0); }
.product-cta::after { content: '→'; transition: transform .3s; }
.product-cta:hover::after { transform: translateX(4px); }

/* ─── STORY SPLIT ─────────────────────────────────────────────────────────── */
#story {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.story-left {
  background: var(--parchment); color: var(--ink);
  padding: clamp(5rem, 10vw, 9rem) clamp(3rem, 6vw, 7rem);
  display: flex; flex-direction: column; justify-content: center;
}
.story-right {
  background: var(--ink-soft); position: relative; overflow: hidden;
  min-height: 600px;
}
.story-visual {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.story-eyebrow {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2rem;
}
.story-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 2.5rem;
}
.story-title em { font-style: italic; display: block; margin-top: .3rem; }
.story-body {
  font-size: .95rem; color: rgba(26,26,24,.65); line-height: 1.85;
  max-width: 480px; letter-spacing: .02em;
}
.story-quote {
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic; color: var(--ink);
  border-left: 2px solid var(--gold); padding-left: 2rem;
  margin-top: 3rem; line-height: 1.6;
}

/* ─── ARTISTS GRID ───────────────────────────────────────────────────────── */
#artists {
  padding: clamp(6rem, 12vw, 11rem) 5vw;
  background: var(--ink);
}
.artists-header { text-align: center; margin-bottom: clamp(4rem, 8vw, 7rem); }
.artists-title {
  font-family: var(--serif); font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300; letter-spacing: -.02em;
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1px; max-width: 1200px; margin: 0 auto;
}
.artist-card {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--ink-soft); cursor: none;
}
.artist-bg {
  position: absolute; inset: 0;
  transition: transform 1.2s var(--ease-silk);
}
.artist-card:hover .artist-bg { transform: scale(1.08); }
.artist-monogram {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300; color: rgba(201,169,110,.12);
  transition: opacity .5s var(--ease-silk);
  letter-spacing: -.03em;
}
.artist-card:hover .artist-monogram { opacity: 0; }
.artist-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,8,.9) 0%, transparent 60%);
  transition: background .5s var(--ease-silk);
}
.artist-card:hover .artist-overlay { background: rgba(10,9,8,.72); }
.artist-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem;
}
.artist-discipline {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .25em;
  color: var(--gold); text-transform: uppercase; margin-bottom: .6rem;
}
.artist-name {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300; line-height: 1.1; margin-bottom: .8rem;
}
.artist-story {
  font-size: .82rem; color: rgba(240,237,230,.55); line-height: 1.7;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease-silk), transform .5s var(--ease-silk);
  max-height: 0; overflow: hidden;
}
.artist-card:hover .artist-story {
  opacity: 1; transform: translateY(0); max-height: 100px;
}

/* ─── CTA SECTION ─────────────────────────────────────────────────────────── */
#cta {
  height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 5vw;
  background: var(--ink); overflow: hidden; position: relative;
}
.cta-bg-circle {
  position: absolute; width: 80vmax; height: 80vmax;
  border-radius: 50%; border: 1px solid var(--gold-dim);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: rotateSlow 40s linear infinite;
}
.cta-bg-circle:nth-child(2) { width: 55vmax; height: 55vmax; animation-direction: reverse; animation-duration: 28s; }
@keyframes rotateSlow { to { transform: translate(-50%,-50%) rotate(360deg); } }
.cta-content { position: relative; z-index: 2; }
.cta-eyebrow {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem;
}
.cta-title {
  font-family: var(--serif); font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 300; letter-spacing: -.03em; line-height: .9;
  margin-bottom: 3.5rem;
}
.cta-title em { font-style: italic; color: var(--gold); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink);
  background: var(--gold); padding: 1.1rem 3rem;
  transition: transform .3s var(--ease-silk), box-shadow .3s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-101%); transition: transform .4s var(--ease-silk);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 20px 60px rgba(201,169,110,.25); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--parchment);
  border: 1px solid var(--gold-line); padding: 1rem 2.5rem;
  transition: border-color .3s, color .3s, background .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink); border-top: 1px solid rgba(240,237,230,.06);
  padding: clamp(4rem, 8vw, 7rem) 5vw clamp(2rem, 4vw, 3rem);
  color: rgba(240,237,230,.4);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-brand .nav-logo { display: block; margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-brand p { font-size: .85rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col a {
  display: block; font-size: .85rem; margin-bottom: .9rem;
  color: rgba(240,237,230,.4);
  transition: color .3s;
}
.footer-col a:hover { color: var(--parchment); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid rgba(240,237,230,.06);
  font-size: .72rem; letter-spacing: .08em;
}
.footer-bottom span { font-family: var(--mono); font-size: .62rem; }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease-silk), transform .9s var(--ease-silk); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease-silk), transform .9s var(--ease-silk); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .9s var(--ease-silk), transform .9s var(--ease-silk); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

/* ─── BEETHOVEN PAGE ──────────────────────────────────────────────────────── */
#beethoven-hero {
  height: 100dvh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #06060a;
}
#beethoven-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.beethoven-hero-content { position: relative; z-index: 2; text-align: center; }
.beethoven-name {
  font-family: var(--serif); font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 300; letter-spacing: .08em; line-height: 1;
  color: var(--parchment);
}
.beethoven-subtitle {
  font-family: var(--mono); font-size: clamp(.65rem, 1.2vw, .85rem);
  letter-spacing: .45em; text-transform: uppercase; color: var(--gold);
  margin-top: 1.5rem;
}
.beethoven-era {
  font-family: var(--sans); font-size: .8rem; color: rgba(240,237,230,.3);
  letter-spacing: .15em; margin-top: .8rem;
}

/* ─── BEETHOVEN TIMELINE ─────────────────────────────────────────────────── */
#beethoven-timeline {
  background: #06060a; padding: clamp(6rem, 12vw, 11rem) 0;
}
.timeline-container { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
.timeline-entry {
  display: grid; grid-template-columns: 140px 1px 1fr;
  gap: 0 3rem; margin-bottom: 6rem; align-items: start;
}
.timeline-year {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .2em;
  color: var(--gold); padding-top: .3rem; text-align: right;
}
.timeline-line {
  background: linear-gradient(to bottom, var(--gold), rgba(201,169,110,.1));
  width: 1px; min-height: 100%; position: relative;
}
.timeline-line::before {
  content: ''; position: absolute; top: .3rem; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px var(--gold);
}
.timeline-content { padding-left: 1rem; }
.timeline-content h3 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; letter-spacing: -.01em; margin-bottom: 1rem;
}
.timeline-content p {
  font-size: .92rem; color: rgba(240,237,230,.5); line-height: 1.85;
}
.timeline-product {
  margin-top: 2rem; padding: 1.5rem; border: 1px solid var(--gold-line);
  display: flex; align-items: center; gap: 2rem;
  transition: border-color .3s, background .3s;
}
.timeline-product:hover { border-color: var(--gold); background: var(--gold-dim); }
.timeline-product-art {
  width: 80px; height: 80px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
}
.timeline-product-art svg { width: 50px; height: 50px; opacity: .8; }
.timeline-product-name {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
}
.timeline-product-code {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .2em;
  color: var(--gold); margin-top: .3rem;
}

/* ─── BEETHOVEN QUOTE SECTION ─────────────────────────────────────────────── */
.beethoven-quote-section {
  padding: clamp(8rem, 15vw, 14rem) 5vw;
  text-align: center; background: #06060a;
}
.beethoven-quote {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 300; font-style: italic; line-height: 1.3;
  max-width: 800px; margin: 0 auto;
  color: rgba(240,237,230,.8);
}
.beethoven-quote-attr {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .3em;
  color: var(--gold); margin-top: 2rem; text-transform: uppercase;
}

/* ─── BLOG PAGE ──────────────────────────────────────────────────────────── */
#blog-hero {
  height: 55vh; min-height: 400px;
  background: var(--ink); display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; padding-bottom: 6rem;
  overflow: hidden; position: relative;
}
.blog-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 80%, rgba(201,169,110,.05), transparent);
}
.blog-hero-title {
  position: relative; z-index: 2; text-align: center;
  font-family: var(--serif); font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300; letter-spacing: -.03em;
}
.blog-categories {
  display: flex; gap: 2.5rem; justify-content: center; margin-top: 2.5rem;
  position: relative; z-index: 2;
}
.blog-cat {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(240,237,230,.4);
  padding-bottom: .4rem; border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s; cursor: none;
}
.blog-cat.active, .blog-cat:hover { color: var(--gold); border-color: var(--gold); }

#blog-grid { padding: clamp(5rem, 10vw, 9rem) 5vw; }
.blog-featured {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 2px; margin-bottom: 2px; max-width: 1400px; margin-left: auto; margin-right: auto;
}
.blog-card {
  position: relative; overflow: hidden; background: var(--ink-soft); cursor: none;
}
.blog-card-featured { aspect-ratio: 16/9; }
.blog-card-side { aspect-ratio: 4/5; }
.blog-card-bg {
  position: absolute; inset: 0;
  transition: transform 1.2s var(--ease-silk);
}
.blog-card:hover .blog-card-bg { transform: scale(1.05); }
.blog-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,.9) 0%, rgba(10,9,8,.2) 60%, transparent 100%);
}
.blog-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem;
}
.blog-card-cat {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .25em;
  color: var(--gold); text-transform: uppercase; margin-bottom: .8rem;
}
.blog-card-title {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-weight: 300; line-height: 1.15; margin-bottom: .8rem;
}
.blog-card-meta {
  font-size: .75rem; color: rgba(240,237,230,.4); letter-spacing: .06em;
}
.blog-small-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; max-width: 1400px; margin: 2px auto 0;
}
.blog-card-sm { aspect-ratio: 4/3; }

/* ─── SHOP PAGE ──────────────────────────────────────────────────────────── */
#shop-hero {
  height: 50vh; min-height: 360px;
  background: var(--parchment); color: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding-bottom: 5rem;
}
.shop-hero-title {
  font-family: var(--serif); font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300; letter-spacing: -.03em; color: var(--ink);
}
.shop-hero-sub {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(26,26,24,.4); margin-top: 1rem;
}
#shop-main {
  padding: 5rem 5vw;
  background: var(--parchment); color: var(--ink);
}
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26,26,24,.1);
}
.shop-count {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .2em;
  color: rgba(26,26,24,.4);
}
.shop-filters { display: flex; gap: 2rem; }
.shop-filter {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(26,26,24,.4);
  padding-bottom: .3rem; border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s; cursor: none;
}
.shop-filter.active, .shop-filter:hover { color: var(--ink); border-color: var(--ink); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 3rem 2rem;
}
.shop-item { cursor: none; }
.shop-item-img {
  aspect-ratio: 3/4; background: #e8e4da; overflow: hidden; position: relative; margin-bottom: 1.5rem;
}
.shop-item-inner {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  transition: transform 1.2s var(--ease-silk);
}
.shop-item:hover .shop-item-inner { transform: scale(1.04); }
.shop-item-actions {
  position: absolute; bottom: 1.5rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 1rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease-silk), transform .4s var(--ease-silk);
}
.shop-item:hover .shop-item-actions { opacity: 1; transform: translateY(0); }
.shop-item-btn {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .18em;
  text-transform: uppercase; background: var(--ink); color: var(--parchment);
  padding: .7rem 1.4rem; transition: background .3s;
}
.shop-item-btn:hover { background: var(--gold); color: var(--ink); }
.shop-item-code {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: .5rem;
}
.shop-item-name {
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300; color: var(--ink); margin-bottom: .4rem;
}
.shop-item-price {
  font-family: var(--mono); font-size: .75rem; color: rgba(26,26,24,.5);
  letter-spacing: .08em;
}

/* ─── SCROLL PROGRESS ─────────────────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--gold); z-index: 600; transition: width .05s;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #story { grid-template-columns: 1fr; }
  .story-right { min-height: 50vh; }
  .beethoven-timeline .timeline-entry { grid-template-columns: 90px 1px 1fr; gap: 0 1.5rem; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-small-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card:nth-child(2) { margin-top: 0; }
  .product-card:nth-child(4) { margin-top: 0; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .blog-small-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .shop-filters { display: none; }
  .timeline-entry { grid-template-columns: 70px 1px 1fr; gap: 0 1rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .blog-categories { gap: 1.5rem; flex-wrap: wrap; }
}

/* ─── THEME SELECTOR ─────────────────────────────────────────────────────── */
#theme-selector {
  position: fixed; inset: 0; z-index: 8500;
  background: #0d0b09;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .6s var(--ease-silk);
  overflow: hidden;
}
#theme-sel-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
#theme-selector.visible { opacity: 1; pointer-events: all; }
#theme-selector.out { opacity: 0; pointer-events: none; transition: opacity .7s var(--ease-silk); }

/* Ambient glow */
#theme-selector::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 28% 62%, rgba(201,169,110,.10) 0%, transparent 68%),
    radial-gradient(ellipse 55% 65% at 72% 28%, rgba(201,169,110,.07) 0%, transparent 62%);
  animation: heroGlow 18s ease-in-out infinite alternate;
}

.theme-sel-inner {
  text-align: center; padding: 0 5vw;
  position: relative; z-index: 2;
}

/* ── Per-element staggered entrance ─────────────────────────── */
.theme-sel-logo,
.theme-sel-tagline,
.theme-sel-sub,
.theme-sel-card,
.theme-sel-note { opacity: 0; }

@keyframes selFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes selSlideLeft {
  from { opacity: 0; transform: translateX(-38px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0)    scale(1); }
}
@keyframes selSlideRight {
  from { opacity: 0; transform: translateX(38px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0)   scale(1); }
}

#theme-selector.visible .theme-sel-logo     { animation: selFadeUp    0.85s var(--ease-expo) 0.20s forwards; }
#theme-selector.visible .theme-sel-tagline  { animation: selFadeUp    0.75s var(--ease-expo) 0.42s forwards; }
#theme-selector.visible .theme-sel-sub      { animation: selFadeUp    0.75s var(--ease-expo) 0.58s forwards; }
#theme-selector.visible .theme-sel-options .theme-sel-card:nth-child(1) { animation: selSlideLeft  0.90s var(--ease-expo) 0.72s forwards; }
#theme-selector.visible .theme-sel-options .theme-sel-card:nth-child(2) { animation: selSlideRight 0.90s var(--ease-expo) 0.88s forwards; }
#theme-selector.visible .theme-sel-note     { animation: selFadeUp    0.70s var(--ease-expo) 1.05s forwards; }

.theme-sel-logo {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300; letter-spacing: .48em; color: var(--parchment);
  margin-bottom: .7rem;
}
.theme-sel-tagline {
  font-family: var(--serif); font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-style: italic; color: var(--gold); margin-bottom: .5rem;
}
.theme-sel-sub {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .32em;
  text-transform: uppercase; color: rgba(240,237,230,.35);
  margin-bottom: 3.5rem;
}
.theme-sel-options {
  display: flex; gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: center; flex-wrap: wrap;
}
.theme-sel-card {
  width: clamp(170px, 25vw, 290px); background: none;
  border: 1px solid rgba(201,169,110,.18); padding: 0;
  cursor: pointer; overflow: hidden;
  transition: border-color .4s var(--ease-silk),
              transform   .4s var(--ease-silk),
              box-shadow  .4s var(--ease-silk);
}
.theme-sel-card:hover {
  border-color: var(--gold); transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,.45);
}
.theme-sel-preview {
  width: 100%; aspect-ratio: 16/10; position: relative; overflow: hidden;
}
.dark-preview  { background: linear-gradient(155deg, #100d09 0%, #1c1308 60%, #080604 100%); }
.light-preview { background: linear-gradient(155deg, #F7F2EA 0%, #EDE4D2 60%, #F2EAD8 100%); }

/* wave draw-on animation */
.tsp-wave-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; padding: 0 8%;
}
.tsp-wave-wrap svg { width: 100%; height: 55%; }
.tsp-wave-wrap path { stroke-dasharray: 600; stroke-dashoffset: 600; }
#theme-selector.visible .tsp-wave-wrap path:nth-child(1) { animation: tsDraw 1.4s var(--ease-expo) .35s forwards; }
#theme-selector.visible .tsp-wave-wrap path:nth-child(2) { animation: tsDraw 1.4s var(--ease-expo) .50s forwards; }
#theme-selector.visible .tsp-wave-wrap path:nth-child(3) { animation: tsDraw 1.4s var(--ease-expo) .65s forwards; }
@keyframes tsDraw { to { stroke-dashoffset: 0; } }

.theme-sel-info {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.1rem 1rem 1.4rem; gap: .35rem;
  border-top: 1px solid rgba(201,169,110,.12);
  background: rgba(201,169,110,.04);
  transition: background .4s;
}
.theme-sel-card:hover .theme-sel-info { background: rgba(201,169,110,.09); }
.theme-sel-label {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 300;
  letter-spacing: .14em; color: var(--parchment);
}
.theme-sel-desc {
  font-family: var(--mono); font-size: .56rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
}
.theme-sel-note {
  margin-top: 2.8rem; font-family: var(--mono); font-size: .55rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,237,230,.2);
}


/* ─── LIGHT THEME OVERRIDES (data-theme="light") ─────────────────────────── */

/* ── Base ──────────────────────────────────────────────────────────────────── */
[data-theme="light"] body { background: #F5F0E8; color: #1A1714; }
[data-theme="light"] #noise { opacity: .012; }

/* ── Nav ───────────────────────────────────────────────────────────────────── */
[data-theme="light"] #nav.scrolled {
  background: rgba(245,240,232,.92); backdrop-filter: blur(24px);
}
[data-theme="light"] .nav-logo { color: #1A1714; }
[data-theme="light"] .nav-links a { color: rgba(26,23,20,.6); }
[data-theme="light"] .nav-links a:hover { color: #1A1714; }
[data-theme="light"] .nav-links a.active { color: var(--gold); }
[data-theme="light"] .nav-hamburger span { background: #1A1714; }
[data-theme="light"] #mobile-nav { background: #F5F0E8; }
[data-theme="light"] #mobile-nav a { color: #1A1714; }
[data-theme="light"] #mobile-nav a:hover { color: var(--gold); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
[data-theme="light"] #hero { background: #F5F0E8; cursor: grab; }
[data-theme="light"] #hero:active { cursor: grabbing; }
[data-theme="light"] #hero::before {
  background:
    radial-gradient(ellipse 65% 55% at 28% 62%, rgba(201,169,110,.12) 0%, transparent 68%),
    radial-gradient(ellipse 55% 65% at 72% 28%, rgba(201,169,110,.08) 0%, transparent 62%);
}
[data-theme="light"] #hero-video { display: none; }
[data-theme="light"] #hero-overlay {
  background:
    linear-gradient(to bottom, rgba(245,240,232,.5) 0%, rgba(245,240,232,.1) 50%, rgba(245,240,232,.6) 100%),
    radial-gradient(ellipse 110% 110% at 50% 50%, transparent 35%, rgba(245,240,232,.55) 100%);
}
[data-theme="light"] .hero-title { color: #1A1714; }
[data-theme="light"] .hero-sub   { color: rgba(26,23,20,.55); }
[data-theme="light"] .hero-scroll-hint span { color: rgba(26,23,20,.5); }

/* ── Scroll Narrative ──────────────────────────────────────────────────────── */
[data-theme="light"] .narrative-sticky          { background: #F5F0E8; }
[data-theme="light"] .narrative-sticky.phase-0  { background: #FFF4E0; }
[data-theme="light"] .narrative-sticky.phase-1  { background: #EEF2FF; }
[data-theme="light"] .narrative-sticky.phase-2  { background: #E8F8F4; }
[data-theme="light"] .narrative-text { color: #1A1714; }
[data-theme="light"] .narrative-text.phase-hero {
  text-shadow: 0 0 80px rgba(201,169,110,.32), 0 0 160px rgba(201,169,110,.12);
}
[data-theme="light"] .narrative-sticky.phase-0 #narrative-glow {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,169,110,.12) 0%, transparent 70%);
}
[data-theme="light"] .narrative-sticky.phase-1 .narrative-text.active {
  text-shadow: 0 0 80px rgba(70,100,220,.25), 0 0 160px rgba(60,80,200,.08);
}
[data-theme="light"] .narrative-sticky.phase-2 .narrative-text.active {
  text-shadow: 0 0 80px rgba(20,145,115,.25), 0 0 160px rgba(15,125,100,.08);
}
[data-theme="light"] .side-label { color: rgba(26,23,20,.3); }

/* ── Featured Collection ───────────────────────────────────────────────────── */
[data-theme="light"] #collection { background: #EDE8DC; color: #1A1714; }
[data-theme="light"] .collection-desc { color: rgba(26,23,20,.55); }
[data-theme="light"] .product-card { background: #D4CCBA; }
[data-theme="light"] .product-bg-1 { background: radial-gradient(ellipse 80% 80% at 40% 30%, #EDE5D5 0%, #DDCFBC 100%); }
[data-theme="light"] .product-bg-2 { background: radial-gradient(ellipse 80% 80% at 60% 70%, #EAE1D1 0%, #D8CCBB 100%); }
[data-theme="light"] .product-bg-3 { background: radial-gradient(ellipse 80% 80% at 50% 40%, #E6E0D4 0%, #D5CCBA 100%); }
[data-theme="light"] .product-bg-4 { background: radial-gradient(ellipse 80% 80% at 30% 60%, #F0E6D0 0%, #DDD0BA 100%); }
[data-theme="light"] .product-overlay {
  background: linear-gradient(to top, rgba(228,218,200,.97) 0%, transparent 52%);
}
[data-theme="light"] .product-name        { color: #1A1714; }
[data-theme="light"] .product-hover-info  { color: rgba(26,23,20,.65); }

/* ── Story Section ─────────────────────────────────────────────────────────── */
[data-theme="light"] .story-right { background: #EBE4D2; }
[data-theme="light"] #story .story-left                { color: #0a0908; }
[data-theme="light"] #story .story-title               { color: #0a0908; }
[data-theme="light"] #story .story-title em            { color: #0a0908; }
[data-theme="light"] #story .story-body                { color: rgba(10,9,8,.65); }
[data-theme="light"] #story .story-quote               { color: #0a0908; }
[data-theme="light"] #story .story-left p,
[data-theme="light"] #story .story-left h2,
[data-theme="light"] #story .story-left em,
[data-theme="light"] #story .story-left blockquote     { color: #0a0908; }

/* ── Artists ───────────────────────────────────────────────────────────────── */
[data-theme="light"] #artists { background: #F5F0E8; }
[data-theme="light"] .artist-card { background: #E3DCCB; }
[data-theme="light"] .a-bg-1 { background: linear-gradient(135deg, #EAE2D5 0%, #D9D1C4 100%); }
[data-theme="light"] .a-bg-2 { background: linear-gradient(135deg, #DDE6D8 0%, #CED9C9 100%); }
[data-theme="light"] .a-bg-3 { background: linear-gradient(135deg, #DDD8E8 0%, #CFCCD8 100%); }
[data-theme="light"] .a-bg-4 { background: linear-gradient(135deg, #EAE0D2 0%, #D8D0C3 100%); }
[data-theme="light"] .artist-overlay {
  background: linear-gradient(to top, rgba(218,208,192,.96) 0%, transparent 62%);
}
[data-theme="light"] .artist-card:hover .artist-overlay { background: rgba(218,208,192,.84); }
[data-theme="light"] .artist-name      { color: #1A1714; }
[data-theme="light"] .artist-story     { color: rgba(26,23,20,.62); }
[data-theme="light"] .artist-monogram  { color: rgba(168,120,32,.1); }

/* ── CTA — keep dark for dramatic closure ──────────────────────────────────── */
[data-theme="light"] #cta { background: #1A1714; color: var(--parchment); }

/* ── Footer — keep dark ─────────────────────────────────────────────────────── */
[data-theme="light"] footer { background: #0a0908; }

/* ─── THEME ZOOM TRANSITION OVERLAY ────────────────────────────────────────── */
.theme-zoom-overlay {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform-origin: 50% 50%;
  transform: scale(1);
  border-radius: 0;
}

/* ─── MUSIC WIDGET ───────────────────────────────────────────────────────── */
#music-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 7000;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  background: rgba(13,11,9,0.80);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(calc(100% + 2.5rem));
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.34,1.46,0.64,1), opacity 0.5s ease;
  pointer-events: none;
}
#music-widget.mw-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
#music-widget.mw-hidden {
  transform: translateY(calc(100% + 2.5rem));
  opacity: 0;
  pointer-events: none;
}

/* Equalizer bars */
.mw-eq {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 20px;
  flex-shrink: 0;
}
.mw-bar {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: rgba(201,169,110,0.85);
  animation: mwBeat 1.1s ease-in-out infinite;
}
.mw-bar:nth-child(1) { animation-duration: 1.05s; animation-delay: 0.00s; }
.mw-bar:nth-child(2) { animation-duration: 0.85s; animation-delay: 0.18s; }
.mw-bar:nth-child(3) { animation-duration: 1.20s; animation-delay: 0.08s; }
.mw-bar:nth-child(4) { animation-duration: 0.95s; animation-delay: 0.28s; }
.mw-bar:nth-child(5) { animation-duration: 1.35s; animation-delay: 0.12s; }
@keyframes mwBeat {
  0%,100% { height: 3px;  opacity: 0.55; }
  50%      { height: 18px; opacity: 1.00; }
}

/* Text */
.mw-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mw-track {
  display: block;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.95);
  white-space: nowrap;
}
.mw-artist {
  display: block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.60rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
}

/* Close button */
.mw-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.1rem 0 0.1rem 0.25rem;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.mw-close:hover { color: rgba(201,169,110,0.85); }

/* Light theme overrides */
[data-theme="light"] #music-widget {
  background: rgba(242,235,220,0.88);
  border-color: rgba(140,100,28,0.22);
}
[data-theme="light"] .mw-track  { color: rgba(140,100,28,0.95); }
[data-theme="light"] .mw-bar    { background: rgba(140,100,28,0.80); }
[data-theme="light"] .mw-artist { color: rgba(0,0,0,0.42); }
[data-theme="light"] .mw-close  { color: rgba(0,0,0,0.30); }
[data-theme="light"] .mw-close:hover { color: rgba(140,100,28,0.85); }
