/* === RESET === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --black:#0A0A0A;
  --bg:#111;
  --card:#181818;
  --border:#252525;
  --gold:#C5A467;
  --gold-dim:#A08A50;
  --gold-light:#E8D5A8;
  --cream:#FAF7F2;
  --muted:#777;
  --text:#D4D0C8;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Inter',system-ui,sans-serif;color:var(--text);background:var(--bg);overflow-x:hidden;line-height:1.65;font-weight:300}
h1,h2,h3{font-family:'Cormorant Garamond',serif;font-weight:300;color:var(--cream);letter-spacing:.01em}
h2{font-size:clamp(1.8rem,3.5vw,2.8rem);line-height:1.2}
a{color:inherit;text-decoration:none}
ul{list-style:none}
img{display:block;max-width:100%}

.eyebrow{font-size:.7rem;letter-spacing:.2em;color:var(--gold);margin-bottom:.8rem;font-weight:400}

/* === BUTTONS === */
.btn{display:inline-block;font-size:.75rem;letter-spacing:.08em;padding:.9rem 2.4rem;font-family:'Inter',sans-serif;font-weight:400;cursor:pointer;border:none;transition:all .3s}
.btn--gold{background:var(--gold);color:var(--black);font-weight:500}
.btn--gold:hover{background:var(--gold-light);transform:translateY(-1px);box-shadow:0 4px 20px rgba(197,164,103,.25)}
.btn--ghost{background:transparent;border:1px solid rgba(255,255,255,.15);color:var(--muted);font-size:.7rem;padding:.75rem 1.8rem}
.btn--ghost:hover{border-color:rgba(255,255,255,.3);color:var(--cream)}
.btn--sm{padding:.65rem 1.6rem;font-size:.68rem}

/* === NAV === */
.nav{position:fixed;top:0;left:0;right:0;z-index:100;padding:1rem 3rem;display:flex;align-items:center;justify-content:space-between;transition:background .4s,backdrop-filter .4s}
.nav.scrolled{background:rgba(14,14,14,.95);backdrop-filter:blur(16px);border-bottom:1px solid var(--border)}
.nav__logo{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:400;color:var(--cream);letter-spacing:.1em;white-space:nowrap}
.nav__logo em{font-style:italic;color:var(--gold);letter-spacing:.04em;font-size:1.3rem}
.nav__links{display:flex;gap:2rem;font-size:.75rem;letter-spacing:.06em}
.nav__links a{padding:.3rem 0;position:relative;color:var(--muted);transition:color .3s}
.nav__links a:hover{color:var(--gold)}
.nav__right{display:flex;align-items:center;gap:.8rem}
.nav__cta{font-size:.65rem;letter-spacing:.14em;padding:.55rem 1.4rem;border:1px solid var(--gold);color:var(--gold);transition:all .3s}
.nav__cta:hover{background:var(--gold);color:var(--black)}
.nav__menu{display:none;background:none;border:none;color:var(--cream);font-size:1.4rem;cursor:pointer;padding:.3rem}

/* MOBILE MENU */
.mobile-menu{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(10,10,10,.97);z-index:99;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2rem;opacity:0;pointer-events:none;transition:opacity .35s}
.mobile-menu.open{opacity:1;pointer-events:all}
.mobile-menu a{font-family:'Cormorant Garamond',serif;font-size:2rem;color:var(--cream);letter-spacing:.08em;transition:color .3s}
.mobile-menu a:hover{color:var(--gold)}

/* === HERO === */
.hero{min-height:100vh;display:flex;align-items:center;justify-content:center;position:relative;background:var(--black);overflow:hidden}
.hero__bg{position:absolute;inset:0}
.hero__bg img{width:100%;height:100%;object-fit:cover;object-position:center 20%;filter:brightness(.45)}
.hero__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,10,10,.95) 0%,rgba(10,10,10,.3) 40%,rgba(10,10,10,.1) 70%,rgba(10,10,10,.4) 100%)}
.hero__content{text-align:center;z-index:1;padding:2rem}
.hero__eyebrow{font-size:.65rem;letter-spacing:.18em;color:var(--gold-dim);margin-bottom:2rem}
.hero__name{font-size:clamp(3.5rem,10vw,8rem);line-height:.9;margin-bottom:1rem;font-weight:300;color:var(--cream)}
.hero__name em{font-style:italic;color:var(--gold)}
.hero__tagline{font-size:.85rem;letter-spacing:.12em;color:var(--muted);margin-bottom:3rem}
.hero__ctas{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.hero__scroll{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%)}
.hero__scroll span{display:block;width:1px;height:40px;background:linear-gradient(var(--gold),transparent);animation:drop 2s infinite}
@keyframes drop{0%{opacity:0;transform:translateY(-10px)}50%{opacity:1}100%{opacity:0;transform:translateY(10px)}}

