:root {
  --bg: #0B0B0C;
  --bg-2: #0E0D0F;
  --panel: rgba(8, 8, 10, 0.72);
  --panel-2: rgba(8, 8, 10, 0.80);
  --panel-hover: rgba(18, 16, 20, 0.82);
  --cream: #F3ECDD;
  --cream-2: #CFC6B4;
  --cream-3: #8C8474;
  --gold: #C9A55C;
  --gold-2: #E6CB8B;
  --gold-deep: #8A6F36;
  --line: rgba(243, 236, 221, 0.16);
  --line-2: rgba(243, 236, 221, 0.08);
  --hair: rgba(243, 236, 221, 0.12);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --mono: "Inter", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --maxw: 1320px;
  --track-wide: 0.25em;
}
* { box-sizing: border-box; margin: 0; border-radius: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: radial-gradient(120% 90% at 80% 12%, #15110b 0%, var(--bg) 46%, #060607 100%);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 300;
  color: var(--cream);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
main, .footer { position: relative; z-index: 1; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.04; letter-spacing: -0.01em; font-weight: 400; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--gold); color: var(--bg); z-index: 9999; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; }
.skip-link:focus { top: 1rem; }
.bg3d { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg3d canvas { display: block; width: 100% !important; height: 100% !important; }
.splash { position: fixed; inset: 0; z-index: 1000; background: var(--bg); display: grid; place-items: center; transition: opacity .6s var(--ease-out), visibility 0s .6s; }
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-inner { text-align: center; }
.splash-mark { display: block; font-family: var(--sans); font-weight: 300; font-size: clamp(1.6rem, 6vw, 3rem); color: var(--cream); letter-spacing: .42em; text-transform: uppercase; padding-left: .42em; animation: markIn .8s var(--ease-out) both; }
.splash-word { display: block; margin-top: 1rem; font-family: var(--sans); letter-spacing: .4em; text-transform: uppercase; font-size: .6rem; color: var(--gold); padding-left: .4em; animation: wordIn .7s .25s var(--ease-out) both; }
@keyframes markIn { from { opacity: 0; letter-spacing: .7em; } to { opacity: 1; letter-spacing: .42em; } }
@keyframes wordIn { from { opacity: 0; } to { opacity: 1; } }
.spray-flash { position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: 0; background: radial-gradient(46% 40% at 72% 46%, rgba(230,203,139,.18), transparent 70%); mix-blend-mode: screen; }
.spray-flash.is-on { animation: sprayFlash 1.1s var(--ease-out); }
@keyframes sprayFlash { 0% { opacity: 0; } 18% { opacity: 1; } 100% { opacity: 0; } }
.drip { animation: drip .9s var(--ease-soft); }
@keyframes drip { 0% { filter: blur(0); letter-spacing: -.015em; } 30% { filter: blur(1.4px); letter-spacing: .005em; } 100% { filter: blur(0); letter-spacing: -.015em; } }
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 1.4rem var(--gutter); transition: all .5s var(--ease-out); }
.nav.is-scrolled { background: rgba(8,8,10,.78); backdrop-filter: blur(16px) saturate(130%); -webkit-backdrop-filter: blur(16px) saturate(130%); border-bottom: 1px solid var(--hair); padding-block: 1rem; }
.nav-brand { grid-column: 2; justify-self: center; font-family: var(--sans); font-weight: 400; font-size: clamp(.9rem, 1.4vw, 1.05rem); letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--cream); padding-left: var(--track-wide); }
.nav-links { grid-column: 1; display: none; gap: 2.2rem; }
.nav-links a { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-2); position: relative; transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease-out); }
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { grid-column: 3; justify-self: end; display: none; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; padding: .7rem 1.4rem; border: 1px solid var(--line); color: var(--cream); transition: all .4s var(--ease-out); }
.nav-cta:hover { border-color: var(--gold); color: var(--gold); }
.nav-hamburger { display: grid; place-items: center; width: 40px; height: 40px; background: none; border: 0; gap: 4px; flex-direction: column; padding: 0; cursor: pointer; grid-column: 1; justify-self: start; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--cream); transition: all .3s var(--ease-out); display: block; }
.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(10px, 10px); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
.nav-mobile-menu { position: fixed; top: 60px; left: 0; right: 0; background: rgba(8,8,10,.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--hair); max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.nav-mobile-menu.is-open { max-height: 300px; }
.nav-mobile-menu a { display: block; padding: 1.2rem var(--gutter); color: var(--cream-2); font-size: .88rem; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--hair); transition: color .3s; }
.nav-mobile-menu a:hover { color: var(--gold); }
@media (min-width: 960px) { .nav-links, .nav-cta { display: flex; } .nav-hamburger, .nav-mobile-menu { display: none !important; } }
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 8rem var(--gutter) 6rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6) contrast(1.05) brightness(.26) blur(2px); opacity: .22; }
.hero-grain { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .04; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-inner { position: relative; z-index: 5; max-width: 1000px; }
.kicker { font-family: var(--mono); font-size: .68rem; letter-spacing: .28em; font-weight: 400; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: .7rem; }
.kicker .dot { width: 5px; height: 5px; background: var(--gold); box-shadow: 0 0 0 0 rgba(201,165,92,.5); animation: pulse 2.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(201,165,92,.5); } 70% { box-shadow: 0 0 0 8px rgba(201,165,92,0); } 100% { box-shadow: 0 0 0 0 rgba(201,165,92,0); } }
.hero-wordmark { font-family: var(--sans); font-weight: 300; font-size: clamp(2.2rem, 9vw, 6.4rem); line-height: 1; letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--cream); padding-left: var(--track-wide); margin: 1.6rem 0 0; text-shadow: 0 8px 60px rgba(0,0,0,.6); }
.hero-rule { width: 1px; height: clamp(40px, 7vw, 84px); background: linear-gradient(var(--gold), transparent); margin: 1.8rem auto 1.4rem; }
.hero-statement { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(1.5rem, 4.2vw, 3rem); line-height: 1.12; color: var(--cream); max-width: 18ch; margin: 0 auto; }
.hero-sub { color: var(--cream-2); max-width: 52ch; margin: 1.6rem auto 0; font-size: 1.02rem; font-weight: 300; }
.hero-search { display: flex; align-items: center; gap: .5rem; margin: 2.4rem auto 0; max-width: 480px; background: var(--panel); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--line); padding: .35rem .35rem .35rem 1.4rem; transition: border-color .4s var(--ease-out); }
.hero-search:focus-within { border-color: var(--gold); }
.hero-search input { flex: 1; background: none; border: 0; outline: none; font-size: .98rem; font-weight: 300; padding: .7rem 0; min-width: 0; }
.hero-search input::placeholder { color: var(--cream-3); }
.hero-search button { width: 46px; height: 46px; background: var(--gold); color: var(--bg); font-size: 1.1rem; flex-shrink: 0; transition: all .35s var(--ease-out); }
.hero-search button:hover { background: var(--gold-2); }
.hero-meta { margin-top: 1.4rem; font-size: .64rem; letter-spacing: .24em; color: var(--cream-3); text-transform: uppercase; }
.hero-scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 5; width: 40px; height: 40px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); font-size: .9rem; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }
.section-index { font-family: var(--sans); font-size: .68rem; letter-spacing: .26em; font-weight: 400; text-transform: uppercase; color: var(--cream-3); margin-bottom: 1.5rem; }
.section-head { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.3rem, 6vw, 4.8rem); line-height: 1; letter-spacing: -.015em; }
em { font-family: var(--serif); font-style: italic; color: var(--gold-2); }
.section-lead { color: var(--cream-2); max-width: 46ch; margin-top: 1.2rem; font-size: 1.02rem; font-weight: 300; }
.manifesto { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 12vw, 9rem) var(--gutter); }
.manifesto-grid { display: grid; gap: 2.6rem; background: var(--panel); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--hair); padding: clamp(2rem, 5vw, 4rem); }
.manifesto-text p { color: var(--cream-2); font-size: 1.04rem; font-weight: 300; }
.manifesto-text p + p { margin-top: 1.2rem; }
@media (min-width: 960px) { .manifesto-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; } }
.families { padding: clamp(3rem, 8vw, 6rem) 0; }
.family-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
@media (min-width: 600px) { .family-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .family-grid { grid-template-columns: repeat(3, 1fr); } }
.family-card { background: var(--panel); padding: 2.4rem 2rem; text-align: left; display: flex; flex-direction: column; gap: .7rem; min-height: 210px; transition: background .45s var(--ease-out); position: relative; overflow: hidden; }
.family-card:hover { background: var(--panel-hover); }
.family-card.is-selected { background: var(--panel-hover); box-shadow: inset 0 0 0 1px var(--gold); }
.family-glyph { font-size: 1.6rem; color: var(--gold); }
.family-card h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.family-card p { color: var(--cream-3); font-size: .9rem; line-height: 1.55; font-weight: 300; }
.process { padding: clamp(4rem, 10vw, 7rem) 0; border-top: 1px solid var(--hair); }
.process-grid { max-width: var(--maxw); margin: 2.5rem auto 0; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
@media (min-width: 720px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { background: var(--panel); padding: 2.2rem 1.8rem; display: flex; flex-direction: column; gap: .6rem; }
.process-num { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold); }
.process-step h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--cream); }
.process-step p { color: var(--cream-3); font-size: .88rem; line-height: 1.55; font-weight: 300; }
.catalog { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 7rem) var(--gutter); }
.finder { margin: 0 0 2.6rem; }
.finder-search { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.4rem; background: var(--panel); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--line); transition: border-color .4s var(--ease-out); }
.finder-search:focus-within { border-color: var(--gold); }
.finder-ic { color: var(--gold); font-size: 1.1rem; }
.finder-search input { flex: 1; background: none; border: 0; outline: none; font-size: 1rem; font-weight: 300; min-width: 0; }
.finder-search input::placeholder { color: var(--cream-3); }
.finder-clear { width: 30px; height: 30px; border: 1px solid var(--line); color: var(--cream-2); font-size: .7rem; }
.finder-clear:hover { color: var(--gold); border-color: var(--gold); }
.finder-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-top: 1.2rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { padding: .55rem 1.1rem; border: 1px solid var(--line); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-2); background: transparent; transition: all .3s var(--ease-out); white-space: nowrap; }
.chip:hover { border-color: var(--gold); color: var(--cream); }
.chip.is-active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.finder-gender select { padding: .6rem 1.1rem; background: var(--panel); border: 1px solid var(--line); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-2); cursor: pointer; }
.finder-count { margin-top: 1.4rem; font-size: .64rem; letter-spacing: .2em; color: var(--cream-3); text-transform: uppercase; }
.catalog-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
@media (min-width: 600px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }
.perfume { background: var(--panel); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 1.9rem 1.7rem; display: flex; flex-direction: column; gap: 1.1rem; transition: background .5s var(--ease-out); position: relative; overflow: hidden; }
.perfume:hover { background: var(--panel-hover); }
.perfume-top { display: flex; justify-content: space-between; align-items: start; gap: 1rem; }
.perfume-brand { font-family: var(--sans); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.perfume-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; line-height: 1.05; margin-top: .35rem; }
.perfume-price { font-family: var(--sans); font-weight: 300; font-size: 1.1rem; letter-spacing: .04em; color: var(--cream); white-space: nowrap; }
.perfume-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag { font-size: .58rem; padding: .3rem .7rem; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--line); color: var(--cream-2); }
.tag-fam { color: var(--gold); border-color: rgba(201,165,92,.35); }
.perfume-accord { color: var(--cream-2); font-size: .9rem; line-height: 1.6; font-weight: 300; }
.pyramid { display: flex; flex-direction: column; gap: .6rem; border-top: 1px solid var(--hair); padding-top: 1.1rem; margin-top: auto; margin-bottom: 1.2rem; }
.btn-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; background: transparent; color: var(--gold); border: 1px solid var(--gold); text-align: center; padding: .6rem 1rem; border-radius: 4px; font-size: .85rem; font-weight: 400; letter-spacing: .05em; text-decoration: none; transition: all .3s var(--ease-out); width: 100%; box-sizing: border-box; }
.btn-whatsapp:hover { background: var(--gold); color: var(--bg); }
.whatsapp-buttons { position: fixed; bottom: 2rem; right: 2rem; display: flex; flex-direction: column; gap: 1rem; z-index: 50; }
.whatsapp-btn { display: flex; align-items: center; gap: .8rem; background: white; border: 1px solid var(--line); padding: .8rem 1.2rem; border-radius: 8px; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,.15); transition: all .3s var(--ease-out); }
.whatsapp-btn:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(201,165,92,.2); transform: translateY(-3px); }
.whatsapp-icon { font-size: 1.4rem; display: flex; align-items: center; }
.whatsapp-text { font-size: .75rem; color: var(--cream-3); font-weight: 400; letter-spacing: .08em; text-transform: uppercase; }
.whatsapp-btn:hover .whatsapp-text { color: var(--gold); }
@media (max-width: 640px) { .whatsapp-buttons { bottom: 1rem; right: 1rem; gap: .6rem; } .whatsapp-btn { padding: .6rem 1rem; font-size: .7rem; } .whatsapp-icon { font-size: 1.2rem; } }
.pyr-row { display: grid; grid-template-columns: 70px 1fr; gap: .7rem; align-items: baseline; }
.pyr-label { font-family: var(--sans); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-3); }
.pyr-notes { font-size: .82rem; color: var(--cream); font-weight: 300; }
.pyr-notes b { color: var(--gold-2); font-weight: 400; }
.catalog-empty { text-align: center; color: var(--cream-3); padding: 3rem 0; font-family: var(--serif); font-size: 1.4rem; font-style: italic; }
.btn-clear-filters { margin-top: 1.2rem; font-family: var(--sans); font-style: normal; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); background: transparent; border: 1px solid var(--gold); padding: .8rem 1.5rem; cursor: pointer; transition: background .3s var(--ease-out), color .3s var(--ease-out); }
.btn-clear-filters:hover { background: var(--gold); color: var(--bg); }
.ritual { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 8rem) var(--gutter); display: grid; gap: 3rem; }
@media (min-width: 960px) { .ritual { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } }
.ritual-media { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.ritual-media figure { overflow: hidden; }
.ritual-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; filter: saturate(.85) brightness(.82); transition: transform .9s var(--ease-out), filter .9s var(--ease-out); }
.ritual-media figure:hover img { transform: scale(1.04); filter: saturate(1) brightness(1); }
.ritual-tall { grid-row: span 2; }
.ritual-tall img { aspect-ratio: 3/5.6; }
.ritual-text { background: var(--panel); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--hair); padding: clamp(1.8rem, 4vw, 3rem); }
.ritual-steps { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.7rem; }
.ritual-steps li { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; padding-bottom: 1.7rem; border-bottom: 1px solid var(--hair); }
.ritual-steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.ritual-steps span { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--gold); min-width: 90px; }
.ritual-steps p { color: var(--cream-2); font-size: .94rem; font-weight: 300; }
.faq { padding: clamp(4rem, 10vw, 7rem) 0; border-top: 1px solid var(--hair); }
.faq-list { max-width: var(--maxw); margin: 2.5rem auto 0; padding: 0 var(--gutter); display: flex; flex-direction: column; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.faq-item { background: var(--panel); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.5rem 1.7rem; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--cream); display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .3s var(--ease-out); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--sans); font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform .3s var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--gold-2); }
.faq-item p { padding: 0 1.7rem 1.5rem; color: var(--cream-2); font-size: .95rem; font-weight: 300; line-height: 1.62; max-width: 62ch; }
.reviews { padding: clamp(4rem, 10vw, 7rem) 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.rating-summary { font-family: var(--sans); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: 1rem; }
.reviews-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .reviews-wrap { grid-template-columns: 380px 1fr; gap: 3.5rem; align-items: start; } }
.review-form { background: var(--panel-2); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--hair); padding: 2rem; display: flex; flex-direction: column; gap: 1.2rem; position: sticky; top: 96px; }
.review-form h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-family: var(--sans); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-2); }
.field label span { color: var(--cream-3); }
.field input, .field textarea { background: rgba(0,0,0,.4); border: 1px solid var(--line); padding: .8rem .95rem; font-size: .94rem; font-weight: 300; outline: none; transition: border-color .3s var(--ease-out); }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 84px; }
.stars-input { display: flex; gap: .3rem; }
.star { font-size: 1.4rem; color: rgba(243,236,221,.18); transition: color .2s var(--ease-out), transform .2s var(--ease-out); line-height: 1; }
.star.is-on { color: var(--gold); }
.star:hover { transform: scale(1.12); }
.form-msg { font-size: .8rem; color: var(--gold-2); min-height: 1.2em; }
.reviews-list { display: flex; flex-direction: column; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.review { background: var(--panel); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 1.7rem; transition: background .4s var(--ease-out); }
.review:hover { background: var(--panel-hover); }
.review-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.review-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.review-stars { color: var(--gold); letter-spacing: .1em; font-size: .9rem; }
.review-stars .off { color: rgba(243,236,221,.18); }
.review-frag { font-family: var(--sans); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: .35rem; }
.review-text { color: var(--cream-2); margin-top: .85rem; font-size: .95rem; line-height: 1.62; font-weight: 300; }
.review-date { font-family: var(--sans); font-size: .58rem; color: var(--cream-3); margin-top: .9rem; letter-spacing: .14em; text-transform: uppercase; }
.review.is-new { animation: reviewIn .6s var(--ease-out) both; }
@keyframes reviewIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
.review-tag-mine { color: var(--gold-deep); }
.footer { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) var(--gutter) 2.5rem; }
.footer-top { display: grid; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--hair); }
@media (min-width: 720px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-mark { font-family: var(--sans); font-weight: 300; font-size: 1.1rem; letter-spacing: .3em; text-transform: uppercase; color: var(--cream); display: block; padding-left: .3em; }
.footer-tag { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--cream-2); margin-top: 1rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.footer-cols h4 { font-family: var(--sans); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; font-weight: 400; }
.footer-cols a, .footer-cols span { display: block; color: var(--cream-2); font-size: .88rem; margin-bottom: .6rem; font-weight: 300; transition: color .3s; }
.footer-cols a:hover { color: var(--gold); }
.footer-newsletter { padding: 2.5rem 0; border-bottom: 1px solid var(--hair); display: grid; gap: 1.2rem; }
@media (min-width: 720px) { .footer-newsletter { grid-template-columns: 1fr auto; align-items: center; gap: 2rem; } }
.footer-newsletter h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--cream); }
.footer-newsletter > div > p { color: var(--cream-3); font-size: .85rem; margin-top: .4rem; font-weight: 300; }
.newsletter-form { display: flex; gap: .7rem; flex-wrap: wrap; }
.newsletter-form input { background: rgba(0,0,0,.4); border: 1px solid var(--line); padding: .8rem .95rem; font-size: .9rem; font-weight: 300; outline: none; color: var(--cream); min-width: 220px; flex: 1; transition: border-color .3s var(--ease-out); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--cream-3); }
.footer-newsletter .form-msg { grid-column: 1 / -1; margin: 0; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; margin-top: 2rem; font-family: var(--sans); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-3); }
.footer-bottom a { color: var(--cream-3); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--gold); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll, .kicker .dot { animation: none; }
  .spray-flash, .drip { animation: none !important; }
}
