:root {
  --black: #080808;
  --ink: #111111;
  --soft-black: #151515;
  --cream: #f2efe8;
  --white: #ffffff;
  --muted: #aaa8a3;
  --line: rgba(255,255,255,.16);
  --dark-line: rgba(17,17,17,.14);
  --gold: #d6a83d;
  --gold-light: #f3cf73;
  --radius: 22px;
  --container: 1240px;
  --shadow: 0 30px 80px rgba(0,0,0,.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
::selection { background: var(--gold); color: var(--black); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 82px;
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100vw - var(--container))/2));
  transition: background .3s, border .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(8,8,8,.86);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; letter-spacing: .03em; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--gold); color: var(--black); border-radius: 10px;
  font-weight: 1000; font-size: 23px; transform: skew(-7deg);
}
.brand > span:last-child { display: flex; flex-direction: column; line-height: .9; }
.brand strong { font-size: 18px; letter-spacing: .09em; }
.brand small { font-size: 9px; letter-spacing: .44em; color: var(--gold-light); margin-top: 6px; }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.76); }
.main-nav a:hover { color: var(--white); }
.main-nav .nav-cta { border: 1px solid rgba(255,255,255,.28); padding: 13px 18px; border-radius: 100px; color: var(--white); }
.main-nav .nav-cta:hover { border-color: var(--gold); color: var(--gold-light); }
.menu-button { display: none; margin-left: auto; background: none; border: 0; width: 44px; height: 44px; padding: 10px; }
.menu-button span { display: block; height: 2px; background: var(--white); margin: 7px 0; transition: .25s; }

.hero {
  min-height: 860px;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/hero.webp");
  background-size: cover;
  background-position: 63% 42%;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 38%, rgba(0,0,0,.28) 71%, rgba(0,0,0,.6) 100%),
    linear-gradient(0deg, rgba(0,0,0,.86) 0%, transparent 35%);
}
.hero-grid { display: grid; grid-template-columns: 1.4fr .65fr; gap: 100px; align-items: end; padding-top: 100px; }
.hero-copy { max-width: 790px; }
.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 34px; height: 2px; background: var(--gold); }
.eyebrow.dark { color: #8a6a1f; }
h1, h2, h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  line-height: .94;
  letter-spacing: .005em;
  margin: 0;
}
h1 { font-size: clamp(58px, 7.3vw, 112px); max-width: 860px; }
h2 { font-size: clamp(43px, 5.6vw, 82px); }
h3 { font-size: 34px; }
h1 em, h2 em { color: var(--gold-light); font-style: normal; }
.hero-lead { max-width: 700px; font-size: 18px; color: rgba(255,255,255,.76); margin: 28px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  border: 0;
  min-height: 54px;
  padding: 16px 23px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s, border .2s;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--black); box-shadow: 0 12px 35px rgba(214,168,61,.18); }
.button-ghost { background: rgba(0,0,0,.15); border: 1px solid rgba(255,255,255,.33); color: var(--white); backdrop-filter: blur(10px); }
.button-dark { background: var(--ink); color: var(--white); }
.hero-proof { display: flex; gap: 34px; margin-top: 46px; padding-top: 28px; border-top: 1px solid var(--line); max-width: 680px; }
.hero-proof div { display: flex; flex-direction: column; gap: 4px; }
.hero-proof strong { font-size: 25px; color: var(--gold-light); }
.hero-proof span { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); }

.hero-card {
  background: rgba(12,12,12,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.hero-card > p { margin: 0 0 15px; color: rgba(255,255,255,.52); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 900; }
.hero-paths { display: grid; gap: 9px; }
.path-button {
  width: 100%;
  display: grid;
  grid-template-columns: 37px 1fr 24px;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  color: var(--white);
  padding: 17px 14px;
  text-align: left;
  cursor: pointer;
  transition: .2s;
}
.path-button:hover { background: var(--gold); color: var(--black); transform: translateX(4px); }
.path-number { font-size: 10px; color: var(--gold-light); font-weight: 900; }
.path-button:hover .path-number { color: var(--black); }
.path-button > span:nth-child(2) { display: flex; flex-direction: column; }
.path-button strong { font-size: 15px; }
.path-button small { color: rgba(255,255,255,.5); font-size: 11px; margin-top: 3px; }
.path-button:hover small { color: rgba(0,0,0,.65); }
.arrow { font-size: 20px; }
.micro-link { display: block; margin-top: 17px; font-size: 11px; color: rgba(255,255,255,.58); }
.micro-link:hover { color: var(--gold-light); }
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  transform: translateX(-50%);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.55);
}
.scroll-cue span { display: block; width: 30px; height: 1px; background: rgba(255,255,255,.4); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0c0c0c; padding: 18px 0; }
.trust-items { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.48); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.trust-items i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.section { padding: 118px 0; }
.programs, .nutrition, .process, .faq-section { background: var(--cream); color: var(--ink); }
.section-head {
  display: grid;
  grid-template-columns: 1.5fr .62fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}
