/* ===================================================================
   GOLDEN MOON — v2.0 · MODERN
   Fraunces + Geist · Animated mesh · Blended images · Cursor blob
   ================================================================== */

:root {
  --bg-deep:      #06080F;
  --bg:           #0A0E1A;
  --bg-soft:      #0F1525;
  --line:         #1A2238;

  --gold:         #C9A961;
  --gold-bright:  #F0D38C;
  --gold-soft:    #B89545;
  --gold-deep:    #6E5421;
  --gold-glow:    rgba(232, 205, 131, .5);

  --rose:         #C4A28E;
  --musk:         #D4C2A4;
  --teal:         #0F4751;

  --ivory:        #F7F2E8;
  --ivory-dim:    #B8B5AB;
  --muted:        #5C6582;

  --ff-display:   "Fraunces", "Times New Roman", serif;
  --ff-body:      "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-mono:      "Geist Mono", "JetBrains Mono", monospace;

  --max:          1380px;
  --pad:          clamp(1.25rem, 4vw, 3.5rem);

  --ease:         cubic-bezier(.22,.61,.36,1);
  --ease-out:     cubic-bezier(.16,1,.3,1);
  --ease-back:    cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-weight: 300;
  background: var(--bg-deep);
  color: var(--ivory);
  line-height: 1.6;
  letter-spacing: -.005em;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 900px) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
em {
  font-style: italic;
  font-family: var(--ff-display);
  font-weight: 300;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
::selection { background: var(--gold); color: var(--bg-deep); }

/* Animated gradient mesh bg */
body::before {
  content: "";
  position: fixed;
  inset: -10%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(201,169,97,.12), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(15,71,81,.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(232,205,131,.08), transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 90%, rgba(110,84,33,.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: meshShift 24s ease-in-out infinite;
  filter: blur(20px);
}
@keyframes meshShift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(2%,-3%) scale(1.05); }
  66%      { transform: translate(-2%,2%) scale(.98); }
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

main, .nav, .footer, .marquee { position: relative; z-index: 2; }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg-deep);
  z-index: 1000;
  display: grid; place-items: center;
  transition: opacity .9s var(--ease), visibility .9s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.loader__circle {
  position: relative;
  width: 110px; height: 110px;
  display: grid; place-items: center;
}
.loader__svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: spin 8s linear infinite;
}
.loader__monogram {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 300;
  font-variation-settings: "SOFT" 100;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.04em;
}
.loader__bar {
  width: 240px; height: 1px;
  background: rgba(201,169,97,.12);
  overflow: hidden;
}
.loader__bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: barFill 1.4s var(--ease-out) infinite;
}
.loader__label {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .35em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: .8;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes barFill {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===== CURSOR ===== */
.cursor-blob {
  position: fixed; top: 0; left: 0;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,205,131,.18) 0%, rgba(201,169,97,.08) 30%, transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(20px);
  mix-blend-mode: screen;
  transition: width .5s var(--ease), height .5s var(--ease);
}
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  box-shadow: 0 0 12px var(--gold-bright);
  transition: transform .2s var(--ease);
}
.cursor-blob.is-hover { width: 380px; height: 380px; }
.cursor-dot.is-hover { transform: translate(-50%, -50%) scale(2.4); }
@media (max-width: 900px) {
  .cursor-blob, .cursor-dot { display: none; }
}

