/* ═══════════════════════════════════════════════════════════════
   EVERLIT ART · NOIR — Bold, dark, cinematic
   ═══════════════════════════════════════════════════════════════ */
:root {
  --ink: #0a0908;
  --ink-2: #131110;
  --ink-3: #1d1a18;
  --ink-4: #2a2522;
  --bone: #e8e2d4;
  --bone-dim: #b8b0a0;
  --bone-soft: #86807a;
  --gold: #c9a063;
  --gold-bright: #e6c58b;
  --gold-deep: #8c6a3a;
  --oxblood: #7a1a1e;
  --wax: #8f5a2b;
  --rule: rgba(232, 226, 212, 0.12);
  --rule-strong: rgba(232, 226, 212, 0.28);

  --f-display: "Italiana", "Cormorant Garamond", serif;
  --f-serif: "Cormorant Garamond", "Times New Roman", serif;
  --f-sans: "Inter Tight", -apple-system, system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--ink); color: var(--bone); }
body {
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }

/* ── film grain overlay on everything ── */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.87 0 0 0 0 0.81 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9998;
}
/* vignette */
body::after {
  content: "";
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 9997;
}

/* ── custom cursor ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.cursor.hover { width: 48px; height: 48px; background: rgba(201, 160, 99, 0.15); }
.cursor-trail {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.cursor-trail.t1 { opacity: 0.55; }
.cursor-trail.t2 { opacity: 0.32; }
.cursor-trail.t3 { opacity: 0.18; }
.cursor.hover ~ .cursor-trail { width: 48px; height: 48px; }
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
}

/* ── loader ── */
.loader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.9s ease 0.3s, visibility 0.9s ease 0.3s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-seal {
  width: 120px; height: 120px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 2px;
  position: relative;
  animation: sealRotate 8s linear infinite;
}
.loader-seal::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid rgba(201,160,99,0.3);
  border-radius: 50%;
}
.loader-seal span { animation: sealRotateInner 8s linear infinite reverse; }
.loader-text {
  margin-top: 28px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bone-soft);
}
.loader-bar {
  margin-top: 14px;
  width: 180px;
  height: 1px;
  background: rgba(232, 226, 212, 0.15);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--gold);
  animation: loadFill 1.8s ease forwards;
}
@keyframes sealRotate { to { transform: rotate(360deg); } }
@keyframes sealRotateInner { to { transform: rotate(-360deg); } }
@keyframes loadFill { from { width: 0; } to { width: 100%; } }

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  mix-blend-mode: difference;
  color: var(--bone);
}
.nav-brand {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 4px;
  display: flex; align-items: center; gap: 10px;
}
.nav-brand .mark {
  width: 26px; height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-family: var(--f-display);
}
.nav-links {
  display: flex; gap: 40px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 0.4s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-right {
  display: flex; gap: 24px; align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.v-switch {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
}
.v-switch .active { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   HERO — cinematic "video-style" CSS animation
   ═══════════════════════════════════════════════════════════════ */
.hero {
  height: 100vh; min-height: 720px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0908 0%, #120f0d 50%, #0a0908 100%);
}

/* spotlight */
.hero-spotlight {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 600px at 50% 55%, rgba(201,160,99,0.18), transparent 70%);
  animation: spotDrift 14s ease-in-out infinite alternate;
}
@keyframes spotDrift {
  0% { transform: translate(-5%, -2%) scale(1); }
  100% { transform: translate(5%, 2%) scale(1.1); }
}

/* slow rotating outer ring of seals (cinematic) */
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 140vh; height: 140vh;
  margin: -70vh 0 0 -70vh;
  animation: ringRotate 90s linear infinite;
  opacity: 0.5;
}
.hero-ring-inner {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vh; height: 100vh;
  margin: -50vh 0 0 -50vh;
  animation: ringRotate 60s linear infinite reverse;
  opacity: 0.6;
}
.ring-dot {
  position: absolute;
  width: 64px; height: 64px;
  left: 50%; top: 0;
  margin-left: -32px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  filter: grayscale(0.4) brightness(0.7) sepia(0.3);
  border: 1px solid rgba(201,160,99,0.4);
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

/* central hero content */
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 5;
}
.hero-kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.8s forwards;
}
.hero-kicker .line {
  display: inline-block; width: 40px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 16px;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(72px, 14vw, 220px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 24px;
}
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  padding: 0 0.04em;
}
.hero-title .word span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordReveal 1.3s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .word:nth-child(1) span { animation-delay: 0.9s; }
.hero-title .word:nth-child(2) span { animation-delay: 1.05s; color: var(--gold); font-style: italic; font-family: var(--f-serif); font-weight: 300; }
.hero-title .word:nth-child(3) span { animation-delay: 1.2s; }
@keyframes wordReveal { to { transform: translateY(0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  max-width: 560px;
  font-family: var(--f-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--bone-dim);
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.6s forwards;
}

/* dripping wax at bottom */
.hero-wax {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 3;
}
.wax-drop {
  position: absolute;
  bottom: 100%;
  width: 8px;
  background: linear-gradient(180deg, rgba(201,160,99,0) 0%, var(--gold-deep) 30%, var(--gold) 100%);
  border-radius: 0 0 8px 8px;
  filter: drop-shadow(0 0 20px rgba(201,160,99,0.6));
  animation: waxDrip 6s ease-in-out infinite;
}
@keyframes waxDrip {
  0%, 100% { height: 0; opacity: 0.3; }
  30% { height: 80px; opacity: 1; }
  70% { height: 140px; opacity: 1; }
}

/* center stage — the "camera" on the seal */
.hero-stage {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  z-index: 2;
  opacity: 0;
  animation: stageIn 1.8s cubic-bezier(.2,.7,.2,1) 0.4s forwards;
}
@keyframes stageIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.hero-stage-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,160,99,0.2);
  border-radius: 50%;
  animation: pulseRing 4s ease-out infinite;
}
.hero-stage-ring:nth-child(2) { animation-delay: 1.3s; }
.hero-stage-ring:nth-child(3) { animation-delay: 2.6s; }
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.hero-stage-seal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  box-shadow:
    0 0 60px rgba(201,160,99,0.3),
    0 0 120px rgba(201,160,99,0.15),
    inset 0 0 40px rgba(0,0,0,0.4);
  filter: contrast(1.1) saturate(1.15);
  animation: sealFloat 7s ease-in-out infinite;
}
@keyframes sealFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg); }
  50% { transform: translate(-50%, -52%) rotate(2deg); }
}

