﻿:root {
  --paper: #F5F0E9;
  --paper-2: #EEE5D5;
  --ink: #211C17;
  --muted: #6E6258;
  --line: rgba(73, 54, 36, .18);
  --copper: #A8703C;
  --copper-dark: #7A4F26;
  --copper-light: #C18A52;
  --white: #FFFFFF;
  --danger: #8C2D24;
  --ok: #2F5B3B;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", Arial, sans-serif;
  --wrap: min(1160px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.skip { position: absolute; left: -999px; top: 12px; background: var(--ink); color: white; padding: 10px 14px; z-index: 100; }
.skip:focus { left: 12px; }
.wrap { width: var(--wrap); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 232, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: .08em; }
.brand span { line-height: 1; }
.nav { display: flex; gap: 22px; margin-left: auto; font-size: 14px; color: var(--muted); }
.nav a { padding: 8px 0; border-bottom: 1px solid transparent; }
.nav a:hover { color: var(--ink); border-color: var(--copper); }
.header-cta { border: 1px solid var(--copper); color: var(--copper-dark); padding: 9px 14px; border-radius: 6px; font-weight: 600; }
.header-cta:hover { background: var(--copper); color: white; }

.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding: 64px 0 76px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.44), rgba(246,241,232,0) 36%),
    var(--paper);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 54px; align-items: center; }
.eyebrow { margin: 0 0 13px; color: var(--copper-dark); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: 12px; }
.product-kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.18;
}
.product-kicker span:first-child { font-size: 13px; letter-spacing: .06em; }
.product-kicker span:last-child { font-size: 12px; letter-spacing: .08em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: 0; }
h1 { font-size: clamp(52px, 8vw, 104px); line-height: .9; margin-bottom: 26px; max-width: 820px; }
h2 { font-size: clamp(34px, 5vw, 64px); line-height: .98; margin-bottom: 22px; }
h3 { font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
.lead { font-size: clamp(18px, 2.1vw, 24px); max-width: 690px; color: var(--muted); margin-bottom: 28px; }
.formula-line { display: grid; grid-template-columns: repeat(3, minmax(96px, 1fr)); gap: 8px; max-width: 480px; margin-bottom: 28px; }
.formula-line span { border: 1px solid var(--line); background: rgba(255,255,255,.48); border-radius: 6px; padding: 12px 14px; font-weight: 700; color: var(--copper-dark); text-align: center; white-space: nowrap; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border-radius: 6px; font-weight: 700; border: 1px solid var(--copper); cursor: pointer; }
.btn.primary { background: var(--copper); color: white; }
.btn.primary:hover { background: var(--copper-dark); }
.btn.secondary { color: var(--copper-dark); background: transparent; }
.btn.secondary:hover { background: rgba(168,112,60,.09); }
.status-note { font-size: 14px; color: var(--muted); max-width: 620px; }

.product-stage { min-height: 620px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.pack-shot {
  width: min(420px, 88vw);
  aspect-ratio: 3 / 4.25;
  border-radius: 8px;
  background: linear-gradient(145deg, #FFFFFF 0%, #F9F6EF 48%, #EEE1CE 100%);
  border: 1px solid rgba(122,79,38,.24);
  box-shadow: 0 28px 70px rgba(91, 65, 39, .22), inset 0 0 0 10px rgba(168,112,60,.04);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: rotateY(-7deg) rotateX(2deg);
}
.pack-mark { margin: 12px auto 28px; }
.pack-name { font-size: 50px; font-weight: 700; letter-spacing: .12em; color: var(--copper-dark); }
.pack-sub { font-family: var(--serif); font-size: 30px; color: var(--ink); margin-top: 4px; }
.pack-claim { margin: 30px 0 14px; border: 1px solid var(--copper); border-radius: 999px; padding: 8px 14px; color: var(--copper-dark); font-weight: 600; }
.pack-values { font-size: clamp(26px, 2.4vw, 31px); font-weight: 700; color: var(--ink); margin-top: auto; white-space: nowrap; }
.pack-minerals { color: var(--copper-dark); font-weight: 700; letter-spacing: .08em; margin-top: 8px; }
.pack-ingredients { margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.35; max-width: 260px; }
.pack-footer { width: 100%; margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }

.section { padding: 96px 0; border-top: 1px solid var(--line); }
.section.muted { background: var(--paper-2); }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head p { color: var(--muted); font-size: 18px; }
.statement { padding: 58px 0; background: var(--ink); color: white; }
.statement .eyebrow { color: var(--copper-light); }
.statement-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.statement p:last-child { color: rgba(255,255,255,.78); font-size: 20px; margin: 0; }

.mineral-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.mineral-card, .use-item, .founder-panel, .lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.58);
}
.mineral-card { padding: 24px; min-height: 260px; }
.symbol { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 6px; background: var(--copper); color: white; font-weight: 700; margin-bottom: 20px; }
.mineral-card strong { display: block; color: var(--copper-dark); font-size: 24px; margin-bottom: 14px; }
.mineral-card p, .use-item p, .founder-grid p, .quality-grid p, .caution-grid p, .lead-grid p { color: var(--muted); }
.composition { border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.52); padding: 28px; }
.comp-table { border-top: 1px solid var(--line); }
.comp-table div { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.comp-table b { color: var(--copper-dark); text-align: right; }
.science-bridge { margin-top: 18px; border: 1px solid rgba(168,112,60,.28); border-radius: 8px; background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(246,241,232,.72)); padding: 26px 28px; display: grid; grid-template-columns: .85fr 1.15fr auto; gap: 24px; align-items: center; }
.science-bridge h3 { margin-bottom: 0; }
.science-bridge p:not(.eyebrow) { margin: 0; color: var(--muted); }
.science-bridge a { justify-self: end; color: var(--copper-dark); font-weight: 700; border-bottom: 1px solid rgba(168,112,60,.32); white-space: nowrap; }
.science-bridge a:hover { color: var(--ink); }

