:root {
  --paper: #fbf7f0;
  --white: #fffdf8;
  --ink: #1f2a2b;
  --muted: #687272;
  --forest: #0d5d4b;
  --sage: #b9cf9f;
  --citrus: #f2c64d;
  --rose: #c9545f;
  --line: rgba(31, 42, 43, .14);
  --shadow: 0 24px 70px rgba(31, 42, 43, .12);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Avenir, "Avenir Next", Inter, system-ui, sans-serif;
  line-height: 1.6;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button, a, select { outline-offset: 4px; }
:focus-visible { outline: 3px solid rgba(201, 84, 95, .36); }
.section-shell { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.top-strip {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
}
.suggestion-banner {
  position: fixed;
  z-index: 80;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .93);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; }
.brand img { width: 134px; }
.brand span { color: var(--forest); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 20px; font-size: 14px; font-weight: 800; }
.desktop-nav a:hover { color: var(--rose); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.selector-label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 900; }
.selector-label select {
  max-width: 210px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--ink);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(13, 93, 75, .2);
  cursor: pointer;
}
.button.small { min-height: 40px; padding: 9px 16px; font-size: 14px; }
.button.secondary { background: transparent; color: var(--ink); box-shadow: none; border-color: var(--line); }
.text-button, .footer-link {
  border: 0;
  background: transparent;
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
  padding: 4px;
}
.icon-button, .menu-button {
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
.menu-button { display: none; padding: 0 14px; }
.mobile-menu {
  position: fixed;
  z-index: 70;
  inset: 72px 12px auto 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mobile-menu nav { display: grid; gap: 12px; margin-bottom: 18px; }
.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  grid-template-areas: "media copy" "notes notes";
  align-items: center;
  gap: 30px;
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 72px) 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 247, 240, .98), rgba(251, 247, 240, .72)),
    radial-gradient(circle at 78% 24%, rgba(242, 198, 77, .32), transparent 30%),
    linear-gradient(135deg, var(--paper), #ffffff);
}
.hero:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 12px;
  background: linear-gradient(90deg, var(--forest), var(--citrus), var(--rose));
}
.hero-media { grid-area: media; align-self: stretch; display: grid; place-items: center; }
.hero-media img {
  max-height: min(70vh, 620px);
  width: auto;
  filter: drop-shadow(0 34px 44px rgba(31, 42, 43, .16));
}
.hero-copy { grid-area: copy; max-width: 720px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}
h1 { margin: 0 0 18px; font-size: clamp(44px, 6vw, 78px); max-width: 860px; }
h2 { margin: 0 0 18px; font-size: clamp(34px, 4.5vw, 58px); }
.lead { font-size: clamp(18px, 1.7vw, 22px); color: var(--muted); max-width: 680px; }
.action-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-notes {
  grid-area: notes;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 20px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}