/* ticker at very bottom */
.hero-ticker {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  z-index: 10;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  overflow: hidden;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-soft);
}
.ticker-track {
  display: flex;
  gap: 40px;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track span { display: flex; align-items: center; gap: 40px; }
.ticker-track .dot { color: var(--gold); }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-soft);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: fadeUp 1s ease 2.2s forwards;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION TEMPLATES
   ═══════════════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 140px 48px;
}
.section-kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.section-kicker::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 32px;
}
.section-title em {
  font-family: var(--f-serif);
  font-weight: 300;
  color: var(--gold);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(.2,.7,.2,1), transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* reveal: image clip */
.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.8s cubic-bezier(.76,0,.24,1);
}
.clip-reveal.in { clip-path: inset(0 0 0 0); }

/* ═══════════════════════════════════════════════════════════════
   MANIFESTO — asymmetric full-bleed
   ═══════════════════════════════════════════════════════════════ */
.manifesto {
  padding: 180px 48px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-bg {
  position: absolute;
  top: 0; right: -10%;
  width: 60%; height: 100%;
  background: url("assets/editorial/raw-1.jpg") center / cover no-repeat;
  filter: grayscale(1) contrast(1.15) brightness(0.45);
  opacity: 0.7;
  mask-image: linear-gradient(90deg, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 25%, black 75%, transparent 100%);
  pointer-events: none;
}
.manifesto-left {
  position: relative;
  z-index: 2;
  padding-left: 80px;
}
.manifesto-quote {
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.manifesto-quote em {
  font-family: var(--f-serif);
  font-weight: 300;
  color: var(--gold);
}
.manifesto-quote-mark {
  font-family: var(--f-display);
  font-size: 180px;
  color: var(--gold);
  line-height: 0.3;
  opacity: 0.35;
  position: absolute;
  top: 20px; left: 0;
}
.manifesto-right {
  position: relative;
  z-index: 2;
}
.manifesto-paragraphs p {
  font-family: var(--f-serif);
  font-size: 20px;
  line-height: 1.7;
  color: var(--bone-dim);
  margin-bottom: 22px;
  font-weight: 300;
}
.manifesto-paragraphs p:first-child::first-letter {
  font-family: var(--f-display);
  font-size: 72px;
  float: left;
  line-height: 0.8;
  padding: 8px 12px 0 0;
  color: var(--gold);
}
.manifesto-sig {
  margin-top: 40px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-soft);
  display: flex; align-items: center; gap: 14px;
}
.manifesto-sig::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--bone-soft);
}