.particles {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: .65;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem var(--pad);
  transition: background .5s var(--ease), padding .5s var(--ease), backdrop-filter .5s;
}
.nav.is-scrolled {
  background: rgba(6,8,15,.72);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  padding: .7rem var(--pad);
  border-bottom: 1px solid rgba(201,169,97,.10);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand { display: flex; align-items: center; gap: .75rem; }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.brand-mark__svg {
  width: 100%; height: 100%;
  display: block;
  filter: drop-shadow(0 0 14px rgba(232,205,131,.35));
  transition: transform .8s var(--ease-out), filter .6s var(--ease);
}
.nav__brand:hover .brand-mark__svg {
  transform: rotate(-12deg) scale(1.06);
  filter: drop-shadow(0 0 18px rgba(232,205,131,.6));
}
.nav__brand-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  font-variation-settings: "SOFT" 100;
  letter-spacing: -.02em;
  color: var(--ivory);
}
.nav__links { display: flex; gap: 2.6rem; }
.nav__link {
  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding: .35rem 0;
  transition: color .4s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .55s var(--ease-out);
}
.nav__link:hover { color: var(--gold-bright); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright) 50%, var(--gold));
  color: var(--bg-deep);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .4s var(--ease-back), box-shadow .4s var(--ease);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(232,205,131,.4);
}
.nav__cta svg { transition: transform .4s var(--ease); }
.nav__cta:hover svg { transform: rotate(-45deg); }

.nav__progress {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: rgba(201,169,97,.05);
}
.nav__progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  width: 0%;
  transition: width .15s linear;
}

@media (max-width: 800px) {
  .nav__links { display: none; }
  .nav__brand-text { font-size: 1rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem var(--pad) 5rem;
  overflow: hidden;
}
.hero__bg-glow {
  position: absolute;
  width: 90vw; height: 90vw;
  max-width: 1100px; max-height: 1100px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,205,131,.22) 0%, rgba(201,169,97,.08) 30%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: breathe 10s ease-in-out infinite;
  z-index: 0;
}
@keyframes breathe {
  0%, 100% { opacity: .8; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;  transform: translate(-50%, -50%) scale(1.12); }
}

.hero__overline {
  display: flex; align-items: center; gap: 1.5rem;
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
.hero__overline .line {
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero__overline span:nth-child(2) {
  display: flex; align-items: center; gap: .8rem;
}
.hero__overline .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(4rem, 16vw, 14rem);
  line-height: .85;
  letter-spacing: -.04em;
  color: var(--ivory);
  margin: 1rem 0 1.5rem;
  position: relative;
  z-index: 3;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
.hero__word { display: block; }
.hero__word--italic {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(80%) rotate(8deg);
  animation: charReveal 1.1s var(--ease-out) forwards;
}
.hero__word .char:nth-child(1) { animation-delay: .25s; }
.hero__word .char:nth-child(2) { animation-delay: .32s; }
.hero__word .char:nth-child(3) { animation-delay: .39s; }
.hero__word .char:nth-child(4) { animation-delay: .46s; }
.hero__word .char:nth-child(5) { animation-delay: .53s; }
.hero__word .char:nth-child(6) { animation-delay: .60s; }
.hero__word--italic .char:nth-child(1) { animation-delay: .75s; }
.hero__word--italic .char:nth-child(2) { animation-delay: .82s; }
.hero__word--italic .char:nth-child(3) { animation-delay: .89s; }
.hero__word--italic .char:nth-child(4) { animation-delay: .96s; }
@keyframes charReveal {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero__bottle-wrap {
  position: relative;
  margin: -2rem auto 2rem;
  width: clamp(220px, 32vw, 380px);
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-18px) rotate(.8deg); }
}
.hero__bottle {
  width: 100%;
  position: relative;
  z-index: 3;
  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,.6))
    drop-shadow(0 0 80px rgba(201,169,97,.35))
    drop-shadow(0 0 30px rgba(232,205,131,.4));
}
.hero__halo {
  position: absolute;
  top: 50%; left: 50%;
  width: 180%; height: 180%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 40%, rgba(232,205,131,.4) 0%, rgba(201,169,97,.18) 25%, transparent 55%);
  filter: blur(30px);
  z-index: 1;
  animation: haloBreathe 5s ease-in-out infinite;
}
@keyframes haloBreathe {
  0%, 100% { opacity: .8; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;  transform: translate(-50%, -50%) scale(1.08); }
}
.hero__bottle-wrap::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(232,205,131,.25), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.hero__lede {
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ivory-dim);
  line-height: 1.7;
  margin: 1.5rem auto 2.5rem;
  font-weight: 300;
  position: relative;
  z-index: 3;
}
.hero__actions {
  display: flex; gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .35em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: .85;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute;
  top: -100%; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--gold-bright));
  animation: scrollLine 2.4s var(--ease-out) infinite;
}
@keyframes scrollLine {
  to { top: 200%; }
}

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  overflow: hidden;
  transition: color .5s var(--ease), border-color .5s var(--ease), transform .4s var(--ease-back), box-shadow .5s var(--ease);
  border: 1px solid transparent;
  cursor: none;
  white-space: nowrap;
}
@media (max-width: 900px) { .btn { cursor: pointer; } }
.btn span { position: relative; z-index: 2; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright) 50%, var(--gold));
  color: var(--bg-deep);
  border-color: var(--gold);
}
.btn--gold::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.btn--gold:hover::before { opacity: 1; }
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -10px rgba(232,205,131,.45);
}

