:root{
  --bg0:#05060a;
  --bg1:#07131c;
  --panel: rgba(255,255,255,.07);
  --panel2: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.14);
  --stroke2: rgba(201,178,123,.30);
  --line: rgba(255,255,255,.14);
  --text:#f7f7f8;
  --muted: rgba(247,247,248,.72);
  --muted2: rgba(247,247,248,.56);
  --gold:#c9b27b;
  --gold2:#e7d8ab;
  --shadow: 0 26px 90px rgba(0,0,0,.70);
  --r-lg: 26px;
  --r-md: 18px;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 760px at 12% 0%, rgba(201,178,123,.18), transparent 62%),
    radial-gradient(900px 680px at 88% 18%, rgba(201,178,123,.10), transparent 60%),
    radial-gradient(950px 720px at 8% 92%, rgba(122,47,47,.10), transparent 62%),
    radial-gradient(900px 700px at 92% 92%, rgba(40,120,160,.08), transparent 64%),
    linear-gradient(180deg, var(--bg0) 0%, #05070c 28%, #06121a 58%, var(--bg1) 100%);
}

/* Subtle grain to reduce gradient banding on mobile screens (matte, not glossy). */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1;
  opacity:.030;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

/* Keep content above the grain overlay */
.topbar, .shell{position:relative; z-index:2;}

a{color:inherit; text-decoration:none}
button{font:inherit}
img{max-width:100%; display:block}

.shell{max-width:1080px; margin:0 auto; padding:22px 16px 72px}

.topbar{
  position:sticky; top:0; z-index:50;
  padding:14px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(7,7,9,.74), rgba(7,7,9,.38));
  border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar-inner{
  max-width:1080px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}

.brand{display:flex; align-items:center; gap:12px; min-width:0}
.badge{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(201,178,123,.34);
  background: radial-gradient(120% 120% at 0% 0%, rgba(201,178,123,.18), rgba(255,255,255,.04));
  color:var(--gold);
  font-weight:900; letter-spacing:.14em;
  flex:0 0 auto;
}
.brand-text{min-width:0}
.brand-title{font-weight:900; letter-spacing:.02em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.brand-sub{font-size:12px; color:var(--muted2); margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

.navbtn{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.075);
  color:var(--text);
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
}
.nav{
  max-width:1080px; margin:0 auto;
  display:flex; flex-wrap:wrap; gap:10px;
  padding:12px 0 4px;
}
.nav a{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  color: rgba(246,246,247,.88);
  font-size:13px;
}
.nav a:hover{border-color: rgba(201,178,123,.40); background: rgba(201,178,123,.10)}

.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.05) 55%, rgba(255,255,255,.035) 100%);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero{
  margin-top:18px;
  padding:22px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(1000px 450px at 0% 0%, rgba(201,178,123,.14), transparent 62%),
    radial-gradient(700px 400px at 100% 20%, rgba(201,178,123,.08), transparent 62%);
  pointer-events:none;
}
.hero-inner{position:relative; display:grid; gap:18px}
.kicker{
  display:flex; align-items:center; gap:12px; flex-wrap:wrap;
  color: rgba(246,246,247,.78);
  font-size:12px; letter-spacing:.22em; text-transform:uppercase;
}
.kicker .dot{
  width:6px; height:6px; border-radius:999px; background: rgba(201,178,123,.85);
  box-shadow: 0 0 0 4px rgba(201,178,123,.12);
}
.hero-title{
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.02;
  font-size: clamp(34px, 6vw, 62px);
  margin:0;
}
.hero-sub{
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:6px;
}
.lane{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 16px;
  border-radius: var(--r-md);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.lane-left{min-width:0}
.lane-title{font-weight:900; font-size:18px}
.lane-sub{color:var(--muted2); margin-top:4px; font-size:13px}
.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(201,178,123,.30);
  background: rgba(201,178,123,.10);
  color: rgba(201,178,123,.95);
  font-weight:800;
  font-size:12px;
  white-space:nowrap;
}

.section{margin-top:26px}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
  margin-bottom:12px;
}
.section-head h2{
  margin:0;
  font-size:22px;
  font-weight:900;
  letter-spacing:.02em;
}
.section-head p{margin:0; color:var(--muted2); max-width:70ch}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

.card{
  padding:16px;
  border-radius: var(--r-lg);
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.085) 0%, rgba(255,255,255,.05) 55%, rgba(255,255,255,.035) 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,.60);
}

.card-top{display:flex; justify-content:space-between; align-items:center; gap:10px}
.chip{
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.20em;
  font-size:11px;
  color: rgba(201,178,123,.92);
  border:1px solid rgba(201,178,123,.28);
  background: rgba(201,178,123,.09);
}
.score{
  padding:8px 12px;
  border-radius: 14px;
  border:1px solid rgba(201,178,123,.38);
  background: linear-gradient(145deg, rgba(201,178,123,.22), rgba(201,178,123,.08));
  font-weight:900;
}