/* ═══════════════════════════════════════════════════════════════
   HORIZONTAL GALLERY
   ═══════════════════════════════════════════════════════════════ */
.horz-section {
  padding: 120px 0 140px;
  overflow: hidden;
}
.horz-header {
  padding: 0 48px;
  margin-bottom: 80px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
}
.horz-title {
  font-family: var(--f-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.02em;
}
.horz-title em {
  font-family: var(--f-serif);
  font-weight: 300;
  color: var(--gold);
  display: block;
}
.horz-nav {
  display: flex; gap: 12px;
}
.horz-arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  color: var(--bone-dim);
}
.horz-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,160,99,0.08);
}

.horz-track-wrap {
  position: relative;
}
.horz-track {
  display: flex;
  gap: 32px;
  padding: 20px 48px 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.horz-track::-webkit-scrollbar { display: none; }

.horz-card {
  flex: 0 0 auto;
  width: 420px;
  scroll-snap-align: start;
  position: relative;
  cursor: none;
}
.horz-card:nth-child(even) { margin-top: 80px; }

.horz-card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  overflow: hidden;
  margin-bottom: 22px;
}
.horz-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 0.6s ease;
  filter: grayscale(0.25) brightness(0.88) contrast(1.1);
}
.horz-card:hover .horz-card-image img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(1) contrast(1.08);
}
.horz-card-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--bone);
  background: rgba(10,9,8,0.7);
  padding: 4px 8px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.horz-card-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10,9,8,0.7);
  padding: 4px 8px;
  backdrop-filter: blur(6px);
  z-index: 2;
  border: 1px solid rgba(201,160,99,0.3);
}
.horz-card-meta {
  display: flex; justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone-soft);
}
.horz-card-meta .price {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0;
}
.horz-card-name {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 6px;
}
.horz-card-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--bone-soft);
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS — vertical timeline with sticky scrub
   ═══════════════════════════════════════════════════════════════ */
.process {
  padding: 160px 48px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 20%, var(--ink-2) 80%, var(--ink) 100%);
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.process-sticky {
  position: sticky;
  top: 120px;
  height: fit-content;
}
.process-stage {
  aspect-ratio: 1;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.process-stage-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  filter: grayscale(0.3) contrast(1.1) brightness(0.85);
}
.process-stage-img.active { opacity: 1; }
.process-stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,9,8,0.9) 100%);
  pointer-events: none;
}
.process-stage-label {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}
.process-stage-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--bone);
  z-index: 2;
}

.process-steps {
  display: flex; flex-direction: column;
}
.process-step {
  padding: 60px 0;
  border-top: 1px solid var(--rule);
  transition: opacity 0.5s ease;
  opacity: 0.35;
}
.process-step:last-child { border-bottom: 1px solid var(--rule); }
.process-step.active { opacity: 1; }
.process-step-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}
.process-step-title {
  font-family: var(--f-display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.process-step-body {
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--bone-dim);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   PARALLAX EDITORIAL
   ═══════════════════════════════════════════════════════════════ */
.editorial {
  padding: 140px 0;
  overflow: hidden;
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 0 48px;
  max-width: 1600px;
  margin: 0 auto;
}
.ed-card { position: relative; overflow: hidden; }
.ed-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.9) contrast(1.05);
  transition: transform 1.4s ease, filter 0.6s ease;
}
.ed-card:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.ed-card-1 { grid-column: 1 / span 5; aspect-ratio: 4/5; }
.ed-card-2 { grid-column: 6 / span 4; aspect-ratio: 3/4; margin-top: 120px; }
.ed-card-3 { grid-column: 10 / span 3; aspect-ratio: 2/3; margin-top: 40px; }
.ed-card-4 { grid-column: 2 / span 4; aspect-ratio: 1; margin-top: -60px; }
.ed-card-5 { grid-column: 7 / span 6; aspect-ratio: 3/2; margin-top: 60px; }

