
:root{
  --bg:#0b0c10;
  --card:#121420;
  --alt:#0f1118;
  --text:#f4f5f7;
  --muted:#b7bdc9;
  --line:rgba(255,255,255,.10);
  --gold:#d8b15a;
  --gold2:#f2d28a;
  --radius:18px;
  --shadow:0 18px 40px rgba(0,0,0,.35);
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(900px 500px at 20% 0%, rgba(216,177,90,.20), transparent 55%),
              radial-gradient(900px 500px at 80% 10%, rgba(242,210,138,.10), transparent 50%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}

.site-header{
  position:sticky;top:0;z-index:10;
  background:rgba(11,12,16,.70);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header-row{display:flex;align-items:center;gap:14px;justify-content:space-between;padding:12px 0}
.brand{display:flex;align-items:center;gap:10px}
.brand-mark{
  width:26px;height:26px;border-radius:8px;
  background: linear-gradient(135deg,var(--gold),rgba(255,255,255,.08));
  box-shadow: 0 10px 24px rgba(216,177,90,.20);
}
.brand-name{font-weight:700;letter-spacing:.3px}
.nav{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
.nav a{color:var(--muted);font-size:14px;padding:8px 10px;border-radius:12px}
.nav a:hover{background:rgba(255,255,255,.06);color:var(--text)}
.nav a[aria-current="page"]{background:rgba(216,177,90,.12);color:var(--text);border:1px solid rgba(216,177,90,.25)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;padding:10px 14px;border-radius:14px;
  border:1px solid var(--line);
  font-weight:600;
  cursor:pointer;
  user-select:none;
}
.btn-primary{
  background: linear-gradient(135deg,var(--gold),var(--gold2));
  color:#1a1307;
  border-color: rgba(255,255,255,.12);
}
.btn-primary:hover{filter:brightness(1.03)}
.btn-ghost{
  background: transparent;color:var(--text);
}
.btn-ghost:hover{background:rgba(255,255,255,.06)}

.hero{padding:44px 0 18px}
.hero-small{padding:40px 0 10px}
.hero-grid{display:grid;grid-template-columns: 1.15fr .85fr; gap:22px; align-items:stretch}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .nav{display:none}
}
.eyebrow{color:var(--gold2);font-weight:700;text-transform:uppercase;letter-spacing:.14em;font-size:12px;margin:0 0 10px}
h1{font-size:42px;line-height:1.05;margin:0 0 12px}
@media (max-width: 520px){h1{font-size:34px}}
.lead{color:var(--muted);font-size:17px;margin:0 0 18px;max-width:56ch}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin:0 0 14px}
.trust{list-style:none;padding:0;margin:10px 0 0;color:var(--muted);display:grid;gap:6px}
.trust li{font-size:14px}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;flex-direction:column;min-height:360px;
}
.product-visual{position:relative;flex:1;display:grid;place-items:center;padding:18px}
.glow{
  position:absolute;inset:-40px;
  background: radial-gradient(260px 240px at 55% 35%, rgba(216,177,90,.45), transparent 60%),
              radial-gradient(340px 280px at 45% 65%, rgba(242,210,138,.22), transparent 60%);
  filter: blur(2px);
}
.bottle{position:relative;z-index:2; width:190px}
.bottle-cap{
  height:42px;border-radius:16px 16px 10px 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.08));
  border:1px solid rgba(255,255,255,.14);
}
.bottle-body{
  margin-top:-6px;
  height:230px;border-radius:22px;
  background: linear-gradient(135deg, rgba(216,177,90,.18), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.12);
  position:relative;
}
.bottle-label{
  position:absolute;left:16px;right:16px;bottom:18px;
  border-radius:16px;
  background: rgba(11,12,16,.65);
  border:1px solid rgba(255,255,255,.10);
  padding:12px;
}
.label-title{font-weight:800;letter-spacing:.2px}
.label-sub{color:var(--muted);font-size:13px;margin-top:2px}
.price-row{
  display:flex;justify-content:space-between;align-items:center;
  gap:12px;padding:14px 14px;
  border-top:1px solid var(--line);
}
.price{font-size:22px;font-weight:800}
.small{color:var(--muted);font-size:14px}
.tiny{color:var(--muted);font-size:12px;margin:0}

.section{padding:26px 0}
.section.alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
h2{font-size:26px;margin:0 0 10px}
p{margin:0 0 12px}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media (max-width: 900px){
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
}

.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.card h3{margin:0 0 6px;font-size:16px}
.card p{margin:0;color:var(--muted);font-size:14px}

.notes{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:14px}
@media (max-width: 900px){.notes{grid-template-columns:1fr}}
.note-col{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.note-title{font-weight:800;margin-bottom:8px;color:var(--gold2)}
.note-col ul{margin:0;padding-left:18px;color:var(--muted)}
.note-col li{margin:6px 0}

.checkout{
  margin-top:14px;
  background: rgba(216,177,90,.08);
  border:1px solid rgba(216,177,90,.18);
  border-radius:var(--radius);
  padding:16px;
}
.checkout-row{display:flex;gap:12px;flex-wrap:wrap;align-items:center}

.faq{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px 16px;
  margin:10px 0;
}
.faq summary{cursor:pointer;font-weight:700}
.faq p{margin-top:10px;color:var(--muted)}

.callout{
  margin-top:16px;
  padding:18px;
  border-radius:var(--radius);
  border:1px dashed rgba(242,210,138,.35);
  background: rgba(255,255,255,.03);
}

.site-footer{
  border-top:1px solid var(--line);
  padding:22px 0 30px;
  background: rgba(0,0,0,.12);
}
.footer-grid{
  display:grid;grid-template-columns:1.2fr .9fr .9fr;
  gap:14px;align-items:start;
}
@media (max-width: 900px){.footer-grid{grid-template-columns:1fr}}
.footer-links{display:grid;gap:8px}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}
.footer-mini{display:flex;align-items:flex-end}
