:root {
  --black: #1B1916;
  --black-2: #12110F;
  --charcoal: #2A2621;
  --gold: #C8A04B;
  --gold-soft: #E6D2A3;
  --cream: #F8F4EA;
  --cream-2: #EFE8DA;
  --muted: #B8B0A0;
  --gray: #625B52;
  --white: #FFFFFF;
  --ink: #1B1916;
  --line: rgba(200, 160, 75, 0.24);
  --shadow: 0 24px 70px rgba(15, 14, 12, 0.18);
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray);
  background: var(--cream);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -80px;
  background: var(--gold);
  color: var(--black);
  padding: .75rem 1rem;
  border-radius: 12px;
  z-index: 1000;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 88px 0; background: var(--cream); }
.section-soft { background: var(--cream-2); }
.section-dark { background: var(--black); color: rgba(248,244,234,0.78); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark p { color: rgba(248,244,234,0.72); }
.eyebrow {
  color: #9B7630;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .76rem;
  margin-bottom: 14px;
}
h1, h2, h3 {
  color: var(--black);
  line-height: 1.03;
  margin: 0 0 18px;
  text-transform: uppercase;
}
h1, h2, .price {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  letter-spacing: .035em;
}
h1 { font-size: clamp(2.45rem, 5.6vw, 5rem); max-width: 1040px; margin-inline: auto; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.15rem); }
h3 {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.03rem;
  letter-spacing: .075em;
  font-weight: 900;
  margin-bottom: 10px;
}
p { margin: 0 0 18px; font-size: 1.045rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 820px; color: var(--gray); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.narrow { max-width: 850px; margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,14,12,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,160,75,0.24);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { width: 186px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 750;
  color: var(--cream);
  font-size: .94rem;
}
.nav-links a:not(.btn) { text-decoration: none; opacity: .86; }
.nav-links a:not(.btn):hover { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }

.hero {
  padding: 92px 0 78px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 82% 8%, rgba(200,160,75,.22), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(200,160,75,.12), transparent 32%),
    linear-gradient(135deg, #0F0E0C 0%, #181612 52%, #24211D 100%);
  border-bottom: 1px solid rgba(200,160,75,.22);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200,160,75,.13);
  border-radius: 32px;
  pointer-events: none;
}
.hero-logo { width: min(560px, 86vw); margin: 0 auto 42px; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 { color: var(--cream); text-shadow: 0 22px 70px rgba(0,0,0,.26); }
.hero .lead { margin-top: 26px; color: rgba(248,244,234,0.78); }
.hero .eyebrow { color: var(--gold-soft); }
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 34px 0 14px;
}
.reassurance { font-size: .98rem; color: rgba(248,244,234,0.70); margin-bottom: 10px; }
.small-link {
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(27,25,22,.28);
}
.small-link:hover { border-bottom-color: var(--black); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.015em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 16px 34px rgba(200,160,75,.24);
}
.btn-gold:hover { box-shadow: 0 20px 44px rgba(200,160,75,.32); }
.btn-black {
  background: var(--black);
  color: var(--cream);
}
.btn-outline {
  border-color: rgba(248,244,234,.26);
  color: var(--cream);
  background: rgba(248,244,234,.07);
}
.section .btn-outline, .section-soft .btn-outline { border-color: rgba(27,25,22,.20); color: var(--black); background: transparent; }

.trust-strip {
  padding: 26px 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(200,160,75,.20);
  border-bottom: 1px solid rgba(200,160,75,.20);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.trust-item {
  background: rgba(248,244,234,.06);
  border: 1px solid rgba(200,160,75,.18);
  border-radius: 18px;
  padding: 15px 14px;
  color: var(--cream);
  font-weight: 800;
  text-align: center;
  font-size: .94rem;
}
.trust-item span { color: var(--gold); margin-right: 4px; }

.problem-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: start;
}
.question-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.question-list li {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(36,33,29,.10);
  border-radius: 18px;
  padding: 18px 18px 18px 48px;
  position: relative;
  color: var(--black);
  font-weight: 780;
  box-shadow: 0 10px 26px rgba(15,14,12,.05);
}
.question-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 999px;
  position: absolute;
  left: 22px;
  top: 26px;
}