.ed-card-caption {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(10,9,8,0.6);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  display: flex; justify-content: space-between;
}

.editorial-header {
  text-align: center;
  margin-bottom: 100px;
  padding: 0 48px;
}
.editorial-header .section-kicker {
  justify-content: center;
}
.editorial-header .section-kicker::before,
.editorial-header .section-kicker::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   WAX COLOR STRIP
   ═══════════════════════════════════════════════════════════════ */
.waxstrip {
  padding: 160px 48px;
  position: relative;
  background: var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.waxstrip-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.waxstrip-left .section-title {
  margin-bottom: 28px;
}
.waxstrip-left p {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 460px;
}
.waxstrip-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.wax-chip {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--hex);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    inset 0 -10px 30px rgba(0,0,0,0.4),
    inset 0 4px 20px rgba(255,255,255,0.2);
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 18px;
}
.wax-chip::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.25) 0%, transparent 40%);
}
.wax-chip:hover { transform: translateY(-8px) scale(1.04); }
.wax-chip-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  position: relative; z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   BIG CTA / CINEMATIC CLOSER
   ═══════════════════════════════════════════════════════════════ */
.closer {
  padding: 180px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closer-bg {
  position: absolute;
  inset: 0;
  background: url("assets/editorial/raw-5.jpg") center / cover no-repeat;
  filter: grayscale(0.8) contrast(1.2) brightness(0.35);
  transform: scale(1.1);
}
.closer-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, var(--ink) 80%);
}
.closer-content {
  position: relative;
  z-index: 2;
}
.closer-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.closer-headline {
  font-family: var(--f-display);
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  color: var(--bone);
}
.closer-headline em {
  font-family: var(--f-serif);
  font-weight: 300;
  color: var(--gold);
}
.closer-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 22px 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease;
}
.closer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(.76,0,.24,1);
}
.closer-cta:hover { color: var(--ink); }
.closer-cta:hover::before { transform: translateX(0); }
.closer-cta span { position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  padding: 100px 48px 48px;
  border-top: 1px solid var(--rule);
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bone-dim);
  max-width: 340px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 12px;
  font-family: var(--f-serif);
  font-size: 16px;
  color: var(--bone-dim);
  font-weight: 300;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone-soft);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .nav { padding: 18px 20px; }
  .nav-links { display: none; }
  .section, .manifesto, .waxstrip, .process, .closer { padding-left: 20px; padding-right: 20px; }
  .manifesto { grid-template-columns: 1fr; gap: 40px; padding: 100px 20px; }
  .manifesto-left { padding-left: 0; }
  .manifesto-bg { width: 100%; right: 0; opacity: 0.25; }
  .horz-header { flex-direction: column; align-items: flex-start; }
  .horz-track { padding: 20px 20px 40px; }
  .horz-card { width: 80vw; }
  .horz-card:nth-child(even) { margin-top: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-sticky { position: static; }
  .waxstrip-inner { grid-template-columns: 1fr; }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-card-1, .ed-card-2, .ed-card-3, .ed-card-4, .ed-card-5 {
    grid-column: span 1; margin-top: 0; aspect-ratio: 4/5;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE TRANSITIONS
   ═══════════════════════════════════════════════════════════════ */
.page-enter { animation: pageIn 0.7s cubic-bezier(.2,.7,.2,1); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HEAD ── */
.page-head {
  padding: 180px 48px 80px;
  border-bottom: 1px solid var(--rule);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(0.7) contrast(1.1) brightness(0.25);
  opacity: 0.5;
}
.page-head-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--ink) 85%);
}
.page-head-inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.page-head h1 {
  font-family: var(--f-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 20px 0 28px;
}
.page-head h1 em {
  font-family: var(--f-serif);
  font-weight: 300;
  color: var(--gold);
}
.page-head p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bone-dim);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── SHOP GRID ── */
.shop-bar {
  padding: 40px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-soft);
}
.shop-filters { display: flex; gap: 32px; }
.shop-filters button { position: relative; padding: 6px 0; transition: color 0.3s; }
.shop-filters button::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s ease;
}
.shop-filters button:hover, .shop-filters button.on { color: var(--gold); }
.shop-filters button.on::after { width: 100%; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  padding: 1px;
}
.shop-tile {
  background: var(--ink);
  padding: 40px;
  position: relative;
  cursor: none;
  transition: background 0.4s;
}
.shop-tile:hover { background: var(--ink-2); }
.shop-tile-img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--ink-3);
}
.shop-tile-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 0.6s;
  filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}