.section-head > p { margin: 0 0 6px; color: #62605b; font-size: 15px; }
.section-head.light > p { color: rgba(255,255,255,.58); }

.gender-switch {
  width: fit-content;
  display: flex;
  gap: 6px;
  padding: 6px;
  background: #ddd9d0;
  border-radius: 14px;
  margin-bottom: 30px;
}
.gender-tab {
  min-width: 180px;
  padding: 14px 20px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .07em;
  cursor: pointer;
}
.gender-tab.active { background: var(--ink); color: var(--white); box-shadow: 0 7px 18px rgba(0,0,0,.15); }

.product-panel { display: none; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-panel.active { display: grid; }
.product-card {
  background: #fff;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 550px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.11); }
.product-card.featured { border: 2px solid var(--ink); }
.product-card.featured::after {
  content: "";
  position: absolute;
  width: 190px; height: 190px;
  right: -105px; top: -105px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .18;
}
.product-card.premium-card { background: var(--ink); color: var(--white); }
.product-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 38px; position: relative; z-index: 1; }
.badge {
  background: var(--gold); color: var(--ink);
  padding: 7px 10px; border-radius: 8px;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: 9px; font-weight: 950;
}
.badge.outline { background: transparent; border: 1px solid var(--dark-line); color: #66625b; }
.badge.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.product-index { font-size: 12px; color: #9d988e; font-weight: 900; letter-spacing: .12em; }
.product-card h3 { font-size: clamp(34px, 4vw, 49px); }
.product-subtitle { margin: 8px 0 18px; font-weight: 850; color: #6b531b; }
.premium-card .product-subtitle { color: var(--gold-light); }
.product-description { margin: 0; color: #69665f; font-size: 14px; max-width: 580px; }
.premium-card .product-description { color: rgba(255,255,255,.58); }
.product-card ul { list-style: none; padding: 0; margin: 27px 0; display: grid; gap: 10px; }
.product-card li { font-size: 13px; font-weight: 680; display: flex; align-items: flex-start; gap: 10px; }
.product-card li::before { content: "✓"; color: #9b741e; font-weight: 1000; }
.variant-switch { display: flex; gap: 6px; margin-top: 24px; }
.variant-switch button {
  flex: 1; background: #efede7; border: 1px solid transparent; border-radius: 9px;
  padding: 10px 7px; cursor: pointer; font-size: 11px; font-weight: 900;
}
.variant-switch button.active { background: var(--ink); color: var(--white); }
.product-meta { display: grid; grid-template-columns: 1.5fr .7fr; gap: 15px; margin-top: auto; padding: 20px 0; border-top: 1px solid var(--dark-line); }
.premium-card .product-meta { border-color: rgba(255,255,255,.13); }
.product-meta div { display: flex; flex-direction: column; }
.product-meta small { color: #928d83; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; }
.product-meta strong { font-size: 16px; margin-top: 4px; }
.product-card .button { width: 100%; }
.medical-note { color: #716e67; font-size: 11px; margin: 24px 0 0; max-width: 900px; }

.results { background: #0b0b0b; }
.results-grid { display: grid; grid-template-columns: 1.3fr .8fr; grid-template-rows: auto auto; gap: 18px; }
.result-card {
  margin: 0; position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 520px; background: #151515; border: 1px solid var(--line);
}
.result-card.wide { grid-row: span 2; min-height: 760px; }
.result-card img { height: 100%; object-fit: cover; }
.result-card.wide img { object-position: center; }
.result-card figcaption {
  position: absolute; inset: auto 0 0;
  padding: 90px 28px 28px;
  background: linear-gradient(transparent, rgba(0,0,0,.92));
}
.result-card figcaption span { display: block; color: var(--gold-light); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-weight: 900; }
.result-card figcaption strong { display: block; font-size: 25px; margin: 5px 0 4px; }
.result-card figcaption p { color: rgba(255,255,255,.58); margin: 0; font-size: 13px; }
.result-quote {
  min-height: 220px; border-radius: var(--radius); background: var(--gold);
  color: var(--ink); padding: 30px; display: flex; flex-direction: column; justify-content: flex-end;
}
.quote-mark { font-family: Georgia, serif; font-size: 72px; height: 55px; line-height: 1; }
.result-quote p { font-weight: 900; font-size: 20px; margin: 0 0 16px; line-height: 1.3; }
.result-quote strong { text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.result-disclaimer { color: rgba(255,255,255,.34); font-size: 10px; margin-top: 20px; max-width: 920px; }

.nutrition-grid { display: grid; grid-template-columns: .78fr 1.2fr; gap: 70px; align-items: center; }
.nutrition-copy > p:not(.eyebrow) { color: #65615a; font-size: 16px; margin: 25px 0; }
.nutrition-points { display: grid; margin: 30px 0; }
.nutrition-points div { display: grid; grid-template-columns: 45px 1fr; align-items: center; padding: 15px 0; border-top: 1px solid var(--dark-line); }
.nutrition-points div:last-child { border-bottom: 1px solid var(--dark-line); }
.nutrition-points strong { color: #9a741d; font-size: 11px; }
.nutrition-points span { font-weight: 750; }
.food-collage { min-height: 700px; display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 1.15fr .85fr; gap: 12px; }
.food-collage img { height: 100%; object-fit: cover; border-radius: 18px; }
.food-a { grid-row: span 2; }
.food-b { object-position: center; }
.food-c, .food-d { display: none; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-card { border-top: 3px solid var(--ink); padding: 24px 18px 5px 0; }
.process-card > span { color: #9a741d; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.process-card h3 { font-family: inherit; text-transform: none; font-size: 19px; line-height: 1.2; margin: 18px 0 10px; }
.process-card p { color: #6d6961; font-size: 13px; margin: 0; }

.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 790px; background: #101010; }
.about-image { min-height: 760px; overflow: hidden; }
.about-image img { height: 100%; object-fit: cover; object-position: center 25%; }
.about-content { padding: 100px max(48px, calc((100vw - var(--container))/2)) 100px 70px; display: flex; flex-direction: column; justify-content: center; }
.about-content h2 { font-size: clamp(42px, 5vw, 74px); }
.about-content > p:not(.eyebrow) { color: rgba(255,255,255,.61); max-width: 660px; font-size: 15px; margin: 23px 0 0; }
.signature { font-weight: 1000; letter-spacing: .08em; margin: 35px 0 25px; }
.signature span { color: var(--gold-light); font-size: 11px; }
.about-content .button { align-self: flex-start; }

.faq-grid { display: grid; grid-template-columns: .62fr 1.2fr; gap: 100px; }
.faq-intro > p:not(.eyebrow) { color: #6b675f; max-width: 360px; }
.faq-list { border-top: 1px solid var(--dark-line); }
.faq-item { border-bottom: 1px solid var(--dark-line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 48px 24px 0; font-weight: 850;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 8px; top: 20px; font-size: 25px; font-weight: 300; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: #6b675f; padding: 0 55px 22px 0; margin: 0; font-size: 14px; }

.contact { padding: 110px 0; position: relative; overflow: hidden; background: #0c0c0c; }
.contact::before {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,168,61,.18), transparent 68%);
  top: -210px; right: -110px;
}
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; position: relative; z-index: 1; }
.contact-copy h2 { font-size: clamp(45px, 5.3vw, 76px); }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.58); font-size: 16px; max-width: 620px; }
.contact-note { border-left: 2px solid var(--gold); padding: 5px 0 5px 18px; margin-top: 32px; display: flex; flex-direction: column; gap: 5px; }
.contact-note strong { font-size: 13px; }
.contact-note span { color: rgba(255,255,255,.5); font-size: 12px; }

.lead-form { background: var(--white); color: var(--ink); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.lead-form label { display: grid; gap: 7px; margin-bottom: 15px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: #6a665e; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; border: 1px solid #d9d5cb; background: #f8f7f3; border-radius: 10px;
  padding: 14px 14px; color: var(--ink); outline: none; resize: vertical;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,168,61,.14); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form .consent { display: flex; grid-template-columns: none; align-items: flex-start; flex-direction: row; gap: 9px; text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 11px; }
.consent input { width: auto; margin-top: 2px; }
.lead-form .button { width: 100%; }
.form-status { margin: 12px 0 0; font-size: 12px; font-weight: 750; color: #6e5317; }
.form-small { color: #8b877f; font-size: 9px; margin: 10px 0 0; }

footer { background: #050505; border-top: 1px solid var(--line); padding: 45px 0 95px; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 35px; }
.footer-grid > p { color: rgba(255,255,255,.42); font-size: 12px; }
.footer-links { display: flex; gap: 20px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; }
.footer-grid > small { grid-column: 1/-1; color: rgba(255,255,255,.3); font-size: 10px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.08); }

.sticky-cta {
  position: fixed; z-index: 900; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: none; align-items: center; gap: 20px;
  background: rgba(16,16,16,.93); color: var(--white); border: 1px solid var(--line);
  padding: 7px 7px 7px 17px; border-radius: 100px; backdrop-filter: blur(18px); box-shadow: 0 15px 40px rgba(0,0,0,.35);
}
.sticky-cta span { font-size: 11px; font-weight: 800; }
.sticky-cta a { background: var(--gold); color: var(--ink); padding: 10px 14px; border-radius: 100px; font-size: 10px; font-weight: 950; text-transform: uppercase; }

.modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.modal-card { position: relative; width: min(520px, 100%); background: var(--cream); color: var(--ink); padding: 35px; border-radius: var(--radius); box-shadow: var(--shadow); }
.modal-card h3 { font-size: 46px; }
.modal-card > p:not(.eyebrow) { color: #69655e; }
.modal-card .button { width: 100%; margin-top: 12px; }
.modal-close { position: absolute; right: 14px; top: 10px; background: none; border: 0; font-size: 30px; cursor: pointer; color: #555; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 1050px) {
  .product-panel .product-card:first-child { grid-column: span 2; display: grid; grid-template-columns: 1.1fr .8fr; grid-template-rows: auto auto auto 1fr auto; column-gap: 50px; }
  .product-panel .product-card:first-child .product-top,
  .product-panel .product-card:first-child h3,
  .product-panel .product-card:first-child .product-subtitle,
  .product-panel .product-card:first-child .product-description,
  .product-panel .product-card:first-child .variant-switch { grid-column: 1; }
  .product-panel .product-card:first-child ul { grid-column: 2; grid-row: 2 / 5; margin-top: 0; align-content: center; }
  .product-panel .product-card:first-child .product-meta { grid-column: 1; }
  .product-panel .product-card:first-child .button { grid-column: 2; grid-row: 5; align-self: end; }
}

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; gap: 35px; align-items: center; }
  .hero-copy { padding-top: 80px; }
  .hero-card { max-width: 520px; }
  .section-head { grid-template-columns: 1fr; gap: 25px; }
  .nutrition-grid, .contact-grid { gap: 45px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .about-content { padding-left: 45px; padding-right: 45px; }
  .faq-grid { gap: 50px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 30px, var(--container)); }
  .site-header { height: 70px; padding: 0 16px; }
  .main-nav {
    position: absolute; top: 70px; left: 0; right: 0; margin: 0; padding: 20px;
    background: rgba(8,8,8,.98); border-bottom: 1px solid var(--line);
    display: none; flex-direction: column; align-items: stretch; gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav .nav-cta { border: 0; padding: 14px 8px; }
  .menu-button { display: block; }
  .hero { min-height: 900px; height: auto; padding: 100px 0 75px; }
  .hero-bg { background-position: 60% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.66)), linear-gradient(0deg, rgba(0,0,0,.92), transparent 35%); }
  .hero-grid { padding-top: 0; }
  h1 { font-size: clamp(54px, 15vw, 83px); }
  .hero-lead { font-size: 16px; }
  .hero-proof { gap: 18px; flex-wrap: wrap; }
  .hero-card { display: none; }
  .scroll-cue { display: none; }
  .trust-items { justify-content: center; gap: 10px; flex-wrap: wrap; }
  .trust-items span:nth-of-type(n+3), .trust-items i:nth-of-type(n+3) { display: none; }
  .section { padding: 82px 0; }
  .product-panel { grid-template-columns: 1fr; }
  .product-card { min-height: auto; padding: 24px; }
  .gender-switch { width: 100%; }
  .gender-tab { min-width: 0; flex: 1; }
  .results-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .result-card.wide { grid-row: auto; min-height: 580px; }
  .result-card { min-height: 520px; }
  .nutrition-grid { grid-template-columns: 1fr; }
  .food-collage { min-height: 560px; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 620px; }
  .about-content { padding: 70px 20px; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > small { grid-column: auto; }
  .sticky-cta { display: flex; }
}

@media (max-width: 560px) {
  .hero { min-height: 840px; }
  h1 { font-size: 54px; }
  h2 { font-size: 44px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof div { width: calc(50% - 10px); }
  .hero-proof div:last-child { width: 100%; }
  .section-head { margin-bottom: 38px; }
  .product-meta { grid-template-columns: 1.25fr .75fr; }
  .variant-switch button { font-size: 10px; }
  .result-card.wide { min-height: 460px; }
  .result-card { min-height: 460px; }
  .food-collage { min-height: 430px; }
  .process-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 520px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 22px; }
  .sticky-cta { bottom: 10px; width: calc(100% - 20px); justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