.card h3{
  margin:12px 0 6px;
  font-size:20px;
  font-weight:900;
}
.card .desc{margin:0; color:var(--muted); line-height:1.45}

.product{
  margin-top:14px;
  display:grid;
  grid-template-columns: 80px 1fr;
  gap:12px;
  padding:12px;
  border-radius: var(--r-md);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.bottle{
  width:80px; height:80px; object-fit:contain;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: radial-gradient(120% 120% at 0% 0%, rgba(255,255,255,.18), rgba(255,255,255,.04));
  padding:8px;
}
.pname{font-weight:900}
.pnote{color:var(--muted2); margin-top:4px; font-size:13px; line-height:1.35}

.bullets{margin:12px 0 0 18px; color: rgba(246,246,247,.82)}
.bullets li{margin:7px 0}

.btnrow{display:flex; align-items:center; gap:12px; margin-top:14px; flex-wrap:wrap}
.btn{
  border:1px solid rgba(201,178,123,.45);
  background: linear-gradient(145deg, rgba(201,178,123,.20), rgba(201,178,123,.08));
  color: rgba(201,178,123,.95);
  padding:12px 14px;
  border-radius: 16px;
  font-weight:900;
}
.btn.full{width:100%; justify-content:center; display:inline-flex}
.btn.ghost{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: rgba(246,246,247,.90);
}
.small{font-size:12px; color:var(--muted2)}

.split{
  display:grid; gap:14px;
}

.contentcard h3{margin:10px 0 6px; font-size:18px}
.when{font-size:12px; color:var(--muted2)}

.form{
  display:flex; flex-direction:column; gap:10px;
}
input{
  width:100%;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input::placeholder{color: rgba(246,246,247,.42)}

.footer{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  color: rgba(246,246,247,.86);
}

.modal{
  position:fixed; inset:0; z-index:100;
  display:none; align-items:center; justify-content:center;
  padding:18px;
  background: rgba(0,0,0,.60);
}
.modal.show{display:flex}
.modal-card{
  max-width:560px; width:100%;
  padding:16px;
  border-radius: var(--r-lg);
}
.modal-head{display:flex; justify-content:space-between; align-items:center; gap:10px}
.x{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.075);
  color: var(--text);
  padding:10px 12px;
  border-radius: 14px;
}


.panel::after, .card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,0) 42%, rgba(255,255,255,.06) 72%, rgba(255,255,255,0));
  opacity:.55;
  mix-blend-mode: overlay;
}
.panel, .card{position:relative; overflow:hidden;}

@media (min-width: 860px){
  .hero-inner{grid-template-columns: 1.2fr .8fr; align-items:end}
  .hero-grid{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr 1fr}
  .split{grid-template-columns: 1fr 1fr}
  .btn.full{width:auto}
}


#fragSearch{background:rgba(255,255,255,.06);color:var(--text);border:1px solid var(--line);border-radius:999px;padding:12px 16px;min-width:220px}
#fragSearch::placeholder{color:var(--muted)}
.product-stack{align-items:flex-start}
.collection-bottle{width:100%;max-width:140px;height:140px;object-fit:contain;background:rgba(255,255,255,.03);border:1px solid var(--line);border-radius:18px;padding:10px;margin-bottom:14px}
.fragrance-card .product{display:block}
.fragrance-card .pname{margin-bottom:6px}
.fragrance-card .btn.disabled{pointer-events:none;opacity:.65}
.three-up{grid-template-columns:repeat(3,minmax(0,1fr))}
.directory-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:18px}
.directory-item{padding:18px;border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.025)}
.directory-item h4{margin:10px 0 6px;font-size:18px}
.directory-item img{width:100%;height:150px;object-fit:contain;background:rgba(255,255,255,.03);border:1px solid var(--line);border-radius:16px;padding:10px}
.directory-item .small-note{color:var(--muted);font-size:14px;line-height:1.5;min-height:42px}
.linklist{display:flex;flex-wrap:wrap;gap:12px;margin-top:14px}
@media (max-width:900px){.three-up{grid-template-columns:1fr}.collection-bottle{max-width:120px;height:120px}}


.top-actions{display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-end}
.top-link{text-align:center;min-width:92px}
.collection-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}
.collection-grid .card{height:100%}
#content,#retailers{scroll-margin-top:92px}
@media (max-width:700px){
  .topbar-inner{align-items:flex-start;flex-direction:column}
  .top-actions{width:100%;justify-content:flex-start}
  .brand-sub{white-space:normal}
}
