/* ==========================================================================
   PerfumeSports — Luxury Editorial Stylesheet
   ========================================================================== */

:root{
  --purple: #8140DC;
  --purple-deep: #5C2AA0;
  --mint: #D0E7E6;
  --bg: #FFFFFF;
  --dark: #000000;
  --accent: #EAD9FF;
  --ink: #17151A;
  --ink-soft: #4a4650;

  --font-cursive: "Shadows Into Light", cursive;
  --font-heading: "Cinzel", serif;
  --font-body: "Jost", sans-serif;

  --ease-lux: cubic-bezier(.22,.68,0,1);
  --header-h: 92px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4{font-family:var(--font-heading);margin:0;font-weight:600;letter-spacing:.02em;}
p{margin:0;line-height:1.75;}

/* focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--purple);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
}

.container{width:min(1240px, 92%); margin-inline:auto;}
.eyebrow{
  font-family:var(--font-cursive);
  font-size:1.6rem;
  color:var(--purple);
  display:inline-block;
  margin-bottom:.35rem;
}

/* ==========================================================================
   Scroll progress bar
   ========================================================================== */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg,var(--purple),var(--accent));
  z-index:9999;
  transition:width .1s linear;
}

/* ==========================================================================
   Placeholder "photography" — layered gradient + bottle silhouette
   ========================================================================== */
.photo{
  position:relative;
  overflow:hidden;
  background-color:#1a1024;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.photo::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(160deg, rgba(129,64,220,.4), rgba(0,0,0,.28));
  mix-blend-mode:multiply;
  opacity:.55;
  transition:opacity .5s;
}
.photo.light::before{
  background:linear-gradient(160deg, rgba(234,217,255,.55), rgba(208,231,230,.4));
  mix-blend-mode:soft-light;
  opacity:.5;
}
.photo.mint::before{
  background:rgba(208,231,230,.4);
  mix-blend-mode:soft-light;
  opacity:.45;
}
.photo.no-wash::before{ opacity:0; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  height:var(--header-h);
  display:flex; align-items:center;
  background:transparent;
  transition:background .4s var(--ease-lux), backdrop-filter .4s, box-shadow .4s, height .3s;
}
.site-header.scrolled{
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  box-shadow:0 8px 30px rgba(20,10,40,.08);
  height:76px;
}
.site-header.scrolled .icon-btn, .site-header.scrolled .shop-link{color:var(--ink);}
.header-inner{
  width:min(1320px,94%); margin-inline:auto;
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:1rem;
}
.header-left{display:flex; align-items:center; gap:1.4rem;}
.header-right{display:flex; align-items:center; gap:1.4rem; justify-self:end;}

.hamburger{
  width:44px; height:44px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  position:relative; z-index:1201;
}
.hamburger span{
  width:26px; height:2px; background:currentColor; display:block;
  transition:transform .4s var(--ease-lux), opacity .3s, background .3s;
}
.site-header:not(.scrolled) .hamburger, .site-header:not(.scrolled) .shop-link, .site-header:not(.scrolled) .icon-btn{color:#fff;}
.hamburger.active span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.hamburger.active span:nth-child(2){opacity:0;}
.hamburger.active span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
.hamburger.active{color:var(--ink) !important;}

.shop-link{
  display:flex; flex-direction:column; align-items:center; gap:2px;
  font-family:var(--font-heading); font-size:.68rem; letter-spacing:.14em;
}
.shop-link svg{width:20px;height:20px;}

.logo{
  font-family:var(--font-heading); font-weight:700; letter-spacing:.22em;
  font-size:1.35rem; color:#fff; text-align:center;
  transition:opacity .6s var(--ease-lux), color .3s, letter-spacing .5s;
}
.logo span{color:var(--accent);}
.site-header.scrolled .logo{color:var(--ink);}
.logo.fade-in{animation:logoFade 1.4s var(--ease-lux) both;}
@keyframes logoFade{
  from{opacity:0; letter-spacing:.6em;}
  to{opacity:1; letter-spacing:.22em;}
}

.icon-btn{
  width:22px; height:22px; position:relative; display:inline-flex;
  color:#fff; transition:filter .3s, transform .3s;
}
.icon-btn svg{width:100%;height:100%;}
.icon-btn:hover{filter:drop-shadow(0 0 8px rgba(129,64,220,.9)); transform:translateY(-1px);}
.cart-count{
  position:absolute; top:-8px; right:-10px;
  background:var(--purple); color:#fff; font-size:.62rem;
  width:16px;height:16px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-body); font-weight:600;
}