.shop-tile:hover .shop-tile-img img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.shop-tile-meta {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone-soft);
  margin-bottom: 10px;
}
.shop-tile-name {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--bone);
  margin-bottom: 4px;
  line-height: 1.05;
}
.shop-tile-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--bone-soft);
}
.shop-tile-price {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold);
}

@media (max-width: 1000px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-tile { padding: 24px; }
  .page-head { padding: 140px 20px 60px; }
  .shop-bar { padding: 20px; flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ── COLLECTIONS ── */
.coll-list { padding: 80px 48px; max-width: 1600px; margin: 0 auto; }
.coll-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.coll-row:nth-child(even) { direction: rtl; }
.coll-row:nth-child(even) > * { direction: ltr; }
.coll-row:last-child { border-bottom: 1px solid var(--rule); }
.coll-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink-2);
}
.coll-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1), filter 0.6s;
  filter: grayscale(0.2) brightness(0.88);
}
.coll-row:hover .coll-image img { transform: scale(1.04); filter: grayscale(0) brightness(1); }
.coll-meta-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}
.coll-meta-title {
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.coll-meta-title em { font-family: var(--f-serif); font-weight: 300; color: var(--gold); }
.coll-meta-desc {
  font-family: var(--f-serif);
  font-size: 20px;
  color: var(--bone-dim);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 40px;
}
.noir-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: color 0.4s;
}
.noir-btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(.76,0,.24,1);
}
.noir-btn:hover { color: var(--ink); }
.noir-btn:hover::before { transform: translateX(0); }
.noir-btn span { position: relative; z-index: 2; }

@media (max-width: 1000px) {
  .coll-list { padding: 40px 20px; }
  .coll-row, .coll-row:nth-child(even) { grid-template-columns: 1fr; gap: 30px; direction: ltr; padding: 40px 0; }
}

/* ── PRODUCT DETAIL ── */
.pdp {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  padding: 140px 48px 100px;
  gap: 80px;
  max-width: 1600px;
  margin: 0 auto;
}
.pdp-gallery { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; height: fit-content; }
.pdp-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--rule);
}
.pdp-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) brightness(0.92);
}
.pdp-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.pdp-thumb {
  aspect-ratio: 1; overflow: hidden; cursor: none;
  border: 1px solid transparent;
  opacity: 0.6; transition: all 0.3s;
}
.pdp-thumb.on { border-color: var(--gold); opacity: 1; }
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) brightness(0.8); }
.pdp-info { padding-top: 20px; }
.pdp-kicker { font-family: var(--f-mono); font-size: 10px; letter-spacing: 3px; color: var(--gold); margin-bottom: 20px; }
.pdp-name {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.95;
  margin-bottom: 12px;
}
.pdp-sub { font-family: var(--f-serif); font-style: italic; font-size: 20px; color: var(--bone-dim); margin-bottom: 28px; }
.pdp-price {
  font-family: var(--f-display);
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex; align-items: baseline; gap: 16px;
}
.pdp-price .usd { font-family: var(--f-mono); font-size: 12px; letter-spacing: 3px; color: var(--bone-soft); }
.pdp-desc {
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--bone-dim);
  font-weight: 300;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 36px;
}
.pdp-opt-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-soft);
  margin-bottom: 14px;
}
.pdp-opt-group { margin-bottom: 32px; }
.pdp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-chip {
  padding: 10px 16px;
  border: 1px solid var(--rule-strong);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: all 0.25s;
  cursor: none;
}
.pdp-chip.on { border-color: var(--gold); color: var(--gold); background: rgba(201,160,99,0.08); }
.pdp-chip:hover { border-color: var(--gold); color: var(--gold); }
.pdp-wax-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid var(--rule-strong);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone-dim);
  cursor: none;
  transition: all 0.25s;
}
.pdp-wax-chip.on { border-color: var(--gold); color: var(--gold); }
.pdp-wax-swatch { width: 20px; height: 20px; border-radius: 50%; box-shadow: inset 0 -4px 10px rgba(0,0,0,0.4), inset 0 2px 6px rgba(255,255,255,0.2); }
.pdp-actions { display: flex; gap: 14px; margin-top: 12px; }
.pdp-add {
  flex: 1;
  padding: 20px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s;
}
.pdp-add:hover { background: var(--gold-bright); }
.pdp-details { list-style: none; margin-top: 48px; border-top: 1px solid var(--rule); padding-top: 32px; }
.pdp-details li {
  display: flex; justify-content: space-between; padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.pdp-details li span:first-child { color: var(--bone-soft); }
.pdp-details li span:last-child { color: var(--bone); }

@media (max-width: 1000px) {
  .pdp { grid-template-columns: 1fr; padding: 120px 20px 60px; gap: 40px; }
  .pdp-gallery { position: static; }
}

/* ── CUSTOM / FORM ── */
.custom {
  padding: 140px 48px 120px;
  max-width: 1400px;
  margin: 0 auto;
}
.custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.custom-left { position: sticky; top: 120px; }
.custom-left h2 {
  font-family: var(--f-display);
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.custom-left h2 em { font-family: var(--f-serif); font-weight: 300; color: var(--gold); }
.custom-left p {
  font-family: var(--f-serif);
  font-size: 19px;
  color: var(--bone-dim);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 22px;
}
.custom-steps { display: flex; flex-direction: column; gap: 40px; margin-top: 60px; }
.custom-step-pill {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone-soft);
}
.custom-step-pill:last-child { border-bottom: 1px solid var(--rule); }
.custom-step-pill-num { color: var(--gold); min-width: 40px; }
.custom-form { display: flex; flex-direction: column; gap: 40px; }
.custom-field { border-top: 1px solid var(--rule); padding-top: 32px; }
.custom-field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.custom-field input, .custom-field textarea, .custom-field select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  font-family: var(--f-serif);
  font-size: 22px;
  color: var(--bone);
  font-weight: 300;
  transition: border-color 0.3s;
  cursor: none;
}
.custom-field input:focus, .custom-field textarea:focus, .custom-field select:focus {
  outline: none; border-color: var(--gold);
}
.custom-field textarea { min-height: 120px; resize: vertical; }
.custom-field select option { background: var(--ink-2); color: var(--bone); }
.custom-submit {
  width: 100%; margin-top: 20px;
  padding: 22px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}
