:root {
  --forest: #12332b;
  --leaf: #2f7d48;
  --mint: #eaf6ef;
  --lime: #c7df53;
  --ink: #17211d;
  --muted: #64716b;
  --line: #dbe7df;
  --paper: #ffffff;
  --soft: #f6faf7;
  --sun: #f5b942;
  --shadow: 0 18px 44px rgba(18, 51, 43, .14);
  --radius: 8px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.modal-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
}

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--paper);
}

.skip-link:focus { top: 16px; }

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

.section-pad { padding: 66px 0; }

.notice-strip {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 9px 14px;
  color: var(--forest);
  background: var(--lime);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 38px;
  z-index: 70;
  border-bottom: 1px solid rgba(219, 231, 223, .92);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.brand img { border-radius: 7px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 900;
}

.nav-links a { text-decoration: none; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
}

.action-link,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.action-link {
  border: 2px solid var(--leaf);
  background: linear-gradient(180deg, #3f995d, var(--leaf));
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(47, 125, 72, .22);
}

.action-link:hover,
.action-link:focus-visible {
  background: var(--forest);
  border-color: var(--forest);
  outline: 3px solid rgba(199, 223, 83, .4);
}

.ghost-link {
  border: 2px solid var(--forest);
  color: var(--forest);
  background: rgba(255, 255, 255, .68);
}

.small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 14px;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(18, 51, 43, .92), rgba(47, 125, 72, .82)),
    url("assets/5-bottles.webp") center right / contain no-repeat,
    var(--forest);
  color: var(--paper);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 84px;
  background: linear-gradient(180deg, transparent, rgba(18, 51, 43, .24));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 36px;
  min-height: 650px;
  padding: 52px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  max-width: 680px;
  color: inherit;
  font-size: 35px;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--forest);
  font-size: 29px;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0;
  color: #eef8f1;
  font-size: 18px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0;
}

.hero-points span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  display: grid;
  place-items: center;
  min-height: 510px;
}

.hero-media img {
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(0, 0, 0, .35));
}

.quick-row {
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-grid article {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-grid article:last-child { border-right: 0; }

.quick-grid strong,
.quick-grid span {
  display: block;
}

.quick-grid strong { color: var(--forest); }
.quick-grid span { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 48px;
  align-items: start;
}

.prose p,
.science-grid p,
.buy-grid p {
  margin-top: 0;
  font-size: 18px;
}

.tint-section {
  background: linear-gradient(180deg, var(--mint), #fbfdfb);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.step-grid,
.card-grid,
.price-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-grid article,
.card-grid article,
.price-card,
.science-card,
.faq-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(18, 51, 43, .06);
}

.step-grid article,
.card-grid article {
  padding: 24px;
}

.step-grid span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  font-weight: 900;
}

.card-grid p,
.price-card p,
.faq-panel p {
  color: var(--muted);
}

.science-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: start;
}

.science-card {
  padding: 26px;
  background: var(--forest);
  color: var(--paper);
}

.science-card h3 { color: var(--paper); }

.science-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.science-card li + li { margin-top: 10px; }

.deep-section {
  background: var(--forest);
  color: var(--paper);
}

.deep-section h2,
.deep-section h3 { color: var(--paper); }

.deep-section .card-grid article {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.deep-section .card-grid p { color: #dceee3; }

.intake-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 34px;
  align-items: start;
}

.intake-grid p {
  margin-top: 0;
  font-size: 18px;
}

.intake-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: 0 10px 26px rgba(18, 51, 43, .06);
}

.intake-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.intake-card li + li { margin-top: 10px; }

.serving-box {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
}

.serving-box p { margin: 0; }
.serving-box p + p { margin-top: 8px; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

th, td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--forest);
  color: var(--paper);
}

tr:last-child td { border-bottom: 0; }

.note-box {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--leaf);
  background: var(--mint);
  color: #3f5148;
  font-size: 14px;
}

.center {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.buy-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  text-align: center;
}

.price-card.featured {
  border: 2px solid var(--leaf);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.label {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin-top: 22px;
}

.price-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin: 8px auto 18px;
}

.bundle {
  margin: 0;
  color: var(--leaf) !important;
  font-weight: 900;
}

.price {
  margin: 12px 0 16px;
  color: var(--forest) !important;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.small-copy { margin-top: auto; }

.review-grid {
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.story-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.story-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--paper);
}

.story-card div {
  padding: 18px;
}

.story-card h3 {
  color: var(--paper);
  font-size: 18px;
}

.story-card p {
  color: #dceee3;
}

.story-card strong {
  color: var(--paper);
}

.stars {
  margin: 8px 0;
  color: var(--sun) !important;
  letter-spacing: 0;
  font-weight: 900;
}

.faq-section {
  background: #fbfdfb;
}

.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: start;
}

.faq-panel {
  position: sticky;
  top: 132px;
  padding: 24px;
  text-align: center;
}

.faq-panel img {
  max-height: 260px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  position: relative;
  min-height: 58px;
  padding: 16px 48px 16px 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--leaf);
  font-size: 24px;
}

details[open] summary::after { content: "-"; }

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0 86px;
  background: var(--forest);
  color: var(--paper);
}

.site-footer h2 {
  color: var(--paper);
}

.site-footer p {
  max-width: 650px;
  color: #dceee3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links button {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: transparent;
  color: var(--paper);
  font-weight: 800;
  cursor: pointer;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  border-color: var(--lime);
  outline: none;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, .1);
}

.mobile-bar span {
  color: var(--forest);
  font-weight: 900;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .62);
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 110;
  width: min(92vw, 720px);
  max-height: 88vh;
  overflow-y: auto;
  transform: translate(-50%, -50%);
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.policy-modal h2 { padding-right: 44px; }
.policy-modal p, .policy-modal li { color: var(--muted); }

.exit-modal {
  width: min(92vw, 780px);
}

.exit-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}

.exit-grid img {
  max-height: 300px;
  margin: auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  .site-header { top: 56px; }
  .hero-grid,
  .split,
  .science-grid,
  .buy-grid,
  .intake-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: 0; }
  .hero-media { min-height: 360px; }
  .hero-media img { max-height: 420px; }
  .quick-grid,
  .step-grid,
  .card-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card.featured { transform: none; }
  .faq-panel { position: static; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 128px; }
  body { padding-bottom: 74px; }
  .section-pad { padding: 48px 0; }
  .notice-strip { gap: 8px; }
  .site-header { top: 58px; }
  .nav-shell { min-height: 64px; }
  .menu-button { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px;
    border-radius: var(--radius);
  }
  .nav-links .action-link { margin-top: 6px; }
  .hero-grid { padding: 42px 0; }
  .hero-actions .action-link,
  .hero-actions .ghost-link { width: 100%; }
  .quick-grid,
  .step-grid,
  .card-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .quick-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .quick-grid article:last-child { border-bottom: 0; }
  .price-card img { height: 190px; }
  .exit-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .exit-grid img { max-height: 220px; }
  .mobile-bar { display: flex; }
  .modal { padding: 24px 18px; }
}

@media (max-width: 420px) {
  .container,
  .nav-shell { width: min(100% - 24px, var(--max)); }
  .brand span { font-size: 16px; }
  .notice-strip { font-size: 12px; }
  .site-header { top: 62px; }
  .hero-points span { width: 100%; }
  .mobile-bar .action-link { padding-inline: 12px; }
}