.btn--ghost {
  border-color: rgba(247,242,232,.2);
  color: var(--ivory);
  backdrop-filter: blur(10px);
  background: rgba(247,242,232,.02);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-3px);
}

.btn--line {
  border-color: var(--gold);
  color: var(--gold);
  align-self: flex-start;
  margin-top: 1rem;
}
.btn--line::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .55s var(--ease-out);
  z-index: 1;
}
.btn--line:hover { color: var(--bg-deep); }
.btn--line:hover::before { transform: scaleY(1); }

.btn--full { width: 100%; justify-content: center; }

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
  overflow: hidden;
  background: var(--bg-soft);
  margin: 5rem 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 12vw;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg-soft), transparent); }
.marquee__track {
  display: flex; gap: 3.5rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--ivory-dim);
  width: max-content;
  letter-spacing: -.02em;
}
.marquee__track .dot {
  color: var(--gold);
  font-style: normal;
  font-family: var(--ff-body);
}
.marquee:hover .marquee__track { animation-duration: 80s; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
section {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  position: relative;
}
.section__label {
  display: flex; align-items: center; gap: .9rem;
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.section__label .num { color: var(--gold-deep); font-weight: 500; }
.section__label::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
  display: block;
}

/* ===== MANIFESTO ===== */
.manifesto {
  max-width: var(--max);
  margin: 0 auto;
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.manifesto__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.04em;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.manifesto__title em {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.manifesto__body {
  display: flex; flex-direction: column; gap: 1.6rem;
  max-width: 580px;
}
.manifesto__body p {
  font-size: 1.05rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  font-weight: 300;
}
.manifesto__pillars {
  display: flex; flex-direction: column; gap: 1.1rem;
  margin-top: 1.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.manifesto__pillars li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ivory-dim);
  font-size: .95rem;
  font-weight: 300;
}
.manifesto__pillars li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 8px; height: 1px;
  background: var(--gold);
}
.manifesto__pillars strong {
  color: var(--ivory);
  font-weight: 500;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-variation-settings: "SOFT" 100;
  letter-spacing: -.01em;
}
@media (max-width: 900px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== COLLECTION ===== */
.collection {
  max-width: var(--max);
  margin: 0 auto;
}
.collection__head {
  text-align: center;
  margin-bottom: 7rem;
}
.collection__head .section__label { justify-content: center; }
.collection__head .section__label::before { display: none; }
.collection__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: .95;
  letter-spacing: -.04em;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.collection__title em {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.collection__lede {
  margin-top: 1.5rem;
  color: var(--ivory-dim);
  font-size: 1.1rem;
  font-weight: 300;
}

.perfume {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 7rem 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.perfume:last-child { border-bottom: 1px solid var(--line); }
.perfume--reverse .perfume__visual { order: 2; }

.perfume__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid; place-items: center;
  overflow: visible;
}
.perfume__letter {
  position: absolute;
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(14rem, 32vw, 32rem);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,97,.18);
  letter-spacing: -.06em;
  user-select: none;
  pointer-events: none;
  transition: transform 1.4s var(--ease-out), -webkit-text-stroke-color 1.4s var(--ease-out);
  z-index: 1;
}
.perfume:hover .perfume__letter {
  transform: scale(1.06) translateY(-10px);
  -webkit-text-stroke-color: rgba(232,205,131,.4);
}
.perfume__bottle {
  width: 62%;
  position: relative;
  z-index: 3;
  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,.7))
    drop-shadow(0 0 60px rgba(201,169,97,.3))
    drop-shadow(0 0 20px rgba(232,205,131,.4));
  transition: transform .9s var(--ease-out), filter .9s var(--ease);
}
.perfume:hover .perfume__bottle {
  transform: translateY(-14px) scale(1.04);
  filter:
    drop-shadow(0 40px 70px rgba(0,0,0,.8))
    drop-shadow(0 0 80px rgba(232,205,131,.5))
    drop-shadow(0 0 30px rgba(232,205,131,.6));
}
.perfume__glow {
  position: absolute;
  width: 90%; height: 90%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,205,131,.3), rgba(201,169,97,.1) 35%, transparent 65%);
  filter: blur(40px);
  z-index: 2;
  transition: opacity .8s var(--ease);
}
.perfume__glow--rose { background: radial-gradient(circle, rgba(196,162,142,.35), rgba(196,162,142,.1) 35%, transparent 65%); }
.perfume__glow--musk { background: radial-gradient(circle, rgba(212,194,164,.35), rgba(212,194,164,.1) 35%, transparent 65%); }