.section-head { margin-bottom: 38px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.kit-card {
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(36,33,29,.08);
  border-radius: 22px;
  padding: 22px;
  min-height: 154px;
  box-shadow: 0 16px 34px rgba(15,14,12,.06);
}
.kit-card .num {
  color: #9B7630;
  font-weight: 900;
  margin-bottom: 8px;
  font-size: .85rem;
  letter-spacing: .08em;
}
.kit-card p { font-size: .96rem; margin-bottom: 0; }
.preview-panel {
  margin-top: 34px;
  background: var(--white);
  border: 1px solid rgba(36,33,29,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.preview-panel img { width: 100%; }
.caption {
  padding: 16px 20px 20px;
  margin: 0;
  font-size: .95rem;
  color: var(--gray);
  text-align: center;
}
.image-pair {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.image-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(36,33,29,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15,14,12,.06);
}
.image-card p { padding: 16px 18px; margin: 0; font-size: .94rem; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.step-card {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(36,33,29,.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(15,14,12,.05);
}
.step-card .step-num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
  margin-bottom: 16px;
}
.step-card p { font-size: .94rem; margin-bottom: 0; }

.founder-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 42px;
  align-items: center;
}
.founder-photo {
  min-height: 240px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(200,160,75,.20), rgba(248,244,234,.04)),
    var(--charcoal);
  color: rgba(248,244,234,.66);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  border: 1px solid rgba(200,160,75,.25);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }

.founder-card {
  max-width: 900px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(248,244,234,.82));
  border: 1px solid rgba(200,160,75,.28);
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 20px 60px rgba(15,14,12,.08);
}
.founder-card .lead { margin-left: auto; margin-right: auto; }
.founder-mark {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 22px;
  color: var(--black);
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .9rem;
}
.founder-mark span { color: var(--gold); font-size: 1.15rem; line-height: 1; }
.founder-signature {
  color: var(--black);
  font-weight: 850;
  margin-top: 18px;
}
.product-line, .trust-signal { display: block; color: var(--gray) !important; }
.copyright {
  margin-top: 30px;
  color: rgba(248,244,234,.46);
  font-size: .84rem;
}


.bonus-card {
  background: linear-gradient(135deg, rgba(200,160,75,.18), rgba(255,255,255,.72));
  border: 1px solid rgba(200,160,75,.34);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.bonus-card h2 { margin-bottom: 12px; }

.price-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F4EA 100%);
  border: 1px solid rgba(200,160,75,.38);
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  text-align: center;
}
.price { font-size: clamp(3rem, 8vw, 5.4rem); line-height: 1; color: var(--black); font-weight: 900; letter-spacing: -0.06em; margin: 8px 0 12px; }
.price-sub { font-weight: 850; color: var(--black); }
.refund-line {
  display: inline-block;
  background: rgba(200,160,75,.16);
  border: 1px solid rgba(200,160,75,.34);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--black);
  font-weight: 820;
  margin: 10px 0 22px;
}
.price-card .reassurance { color: var(--gray); }

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.next-card {
  background: rgba(248,244,234,.06);
  border: 1px solid rgba(200,160,75,.18);
  border-radius: 22px;
  padding: 24px;
}
.next-card h3 { color: var(--cream); }
.next-card p { color: rgba(248,244,234,.72); font-size: .96rem; margin-bottom: 0; }

.faq-grid { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
details {
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(36,33,29,.08);
  border-radius: 18px;
  padding: 0 18px;
  box-shadow: 0 12px 26px rgba(15,14,12,.05);
}
summary {
  cursor: pointer;
  color: var(--black);
  font-weight: 850;
  padding: 18px 0;
}
details p { padding-bottom: 18px; margin: 0; }

.footer {
  background: var(--black-2);
  color: rgba(248,244,234,.70);
  padding: 72px 0 42px;
  border-top: 1px solid rgba(200,160,75,.22);
}
.footer h3, .footer h4 { color: var(--cream); }
.footer-logo { width: 180px; margin-bottom: 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 46px;
  align-items: start;
}
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.policy-box {
  border: 1px solid rgba(200,160,75,.16);
  background: rgba(248,244,234,.04);
  border-radius: 18px;
  padding: 18px;
}
.policy-box p { font-size: .88rem; margin: 0; color: rgba(248,244,234,.66); }
.footer a { color: var(--gold-soft); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.legal-note {
  border-top: 1px solid rgba(200,160,75,.16);
  margin-top: 30px;
  padding-top: 24px;
  font-size: .84rem;
  color: rgba(248,244,234,.55);
}

@media (max-width: 960px) {
  .trust-grid, .card-grid, .step-grid, .next-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .problem-grid, .founder-grid, .footer-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 280px; min-height: 280px; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 58px; }
  .hero::before { inset: 10px; border-radius: 22px; }
  .trust-grid, .card-grid, .step-grid, .next-grid, .image-pair, .policy-grid { grid-template-columns: 1fr; }
  .nav-logo img { width: 138px; }
  .nav-links .btn { min-height: 44px; padding: 0 15px; font-size: .88rem; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .price-card { padding: 30px 20px; border-radius: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}


/* Premium caps pass */
.nav-links, .trust-item, summary, .policy-box h4, .btn { letter-spacing: .045em; }
summary, .policy-box h4 { text-transform: uppercase; }
.kit-card .num { letter-spacing: .16em; }
.price-card h2 { margin-bottom: 6px; }

@media (max-width: 640px) {
  h1, h2, .price { letter-spacing: .02em; }
  h1 { font-size: clamp(2.05rem, 12vw, 3.1rem); }
  h2 { font-size: clamp(1.65rem, 9vw, 2.35rem); }
  h3 { letter-spacing: .055em; }
  .founder-card { padding: 30px 20px; border-radius: 24px; }
}
