:root {
  --cream: #f7f1e9;
  --ivory: #fffaf4;
  --blush: #d8a6a0;
  --rose: #b9827c;
  --taupe: #8b7a70;
  --charcoal: #37322f;
  --gold: #b89a57;
  --soft-gold: #e4d2a2;
  --line: rgba(55, 50, 47, 0.12);
  --shadow: 0 24px 60px rgba(76, 59, 52, 0.15);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: radial-gradient(circle at top left, rgba(216, 166, 160, 0.28), transparent 36rem), linear-gradient(135deg, var(--ivory), var(--cream));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.announcement {
  padding: 0.65rem 1rem;
  text-align: center;
  color: var(--ivory);
  background: var(--charcoal);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(255, 250, 244, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.28em;
}
.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--soft-gold);
  border-radius: 999px;
  font-size: 1.2rem;
  letter-spacing: 0;
}
.nav { display: flex; align-items: center; gap: 1.2rem; color: var(--taupe); font-size: 0.92rem; }
.nav a:hover, .footer-links a:hover { color: var(--charcoal); }
.header-cta {
  padding: 0.72rem 1rem;
  color: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.9rem;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 720px;
  padding: clamp(3rem, 6vw, 7rem) clamp(1.25rem, 4vw, 4rem);
}
.hero-copy { max-width: 680px; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}
h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.hero-text { max-width: 620px; color: var(--taupe); font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin: 2rem 0 1.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--ivory); background: var(--charcoal); box-shadow: 0 12px 24px rgba(55, 50, 47, 0.18); }
.button.secondary { color: var(--charcoal); background: rgba(255, 255, 255, 0.55); border: 1px solid var(--line); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.trust-strip span {
  padding: 0.5rem 0.75rem;
  color: var(--taupe);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
}
.hero-media { overflow: hidden; border: 1px solid rgba(184, 154, 87, 0.32); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-media img { width: 100%; min-height: 520px; object-fit: cover; }
.problem, .section, .split-section, .bundle-section, .waitlist, .footer { margin-inline: clamp(1.25rem, 4vw, 4rem); }
.problem {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.problem p { color: var(--taupe); font-size: 1.12rem; }
.section, .bundle-section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading p { color: var(--taupe); }
.kit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.kit-card, .price-card, .split-card, .use-list > div, .waitlist {
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(76, 59, 52, 0.07);
}
.kit-card { padding: 1.35rem; }
.kit-card.highlight { background: linear-gradient(135deg, rgba(216, 166, 160, 0.25), rgba(255, 250, 244, 0.85)); border-color: rgba(184, 154, 87, 0.35); }
.icon {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--soft-gold);
  border-radius: 999px;
}
.kit-card p, .use-list p, .price-card p, .waitlist p, .footer p { color: var(--taupe); }
.split-section { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 1rem; padding-bottom: clamp(4rem, 8vw, 7rem); }
.split-card { padding: clamp(2rem, 4vw, 3.5rem); }
.split-card.soft { background: linear-gradient(135deg, rgba(216, 166, 160, 0.24), rgba(255, 250, 244, 0.82)); }
.use-list { display: grid; gap: 1rem; }
.use-list > div { padding: 1.5rem; }
.use-list span { display: block; margin-bottom: 0.6rem; color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.price-card { padding: 1.5rem; }
.price-card.featured { transform: translateY(-0.8rem); background: linear-gradient(135deg, rgba(255, 250, 244, 0.88), rgba(216, 166, 160, 0.22)); border-color: rgba(184, 154, 87, 0.45); }
.label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  color: var(--charcoal) !important;
  background: rgba(228, 210, 162, 0.45);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.price { margin: 0.9rem 0 0.2rem; color: var(--charcoal) !important; font-family: Georgia, "Times New Roman", serif; font-size: 2.2rem; }
.muted { min-height: 2rem; margin-bottom: 1.3rem; font-size: 0.92rem; }
.waitlist {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  background: radial-gradient(circle at 10% 0%, rgba(216, 166, 160, 0.35), transparent 22rem), rgba(255, 250, 244, 0.86);
}
.signup-form label { display: block; margin-bottom: 0.5rem; font-weight: 700; }
.form-row { display: flex; gap: 0.65rem; }
input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  outline: none;
}
input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(184, 154, 87, 0.12); }
button {
  min-height: 3.2rem;
  padding: 0.9rem 1.1rem;
  color: var(--ivory);
  background: var(--charcoal);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.form-note { margin-top: 0.85rem; font-size: 0.86rem; }
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--taupe);
  border-top: 1px solid var(--line);
}
.footer strong { color: var(--charcoal); letter-spacing: 0.22em; }
.footer-links { display: flex; gap: 1rem; }
@media (max-width: 980px) {
  .hero, .problem, .split-section, .waitlist { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media img { min-height: 360px; }
  .kit-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card.featured { transform: none; }
  .nav { display: none; }
}
@media (max-width: 640px) {
  .site-header { padding-inline: 1rem; }
  .brand { letter-spacing: 0.18em; font-size: 0.86rem; }
  .header-cta { display: none; }
  .hero { padding-top: 2.5rem; }
  .kit-grid, .pricing-grid { grid-template-columns: 1fr; }
  .form-row, .footer { flex-direction: column; align-items: stretch; }
  button { width: 100%; }
}
