:root{
  --void:#070708;
  --black:#0a0a0c;
  --black-2:#101012;
  --black-3:#151416;
  --gold:#c9a45c;
  --gold-soft:#e4c983;
  --gold-deep:#8d6d35;
  --moon:#c9c9cf;
  --mist:#ede8dd;
  --muted:#8c8a8e;
  --line:rgba(201,164,92,.28);
  --line-soft:rgba(255,255,255,.08);
  --rose:#c98ba6;
  --plum:#7b55a1;
  --teal:#74af93;
  --blue:#5a91c8;
  --amber:#c98747;
  --surface:#0b0b0c;
  --surface-2:#101012;
  --field-bg:rgba(0,0,0,.22);
  --shadow:0 24px 70px rgba(0,0,0,.32);
  --max:1180px;
  --serif:"Cormorant Garamond", Georgia, serif;
  --sans:"Jost", Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100svh;
  background:var(--void);
  color:var(--moon);
  font-family:var(--sans);
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,164,92,.10), transparent 48%),
    linear-gradient(135deg, #050506 0%, #0a0a0c 45%, #111016 100%);
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.35;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,textarea,select{font:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid var(--line-soft);
  background:rgba(7,7,8,.76);
  backdrop-filter:blur(18px);
}
.nav{
  width:min(var(--max), calc(100% - 36px));
  margin:0 auto;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand-mark{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:max-content;
}
.brand-mark strong{
  font-family:var(--serif);
  font-size:1.65rem;
  line-height:1;
  font-weight:500;
  letter-spacing:.28em;
  color:var(--gold-soft);
}
.brand-mark span{
  font-size:.55rem;
  line-height:1;
  font-weight:300;
  letter-spacing:.36em;
  text-transform:uppercase;
  color:var(--muted);
}
.nav-links{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:2px;
  overflow-x:auto;
  scrollbar-width:none;
}
.nav-links::-webkit-scrollbar{display:none}
.nav-links a{
  position:relative;
  padding:29px 10px 27px;
  font-size:.68rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#a7a3a4;
  white-space:nowrap;
  transition:color .25s ease;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:22px;
  height:1px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s ease;
}
.nav-links a:hover,
.nav-links a.active{color:var(--mist)}
.nav-links a:hover::after,
.nav-links a.active::after{transform:scaleX(1)}
.nav-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex:0 0 auto;
}
.nav-actions button,
.drawer-primary,
.drawer-link,
.product-purchase button{
  min-height:38px;
  border:1px solid var(--line);
  border-radius:4px;
  background:rgba(255,255,255,.025);
  color:var(--mist);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 13px;
  font-size:.66rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  transition:border-color .25s ease, background .25s ease, color .25s ease;
}
.nav-actions button:hover,
.drawer-primary:hover,
.drawer-link:hover,
.product-purchase button:hover{
  border-color:rgba(201,164,92,.62);
  background:rgba(201,164,92,.08);
  color:var(--gold-soft);
}

.hero,
.page-hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
}
.hero{
  min-height:calc(100svh - 76px);
  display:grid;
  place-items:center;
  padding:84px 18px 72px;
  text-align:center;
}
.page-hero{
  min-height:58svh;
  display:flex;
  align-items:flex-end;
  padding:110px 18px 76px;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:-2;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.26;
  filter:saturate(.78) contrast(1.08);
}
.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(7,7,8,.36), rgba(7,7,8,.72) 58%, var(--void) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,.45) 100%);
}
.hero-inner,
.page-hero-inner{
  width:min(var(--max), 100%);
  margin:0 auto;
}
.home-stack{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}
.spark{
  width:32px;
  height:32px;
  background:linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  clip-path:polygon(50% 0, 58% 38%, 100% 50%, 58% 62%, 50% 100%, 42% 62%, 0 50%, 42% 38%);
  box-shadow:0 0 24px rgba(201,164,92,.36);
}
.wordmark{
  font-family:var(--serif);
  font-size:7.25rem;
  line-height:.88;
  font-weight:500;
  letter-spacing:.18em;
  text-indent:.18em;
  color:transparent;
  background:linear-gradient(180deg, #f2dda5 0%, var(--gold) 45%, var(--gold-deep) 75%, #ead39a 100%);
  -webkit-background-clip:text;
  background-clip:text;
}
.rule{
  width:min(420px, 82vw);
  display:flex;
  align-items:center;
  gap:16px;
}
.rule::before,
.rule::after{
  content:"";
  height:1px;
  flex:1;
  background:linear-gradient(90deg, transparent, var(--line), transparent);
}
.rule span{
  width:6px;
  height:6px;
  transform:rotate(45deg);
  background:var(--gold);
}
.kicker{
  margin:0 0 18px;
  font-size:.68rem;
  line-height:1.5;
  font-weight:300;
  letter-spacing:.42em;
  text-transform:uppercase;
  color:var(--gold);
}
.tagline{
  margin:0;
  color:var(--gold);
  font-size:.86rem;
  font-weight:300;
  letter-spacing:.45em;
  text-indent:.45em;
  text-transform:uppercase;
}
.display{
  margin:0;
  max-width:960px;
  font-family:var(--serif);
  font-size:4.6rem;
  line-height:1.02;
  font-weight:400;
  color:var(--mist);
  letter-spacing:.01em;
}
.display .gold,
.lede .gold,
.serif-line .gold{
  color:transparent;
  background:linear-gradient(180deg, #f1dca4, var(--gold) 66%, var(--gold-deep));
  -webkit-background-clip:text;
  background-clip:text;
  font-style:italic;
}
.lede{
  margin:22px 0 0;
  max-width:720px;
  font-family:var(--serif);
  font-size:1.62rem;
  line-height:1.48;
  color:#e7e2d8;
}
.home-message{
  max-width:760px;
  margin:0;
  font-family:var(--serif);
  font-size:1.72rem;
  line-height:1.45;
  color:#e7e2d8;
}
.micro{
  margin:0;
  color:var(--muted);
  font-size:.68rem;
  letter-spacing:.34em;
  text-transform:uppercase;
}
.cta-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 18px;
  margin-top:32px;
}
.text-cta,
.ghost-cta{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 18px;
  border:1px solid var(--line);
  border-radius:4px;
  color:var(--mist);
  font-size:.72rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  background:rgba(255,255,255,.02);
  transition:border-color .25s ease, color .25s ease, background .25s ease;
}
.text-cta:hover,
.ghost-cta:hover{
  color:var(--gold-soft);
  border-color:rgba(201,164,92,.55);
  background:rgba(201,164,92,.06);
}
.ghost-cta{
  border-color:transparent;
  background:transparent;
}
.section{
  position:relative;
  z-index:2;
  padding:96px 18px;
}
.section.tight{padding-top:48px}
.section.dark-band{
  border-top:1px solid var(--line-soft);
  border-bottom:1px solid var(--line-soft);
  background:rgba(255,255,255,.018);
}
.container{
  width:min(var(--max), 100%);
  margin:0 auto;
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:28px;
  margin-bottom:42px;
}
.section-head.center{
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.section-title{
  margin:0;
  max-width:760px;
  font-family:var(--serif);
  font-size:3.3rem;
  line-height:1.08;
  font-weight:400;
  color:var(--mist);
}
.section-copy{
  margin:0;
  max-width:520px;
  color:#aaa5a4;
  font-size:1rem;
  line-height:1.8;
}
.serif-line{
  max-width:900px;
  margin:0 auto;
  text-align:center;
  font-family:var(--serif);
  font-size:3.05rem;
  line-height:1.24;
  color:var(--mist);
}
.split{
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(320px, .98fr);
  gap:34px;
  align-items:center;
}
.split.reverse{
  grid-template-columns:minmax(320px, .98fr) minmax(0, 1.02fr);
}
.image-panel{
  overflow:hidden;
  border:1px solid var(--line-soft);
  border-radius:8px;
  background:#0b0b0c;
}
.image-panel img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
}
.image-panel.soft img{object-position:center}
.image-caption{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:16px 18px;
  border-top:1px solid var(--line-soft);
  color:var(--muted);
  font-size:.68rem;
  letter-spacing:.26em;
  text-transform:uppercase;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}
.feature{
  min-height:270px;
  padding:34px 28px;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  display:flex;
  flex-direction:column;
  gap:16px;
  border:1px solid var(--line-soft);
  border-radius:8px;
}
.line-icon{
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:50%;
  position:relative;
  display:inline-flex;
  flex:0 0 44px;
}
.line-icon::before,
.line-icon::after{
  content:"";
  position:absolute;
  border-color:var(--gold);
}
.icon-objects::before,
.icon-catalog::before{
  inset:11px 13px;
  border:1px solid var(--gold);
  border-radius:50%;
}
.icon-connect::before,
.icon-account::before{
  width:18px;
  height:18px;
  left:8px;
  top:12px;
  border:1px solid var(--gold);
  border-radius:50%;
}
.icon-connect::after,
.icon-account::after{
  width:18px;
  height:18px;
  right:8px;
  top:12px;
  border:1px solid var(--gold);
  border-radius:50%;
}
.icon-scent::before,
.icon-ritual::before{
  width:18px;
  height:24px;
  left:12px;
  top:8px;
  border:1px solid var(--gold);
  border-radius:18px 18px 4px 4px;
}
.icon-experience::before{
  width:20px;
  height:20px;
  left:11px;
  top:11px;
  border:1px solid var(--gold);
  transform:rotate(45deg);
}
.home-systems{
  padding-top:112px;
}
.system-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.system-card{
  border:1px solid var(--line-soft);
  border-radius:8px;
  overflow:hidden;
  background:var(--surface);
  box-shadow:var(--shadow);
}
.system-media{
  aspect-ratio:4/3;
  background:#161414;
  overflow:hidden;
}
.system-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.system-copy{
  min-height:220px;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.system-copy h3{
  margin:0;
  color:var(--mist);
  font-family:var(--serif);
  font-size:1.7rem;
  font-weight:500;
}
.system-copy p{
  margin:0;
  color:#989397;
  line-height:1.72;
}
.feature .diamond,
.spec-card .diamond,
.product-card .diamond,
.step .diamond{
  width:7px;
  height:7px;
  transform:rotate(45deg);
  background:var(--gold);
  box-shadow:0 0 12px rgba(201,164,92,.4);
}
.feature small,
.spec-card small,
.product-card small,
.step small{
  color:var(--gold);
  font-size:.62rem;
  line-height:1.45;
  letter-spacing:.3em;
  text-transform:uppercase;
}
.feature h2,
.feature h3,
.spec-card h2,
.spec-card h3,
.product-card h3,
.step h3{
  margin:0;
  font-family:var(--serif);
  color:var(--mist);
  font-size:1.55rem;
  line-height:1.14;
  font-weight:500;
}
.feature p,
.spec-card p,
.product-card p,
.step p{
  margin:0;
  color:#989397;
  line-height:1.72;
  font-size:.92rem;
}
.brand-spec-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.spec-card{
  min-height:310px;
  padding:30px;
  border:1px solid var(--line-soft);
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  display:flex;
  flex-direction:column;
  gap:15px;
}
.swatches{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-top:4px;
}
.swatch{
  min-height:86px;
  border:1px solid var(--line-soft);
  border-radius:6px;
  padding:10px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:5px;
}
.swatch strong{
  color:var(--mist);
  font-size:.62rem;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.swatch span{
  color:rgba(255,255,255,.68);
  font-size:.68rem;
}
.swatch.void{background:#070708}
.swatch.gold{background:#c9a45c;color:#070708}
.swatch.moon{background:#c9c9cf;color:#070708}
.swatch.rose{background:#c98ba6;color:#070708}
.swatch.plum{background:#17152a}
.swatch.teal{background:#18251f}
.spec-list{
  display:grid;
  gap:11px;
  margin:0;
  padding:0;
  list-style:none;
}
.spec-list li{
  display:flex;
  gap:11px;
  align-items:flex-start;
  color:#aaa5a4;
  line-height:1.55;
}
.spec-list li::before{
  content:"";
  width:5px;
  height:5px;
  margin-top:9px;
  flex:0 0 5px;
  transform:rotate(45deg);
  background:var(--gold);
}
.mood-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:16px;
}
.mood-grid .image-panel:first-child{grid-row:span 2}
.mood-grid img{min-height:270px}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.product-card{
  border:1px solid var(--line-soft);
  border-radius:8px;
  overflow:hidden;
  background:var(--surface);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}
.product-art{
  position:relative;
  aspect-ratio:5/6;
  background:#24211e;
  overflow:hidden;
}
.product-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.96;
  transition:transform .7s ease, opacity .7s ease;
}
.product-card:hover .product-art img{
  transform:scale(1.04);
  opacity:1;
}
.product-badge{
  position:absolute;
  left:14px;
  top:14px;
  max-width:calc(100% - 28px);
  min-height:28px;
  border:1px solid rgba(255,255,255,.26);
  border-radius:4px;
  background:rgba(7,7,8,.62);
  color:var(--gold-soft);
  display:inline-flex;
  align-items:center;
  padding:0 9px;
  font-size:.58rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
}
.product-body{
  flex:1;
  min-height:300px;
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.product-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.product-meta span{
  font-size:.62rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold);
}
.product-card h3{font-size:1.34rem}
.product-card p{font-size:.88rem}
.product-tags{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:2px;
}
.product-tags span{
  min-height:28px;
  border:1px solid var(--line-soft);
  border-radius:4px;
  display:inline-flex;
  align-items:center;
  padding:0 9px;
  color:var(--muted);
  font-size:.62rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.product-purchase{
  margin-top:auto;
  padding-top:14px;
  border-top:1px solid var(--line-soft);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}
.product-purchase div{
  display:grid;
  gap:3px;
}
.product-purchase strong{
  color:var(--mist);
  font-family:var(--serif);
  font-size:1.38rem;
  font-weight:500;
}
.product-purchase del{
  color:var(--muted);
  font-size:.78rem;
}
.product-purchase small{
  color:var(--gold);
  font-size:.62rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.product-purchase button{
  min-width:84px;
  flex:0 0 auto;
}
.curation-strip{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:1px;
  margin-top:34px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.curation-strip div{
  min-height:120px;
  padding:24px;
  border-right:1px solid var(--line-soft);
}
.curation-strip div:last-child{border-right:0}
.curation-strip strong{
  display:block;
  color:var(--mist);
  font-family:var(--serif);
  font-size:1.35rem;
  font-weight:500;
  margin-bottom:8px;
}
.curation-strip span{
  color:var(--muted);
  font-size:.74rem;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.ritual-steps{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:14px;
}
.step{
  border:1px solid var(--line-soft);
  border-radius:8px;
  padding:26px;
  min-height:270px;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  display:flex;
  flex-direction:column;
  gap:14px;
}
.scent-pyramid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.scent-note{
  border:1px solid var(--line-soft);
  border-radius:8px;
  padding:30px;
  min-height:250px;
  background:#0c0c0e;
}
.scent-note h3{
  margin:0 0 14px;
  color:var(--gold-soft);
  font-family:var(--serif);
  font-size:1.8rem;
  font-weight:500;
}
.scent-note p{
  margin:0;
  color:#a6a0a3;
  line-height:1.75;
}
.partner-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.partner-card{
  padding:30px;
  min-height:260px;
  border:1px solid var(--line-soft);
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
}
.partner-card h3{
  margin:0 0 14px;
  color:var(--mist);
  font-family:var(--serif);
  font-size:1.62rem;
  font-weight:500;
}
.partner-card p{
  margin:0;
  color:#9f999c;
  line-height:1.75;
}
.code-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.code-item{
  padding:28px;
  border-left:1px solid var(--line);
  background:linear-gradient(90deg, rgba(201,164,92,.055), transparent);
}
.code-item strong{
  display:block;
  color:var(--mist);
  font-family:var(--serif);
  font-size:1.55rem;
  font-weight:500;
  margin-bottom:10px;
}
.code-item p{
  margin:0;
  color:#a09a9e;
  line-height:1.75;
}
.forum-panel{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:18px;
  align-items:start;
}
.forum-form,
.question-card,
.blog-card,
.social-card,
.gallery-card{
  border:1px solid var(--line-soft);
  border-radius:8px;
  background:var(--surface);
  box-shadow:var(--shadow);
}
.forum-form{
  padding:26px;
  display:grid;
  gap:12px;
  position:sticky;
  top:98px;
}
.forum-form label{
  color:var(--gold);
  font-size:.62rem;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.forum-form input,
.forum-form textarea,
.reply-form input{
  width:100%;
  border:1px solid var(--line-soft);
  border-radius:4px;
  background:var(--field-bg);
  color:var(--mist);
  outline:0;
  padding:13px 14px;
}
.forum-form textarea{min-height:130px;resize:vertical}
.forum-form button,
.reply-form button{
  min-height:42px;
  border:1px solid var(--line);
  border-radius:4px;
  background:rgba(201,164,92,.07);
  color:var(--gold-soft);
  cursor:pointer;
  font-size:.68rem;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.forum-feed{
  display:grid;
  gap:14px;
}
.forum-empty,
.question-card{
  padding:24px;
}
.question-card small,
.blog-body small,
.social-card small{
  color:var(--gold);
  font-size:.62rem;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.question-card h3,
.blog-card h3{
  margin:10px 0 10px;
  color:var(--mist);
  font-family:var(--serif);
  font-size:1.65rem;
  font-weight:500;
}
.reply-list{
  display:grid;
  gap:9px;
  margin:18px 0;
}
.forum-reply{
  border-left:1px solid var(--line);
  padding:10px 0 10px 14px;
}
.forum-reply strong{
  display:block;
  color:var(--mist);
  font-family:var(--serif);
  font-size:1.04rem;
  font-weight:500;
}
.reply-form{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:10px;
}
.blog-grid,
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.blog-card,
.gallery-card{
  overflow:hidden;
}
.blog-media,
.gallery-card > img,
.gallery-card > video{
  width:100%;
  aspect-ratio:16/10;
  background:#161414;
  object-fit:cover;
}
.blog-media img,
.blog-media video{
  width:100%;
  height:100%;
  object-fit:cover;
}
.blog-body,
.gallery-card div{
  padding:24px;
}
.gallery-card strong{
  display:block;
  color:var(--mist);
  font-family:var(--serif);
  font-size:1.48rem;
  font-weight:500;
  margin-bottom:8px;
}
.social-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.social-card{
  min-height:210px;
  padding:26px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.social-card strong{
  color:var(--mist);
  font-family:var(--serif);
  font-size:1.7rem;
  font-weight:500;
}
.contact-panel{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:18px;
  align-items:stretch;
}
.contact-card{
  border:1px solid var(--line-soft);
  border-radius:8px;
  padding:32px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
}
.contact-card h2{
  margin:0 0 18px;
  color:var(--mist);
  font-family:var(--serif);
  font-size:2.25rem;
  font-weight:400;
}
.contact-links{
  display:grid;
  gap:14px;
  margin-top:22px;
}
.contact-links a{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:17px 0;
  border-bottom:1px solid var(--line-soft);
  color:var(--moon);
}
.contact-links span{
  color:var(--gold);
  font-size:.68rem;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.form-grid{
  display:grid;
  gap:16px;
}
.field{
  display:grid;
  gap:8px;
}
.field label{
  color:var(--gold);
  font-size:.62rem;
  letter-spacing:.28em;
  text-transform:uppercase;
}
.field input,
.field select,
.field textarea{
  width:100%;
  border:1px solid var(--line-soft);
  border-radius:4px;
  background:rgba(0,0,0,.22);
  color:var(--mist);
  font:300 1rem/1.4 var(--sans);
  padding:14px 14px;
  outline:0;
}
.field textarea{min-height:130px;resize:vertical}
.field input:focus,
.field select:focus,
.field textarea:focus{border-color:rgba(201,164,92,.62)}
.note{
  min-height:18px;
  margin:10px 0 0;
  color:var(--muted);
  font-size:.86rem;
}
.note.ok{color:var(--gold-soft)}
.notify-line{
  display:flex;
  align-items:center;
  gap:10px;
  width:min(420px, 100%);
  margin:8px auto 0;
  border-bottom:1px solid var(--line);
  padding:8px 4px 10px;
}
.notify-line input{
  flex:1;
  min-width:0;
  border:0;
  background:transparent;
  color:var(--mist);
  font:300 .95rem/1.4 var(--sans);
  outline:0;
}
.notify-line input::placeholder{color:#69666b}
.notify-line button,
.contact-card button{
  border:1px solid var(--line);
  border-radius:4px;
  background:transparent;
  color:var(--gold-soft);
  min-height:42px;
  padding:0 16px;
  font:400 .68rem/1 var(--sans);
  letter-spacing:.24em;
  text-transform:uppercase;
  cursor:pointer;
  transition:border-color .25s ease, background .25s ease;
}
.notify-line button:hover,
.contact-card button:hover{
  border-color:rgba(201,164,92,.6);
  background:rgba(201,164,92,.06);
}
.site-footer{
  position:relative;
  z-index:2;
  border-top:1px solid var(--line-soft);
  padding:44px 18px 34px;
}
.footer-inner{
  width:min(var(--max), 100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:end;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px 22px;
}
.footer-links a,
.footer-inner p{
  margin:0;
  color:#777278;
  font-size:.66rem;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.footer-links a:hover{color:var(--gold)}
.sr{
  opacity:1;
  transform:none;
  transition:none;
}
html.reveal-ready .sr:not(.in){
  opacity:1;
  transform:none;
}
.shop-overlay{
  position:fixed;
  inset:0;
  z-index:80;
  background:rgba(0,0,0,.54);
  display:flex;
  justify-content:flex-end;
}
.shop-overlay[hidden]{display:none}
.shop-drawer{
  width:min(440px, 100%);
  min-height:100svh;
  background:var(--surface);
  color:var(--moon);
  border-left:1px solid var(--line-soft);
  box-shadow:-30px 0 80px rgba(0,0,0,.35);
  padding:22px;
  overflow:auto;
}
.drawer-close{
  margin-left:auto;
  border:0;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  display:flex;
  padding:8px 0;
  font-size:.64rem;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.drawer-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin:18px 0 24px;
}
.drawer-tabs button{
  min-height:42px;
  border:1px solid var(--line-soft);
  border-radius:4px;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  font-size:.68rem;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.drawer-tabs button.active{
  border-color:var(--line);
  color:var(--gold-soft);
  background:rgba(201,164,92,.08);
}
.drawer-content h2{
  margin:0 0 14px;
  color:var(--mist);
  font-family:var(--serif);
  font-size:2.25rem;
  font-weight:400;
}
.drawer-note{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.7;
}
.login-form{
  display:grid;
  gap:10px;
}
.login-form label{
  color:var(--gold);
  font-size:.62rem;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.login-form input{
  width:100%;
  border:1px solid var(--line-soft);
  border-radius:4px;
  background:var(--field-bg);
  color:var(--mist);
  outline:0;
  padding:13px 14px;
}
.drawer-primary,
.drawer-link{
  width:100%;
  min-height:46px;
  text-align:center;
}
.cart-lines{
  display:grid;
  gap:12px;
  margin-bottom:18px;
}
.cart-line{
  display:grid;
  grid-template-columns:74px minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  border:1px solid var(--line-soft);
  border-radius:8px;
  padding:10px;
  background:rgba(255,255,255,.025);
}
.cart-line img{
  width:74px;
  aspect-ratio:1;
  object-fit:cover;
  border-radius:6px;
  background:#24211e;
}
.cart-line strong,
.cart-line span,
.cart-line small{
  display:block;
}
.cart-line strong{
  color:var(--mist);
  font-family:var(--serif);
  font-size:1.08rem;
  font-weight:500;
}
.cart-line span{
  color:var(--gold);
  margin-top:4px;
  font-size:.84rem;
}
.cart-line small{
  color:var(--muted);
  margin-top:4px;
  font-size:.62rem;
  letter-spacing:.12em;
}
.qty-controls{
  display:grid;
  grid-template-columns:30px 28px 30px;
  align-items:center;
  gap:4px;
}
.qty-controls button{
  width:30px;
  height:30px;
  border:1px solid var(--line-soft);
  border-radius:4px;
  background:transparent;
  color:var(--mist);
  cursor:pointer;
}
.qty-controls span{
  text-align:center;
  color:var(--mist);
}

html[data-theme="light"]{
  --void:#f7f1e8;
  --black:#fbf8f2;
  --black-2:#ffffff;
  --black-3:#f0e6d8;
  --moon:#35302d;
  --mist:#171414;
  --muted:#756d66;
  --line:rgba(151,112,55,.32);
  --line-soft:rgba(52,42,34,.14);
  --surface:#fffaf4;
  --surface-2:#f4eadf;
  --field-bg:rgba(255,255,255,.72);
  --shadow:0 22px 58px rgba(70,50,30,.13);
}
html[data-theme="light"] body{
  background:var(--void);
  color:var(--moon);
}
html[data-theme="light"] body::before{
  background:
    radial-gradient(ellipse at 18% 0%, rgba(201,164,92,.18), transparent 42%),
    linear-gradient(135deg, #fffaf4 0%, #f7f1e8 52%, #efe1d0 100%);
}
html[data-theme="light"] body::after{opacity:.12}
html[data-theme="light"] .site-header{
  background:rgba(255,250,244,.94);
}
html[data-theme="light"] .nav-links a{color:#514941}
html[data-theme="light"] .nav-links a:hover,
html[data-theme="light"] .nav-links a.active{color:#171414}
html[data-theme="light"] .brand-mark span,
html[data-theme="light"] .micro{color:#6b625a}
html[data-theme="light"] .nav-actions button,
html[data-theme="light"] .text-cta,
html[data-theme="light"] .ghost-cta,
html[data-theme="light"] .product-purchase button{
  color:#171414;
  background:rgba(255,255,255,.62);
}
html[data-theme="light"] .hero-media img,
html[data-theme="light"] .page-hero .hero-media img{
  opacity:.28;
  filter:saturate(.95) contrast(1.02);
}
html[data-theme="light"] .hero-media::after{
  background:
    linear-gradient(180deg, rgba(255,250,244,.18), rgba(247,241,232,.56) 62%, var(--void) 100%),
    radial-gradient(ellipse at center, rgba(255,255,255,.08) 0%, rgba(255,255,255,.34) 100%);
}
html[data-theme="light"] .feature,
html[data-theme="light"] .product-card,
html[data-theme="light"] .spec-card,
html[data-theme="light"] .step,
html[data-theme="light"] .scent-note,
html[data-theme="light"] .partner-card,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .image-panel{
  background:var(--surface);
}
html[data-theme="light"] .feature p,
html[data-theme="light"] .spec-card p,
html[data-theme="light"] .product-card p,
html[data-theme="light"] .step p,
html[data-theme="light"] .partner-card p,
html[data-theme="light"] .scent-note p,
html[data-theme="light"] .system-copy p,
html[data-theme="light"] .blog-card p,
html[data-theme="light"] .gallery-card p,
html[data-theme="light"] .social-card p,
html[data-theme="light"] .forum-feed p,
html[data-theme="light"] .section-copy,
html[data-theme="light"] .code-item p{
  color:#4f4842;
}
html[data-theme="light"] .display,
html[data-theme="light"] .section-title,
html[data-theme="light"] .serif-line,
html[data-theme="light"] .home-message,
html[data-theme="light"] .lede,
html[data-theme="light"] .feature h2,
html[data-theme="light"] .feature h3,
html[data-theme="light"] .product-card h3,
html[data-theme="light"] .system-copy h3,
html[data-theme="light"] .blog-card h3,
html[data-theme="light"] .gallery-card strong,
html[data-theme="light"] .social-card strong,
html[data-theme="light"] .contact-card h2,
html[data-theme="light"] .code-item strong{
  color:#171414;
}
html[data-theme="light"] .dark-band{
  background:rgba(255,255,255,.58);
}
html[data-theme="light"] .field input,
html[data-theme="light"] .field select,
html[data-theme="light"] .field textarea,
html[data-theme="light"] .forum-form input,
html[data-theme="light"] .forum-form textarea,
html[data-theme="light"] .reply-form input,
html[data-theme="light"] .login-form input{
  background:rgba(255,255,255,.76);
  color:var(--mist);
}
html[data-theme="light"] .shop-overlay{
  background:rgba(38,31,26,.38);
}

@media(max-width:1040px){
  .nav{
    width:100%;
    padding-left:18px;
    min-height:72px;
    flex-wrap:wrap;
  }
  .nav-links{
    justify-content:flex-start;
    padding-right:18px;
  }
  .nav-actions{
    padding-right:18px;
  }
  .wordmark{font-size:6.4rem}
  .display{font-size:3.6rem}
  .section-title{font-size:2.75rem}
  .serif-line{font-size:2.45rem}
  .feature-grid,
  .product-grid,
  .curation-strip,
  .system-grid,
  .social-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .brand-spec-grid,
  .partner-grid,
  .scent-pyramid,
  .blog-grid,
  .gallery-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .ritual-steps{grid-template-columns:repeat(2, minmax(0,1fr))}
  .split,
  .split.reverse,
  .contact-panel,
  .forum-panel{grid-template-columns:1fr}
  .forum-form{position:relative;top:auto}
}

@media(max-width:700px){
  .nav{align-items:flex-start;flex-direction:column;gap:2px;padding:14px 0 0 18px}
  .brand-mark strong{font-size:1.35rem}
  .nav-links{
    width:100%;
    flex-wrap:wrap;
    overflow-x:visible;
    padding:6px 18px 8px 0;
  }
  .nav-actions{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
    padding:0 18px 12px 0;
  }
  .nav-actions button{
    flex:1 1 92px;
  }
  .nav-links a{padding:12px 10px 10px;font-size:.62rem}
  .nav-links a::after{bottom:11px}
  .hero{min-height:auto;padding-top:58px;padding-bottom:48px}
  .page-hero{min-height:auto;padding:82px 18px 58px}
  .wordmark{font-size:3.8rem;letter-spacing:.14em;text-indent:.14em}
  .home-message{font-size:1.45rem}
  .display{font-size:2.72rem}
  .lede{font-size:1.28rem}
  .section{padding:68px 18px}
  .section-head{display:block}
  .section-copy{margin-top:16px}
  .section-title{font-size:2.15rem}
  .serif-line{font-size:1.92rem}
  .feature-grid,
  .product-grid,
  .curation-strip,
  .system-grid,
  .brand-spec-grid,
  .partner-grid,
  .scent-pyramid,
  .ritual-steps,
  .code-list,
  .mood-grid,
  .blog-grid,
  .social-grid,
  .gallery-grid{grid-template-columns:1fr}
  .mood-grid .image-panel:first-child{grid-row:auto}
  .image-panel img{min-height:260px}
  .footer-inner{grid-template-columns:1fr}
  .notify-line{align-items:stretch;flex-direction:column}
  .notify-line button{width:100%}
  .cart-line{grid-template-columns:62px minmax(0,1fr)}
  .qty-controls{grid-column:2}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .sr{transition:none}
  html.reveal-ready .sr:not(.in){opacity:1;transform:none}
  .product-art img{transition:none}
}

/* Premium collection discovery */
.collection-toolbar{
  display:grid;
  grid-template-columns:minmax(240px,.9fr) 1.2fr auto;
  gap:14px;
  align-items:end;
  margin:0 0 26px;
  padding:18px;
  border:1px solid var(--line-soft);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  box-shadow:var(--shadow);
}
.collection-search{display:grid;gap:8px}
.collection-search label{color:var(--gold);font-size:.62rem;letter-spacing:.24em;text-transform:uppercase}
.collection-search input{
  min-height:46px;
  border:1px solid var(--line-soft);
  border-radius:4px;
  background:rgba(0,0,0,.28);
  color:var(--mist);
  outline:0;
  padding:0 14px;
}
.collection-search input:focus{border-color:rgba(201,164,92,.58)}
.collection-filters{display:flex;flex-wrap:wrap;gap:8px}
.collection-filters button{
  min-height:38px;
  border:1px solid var(--line-soft);
  border-radius:999px;
  background:rgba(255,255,255,.018);
  color:#aaa5a4;
  cursor:pointer;
  padding:0 13px;
  font-size:.62rem;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.collection-filters button:hover,
.collection-filters button.active{border-color:var(--line);color:var(--gold-soft);background:rgba(201,164,92,.08)}
.collection-count{margin:0;color:var(--muted);font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;white-space:nowrap}
.no-products{grid-column:1/-1;border:1px dashed var(--line);border-radius:10px;padding:36px;text-align:center;color:var(--muted);background:rgba(255,255,255,.018)}
.no-products strong{display:block;color:var(--mist);font-family:var(--serif);font-size:1.7rem;font-weight:500;margin-bottom:8px}
.product-card[hidden],.no-products[hidden]{display:none!important}
@media(max-width:980px){.collection-toolbar{grid-template-columns:1fr}.collection-count{white-space:normal}.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){.product-grid{grid-template-columns:1fr}.collection-toolbar{padding:14px}.collection-filters{overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}.collection-filters button{flex:0 0 auto}}


/* FNTSY final logo + corporate policy update */
.brand-mark{align-items:flex-start;justify-content:center;gap:6px;}
.brand-logo{width:142px;max-height:56px;object-fit:contain;filter:drop-shadow(0 14px 28px rgba(0,0,0,.24));}
.site-footer .brand-logo{width:156px;}
.brand-mark strong{display:none;}
.brand-mark span{font-size:.56rem;letter-spacing:.24em;color:var(--muted);}
.hero-logo{width:min(420px,78vw);margin:0 auto 8px;filter:drop-shadow(0 24px 70px rgba(0,0,0,.42));}
.policy-band{border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.policy-head{align-items:flex-end;}
.policy-section-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:24px;}
.policy-card{position:relative;display:grid;grid-template-columns:54px minmax(0,1fr);gap:18px;padding:26px;border:1px solid var(--line-soft);border-radius:26px;background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));box-shadow:var(--shadow);overflow:hidden;}
.policy-card::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 18% 0%,rgba(201,164,92,.16),transparent 38%);pointer-events:none;}
.policy-number{position:relative;z-index:1;width:42px;height:42px;border-radius:999px;border:1px solid var(--line);display:grid;place-items:center;color:var(--gold-soft);font-size:.68rem;letter-spacing:.18em;}
.policy-card > div:last-child{position:relative;z-index:1;}
.policy-card small{display:block;margin:0 0 10px;color:var(--gold);font-size:.66rem;letter-spacing:.28em;text-transform:uppercase;}
.policy-card h3{margin:0 0 12px;font-family:var(--serif);font-size:1.9rem;line-height:1.02;font-weight:400;color:var(--mist);}
.policy-card p{margin:0 0 16px;color:#bbb7b8;line-height:1.75;}
.policy-card .spec-list{margin-top:12px;}
.policy-page-sections{grid-template-columns:1fr;max-width:980px;margin-inline:auto;}
.policy-page-sections .policy-card{grid-template-columns:72px minmax(0,1fr);padding:34px;}
.policy-hero .page-hero-inner{max-width:920px;}
.image-panel .brand-logo, .image-panel img[src*="fntsy-logo-tagline"]{padding:44px;object-fit:contain;background:radial-gradient(circle at center,rgba(201,164,92,.12),transparent 62%);}
@media (max-width:820px){.policy-section-list{grid-template-columns:1fr}.policy-card,.policy-page-sections .policy-card{grid-template-columns:1fr;padding:22px}.brand-logo{width:126px}.hero-logo{width:min(320px,82vw)}}
