:root {
  --rose: #E0246B;
  --ember: #C45A2A;
  --ink: #f6ecef;
  --muted: #9a858c;
  --void: #070406;
  --glass: rgba(7, 4, 6, .62);
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--void);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  text-wrap: pretty;
  cursor: none;
}
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; pointer-events: none; }

.cursor {
  position: fixed; z-index: 80; width: 18px; height: 18px;
  border: 1.5px solid #fff; border-radius: 50%;
  pointer-events: none; mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
}
.cursor.is-hot { width: 44px; height: 44px; background: rgba(224,36,107,.28); border-color: var(--rose); }
.splash { position: fixed; inset: 0; z-index: 50; pointer-events: none; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 6vw;
  background: var(--glass);
  backdrop-filter: saturate(160%) blur(18px);
}
.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px; font-weight: 600; letter-spacing: .04em; color: #fff;
}
.nav nav { display: flex; gap: 22px; font-size: 13px; color: var(--muted); }
.nav a:hover { color: #fff; }

.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: end start;
  overflow: hidden;
  perspective: 1200px;
}
.hero-stage {
  position: absolute; inset: -8%;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,4,6,.72) 0%, rgba(7,4,6,.12) 55%, rgba(7,4,6,.5) 100%),
    linear-gradient(180deg, rgba(7,4,6,.1) 0%, rgba(7,4,6,.84) 100%);
}
.hero-copy { position: relative; z-index: 2; padding: 18vh 8vw 10vh; max-width: 920px; }
.eyebrow { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.72); }
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(46px, 8.4vw, 104px);
  line-height: .9; letter-spacing: -.03em; margin: 14px 0 18px;
}
.lede { max-width: 460px; font-size: 17px; line-height: 1.5; color: rgba(246,236,239,.84); }
.cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  background: var(--rose); color: #fff; font-weight: 700; font-size: 14px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,.38); }

.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100svh; }
.split article { position: relative; min-height: 100svh; overflow: hidden; perspective: 900px; }
.split img {
  position: absolute; inset: -6%; width: 112%; height: 112%; object-fit: cover;
  will-change: transform;
}
.split .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 8vw 6vw;
  background: linear-gradient(180deg, transparent, rgba(7,4,6,.9));
}
.split h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 6vw, 78px); margin: 0 0 10px; line-height: .92;
}
.split p { margin: 0; max-width: 360px; color: var(--muted); }

.whisper { padding: 18vh 8vw; max-width: 1100px; }
.whisper p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4.6vw, 58px); line-height: 1.12; margin: 0 0 18px;
}
.whisper em { font-style: italic; color: #fff; }
.ember { color: var(--ember); }

.orbit {
  position: relative; min-height: 100svh;
  perspective: 1600px; overflow: hidden;
}
.orbit h2 {
  position: relative; z-index: 2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 6vw, 72px);
  margin: 10vh 8vw 0; line-height: .95;
}
.orbit-stage {
  position: relative; height: 72svh;
  transform-style: preserve-3d;
  display: grid; place-items: center;
}
.orb {
  position: absolute; width: min(38vw, 280px); aspect-ratio: 3/4;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform-style: preserve-3d;
  will-change: transform;
}
.orb img { width: 100%; height: 100%; object-fit: cover; }

.trail {
  position: relative; min-height: 70svh;
  display: grid; place-items: center; overflow: hidden;
}
.trail h2 {
  position: relative; z-index: 2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 8vw, 96px); margin: 0; pointer-events: none;
}
.trail-img {
  position: absolute; width: 170px; height: 230px;
  object-fit: cover; border-radius: 10px;
  pointer-events: none; opacity: 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}

.tiers { padding: 8vh 8vw 16vh; }
.tiers h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 5vw, 68px); margin: 0 0 28px;
}
.tier-row { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: end; }
.tier-row ol { margin: 0; padding: 0; list-style: none; }
.tier-row li { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); }
.tier-row b { display: block; font-size: 18px; margin-bottom: 6px; }
.tier-row span { color: var(--muted); font-size: 15px; line-height: 1.45; }
.tilt-photo {
  border-radius: 18px; overflow: hidden;
  transform-style: preserve-3d; perspective: 800px;
}
.tilt-photo img { width: 100%; height: 100%; object-fit: cover; }

.end { padding: 0 8vw 16vh; display: grid; gap: 18px; }
.end .btn { width: fit-content; }
footer {
  padding: 28px 8vw 48px; color: var(--muted); font-size: 13px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
footer a { color: var(--rose); }

@media (max-width: 800px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .split, .tier-row { grid-template-columns: 1fr; }
  .split article { min-height: 72svh; }
  .orb { width: 42vw; }
}
@media (prefers-reduced-motion: reduce) {
  body { cursor: auto; }
  .cursor, .splash { display: none; }
}