.custom-submit:hover { background: var(--gold-bright); }

@media (max-width: 1000px) {
  .custom { padding: 120px 20px 60px; }
  .custom-grid { grid-template-columns: 1fr; gap: 60px; }
  .custom-left { position: static; }
}

/* ── WEDDING ── */
.wed-hero {
  padding: 180px 48px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wed-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('assets/hero/tile-hero.jpg') center / cover no-repeat;
  filter: grayscale(0.7) brightness(0.3);
  opacity: 0.7;
}
.wed-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--ink) 85%);
}
.wed-hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.wed-suite {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--rule);
}
.wed-suite-item {
  background: var(--ink);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.wed-suite-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.85);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 0.6s;
}
.wed-suite-item:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.wed-suite-label {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--bone);
  z-index: 2;
}
.wed-suite-label::before {
  content: attr(data-num);
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 6px;
}
.wed-suite-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,9,8,0.9) 100%);
}

@media (max-width: 1000px) {
  .wed-suite { grid-template-columns: repeat(2, 1fr); }
}

/* ── ATELIER ── */
.atelier-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 80px 48px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.atelier-stat { border-right: 1px solid var(--rule); padding: 40px 20px; }
.atelier-stat:last-child { border-right: none; }
.atelier-stat-num {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 96px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.atelier-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-soft);
}

.atelier-body {
  padding: 140px 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.atelier-body h2 {
  font-family: var(--f-display);
  font-size: clamp(52px, 6vw, 96px);
  line-height: 0.95;
  margin-bottom: 48px;
}
.atelier-body h2 em { font-family: var(--f-serif); font-weight: 300; color: var(--gold); }
.atelier-body p {
  font-family: var(--f-serif);
  font-size: 22px;
  line-height: 1.7;
  color: var(--bone-dim);
  font-weight: 300;
  margin-bottom: 28px;
}
.atelier-body p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 96px;
  float: left;
  line-height: 0.85;
  padding: 6px 16px 0 0;
  color: var(--gold);
}