/* Nav dropdown panel */
.nav-panel{
  position:fixed; inset:0; background:#fff; z-index:1150;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  transform:translateY(-100%);
  transition:transform .6s var(--ease-lux);
}
.nav-panel.open{transform:translateY(0);}
.nav-panel ul{display:flex; flex-direction:column; gap:1.4rem; text-align:center;}
.nav-panel a{
  font-family:var(--font-heading); font-size:clamp(1.6rem,4vw,2.6rem);
  color:var(--ink); position:relative; padding-bottom:.2rem;
}
.nav-panel a::after{
  content:""; position:absolute; left:50%; bottom:0; width:0; height:2px;
  background:var(--purple); transition:width .35s var(--ease-lux), left .35s var(--ease-lux);
}
.nav-panel a:hover{color:var(--purple);}
.nav-panel a:hover::after{width:100%; left:0;}
.nav-panel-foot{margin-top:3rem; font-family:var(--font-cursive); color:var(--purple); font-size:1.3rem;}

/* Search overlay */
.search-panel{
  position:fixed; inset:0; background:rgba(18,10,28,.92); z-index:1150;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .4s var(--ease-lux);
}
.search-panel.open{opacity:1; pointer-events:auto;}
.search-panel form{width:min(680px,88%); border-bottom:1px solid rgba(255,255,255,.4); display:flex; align-items:center; gap:1rem; padding-bottom:1rem;}
.search-panel input{
  flex:1; background:transparent; border:none; color:#fff; font-family:var(--font-heading);
  font-size:clamp(1.2rem,3vw,2rem); letter-spacing:.03em;
}
.search-panel input::placeholder{color:rgba(255,255,255,.45);}
.search-close{position:absolute; top:2.2rem; right:2.2rem; color:#fff; width:26px; height:26px;}

/* Cart drawer */
.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width:min(420px,92%);
  background:#fff; z-index:1150; box-shadow:-20px 0 60px rgba(0,0,0,.25);
  transform:translateX(100%); transition:transform .5s var(--ease-lux);
  display:flex; flex-direction:column; padding:2.4rem;
}
.cart-drawer.open{transform:translateX(0);}
.cart-drawer h3{font-size:1.1rem; letter-spacing:.1em; margin-bottom:1.6rem;}
.cart-drawer .cart-close{position:absolute; top:2rem; right:2rem; width:22px; height:22px;}
.cart-item{display:flex; gap:1rem; padding:1rem 0; border-bottom:1px solid #eee; align-items:center;}
.cart-item .photo{width:64px;height:64px;border-radius:8px;flex-shrink:0;}
.cart-item .bottle{width:40%;}
.cart-item-name{font-family:var(--font-heading); font-size:.85rem;}
.cart-item-price{color:var(--purple); font-size:.8rem; margin-top:.2rem;}
.cart-empty{color:var(--ink-soft); font-size:.9rem; margin-top:1rem;}
.cart-total{margin-top:auto; padding-top:1.4rem; border-top:1px solid #eee; display:flex; justify-content:space-between; font-family:var(--font-heading);}
.btn-checkout{margin-top:1.2rem; background:var(--purple); color:#fff; padding:.95rem; text-align:center; letter-spacing:.12em; font-size:.78rem; border-radius:2px; transition:background .3s;}
.btn-checkout:hover{background:var(--purple-deep);}

/* ==========================================================================
   Buttons / links
   ========================================================================== */
.btn{
  position:relative; display:inline-flex; align-items:center; gap:.6rem;
  padding:.95rem 2.1rem; font-size:.74rem; letter-spacing:.18em; text-transform:uppercase;
  font-family:var(--font-body); font-weight:500; overflow:hidden; border-radius:2px;
}
.btn-primary{background:var(--purple); color:#fff;}
.btn-primary:hover{background:var(--purple-deep);}
.btn-outline{border:1px solid currentColor;}
.btn-outline:hover{background:rgba(255,255,255,.12);}
.ripple{position:absolute; border-radius:50%; background:rgba(255,255,255,.55); transform:scale(0); animation:ripple .6s linear; pointer-events:none;}
@keyframes ripple{ to{transform:scale(3); opacity:0;} }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{position:relative; height:100vh; min-height:640px; overflow:hidden;}
.hero-slide{
  position:absolute; inset:0; opacity:0; transition:opacity 1.4s var(--ease-lux);
  display:flex; align-items:center; justify-content:center;
}
.hero-slide.active{opacity:1; z-index:2;}
.hero-overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.7) 100%);}
.hero-content{position:relative; z-index:3; text-align:center; color:#fff; padding-top:2rem;}
.hero-cursive{
  font-family:var(--font-cursive); font-size:clamp(1.6rem,3.4vw,2.6rem); color:var(--accent);
  display:block; opacity:0; transform:translateX(-80px);
}
.hero-slide.active .hero-cursive{animation:slideInLeft 1.1s var(--ease-lux) .3s forwards;}
@keyframes slideInLeft{to{opacity:1; transform:translateX(0);}}

.hero-heading{
  font-size:clamp(2.2rem,6vw,4.6rem); margin-top:.8rem; letter-spacing:.06em;
}
.hero-heading .char{
  display:inline-block; opacity:0; filter:blur(6px); transform:translateY(10px);
}
.hero-slide.active .hero-heading .char{animation:reveal .7s var(--ease-lux) forwards;}

@keyframes reveal{to{opacity:1; filter:blur(0); transform:translateY(0);}}

.hero-ribbon{
  display:inline-block; margin-top:2.2rem; padding:.9rem 2.4rem;
  background:rgba(129,64,220,.65); font-family:var(--font-cursive); font-size:1.15rem;
  opacity:0; transform:rotate(-360deg) scale(.6);
}
.hero-slide.active .hero-ribbon{animation:ribbonSettle 1s var(--ease-lux) 1.1s forwards;}
@keyframes ribbonSettle{to{opacity:1; transform:rotate(0) scale(1);}}

.hero-dots{position:absolute; bottom:2.4rem; left:50%; transform:translateX(-50%); z-index:5; display:flex; gap:.7rem;}
.hero-dots button{width:10px;height:10px;border-radius:50%; background:rgba(255,255,255,.4); transition:background .4s, transform .4s;}
.hero-dots button.active{background:#fff; transform:scale(1.3);}

/* Floating cards */
.floating-cards{
  position:absolute; left:50%; bottom:-120px; transform:translateX(-50%);
  z-index:6; display:flex; gap:1.6rem;
}
.fcard{
  width:220px; background:#fff; box-shadow:0 30px 60px rgba(20,10,40,.28);
  display:flex; flex-direction:column; opacity:0; transform:translateY(40px);
}
.fcard .fcard-info{padding:1.1rem 1.2rem; font-size:.8rem; color:var(--ink-soft); line-height:1.6;}
.fcard .fcard-img{height:190px;}
.fcard .fcard-title{background:#fff; padding:.9rem 1.2rem 1.2rem; font-family:var(--font-heading); font-size:1rem; color:var(--ink);}
.fcard.reveal{animation:cardUp .9s var(--ease-lux) forwards;}
@keyframes cardUp{to{opacity:1; transform:translateY(0);}}

/* ==========================================================================
   Section: black continuation (holds the floating cards visually)
   ========================================================================== */
.section-black{
  background:var(--dark); color:#fff; padding-top:200px; padding-bottom:5rem; position:relative;
}
.section-black .container{text-align:center;}
.section-black h2{font-size:clamp(1.6rem,3vw,2.4rem); color:#fff;}
.section-black p{max-width:560px; margin:1.1rem auto 0; color:rgba(255,255,255,.65); font-size:.95rem;}

/* ==========================================================================
   Section Two — split
   ========================================================================== */
.section-split{position:relative; overflow:hidden; background:var(--mint);}
.split-grid{display:grid; grid-template-columns:1fr 1fr; min-height:640px;}
.split-media{position:relative;}
.split-media .photo{position:absolute; inset:0;}
.split-copy{
  display:flex; flex-direction:column; justify-content:center; padding:4rem 5vw; position:relative; z-index:2;
}
.split-copy h2{font-size:clamp(1.8rem,3.4vw,2.8rem); max-width:9ch;}
.split-copy .quote{font-family:var(--font-cursive); font-size:1.3rem; color:var(--purple-deep); margin:1.2rem 0;}
.split-copy p.body{color:var(--ink); max-width:46ch; font-size:.98rem;}
.big-year{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  font-family:var(--font-heading); font-weight:900; font-size:min(34vw,420px);
  color:rgba(129,64,220,.08); z-index:1; pointer-events:none; white-space:nowrap;
}

/* ==========================================================================
   Section Three — bordered showcase
   ========================================================================== */
.section-showcase{padding:7rem 0; background:#fff; text-align:center;}
.showcase-frame{
  background:var(--mint); padding:2px; transition:box-shadow .5s;
}
.showcase-frame:hover{box-shadow:0 0 0 3px var(--purple), 0 30px 70px rgba(129,64,220,.25);}
.showcase-grid{
  display:grid; grid-template-columns:1fr 1.4fr 1fr; grid-template-rows:auto auto; gap:2px; background:var(--mint);
}
.sw-block{background:#fff; padding:2rem; text-align:left;}
.sw-block .photo{aspect-ratio:1/1; margin-bottom:1rem;}
.sw-center{grid-row:1/2;}
.sw-center .photo{aspect-ratio:3/4;}
.sw-bottom{grid-column:1/4; text-align:center; padding:2.2rem;}
.sw-bottom .photo{aspect-ratio:16/6; margin-bottom:1.2rem;}
.sw-block h3, .sw-bottom h3{font-size:1.1rem; margin-bottom:.5rem;}
.sw-block p, .sw-bottom p{font-size:.85rem; color:var(--ink-soft);}

/* ==========================================================================
   Section Four — carousel
   ========================================================================== */
.section-carousel{padding:7rem 0; text-align:center; background:#fff;}
.carousel-track-wrap{position:relative; margin-top:3rem;}
.carousel-track{display:flex; gap:1.6rem; overflow:hidden; scroll-behavior:smooth;}
.ccard{
  flex:0 0 calc(25% - 1.2rem); min-width:230px; text-align:left; cursor:pointer;
}
.ccard .photo{aspect-ratio:1/1; overflow:hidden; transition:transform .6s var(--ease-lux);}
.ccard:hover .photo{transform:scale(1.08);}
.ccard-name{font-family:var(--font-heading); font-size:.95rem; margin-top:1rem;}
.ccard-desc{font-size:.82rem; color:var(--ink-soft); margin-top:.3rem;}
.carousel-arrows{display:flex; justify-content:center; gap:1rem; margin-top:2rem;}
.arrow-btn{
  width:46px;height:46px;border-radius:50%;border:1px solid var(--ink); display:flex;align-items:center;justify-content:center;
  transition:background .3s, color .3s, transform .3s;
}
.arrow-btn:hover{background:var(--purple); border-color:var(--purple); color:#fff; transform:scale(1.06);}
.arrow-btn svg{width:16px;height:16px;}

/* ==========================================================================
   Section Five — fixed bg + 3-image carousel
   ========================================================================== */
.section-fixed{
  position:relative; padding:8rem 0 10rem; text-align:center; color:#fff;
  background:
    radial-gradient(120% 140% at 30% 10%,rgba(129,64,220,.5),transparent 60%),
    linear-gradient(180deg,#0c0713,#000);
  background-attachment:fixed;
}
.section-fixed::before{content:"";position:absolute; inset:0; background:rgba(0,0,0,.35);}
.section-fixed .container{position:relative; z-index:2;}
.section-fixed p{color:rgba(255,255,255,.65); max-width:520px; margin:1rem auto 0;}
.trio{display:flex; align-items:center; justify-content:center; gap:1.4rem; margin-top:4rem;}
.trio-arrow{color:#fff;}
.trio-img{position:relative; border-radius:4px; overflow:hidden; transition:width .6s var(--ease-lux), height .6s var(--ease-lux), opacity .6s;}
.trio-img.side{width:150px; height:220px; opacity:.55;}
.trio-img.center{width:300px; height:400px;}
.trio-img .photo{position:absolute; inset:0;}
.trio-caption{
  position:absolute; left:0; right:0; bottom:0; background:rgba(0,0,0,.55);
  padding:1rem; text-align:left;
}
.trio-caption h4{font-size:.9rem; color:#fff;}
.trio-caption p{font-size:.76rem; color:rgba(255,255,255,.7); margin-top:.2rem;}

/* ==========================================================================
   Section Six — gallery
   ========================================================================== */
.section-gallery{background:#fff; margin-top:-6rem; position:relative; z-index:3; padding:8rem 0 5rem; text-align:center;}
.section-gallery > .container > p{max-width:520px; margin:1rem auto 3rem; color:var(--ink-soft);}
.gallery-grid{display:grid; grid-template-columns:1.2fr 1fr; gap:1.4rem;}
.gallery-tall{position:relative; min-height:560px;}
.gallery-tall .photo{position:absolute; inset:0;}
.gallery-stack{display:flex; flex-direction:column; gap:1.4rem;}
.gallery-stack .photo{aspect-ratio:1/1;}
.gallery-title{
  position:absolute; left:1.4rem; bottom:1.4rem; background:#fff; padding:.8rem 1.4rem;
  font-family:var(--font-heading); font-size:1.05rem; box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.gallery-cell{position:relative;}

.divider{width:100%; height:1px; background:linear-gradient(90deg,transparent,var(--purple) 50%,transparent); margin:4rem 0 2.4rem;}
.social-area{text-align:center;}
.follow-line{font-family:var(--font-heading); letter-spacing:.16em; color:var(--ink-soft); font-size:.8rem; margin-bottom:1.3rem;}
.social-icons{display:flex; justify-content:center; gap:1.6rem;}
.social-icons a{width:22px;height:22px; color:var(--ink); transition:filter .3s, transform .3s;}
.social-icons a:hover{color:var(--purple); filter:drop-shadow(0 0 8px rgba(129,64,220,.7)); transform:translateY(-2px);}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{background:var(--mint); color:var(--ink); padding-top:4rem;}
.footer-nav{
  display:flex; flex-wrap:wrap; justify-content:center; gap:2.4rem;
  padding-bottom:2.6rem; border-bottom:1px solid rgba(0,0,0,.1);
  font-size:.82rem; letter-spacing:.05em;
}
.footer-nav a:hover{color:var(--purple);}
.footer-mid{display:grid; grid-template-columns:1fr 1fr; gap:3rem; padding:3.2rem 0;}
.footer-panel h3{font-size:1rem; letter-spacing:.08em; margin-bottom:.6rem;}
.footer-panel p{font-size:.82rem; color:var(--ink-soft); margin-bottom:1.4rem;}
.footer-form{display:flex; gap:.7rem; max-width:380px;}
.footer-form input{flex:1; padding:.85rem 1rem; border:1px solid rgba(0,0,0,.2); background:#fff; font-family:var(--font-body); font-size:.85rem;}
.footer-form input:invalid:not(:placeholder-shown){border-color:#c0392b;}
.footer-form button{background:var(--purple); color:#fff; padding:.85rem 1.4rem; font-size:.78rem; letter-spacing:.1em; white-space:nowrap;}
.footer-form button:hover{background:var(--purple-deep);}
.form-msg{font-size:.76rem; margin-top:.6rem; min-height:1em;}
.form-msg.error{color:#c0392b;}
.form-msg.success{color:#2e7d32;}
.footer-bottom-strip{background:#fff; padding:1.4rem 0; display:flex; flex-wrap:wrap; gap:.6rem; justify-content:space-between; font-size:.75rem; color:var(--ink-soft);}

/* Success popup */
.popup-overlay{
  position:fixed; inset:0; background:rgba(20,10,30,.55); z-index:2000; display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .35s var(--ease-lux);
}
.popup-overlay.open{opacity:1; pointer-events:auto;}
.popup-card{
  background:#fff; padding:3rem 2.6rem; text-align:center; max-width:380px; transform:scale(.85); transition:transform .35s var(--ease-lux);
  box-shadow:0 40px 80px rgba(0,0,0,.3);
}
.popup-overlay.open .popup-card{transform:scale(1);}
.popup-card svg{width:46px;height:46px; color:var(--purple); margin-bottom:1rem;}
.popup-card h4{font-size:1.2rem; margin-bottom:.6rem;}
.popup-card p{font-size:.88rem; color:var(--ink-soft); margin-bottom:1.4rem;}

/* spinner */
.spinner{width:16px;height:16px;border:2px solid rgba(255,255,255,.4); border-top-color:#fff; border-radius:50%; animation:spin .7s linear infinite; display:inline-block;}
@keyframes spin{to{transform:rotate(360deg);}}

/* scroll-fade-up util */
.reveal-up{opacity:0; transform:translateY(36px); transition:opacity .8s var(--ease-lux), transform .8s var(--ease-lux);}
.reveal-up.in{opacity:1; transform:translateY(0);}

/* ==========================================================================
   Inner page hero (for non-home pages)
   ========================================================================== */
.page-hero{
  position:relative; height:58vh; min-height:380px; display:flex; align-items:center; justify-content:center; text-align:center; color:#fff; overflow:hidden;
}
.page-hero .hero-overlay{background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.75));}
.page-hero .eyebrow{color:var(--accent);}
.page-hero h1{font-size:clamp(2.2rem,5vw,3.6rem); position:relative; z-index:2;}
.breadcrumb{position:relative; z-index:2; font-size:.78rem; letter-spacing:.14em; color:rgba(255,255,255,.7); margin-top:.8rem;}

.legal-wrap{display:grid; grid-template-columns:260px 1fr; gap:4rem; padding:6rem 0; align-items:start;}
.legal-side{position:sticky; top:120px;}
.legal-side h4{font-size:.78rem; letter-spacing:.14em; color:var(--purple); margin-bottom:1rem;}
.legal-side a{display:block; padding:.5rem 0; font-size:.88rem; color:var(--ink-soft); border-left:2px solid transparent; padding-left:.9rem; transition:.3s;}
.legal-side a:hover, .legal-side a.active{color:var(--purple); border-left-color:var(--purple);}
.legal-content h2{font-size:1.4rem; margin-top:2.6rem; scroll-margin-top:130px;}
.legal-content h2:first-child{margin-top:0;}
.legal-content p, .legal-content li{color:var(--ink-soft); font-size:.95rem; margin-top:.9rem;}
.legal-content ul{margin-top:.9rem; padding-left:1.2rem; list-style:disc;}
.legal-updated{font-size:.8rem; color:var(--ink-soft); margin-bottom:2rem;}

.accordion-item{border-bottom:1px solid #eee;}
.accordion-head{width:100%; display:flex; justify-content:space-between; align-items:center; padding:1.4rem 0; text-align:left; font-family:var(--font-heading); font-size:1.02rem;}
.accordion-head svg{width:16px;height:16px; transition:transform .35s;}
.accordion-item.open .accordion-head svg{transform:rotate(45deg);}
.accordion-body{max-height:0; overflow:hidden; transition:max-height .4s var(--ease-lux);}
.accordion-body p{padding-bottom:1.3rem; color:var(--ink-soft); font-size:.92rem;}

/* Collection filters/grid */
.filter-bar{display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center; margin:2.5rem 0 3.5rem;}
.filter-chip{padding:.6rem 1.4rem; border:1px solid var(--ink); font-size:.75rem; letter-spacing:.1em; border-radius:30px; transition:.3s;}
.filter-chip.active, .filter-chip:hover{background:var(--purple); color:#fff; border-color:var(--purple);}
.product-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; padding-bottom:6rem;}
.product-card{position:relative; overflow:hidden;}
.product-card .photo{aspect-ratio:3/4; position:relative;}
.product-actions{position:absolute; right:1rem; top:1rem; display:flex; flex-direction:column; gap:.6rem; opacity:0; transform:translateX(10px); transition:.35s;}
.product-card:hover .product-actions{opacity:1; transform:translateX(0);}
.product-actions button{width:38px;height:38px; background:#fff; border-radius:50%; display:flex;align-items:center;justify-content:center;}
.product-actions button svg{width:16px;height:16px;}
.product-actions button:hover{background:var(--purple); color:#fff;}
.product-info{padding-top:1rem;}
.product-name{font-family:var(--font-heading); font-size:1rem;}
.product-cat{font-size:.75rem; color:var(--purple); letter-spacing:.08em; margin-top:.2rem;}
.product-price{margin-top:.5rem; font-size:.9rem;}
.add-cart-btn{margin-top:.9rem; width:100%; border:1px solid var(--ink); padding:.7rem; font-size:.72rem; letter-spacing:.12em;}
.add-cart-btn:hover{background:var(--ink); color:#fff;}

/* Timeline (about) */
.timeline{position:relative; margin-top:3rem; padding-left:2.4rem; border-left:2px solid var(--mint);}
.timeline-item{position:relative; padding-bottom:2.6rem;}
.timeline-item::before{content:""; position:absolute; left:-2.55rem; top:.3rem; width:12px;height:12px;border-radius:50%; background:var(--purple);}
.timeline-item h4{font-family:var(--font-heading); font-size:1.05rem;}
.timeline-item p{color:var(--ink-soft); font-size:.9rem; margin-top:.4rem;}

/* Contact form */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:4rem; padding:6rem 0;}
.contact-info h3{font-size:1.5rem; margin-bottom:1.4rem;}
.contact-info p{color:var(--ink-soft); margin-bottom:.5rem;}
.map-placeholder{margin-top:2rem; height:220px; background:var(--mint); display:flex;align-items:center;justify-content:center; color:var(--ink-soft); font-size:.85rem; letter-spacing:.05em;}
.form-field{margin-bottom:1.4rem;}
.form-field label{display:block; font-size:.75rem; letter-spacing:.1em; margin-bottom:.5rem; color:var(--ink-soft);}
.form-field input, .form-field textarea{width:100%; padding:.9rem 1rem; border:1px solid #ddd; font-family:var(--font-body); font-size:.9rem;}
.form-field input:focus, .form-field textarea:focus{border-color:var(--purple);}
.field-error{color:#c0392b; font-size:.75rem; margin-top:.4rem; display:none;}
.form-field.invalid .field-error{display:block;}
.form-field.invalid input, .form-field.invalid textarea{border-color:#c0392b;}

/* Subscribe/unsubscribe pages */
.sub-wrap{max-width:520px; margin:0 auto; padding:6rem 0; text-align:center;}
.sub-wrap .eyebrow{display:block;}
.sub-wrap form{margin-top:2.4rem; display:flex; flex-direction:column; gap:1rem;}
.sub-wrap input{padding:1rem 1.2rem; border:1px solid #ddd; font-size:.95rem;}

/* FAQ hero already covered by page-hero */

footer .social-icons a{color:var(--ink);}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px){
  .split-grid{grid-template-columns:1fr; min-height:auto;}
  .split-media{height:380px;}
  .showcase-grid{grid-template-columns:1fr 1fr;}
  .sw-center{grid-column:1/3;}
  .sw-bottom{grid-column:1/3;}
  .gallery-grid{grid-template-columns:1fr;}
  .gallery-tall{min-height:340px;}
  .legal-wrap{grid-template-columns:1fr; gap:2rem;}
  .legal-side{position:relative; top:0;}
  .contact-grid{grid-template-columns:1fr; gap:2.5rem;}
  .product-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 720px){
  .header-left .shop-link span{display:none;}
  .floating-cards{flex-direction:row; gap:.8rem; bottom:-90px;}
  .fcard{width:30vw; min-width:110px;}
  .fcard .fcard-img{height:100px;}
  .fcard .fcard-info{display:none;}
  .fcard .fcard-title{font-size:.75rem; padding:.6rem;}
  .section-black{padding-top:150px;}
  .ccard{flex:0 0 calc(50% - .8rem);}
  .trio-img.side{width:70px; height:120px;}
  .trio-img.center{width:170px; height:240px;}
  .showcase-grid{grid-template-columns:1fr;}
  .sw-center{grid-column:1/2;}
  .sw-bottom{grid-column:1/2;}
  .product-grid{grid-template-columns:1fr;}
  .footer-mid{grid-template-columns:1fr;}
  .footer-form{flex-direction:column;}
}