.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.use-item { padding: 24px; min-height: 206px; }
.quality-grid, .founder-grid, .lead-grid, .caution-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.doc-list { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: rgba(255,255,255,.55); }
.doc-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.doc-row:last-child { border-bottom: 0; }
.doc-row b { color: var(--copper-dark); font-weight: 600; text-align: right; }
.founder-panel { padding: 28px; position: sticky; top: 98px; }
.founder-panel img { margin-bottom: 24px; }
.founder-panel p { font-family: var(--serif); font-size: 28px; line-height: 1.06; color: var(--ink); }
.founder-text h2 { margin-bottom: 12px; }
.founder-text h3 { margin: 34px 0 10px; color: var(--copper-dark); font-size: 22px; }
.founder-text p { max-width: 760px; }
.founder-lede { font-family: var(--serif); font-size: 22px; line-height: 1.35; color: var(--copper-dark) !important; margin-bottom: 24px; }
.founder-pull { font-family: var(--serif); font-size: 30px; line-height: 1.1; color: var(--copper-dark) !important; margin: 30px 0 18px; }
.founder-sign { border-left: 3px solid var(--copper); padding-left: 18px; color: var(--ink) !important; font-weight: 600; margin-top: 28px; }
.caution { background: #F5F0E9; }
.composition-note { margin: 16px 0 0; color: var(--muted); }
.honesty-note { margin-top: 20px; padding: 16px 18px; border-left: 3px solid var(--copper); background: rgba(168,112,60,.08); }
.preorder-section { background: var(--ink); color: var(--paper); }
.preorder-section .eyebrow, .preorder-section .section-head p { color: var(--paper); }
.preorder-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 18px; border: 1px solid rgba(245,240,233,.28); border-radius: 8px; }
.preorder-flow span { padding: 6px 10px; background: rgba(245,240,233,.08); border-radius: 5px; }
.faq { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.faq-list { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: rgba(255,255,255,.45); }
.faq-list details { padding: 18px 20px; border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list p { margin: 12px 0 0; color: var(--muted); }
.caution-grid h2 { font-size: clamp(30px, 4vw, 48px); }
.caution-grid p { font-size: 18px; }

.lead-section { background: var(--ink); color: white; }
.lead-section .eyebrow { color: var(--copper-light); }
.lead-section h2 { color: white; }
.lead-section p { color: rgba(255,255,255,.76); }
.funnel-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.funnel-links a { border: 1px solid rgba(255,255,255,.26); border-radius: 6px; padding: 10px 12px; color: white; }
.lead-form { background: white; color: var(--ink); padding: 24px; display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 7px; font-weight: 600; color: var(--ink); }
.lead-form input, .lead-form select { width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px; background: #fff; color: var(--ink); }
.lead-form input:focus, .lead-form select:focus { outline: 2px solid rgba(168,112,60,.3); border-color: var(--copper); }
.check-row { display: grid !important; grid-template-columns: 18px 1fr; align-items: start; gap: 10px !important; font-size: 14px; line-height: 1.35; color: var(--muted) !important; }
.check-row input { min-height: 18px; width: 18px; margin: 2px 0 0; padding: 0; accent-color: var(--copper); }
.hp { position: absolute; left: -9999px; opacity: 0; width: 1px; height: 1px; }
.form-note { color: var(--muted) !important; font-size: 14px; margin: 0; }
.form-status { min-height: 22px; font-weight: 600; margin: 0; }
.form-status.ok { color: var(--ok) !important; }
.form-status.err { color: var(--danger) !important; }

.footer { background: #211C17; color: white; padding: 44px 0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 28px; }
.footer p, .footer a { color: rgba(255,255,255,.72); margin: 6px 0 0; }
.footer span { display: block; color: var(--copper-light); font-weight: 700; margin-bottom: 8px; }
.footer a { display: block; }
.footer-brand-lines span { color: rgba(255,255,255,.72); font-weight: 400; margin: 0; }
.footer-brand-lines span + span { margin-top: 2px; }

.legal-main { padding: 78px 0 96px; }
.legal-shell { max-width: 900px; }
.legal-shell h1 { font-size: 58px; margin-bottom: 16px; }
.legal-lead { color: var(--muted); font-size: 19px; max-width: 760px; margin-bottom: 34px; }
.legal-card { border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.66); padding: 28px; margin-bottom: 18px; }
.legal-card h2 { font-size: 34px; margin-bottom: 14px; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card ul, .legal-card ol { padding-left: 22px; }
.legal-table { border-top: 1px solid var(--line); margin-top: 14px; }
.legal-table div { display: grid; grid-template-columns: minmax(180px, .45fr) 1fr; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.legal-table span { color: var(--muted); }
.legal-table b { font-weight: 600; color: var(--ink); }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

@media (max-width: 980px) {
  .hero-grid, .statement-grid, .quality-grid, .founder-grid, .lead-grid, .caution-grid, .science-bridge, .faq { grid-template-columns: 1fr; }
  .product-stage { min-height: auto; }
  .pack-shot { transform: none; }
  .mineral-grid, .use-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-panel { position: static; }
  .science-bridge a { justify-self: start; }
}

@media (max-width: 720px) {
  :root { --wrap: min(100vw - 28px, 1160px); }
  .header-inner { min-height: 64px; gap: 12px; }
  .nav { display: none; }
  .header-cta { margin-left: auto; padding: 8px 12px; }
  .hero { padding: 42px 0 56px; min-height: auto; }
  .product-kicker { margin-bottom: 16px; gap: 5px; line-height: 1.22; }
  .product-kicker span:first-child { font-size: 13px; }
  .product-kicker span:last-child { font-size: 12px; }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  h2 { font-size: 36px; }
  .formula-line, .mineral-grid, .use-grid, .footer-grid, .legal-table div { grid-template-columns: 1fr; }
  .legal-main { padding: 46px 0 64px; }
  .legal-shell h1 { font-size: 40px; }
  .section { padding: 64px 0; }
  .comp-table div, .doc-row { grid-template-columns: 1fr; gap: 6px; }
  .comp-table b, .doc-row b { text-align: left; }
  .pack-shot { width: min(340px, 100%); padding: 30px 24px; }
  .pack-name { font-size: 40px; }
  .pack-values { font-size: 24px; }
}