.hero-notes li { background: rgba(255,255,255,.72); padding: 16px; font-weight: 900; text-align: center; }
.overview, .routine-section, .reviews-section { padding: 84px 0; background: var(--paper); }
.overview-grid, .split-section, .guarantee-grid, .faq-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.overview p, .split-section p, .guarantee-band p, .section-heading p { color: var(--muted); }
.proof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.proof-list li {
  border-left: 4px solid var(--forest);
  background: #fff;
  padding: 18px 20px;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(31, 42, 43, .06);
}
.formula-section { padding: 88px 0; }
.section-heading { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ingredient-card, .step-card, .bundle-card, .review-card, .compare-panels article, .sticky-cta, .nutrition-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 16px 45px rgba(31, 42, 43, .06);
}
.ingredient-card span {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: conic-gradient(from 160deg, var(--forest), var(--sage), var(--citrus), var(--rose), var(--forest));
}
.ingredient-card h3, .step-card h3, .bundle-card h3, .review-card h3 { margin: 0 0 8px; font-size: 21px; line-height: 1.2; }
.ingredient-card p, .step-card p, .bundle-card p, .review-card p { margin: 0; color: var(--muted); }
.nutrition-panel { margin-top: 20px; }
.nutrition-panel dl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0 0 16px; background: var(--line); border: 1px solid var(--line); }
.nutrition-panel div { background: var(--paper); padding: 14px; }
.nutrition-panel dt { color: var(--muted); font-size: 13px; }
.nutrition-panel dd { margin: 4px 0 0; font-weight: 900; }
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card img { width: 100%; height: 220px; object-fit: contain; background: var(--white); border-radius: var(--radius); padding: 28px; }
.step-kicker { color: var(--rose) !important; font-weight: 900; margin-top: 16px !important; }
.split-section { padding: 88px 0; }
.compare-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare-panels ul, .bundle-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.compare-panels li:before, .bundle-card li:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--citrus);
}
.packages-section { padding: 86px 0; background: linear-gradient(180deg, #fff, var(--paper)); }
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bundle-card { display: flex; flex-direction: column; text-align: center; align-items: center; }
.bundle-card.featured { border: 2px solid var(--forest); transform: translateY(-10px); }
.bundle-tag {
  display: inline-flex;
  border: 1px solid rgba(13, 93, 75, .2);
  background: var(--paper);
  color: var(--forest) !important;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
}
.bundle-card img { height: 220px; object-fit: contain; margin: 8px auto 12px; }
.bundle-card ul { text-align: left; width: 100%; margin: 16px 0 18px; }
.bundle-card .button { margin-top: auto; width: 100%; }
.checkout-panel {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 900;
}
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card img { width: 74px; height: 74px; object-fit: cover; border-radius: 50%; margin-bottom: 14px; }
.stars { color: var(--citrus); letter-spacing: 2px; font-weight: 900; }
.review-meta { color: var(--ink) !important; font-weight: 900; margin-top: 14px !important; }
.guarantee-band { padding: 84px 0; background: var(--ink); color: #fff; }
.guarantee-band p { color: rgba(255,255,255,.74); }
.guarantee-band .eyebrow { color: var(--citrus); }
.guarantee-grid { align-items: center; }
.guarantee-grid img { max-height: 320px; width: auto; margin: auto; filter: drop-shadow(0 24px 36px rgba(0,0,0,.28)); }
.faq-layout { padding: 88px 0; grid-template-columns: minmax(0,1fr) 340px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 18px;
  text-align: left;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}
.faq-item div { padding: 0 18px 18px; color: var(--muted); }
.sticky-cta { position: sticky; top: 104px; align-self: start; }
.sticky-cta img { height: 200px; object-fit: contain; margin: auto; }
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 56px 0 82px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 26px;
}
.footer-grid h3 { margin: 0 0 10px; }
.footer-grid a, .footer-link { display: block; color: var(--muted); margin: 7px 0; text-align: left; }
.footer-select { display: block; }
.footer-select span { display: block; margin-bottom: 8px; }
.mobile-action {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  padding: 10px;
  background: rgba(255,253,248,.95);
  border-top: 1px solid var(--line);
}
.mobile-action .button { width: 100%; }
.legal-modal, .exit-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(31,42,43,.52);
}
.modal-card, .exit-card {
  position: relative;
  width: min(760px, 100%);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.modal-close, .exit-card > .icon-button { position: absolute; top: 14px; right: 14px; }
.modal-card h2, .exit-card h2 { margin: 0 42px 16px 0; font-size: 36px; }
.exit-card { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center; }
.exit-card .text-button { margin-left: 10px; }
.legal-modal[hidden], .exit-layer[hidden], .suggestion-banner[hidden], .mobile-menu[hidden] { display: none !important; }
@media (max-width: 1080px) {
  .desktop-nav, .header-actions .selector-label, .header-actions .small { display: none; }
  .menu-button { display: inline-block; }
  .hero, .overview-grid, .split-section, .guarantee-grid, .faq-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; grid-template-areas: "copy" "media" "notes"; }
  .hero-media img { max-height: 430px; }
  .ingredient-grid, .step-grid, .bundle-grid, .review-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .nutrition-panel dl { grid-template-columns: 1fr 1fr; }
  .sticky-cta { position: static; }
  .mobile-action { display: block; }
  body { padding-bottom: 74px; }
}
@media (max-width: 700px) {
  .site-header { padding: 12px 16px; }
  .brand img { width: 118px; }
  .brand span { display: none; }
  h1 { font-size: 43px; }
  .hero { padding: 34px 18px 24px; }
  .hero-notes, .ingredient-grid, .step-grid, .bundle-grid, .review-grid, .footer-grid, .compare-panels, .nutrition-panel dl { grid-template-columns: 1fr; }
  .bundle-card.featured { transform: none; }
  .exit-card { grid-template-columns: 1fr; }
  .exit-card img { display: none; }
  .suggestion-banner { align-items: flex-start; flex-direction: column; }
}