.perfume__info { display: flex; flex-direction: column; gap: 1.4rem; }
.perfume__num {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .35em;
  color: var(--gold);
  text-transform: uppercase;
}
.perfume__name {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -.04em;
  color: var(--ivory);
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.perfume__name-sub {
  display: block;
  font-style: italic;
  font-size: .32em;
  color: var(--gold);
  margin-top: .6rem;
  letter-spacing: -.01em;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.perfume__desc {
  font-size: 1.08rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  max-width: 480px;
  font-weight: 300;
}
.perfume__notes {
  display: flex; flex-direction: column;
  gap: .7rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: .5rem;
}
.note {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: baseline;
}
.note span {
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}
.note b {
  font-weight: 400;
  font-family: var(--ff-display);
  font-size: 1.18rem;
  color: var(--ivory);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  letter-spacing: -.01em;
}
.perfume__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: .5rem;
}
.perfume__meta span:first-child {
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--ivory-dim);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.perfume__price {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -.02em;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
@media (max-width: 900px) {
  .perfume { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 0; }
  .perfume--reverse .perfume__visual { order: 0; }
  .perfume__letter { font-size: clamp(12rem, 60vw, 22rem); }
}

/* ===== ATELIER ===== */
.atelier { position: relative; overflow: hidden; }
.atelier__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(15,71,81,.2), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(201,169,97,.14), transparent 60%);
  pointer-events: none;
}
.atelier__inner {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.atelier__inner .section__label { justify-content: center; }
.atelier__inner .section__label::before { display: none; }
.atelier__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 2.5rem;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.atelier__title em {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.atelier__body {
  font-size: 1.12rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  max-width: 740px;
  margin: 0 auto 4.5rem;
  font-weight: 300;
}
.atelier__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding-top: 3.5rem;
  border-top: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -.04em;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.stat sup { font-size: .5em; vertical-align: top; }
.stat span {
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--ivory-dim);
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .atelier__stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
}

/* ===== CONTACT ===== */
.contact__inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.contact__inner .section__label { justify-content: center; }
.contact__inner .section__label::before { display: none; }
.contact__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -.04em;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.contact__title em {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.contact__lede {
  color: var(--ivory-dim);
  font-size: 1.08rem;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
.contact__form {
  display: flex; flex-direction: column;
  gap: 1.6rem;
  text-align: left;
}
.field { position: relative; }
.field input {
  width: 100%;
  padding: 1.5rem 0 .7rem;
  font-size: 1rem;
  font-family: var(--ff-body);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  outline: none;
  transition: border-color .4s var(--ease);
  font-weight: 300;
}
.field input:focus { border-bottom-color: var(--gold); }
.field label {
  position: absolute;
  left: 0;
  top: 1.5rem;
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: -.005em;
  pointer-events: none;
  transition: top .4s var(--ease), font-size .4s var(--ease), color .4s var(--ease), letter-spacing .4s var(--ease);
  font-weight: 300;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: 0;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--ff-mono);
}
.contact__legal {
  font-family: var(--ff-mono);
  font-size: .7rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: .05em;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 5rem var(--pad) 2.5rem;
  background: var(--bg-deep);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 1.2rem; }
.footer__logo {
  width: 64px; height: 64px;
  display: block;
  filter: drop-shadow(0 0 24px rgba(232,205,131,.3));
}
.footer__logo svg { width: 100%; height: 100%; display: block; }
.footer__brand p {
  color: var(--ivory-dim);
  max-width: 340px;
  font-size: .92rem;
  line-height: 1.7;
  font-weight: 300;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols h4 {
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  font-weight: 500;
}
.footer__cols a {
  display: block;
  color: var(--ivory-dim);
  font-size: .92rem;
  padding: .4rem 0;
  transition: color .3s var(--ease), transform .3s var(--ease);
  font-weight: 300;
}
.footer__cols a:hover {
  color: var(--gold-bright);
  transform: translateX(6px);
}
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer__bottom { flex-direction: column; gap: .7rem; text-align: center; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-block {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out),
    filter 1.1s var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.is-visible .split-word > span { transform: translateY(0); }
.is-visible .split-word:nth-child(1) > span { transition-delay: .05s; }
.is-visible .split-word:nth-child(2) > span { transition-delay: .12s; }
.is-visible .split-word:nth-child(3) > span { transition-delay: .19s; }
.is-visible .split-word:nth-child(4) > span { transition-delay: .26s; }
.is-visible .split-word:nth-child(5) > span { transition-delay: .33s; }
.is-visible .split-word:nth-child(6) > span { transition-delay: .40s; }
.is-visible .split-word:nth-child(7) > span { transition-delay: .47s; }
.is-visible .split-word:nth-child(8) > span { transition-delay: .54s; }

/* ===== CURSOR TRAIL ===== */
.cursor-trail {
  position: fixed;
  width: 6px; height: 6px;
  margin-left: -3px; margin-top: -3px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,211,140,.95) 0%, rgba(232,205,131,.55) 35%, rgba(201,169,97,0) 75%);
  box-shadow: 0 0 8px rgba(240,211,140,.55);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
  animation: cursorTrailFade 1.1s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes cursorTrailFade {
  0%   { opacity: 1; transform: scale(1.15); }
  60%  { opacity: .55; }
  100% { opacity: 0; transform: translateY(-34px) scale(.25); }
}
@media (max-width: 900px) { .cursor-trail { display: none; } }

/* ===== PERFUME 3D TILT ===== */
.collection { perspective: 1600px; }
.perfume {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-out);
  will-change: transform;
}
.perfume__visual,
.perfume__info { transform: translateZ(0); }
.perfume__bottle,
.perfume__letter,
.perfume__glow { will-change: transform; }

/* ===== STAGGERED NOTES REVEAL ===== */
.perfume__notes .note {
  opacity: 0;
  transform: translateX(-22px);
  filter: blur(6px);
  transition:
    opacity .85s var(--ease-out),
    transform .85s var(--ease-out),
    filter .85s var(--ease-out);
}
.perfume__notes.is-visible .note { opacity: 1; transform: translateX(0); filter: blur(0); }
.perfume__notes.is-visible .note:nth-child(1) { transition-delay: .15s; }
.perfume__notes.is-visible .note:nth-child(2) { transition-delay: .35s; }
.perfume__notes.is-visible .note:nth-child(3) { transition-delay: .55s; }

/* ===== HERO TITLE: per-letter breathing baseline ===== */
.hero__title { cursor: none; }
.hero__title .char {
  transition: text-shadow .6s var(--ease);
}
.hero__title.is-breathing .char { text-shadow: 0 0 26px rgba(232,205,131,.18); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-block { filter: none !important; }
  .cursor-trail { display: none !important; }
}
