:root {
  --ivory: #f4efe6;
  --paper: #faf7f1;
  --ink: #1b1714;
  --muted: #6b6258;
  --line: #d9d0c4;
  --copper: #9a5a32;
  --copper-deep: #7a4323;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.55;
}

h1, h2, h3, .wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 { font-size: clamp(3rem, 8vw, 5.6rem); margin: 0 0 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 1rem; }
h3 { font-size: 2.2rem; margin: 0 0 0.6rem; }

a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(720px, calc(100% - 40px)); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px;
}
.wordmark { font-size: 1.6rem; text-decoration: none; letter-spacing: 0.18em; }
.nav { display: flex; gap: 22px; align-items: center; font-size: 0.92rem; }
.nav a { text-decoration: none; color: var(--muted); }
.nav-cta { color: var(--ink) !important; }

.hero { padding: 72px 0 40px; }
.hero-grid, .split, .product-grid, .product-page, .footer-grid {
  display: grid; gap: 40px;
}
.hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
.split { grid-template-columns: 1fr 1fr; align-items: end; }
.product-grid, .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
.product-page { grid-template-columns: 1.2fr 0.8fr; align-items: start; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.72rem; color: var(--copper); margin: 0 0 12px;
}
.lede, .copy { font-size: 1.12rem; color: var(--muted); max-width: 38rem; }
.price { font-family: "Cormorant Garamond", serif; font-size: 2rem; margin: 18px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 20px; border-radius: 999px;
  text-decoration: none; border: 1px solid var(--ink); cursor: pointer;
  font: inherit;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-ghost { background: transparent; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.hero-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 360px;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 18px;
}
.vial, .stick {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.vial span, .stick span { letter-spacing: 0.18em; font-size: 0.86rem; }
.vial em, .stick em { color: var(--muted); font-style: italic; font-family: "Cormorant Garamond", serif; }

.section { padding: 72px 0; }
.products { padding-top: 0; }
.product-card {
  display: block; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line); padding: 28px;
  min-height: 240px;
}
.product-grid { grid-template-columns: 1fr 1fr; }

.waitlist { max-width: 640px; }
.waitlist-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.waitlist-form input, .waitlist-form label {
  font: inherit; color: var(--ink);
}
.waitlist-form input {
  background: var(--paper); border: 1px solid var(--line);
  min-height: 46px; padding: 0 14px; min-width: 200px;
}
.waitlist-form.stacked { display: grid; gap: 12px; }
.waitlist-form.stacked label { display: grid; gap: 6px; font-size: 0.86rem; }
.waitlist-form.stacked input { min-width: 0; width: 100%; }

.points { padding-left: 18px; color: var(--muted); }
.fine { color: var(--muted); font-size: 0.9rem; }
.protocol-list { padding-left: 18px; color: var(--muted); display: grid; gap: 14px; }
.protocol-list strong { color: var(--ink); }
.legal p { color: var(--muted); }

.banner {
  margin: 0; padding: 14px 20px; text-align: center;
  background: var(--ink); color: var(--paper); font-size: 0.92rem;
}

.site-footer { border-top: 1px solid var(--line); padding: 48px 0 28px; }
.footer-mark { letter-spacing: 0.2em; }
.footer-lede, .footer-label, .site-footer a { color: var(--muted); }
.footer-label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; }
.site-footer a { display: block; text-decoration: none; margin: 6px 0; }
.disclaimer { font-size: 0.75rem; color: var(--muted); margin-top: 36px; max-width: 72ch; }

@media (max-width: 800px) {
  .hero-grid, .split, .product-grid, .product-page, .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}