@media (max-width: 1000px) {
  .atelier-stats { grid-template-columns: repeat(2, 1fr); }
  .atelier-stat:nth-child(2) { border-right: none; }
  .atelier-stat:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .atelier-body { padding: 80px 20px; }
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  padding: 1px;
}
.review-card {
  background: var(--ink);
  padding: 40px;
}
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 20px; font-size: 16px; }
.review-text {
  font-family: var(--f-serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--bone-dim);
  font-weight: 300;
  margin-bottom: 28px;
  min-height: 120px;
}
.review-meta {
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone-soft);
}
.review-meta .name { color: var(--bone); }
.review-product {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-top: 8px;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1000px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── JOURNAL ── */
.journal-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 80px 48px;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.journal-feature-image {
  aspect-ratio: 5/4;
  overflow: hidden;
}
.journal-feature-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.9);
}
.journal-feature h2 {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
  margin: 20px 0 28px;
}
.journal-feature p {
  font-family: var(--f-serif);
  font-size: 19px;
  color: var(--bone-dim);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 300;
}

.journal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--rule);
}
.journal-card { background: var(--ink); padding: 40px; }
.journal-card-img {
  aspect-ratio: 4/3;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--ink-2);
}
.journal-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s, filter 0.6s;
  filter: grayscale(0.3) brightness(0.85);
}
.journal-card:hover .journal-card-img img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.journal-card-kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.journal-card-title {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.journal-card-excerpt {
  font-family: var(--f-serif);
  font-size: 15px;
  color: var(--bone-dim);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
}
.journal-card-meta {
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--bone-soft);
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .journal-feature { grid-template-columns: 1fr; padding: 60px 20px; gap: 30px; }
  .journal-list { grid-template-columns: 1fr; }
}

/* ── CHECKOUT ── */
.checkout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 140px 48px 80px;
  max-width: 1500px;
  margin: 0 auto;
}
.checkout-steps {
  display: flex; gap: 0;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rule);
}
.checkout-step {
  flex: 1;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-soft);
  padding-bottom: 16px;
  border-bottom: 2px solid transparent;
  margin-bottom: -31px;
}
.checkout-step.on { color: var(--gold); border-bottom-color: var(--gold); }
.checkout-step .num { display: block; font-family: var(--f-display); font-size: 24px; color: inherit; margin-bottom: 6px; letter-spacing: 0; }
.checkout-summary {
  background: var(--ink-2);
  padding: 40px;
  position: sticky;
  top: 100px;
  height: fit-content;
  border: 1px solid var(--rule);
}
.checkout-summary h3 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.checkout-item {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.checkout-item-img { width: 80px; height: 80px; background-size: cover; background-position: center; flex-shrink: 0; }
.checkout-item-info { flex: 1; }
.checkout-item-name { font-family: var(--f-display); font-size: 20px; line-height: 1.1; margin-bottom: 4px; }
.checkout-item-sub { font-family: var(--f-mono); font-size: 9px; letter-spacing: 2px; color: var(--bone-soft); }
.checkout-item-price { font-family: var(--f-display); color: var(--gold); font-size: 18px; }
.checkout-totals {
  margin-top: 24px;
  padding-top: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.checkout-totals-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  color: var(--bone-dim);
}
.checkout-totals-row.grand {
  border-top: 1px solid var(--rule);
  margin-top: 12px;
  padding-top: 20px;
  color: var(--bone);
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
}
.checkout-totals-row.grand span:last-child { color: var(--gold); }
.checkout-success {
  text-align: center;
  padding: 180px 48px;
  max-width: 700px;
  margin: 0 auto;
}
.checkout-success h1 {
  font-family: var(--f-display);
  font-size: clamp(56px, 8vw, 100px);
  margin: 28px 0 20px;
}
.checkout-success h1 em { font-family: var(--f-serif); font-weight: 300; color: var(--gold); }

@media (max-width: 1000px) {
  .checkout { grid-template-columns: 1fr; padding: 120px 20px 60px; gap: 40px; }
  .checkout-summary { position: static; padding: 28px; }
}

/* ── hero intro: pause until loader is done so the fade-in actually reads ── */
.hero-kicker,
.hero-title .word span,
.hero-sub,
.hero-stage,
.hero-scroll {
  animation-play-state: paused;
}
body.ready .hero-kicker,
body.ready .hero-title .word span,
body.ready .hero-sub,
body.ready .hero-stage,
body.ready .hero-scroll {
  animation-play-state: running;
}