/* === MARQUEE === */
.marquee{border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:.8rem 0;overflow:hidden;background:var(--black)}
.marquee__inner{display:flex;gap:2.5rem;animation:scroll 20s linear infinite;white-space:nowrap;font-family:'Cormorant Garamond',serif;font-size:1rem;font-style:italic;color:var(--gold-dim);letter-spacing:.08em}
@keyframes scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* === STORY === */
.story{padding:7rem 3rem;background:var(--bg)}
.story__inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1.2fr;gap:4rem;align-items:center}
.story__img img{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:center top;border:1px solid var(--border)}
.story__img-caption{font-size:.7rem;color:var(--muted);letter-spacing:.1em;margin-top:.8rem;font-style:italic}

/* === MUSE === */
.muse{padding:0;background:var(--black);position:relative;overflow:hidden}
.muse__single{position:relative;height:50vh;max-height:500px;overflow:hidden}
.muse__hero-img{width:100%;height:100%;object-fit:cover;object-position:center 15%;filter:brightness(.3) contrast(1.1)}

/* === EDITORIAL === */
.editorial{padding:0;background:var(--black)}
.editorial__inner{display:grid;grid-template-columns:1fr 1fr;min-height:80vh}
.editorial__img{width:100%;height:100%;object-fit:cover;filter:brightness(.7) grayscale(.2)}
.editorial__quote{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:4rem;background:var(--bg)}
.editorial__quote blockquote{font-family:'Cormorant Garamond',serif;font-size:clamp(1.6rem,3vw,2.4rem);font-style:italic;color:var(--cream);line-height:1.5;text-align:center}
.editorial__quote cite{display:block;margin-top:1.5rem;font-size:.7rem;letter-spacing:.2em;color:var(--gold);font-style:normal}
.story__text p{color:#bbb;margin-bottom:1.2rem;font-size:.92rem;line-height:1.9}
.story__sig{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-style:italic;color:var(--gold);margin-top:1.5rem}

/* === SHOP / PRODUCT GRID === */
.shop{padding:7rem 3rem;background:var(--black)}
.shop__header{text-align:center;margin-bottom:2.5rem}
.shop__subtitle{font-size:.85rem;color:var(--muted);max-width:440px;margin:.6rem auto 0}
.shop__filters{display:flex;justify-content:center;gap:.5rem;margin-bottom:3rem;flex-wrap:wrap}
.filter{background:transparent;border:1px solid var(--border);color:#999;font-family:'Inter',sans-serif;font-size:.7rem;letter-spacing:.04em;padding:.5rem 1.3rem;cursor:pointer;transition:all .25s}
.filter:hover{border-color:#555;color:var(--cream)}
.filter.active{border-color:var(--gold);color:var(--gold);background:rgba(197,164,103,.06)}

.products{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.2rem;max-width:1200px;margin:0 auto}
.product{background:var(--card);border:1px solid var(--border);overflow:hidden;transition:all .35s;cursor:pointer;position:relative}
.product:hover{border-color:var(--gold-dim);transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,.4)}
.product:hover .product__btn{background:var(--gold-light)}
.product__img{aspect-ratio:1;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.product__visual{display:flex;align-items:center;justify-content:center;width:100%;height:100%}
.product__tag{position:absolute;top:.8rem;left:.8rem;font-size:.55rem;letter-spacing:.15em;padding:.3rem .7rem;background:var(--gold);color:var(--black);font-weight:500}
.product__info{padding:1rem 1.2rem 1.3rem}
.product__cat{font-size:.58rem;letter-spacing:.18em;color:var(--gold-dim);margin-bottom:.3rem}
.product__name{font-family:'Cormorant Garamond',serif;font-size:1.15rem;color:var(--cream);margin-bottom:.15rem;font-weight:400}
.product__desc{font-size:.75rem;color:var(--muted);line-height:1.5;margin-bottom:.7rem}
.product__bottom{display:flex;align-items:center;justify-content:space-between}
.product__price{font-family:'Cormorant Garamond',serif;font-size:1.4rem;color:var(--gold);font-weight:400}
.product__btn{font-size:.65rem;letter-spacing:.06em;padding:.5rem 1.1rem;background:var(--gold);color:var(--black);cursor:pointer;transition:all .25s;font-family:'Inter',sans-serif;font-weight:500;border:none}
.product__btn:hover{background:var(--gold-light);transform:translateY(-1px);box-shadow:0 3px 12px rgba(197,164,103,.2)}

/* === FEATURED === */
.featured{padding:7rem 3rem;background:var(--bg)}
.featured__inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.featured__visual{aspect-ratio:1;background:linear-gradient(135deg,#0a0a0a,#1a1611);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;position:relative}
.featured__badge{position:absolute;top:1.2rem;left:1.2rem;background:var(--gold);color:var(--black);font-size:.55rem;letter-spacing:.18em;padding:.35rem 1rem;font-weight:500}
.featured__candle{display:flex;align-items:center;justify-content:center;width:100%;height:100%}
.featured__candle svg{width:55%;max-width:200px}
.featured__desc{font-size:.9rem;color:var(--muted);line-height:1.8;margin-bottom:1.5rem}
.featured__price{font-family:'Cormorant Garamond',serif;font-size:2.8rem;color:var(--gold);margin-bottom:1.5rem;font-weight:400}
.featured__specs{margin-bottom:2rem}
.featured__specs li{padding:.55rem 0;border-bottom:1px solid var(--border);font-size:.8rem;display:flex;justify-content:space-between}
.featured__specs li span:first-child{color:var(--muted);letter-spacing:.08em;font-size:.7rem}
.featured__specs li span:last-child{color:var(--cream)}

/* === FRAGRANCE === */
.fragrance-section{padding:7rem 3rem;background:var(--black)}
.fragrance__inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.3fr 1fr;gap:4rem;align-items:center}
.fragrance__text p{font-size:.9rem;color:var(--muted);line-height:1.8;margin-bottom:2rem}
.fragrance__trio{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-bottom:2rem}
.frag-item{text-align:center}
.frag-item__swatch{width:60px;height:60px;border-radius:50%;margin:0 auto .7rem;border:1px solid var(--border)}
.frag-item__name{font-family:'Cormorant Garamond',serif;font-size:1.05rem;color:var(--cream);margin-bottom:.2rem}
.frag-item__notes{font-size:.65rem;color:var(--muted);line-height:1.4;margin-bottom:.3rem}
.frag-item__price{font-family:'Cormorant Garamond',serif;font-size:1rem;color:var(--gold)}
.fragrance__visual{display:flex;align-items:center;justify-content:center;aspect-ratio:3/4;background:linear-gradient(135deg,#0e0e0e,#1a1611);border:1px solid var(--border)}

/* === SUBSCRIPTION === */
.subscription{padding:7rem 3rem;background:var(--bg);border-top:1px solid var(--border)}
.sub__inner{max-width:900px;margin:0 auto;text-align:center}
.sub__text p{color:var(--muted);font-size:.9rem;line-height:1.8;max-width:520px;margin:0 auto 2.5rem}
.sub__plans{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.sub__plan{background:var(--card);border:1px solid var(--border);padding:2.2rem 1.5rem;text-align:center;position:relative;transition:all .35s}
.sub__plan:hover{border-color:var(--gold-dim);transform:translateY(-3px);box-shadow:0 6px 24px rgba(0,0,0,.3)}
.sub__plan--featured{border-color:var(--gold);background:linear-gradient(160deg,#1a1611,#161210);box-shadow:0 0 40px rgba(197,164,103,.06)}
.sub__plan--featured:hover{box-shadow:0 6px 30px rgba(197,164,103,.12)}
.sub__plan-badge{position:absolute;top:-.6rem;left:50%;transform:translateX(-50%);background:var(--gold);color:var(--black);font-size:.6rem;letter-spacing:.08em;padding:.3rem 1rem;font-weight:500;white-space:nowrap}
.sub__plan-icon{margin-bottom:1rem}
.sub__plan-name{font-family:'Cormorant Garamond',serif;font-size:1.2rem;color:var(--cream);margin-bottom:.5rem}
.sub__plan-price{font-family:'Cormorant Garamond',serif;font-size:2.4rem;color:var(--gold);margin-bottom:.4rem}
.sub__plan-price span{font-size:.85rem;color:var(--gold-dim)}
.sub__plan-desc{font-size:.78rem;color:#999;line-height:1.5;margin-bottom:1.5rem}

/* Sub proof */
.sub__proof{display:flex;justify-content:center;gap:2rem;margin-bottom:2.5rem;flex-wrap:wrap}
.sub__proof span{font-size:.72rem;color:var(--gold-dim);letter-spacing:.02em}

/* Product subscription styles */
.product__tag--sub{background:transparent;border:1px solid var(--gold);color:var(--gold)}
.product__pricing{display:flex;flex-direction:column;gap:.1rem}
.product__sub-price{font-size:.6rem;color:var(--gold-dim);letter-spacing:.06em}
.product__btn--sub{background:transparent;border:1px solid var(--gold);color:var(--gold)}
.product__btn--sub:hover{background:var(--gold);color:var(--black)}

/* === POETRY === */
.poetry{padding:7rem 3rem;background:var(--bg)}
.poem-card{max-width:600px;margin:0 auto;padding:3rem;border:1px solid var(--border);background:var(--card)}
.poem-card blockquote{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-style:italic;line-height:1.9;color:var(--cream)}
.poem-card cite{display:block;margin-top:1.5rem;font-size:.7rem;letter-spacing:.15em;color:var(--gold);font-style:normal}

/* === NEWSLETTER === */
.newsletter{padding:5rem 3rem;background:var(--black);text-align:center;border-top:1px solid var(--border)}
.newsletter__sub{font-size:.85rem;color:var(--muted);max-width:380px;margin:.5rem auto 2rem}
.newsletter__form{display:flex;max-width:440px;margin:0 auto;gap:.4rem}
.newsletter__form input{flex:1;padding:.8rem 1.2rem;background:var(--card);border:1px solid var(--border);color:var(--cream);font-family:'Inter',sans-serif;font-size:.8rem;outline:none;transition:border .3s}
.newsletter__form input::placeholder{color:#555}
.newsletter__form input:focus{border-color:var(--gold)}
.newsletter__form button{padding:.8rem 1.8rem;background:var(--gold);color:var(--black);border:none;font-family:'Inter',sans-serif;font-size:.65rem;letter-spacing:.14em;cursor:pointer;font-weight:500;transition:background .3s}
.newsletter__form button:hover{background:var(--gold-light)}
.newsletter__thanks{font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-style:italic;color:var(--gold);padding:1rem 0}

/* === FOOTER === */
.footer{padding:4rem 3rem 2rem;max-width:1100px;margin:0 auto}
.footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer__brand{font-family:'Cormorant Garamond',serif;font-size:1.2rem;letter-spacing:.08em;color:var(--gold);margin-bottom:.6rem}
.footer__tag{font-size:.8rem;color:var(--muted);max-width:260px}
.footer__heading{font-size:.62rem;letter-spacing:.2em;font-weight:500;margin-bottom:1rem;color:var(--cream)}
.footer ul li{margin-bottom:.5rem}
.footer ul a{font-size:.8rem;color:var(--muted);transition:color .3s}
.footer ul a:hover{color:var(--gold)}
.footer__bar{border-top:1px solid var(--border);padding-top:1.5rem;display:flex;justify-content:space-between;font-size:.68rem;color:#555;letter-spacing:.04em}

/* === STICKY CTA === */
.sticky-cta{position:fixed;bottom:0;left:0;right:0;z-index:90;background:rgba(10,10,10,.95);backdrop-filter:blur(12px);border-top:1px solid var(--border);padding:.7rem 2rem;display:flex;align-items:center;justify-content:center;gap:1.5rem;transform:translateY(100%);transition:transform .4s ease;pointer-events:none}
.sticky-cta.visible{transform:translateY(0);pointer-events:all}
.sticky-cta__text{font-size:.75rem;color:var(--muted);letter-spacing:.04em}
.sticky-cta__btn{background:var(--gold);color:var(--black);font-size:.7rem;font-weight:500;letter-spacing:.06em;padding:.55rem 1.6rem;font-family:'Inter',sans-serif;transition:all .25s;text-decoration:none}
.sticky-cta__btn:hover{background:var(--gold-light);transform:translateY(-1px)}

/* === HERO FX === */
.hero__name{position:relative}
@keyframes shimmerSweep{
  0%{background-position:-200% center}
  100%{background-position:200% center}
}
.fx-shimmer{
  background:linear-gradient(90deg,var(--cream) 0%,var(--cream) 35%,var(--gold) 50%,var(--cream) 65%,var(--cream) 100%);
  background-size:200% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:shimmerSweep 2.5s ease-in-out;
}
.fx-shimmer em{
  -webkit-text-fill-color:transparent;
}
@keyframes glowPulse{
  0%,100%{text-shadow:none}
  50%{text-shadow:0 0 40px rgba(197,164,103,.25),0 0 80px rgba(197,164,103,.1)}
}
.fx-glow{animation:glowPulse 3s ease}

/* === ANIMATIONS === */
.fade-up{opacity:0;transform:translateY(30px);transition:opacity .8s cubic-bezier(.25,.1,.25,1),transform .8s cubic-bezier(.25,.1,.25,1)}
.fade-up.visible{opacity:1;transform:translateY(0)}
.fade-up.delay-1{transition-delay:.15s}
.fade-up.delay-2{transition-delay:.3s}
.fade-up.delay-3{transition-delay:.45s}

/* Image reveal */
.img-reveal{opacity:0;transform:scale(1.04);transition:opacity 1.2s ease,transform 1.6s ease}
.img-reveal.visible{opacity:1;transform:scale(1)}



/* === RESPONSIVE === */
/* === TABLET === */
@media(max-width:1024px){
  .products{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}
  .story__inner,.featured__inner,.fragrance__inner{gap:2.5rem}
}

/* === MOBILE === */
@media(max-width:768px){
  .nav{padding:.8rem 1.2rem}
  .nav__links{display:none}
  .nav__cta{display:none}
  .nav__menu{display:block}
  section,.shop,.story,.featured,.fragrance-section,.poetry,.newsletter{padding:3.5rem 1.2rem}
  .hero__name{font-size:3.2rem}
  .hero__tagline{font-size:.7rem;letter-spacing:.15em}
  .hero__ctas{flex-direction:column;align-items:center;gap:.7rem}
  .hero__ctas .btn{width:100%;max-width:280px;text-align:center}
  .muse__single{height:60vh}
  .muse__text{flex-direction:column;gap:1rem}
  .story__inner{grid-template-columns:1fr;gap:2rem}
  .story__img img{aspect-ratio:4/5}
  .shop__filters{gap:.35rem}
  .filter{padding:.4rem .8rem;font-size:.6rem}
  .products{grid-template-columns:repeat(2,1fr);gap:.8rem}
  .product__info{padding:.8rem}
  .product__name{font-size:1rem}
  .product__desc{font-size:.7rem;margin-bottom:.5rem}
  .product__btn{padding:.4rem .7rem;font-size:.55rem}
  .featured__inner{grid-template-columns:1fr;gap:2rem}
  .featured__visual{aspect-ratio:4/3}
  .editorial__inner{grid-template-columns:1fr}
  .editorial__img{aspect-ratio:4/3;height:auto}
  .editorial__quote{padding:2.5rem 1.2rem}
  .editorial__quote blockquote{font-size:1.3rem}
  .fragrance__inner{grid-template-columns:1fr;gap:2rem}
  .fragrance__visual{display:none}
  .fragrance__trio{gap:.6rem}
  .frag-item__swatch{width:48px;height:48px}
  .frag-item__name{font-size:.9rem}
  .frag-item__notes{font-size:.6rem}
  .footer__grid{grid-template-columns:1fr 1fr;gap:1.5rem}
  .footer__bar{flex-direction:column;gap:.5rem;text-align:center}
  .newsletter__form{flex-direction:column}
  .sub__plans{grid-template-columns:1fr;max-width:340px;margin:0 auto}
  .subscription{padding:3.5rem 1.2rem}
  .sticky-cta__text{display:none}
  .sticky-cta{justify-content:center;padding:.6rem 1rem}
  .sub__proof{flex-direction:column;gap:.4rem;align-items:center}
  h2{font-size:1.8rem}
}

/* === SMALL MOBILE === */
@media(max-width:400px){
  .products{grid-template-columns:1fr}
  .hero__name{font-size:2.6rem}
  .muse__text span{font-size:.85rem}
  .fragrance__trio{grid-template-columns:1fr}
  .frag-item{display:flex;align-items:center;gap:1rem;text-align:left}
  .frag-item__swatch{margin:0;flex-shrink:0}
}
