:root {
  --bg: #09060e;
  --panel: #140d20;
  --purple: #6f2da8;
  --purple-light: #a86ce0;
  --gold: #d8b45a;
  --text: #f8f2ff;
  --muted: #c8bdd4;
  --line: rgba(216, 180, 90, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 10%, rgba(111,45,168,.22), transparent 32%),
    linear-gradient(180deg, #08050c 0%, #0c0712 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(9, 6, 14, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; gap: 10px; align-items: center; font-weight: 700; }
.brand-mark { font-size: 1.35rem; }
nav { display: flex; gap: 24px; color: var(--muted); }
nav a:hover { color: var(--gold); }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 110px) clamp(20px, 6vw, 88px);
}
.eyebrow { color: var(--gold); letter-spacing: .18em; font-size: .78rem; font-weight: 700; }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; }
h1 { font-size: clamp(3.2rem, 8vw, 7rem); line-height: .88; margin: 18px 0 24px; }
h2 { font-size: clamp(2.3rem, 5vw, 4.4rem); line-height: 1; margin: 12px 0 20px; }
h3 { font-size: 1.55rem; margin: 10px 0 6px; }
.lead { max-width: 650px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.7; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { padding: 14px 20px; border-radius: 999px; font-weight: 700; }
.primary { background: linear-gradient(135deg, var(--gold), #f3d88d); color: #1a1022; }
.secondary { border: 1px solid var(--line); }
.hero-card { max-width: 560px; margin-inline: auto; border: 1px solid var(--line); padding: 10px; background: rgba(255,255,255,.025); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.hero-card img { aspect-ratio: 4/5; object-fit: cover; }

.quote-strip { border-block: 1px solid var(--line); padding: 26px 20px; text-align: center; color: #efe3ff; background: rgba(111,45,168,.08); }
.quote-strip p { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.35rem, 3vw, 2rem); }

.section { padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 88px); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; border-bottom: 1px solid var(--line); }
.story-text { color: var(--muted); font-size: 1.1rem; line-height: 1.85; }
.section-heading { max-width: 760px; }
.section-heading > p:last-child { color: var(--muted); line-height: 1.7; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 36px; }
.product-grid article { padding: 26px; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; }
.product-grid article span { font-size: 2rem; }
.product-grid p { color: var(--muted); }
.follow { text-align: center; background: linear-gradient(180deg, rgba(111,45,168,.06), rgba(111,45,168,.16)); }
.social-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin: 28px 0 16px; }
.social-row a { border: 1px solid var(--line); border-radius: 999px; padding: 13px 22px; font-weight: 700; }
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
.small-note { color: var(--muted); font-size: .85rem; }
footer { text-align: center; padding: 28px; color: var(--muted); border-top: 1px solid var(--line); }

@media (max-width: 850px) {
  nav { display: none; }
  .hero, .story-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  h1 { font-size: 3.7rem; }
}
