/* ══════════════════════════════════════════════════════════════
   MDR Nutrition Science — AG1-inspired premium wellness
   Cream + charcoal + forest. Manrope display, Inter body.
   ══════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces */
  --cream:     #f6f1e8;
  --cream-2:   #efe7d6;
  --white:     #ffffff;
  --bg:        var(--cream);

  /* Text */
  --ink:       #0e1612;
  --body:      #3d4844;
  --muted:     #6b7672;

  /* Borders */
  --border:    #e3dcca;
  --border-2:  #cfc6b0;

  /* Brand */
  --green:        #2d4a3a;
  --green-dark:   #1f3528;
  --green-glow:   rgba(45,74,58,0.12);
  --green-faint:  rgba(45,74,58,0.06);
  --green-mid:    #6f8b7c;

  /* Accents */
  --star:      #d4a843;

  /* Type */
  --display:   "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body-fam:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --max:       1240px;
  --pad:       24px;
  --pad-lg:    48px;

  /* Radius */
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  22px;
  --r-xl:  32px;

  /* Shadow — subtle, AG1-style */
  --sh-sm: 0 1px 2px rgba(14,22,18,0.04), 0 1px 1px rgba(14,22,18,0.03);
  --sh-md: 0 8px 24px rgba(14,22,18,0.06), 0 2px 6px rgba(14,22,18,0.04);
  --sh-lg: 0 24px 56px rgba(14,22,18,0.10), 0 6px 20px rgba(14,22,18,0.06);
}

/* ── Reset + base ───────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--body-fam);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--green); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
sup { font-size: 0.55em; vertical-align: super; }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

p { margin: 0 0 1em; }

/* ── Layout ─────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max);
  padding: 0 var(--pad);
  margin: 0 auto;
}
@media (min-width: 900px) { .container { padding: 0 var(--pad-lg); } }

.eyebrow {
  display: inline-block;
  font-family: var(--body-fam);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head h2 em { font-style: italic; color: var(--green); font-weight: 500; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; line-height: 1.65; }
@media (max-width: 700px) { .section-head { margin-bottom: 40px; } }

/* ── Buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--body-fam);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 80ms ease, box-shadow 200ms ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--green-glow); outline-offset: 3px; }

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: 0 6px 18px var(--green-glow);
}

.btn--ink {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--ink:hover {
  background: #000;
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  background: var(--white);
  border-color: var(--ink);
  color: var(--ink);
}

.btn--sm { padding: 9px 16px; font-size: 0.85rem; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--xl { padding: 20px 40px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ── Announcement bar ───────────────────────────────────────── */

.anno {
  background: var(--ink);
  color: rgba(255,255,255,0.86);
  padding: 9px 16px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.anno__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  max-width: var(--max);
  margin: 0 auto;
}
.anno__sep { color: var(--green-mid); font-weight: 700; }

/* ── Header ─────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246,241,232,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}
.site-header.scrolled {
  background: rgba(246,241,232,0.96);
  border-bottom-color: var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px var(--pad);
}
@media (min-width: 900px) { .site-header__inner { padding: 18px var(--pad-lg); } }

.site-header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 26px; width: auto; }

.site-nav { display: none; gap: 30px; margin-left: 24px; }
@media (min-width: 900px) { .site-nav { display: flex; } }
.site-nav a {
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: color 150ms ease;
}
.site-nav a:hover { color: var(--ink); }

.site-header__actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.site-header__actions .btn--sm { display: none; }
@media (min-width: 900px) {
  .site-header__actions .btn--sm { display: inline-flex; margin-right: 8px; }
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--body);
  transition: background 150ms ease, color 150ms ease;
  position: relative;
}
.icon-btn:hover { background: var(--white); color: var(--ink); }
.icon-btn--menu { display: inline-flex; }
@media (min-width: 900px) { .icon-btn--menu { display: none; } }

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 3px;
}

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 80px 0 96px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}
@media (min-width: 900px) { .hero { padding: 120px 0 140px; } }

.hero__inner {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero__inner { grid-template-columns: 1.05fr 1fr; gap: 80px; }
}

.hero__title {
  margin: 18px 0 22px;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero__title-em {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}

.hero__sub {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--body);
  max-width: 38em;
  margin: 0 0 32px;
}
@media (max-width: 700px) { .hero__sub { font-size: 1.02rem; } }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 0.88rem;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust strong { color: var(--ink); font-weight: 600; }
.stars { color: var(--star); font-size: 0.95rem; letter-spacing: 1px; line-height: 1; }

/* hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}
.hero__plate {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7) 0%, transparent 55%),
    linear-gradient(135deg, var(--cream-2) 0%, #e6dcc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
}
.hero__plate img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 36px rgba(60,44,18,0.18));
  animation: hero-float 9s ease-in-out infinite;
}
@keyframes hero-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hero__chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 156px;
}
.hero__chip-num {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__chip-num sup { font-size: 0.5em; color: var(--green); }
.hero__chip-label {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hero__chip--top    { top: 8%;  right: -12px; }
.hero__chip--bottom { bottom: 6%; left: -16px; }
@media (max-width: 700px) {
  .hero__chip--top    { top: 4%;  right: 4px; }
  .hero__chip--bottom { bottom: 2%; left: 4px; }
  .hero__chip-num     { font-size: 1.2rem; }
}

/* ── Press marquee ──────────────────────────────────────────── */

.press {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.press__track {
  display: flex;
  align-items: center;
  gap: 44px;
  white-space: nowrap;
  width: max-content;
  animation: marquee-press 50s linear infinite;
}
.press__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.press__logo {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex-shrink: 0;
}
.press__div { color: var(--border-2); font-size: 0.8rem; }
@keyframes marquee-press {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Flagship trio ──────────────────────────────────────────── */

.flagship {
  padding: 96px 0;
  background: var(--bg);
}
@media (max-width: 700px) { .flagship { padding: 64px 0; } }

.flagship__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .flagship__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .flagship__grid { grid-template-columns: 1.2fr 1fr 1fr; } }

.pcard {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.pcard:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.pcard--feature {
  border-color: rgba(45,74,58,0.25);
  box-shadow: 0 0 0 4px rgba(45,74,58,0.04);
}
.pcard--feature:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(45,74,58,0.06), var(--sh-lg);
}

.pcard__badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--ink);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.pcard__media {
  display: block;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6) 0%, transparent 55%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.pcard__media--soft {
  background: linear-gradient(180deg, #f4ecdb 0%, #e9dcb9 100%);
}
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12%;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}
.pcard:hover .pcard__media img { transform: scale(1.04); }

.pcard__body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pcard__cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.pcard__body h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.15; }
.pcard__body h3 a { color: var(--ink); }
.pcard__body h3 a:hover { color: var(--green); }
.pcard__body > p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.pcard__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--body);
}
.pcard__rating .stars { font-size: 0.85rem; }

.pcard__price {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.price-main {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.price-main small {
  font-size: 0.55em;
  color: var(--muted);
  font-family: var(--body-fam);
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 2px;
}
.price-once { font-size: 0.82rem; color: var(--muted); }

.pcard__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.pcard__link {
  font-size: 0.86rem;
  color: var(--green);
  text-align: center;
  font-weight: 500;
}
.pcard__link:hover { color: var(--green-dark); text-decoration: underline; }

/* ── Why MDR ────────────────────────────────────────────────── */

.why {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 700px) { .why { padding: 64px 0; } }

.why__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.why__card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.why__card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.why__num {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  padding: 4px 10px;
  border: 1px solid var(--green-faint);
  border-radius: 999px;
  background: var(--green-faint);
}
.why__card h3 { margin: 0 0 12px; font-size: 1.25rem; }
.why__card p  { margin: 0; color: var(--muted); font-size: 0.96rem; line-height: 1.65; }

/* ── Science ────────────────────────────────────────────────── */

.science {
  padding: 96px 0;
  background: var(--bg);
}
@media (max-width: 700px) { .science { padding: 64px 0; } }
.science__inner {
  display: grid;
  gap: 56px;
  align-items: start;
}
@media (min-width: 1000px) {
  .science__inner { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
}

.science .lede {
  font-size: 1.08rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 28px;
}

.benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-bottom: 22px;
}
.benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--white);
}
.benefits li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.cite-note {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.science__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--border);
  box-shadow: var(--sh-sm);
}
.big-stat {
  background: var(--white);
  padding: 36px 28px;
}
.big-stat--wide {
  grid-column: 1 / -1;
}
.big-stat__num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.big-stat__label {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}
.big-stat .cite { font-size: 0.5em; color: var(--muted); }

/* ── Compare table ──────────────────────────────────────────── */

.compare {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 700px) { .compare { padding: 64px 0; } }

.compare__table-wrap {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  background: var(--white);
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}
.compare__table th,
.compare__table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td { border-bottom: none; }

.compare__head {
  background: var(--bg);
  text-align: center !important;
  padding: 22px 20px !important;
  font-weight: 500;
}
.compare__head--mdr { background: var(--ink); color: var(--white); }
.compare__head--other { background: var(--cream-2); color: var(--ink); }
.compare__head-blank { background: var(--white); }

.compare__brand {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare__brand--muted { color: var(--muted); font-weight: 600; }
.compare__brand-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 4px;
  opacity: 0.7;
  text-transform: uppercase;
}

.compare__table tbody th {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.96rem;
  background: var(--bg);
  width: 30%;
}
.compare__table td { color: var(--body); }
.compare__table td:nth-child(2) {
  background: rgba(45,74,58,0.04);
  font-weight: 500;
  color: var(--ink);
}
.check {
  display: inline-block;
  width: 22px; height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: middle;
}
.dash {
  display: inline-block;
  width: 22px; height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 700px) {
  .compare__table th, .compare__table td { padding: 12px 12px; font-size: 0.85rem; }
  .compare__brand { font-size: 0.95rem; }
  .compare__brand-sub { display: none; }
}

/* ── Cuomo ──────────────────────────────────────────────────── */

.cuomo {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.cuomo__inner {
  display: grid;
  gap: 28px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .cuomo__inner { grid-template-columns: auto 1fr; gap: 40px; }
}
.cuomo__figure {
  width: 104px; height: 104px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--sh-md);
  flex-shrink: 0;
}
@media (min-width: 700px) { .cuomo__figure { width: 128px; height: 128px; } }
.cuomo__figure img { width: 100%; height: 100%; object-fit: cover; }

.cuomo__quote {
  padding-left: 0;
}
@media (min-width: 700px) {
  .cuomo__quote { padding-left: 24px; border-left: 2px solid var(--green); }
}
.cuomo__quote p {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.cuomo__quote cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
}
.cuomo__quote cite strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 6px;
}

/* ── Catalog ────────────────────────────────────────────────── */

.catalog {
  padding: 96px 0;
  background: var(--bg);
}
@media (max-width: 700px) { .catalog { padding: 64px 0; } }

.catalog__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .catalog__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .catalog__grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1200px) { .catalog__grid { grid-template-columns: repeat(4, 1fr); } }

.ccard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--ink);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  min-height: 192px;
}
.ccard:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.ccard__cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.ccard h3 {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.ccard p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.ccard__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.84rem;
}
.ccard__price {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ccard__price--muted { color: var(--muted); font-weight: 500; }
.ccard__rating { color: var(--green); font-weight: 600; font-size: 0.82rem; }

.ccard--more {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.ccard--more h3, .ccard--more p { color: var(--white); }
.ccard--more p { color: rgba(255,255,255,0.72); }
.ccard--more .ccard__cat { color: var(--green-mid); }
.ccard--more .ccard__foot { border-top-color: rgba(255,255,255,0.12); }
.ccard--more .ccard__price { color: var(--white); }
.ccard--more .ccard__rating { color: var(--green-mid); }
.ccard--more:hover { background: #000; border-color: #000; }

/* ── Reviews ────────────────────────────────────────────────── */

.reviews {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
@media (max-width: 700px) { .reviews { padding: 64px 0; } }
.reviews__head { margin-bottom: 48px; }

.reviews__wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.reviews__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-r 50s linear infinite;
}
@keyframes marquee-r {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reviews__track:hover { animation-play-state: paused; }

.rcard {
  width: 360px;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.rcard:hover { border-color: var(--border-2); box-shadow: var(--sh-sm); }
.rcard p {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.005em;
}
.rcard figcaption strong {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 3px;
}
.rcard figcaption span { font-size: 0.82rem; color: var(--muted); }

/* ── Save stripe ────────────────────────────────────────────── */

.save {
  padding: 80px 0;
  background: var(--bg);
}
.save__inner {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 48px 36px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.save__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(111,139,124,0.18) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 800px) {
  .save__inner { grid-template-columns: 1fr auto; padding: 56px 56px; gap: 40px; }
}
.save__copy { position: relative; z-index: 1; }
.save__copy .eyebrow { color: var(--green-mid); }
.save__copy h2 { color: var(--white); margin-bottom: 12px; }
.save__copy p { color: rgba(255,255,255,0.74); margin: 0; font-size: 1.02rem; max-width: 38em; }
.save__inner .btn { position: relative; z-index: 1; }
.save__inner .btn--primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.save__inner .btn--primary:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }

/* ── FAQ ────────────────────────────────────────────────────── */

.faq {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
@media (max-width: 700px) { .faq { padding: 64px 0; } }
.faq__inner { max-width: 820px; margin: 0 auto; }

.faq__list details {
  border-bottom: 1px solid var(--border);
}
.faq__list details[open] { border-bottom-color: var(--border-2); }
.faq__list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  padding: 22px 0;
  list-style: none;
  letter-spacing: -0.005em;
  transition: color 150ms ease;
}
.faq__list summary:hover { color: var(--green); }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: '+';
  font-family: var(--body-fam);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--muted);
  margin-left: 16px;
  transition: transform 250ms cubic-bezier(.2,.8,.2,1), color 150ms;
  flex-shrink: 0;
  line-height: 1;
}
.faq__list details[open] summary { color: var(--green); }
.faq__list details[open] summary::after { transform: rotate(45deg); color: var(--green); }
.faq__list details p {
  padding: 0 0 24px;
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 64ch;
  margin: 0;
}

/* ── Closer ─────────────────────────────────────────────────── */

.closer {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--cream-2) 100%);
}
.closer__inner { max-width: 760px; margin: 0 auto; }
.closer h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 36px;
  letter-spacing: -0.025em;
}
.closer__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.closer__sub {
  color: var(--muted);
  margin-top: 32px;
  font-size: 0.9rem;
}

/* ── Footer ─────────────────────────────────────────────────── */

.site-footer { background: var(--ink); color: rgba(255,255,255,0.74); }
.site-footer__inner {
  padding: 72px var(--pad) 48px;
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 2fr; padding: 88px var(--pad-lg) 56px; }
}
.site-footer__brand img {
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.site-footer__brand p { color: rgba(255,255,255,0.74); margin-bottom: 14px; font-size: 0.94rem; }
.site-footer__contact { font-size: 0.84rem; color: rgba(255,255,255,0.54); line-height: 1.7; }
.site-footer__contact a { color: var(--white); }
.site-footer__contact a:hover { color: var(--green-mid); }

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
}
.site-footer__nav h4 { color: var(--white); margin-bottom: 14px; }
.site-footer__nav a {
  display: block;
  color: rgba(255,255,255,0.74);
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color 150ms ease;
}
.site-footer__nav a:hover { color: var(--white); }

.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px var(--pad) 32px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.site-footer__legal p { margin: 0 0 8px; max-width: 820px; }
@media (min-width: 900px) {
  .site-footer__legal { padding-left: var(--pad-lg); padding-right: var(--pad-lg); }
}

/* ── Sticky mobile CTA ──────────────────────────────────────── */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px calc(env(safe-area-inset-bottom, 0) + 12px);
  background: rgba(246,241,232,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 50;
  box-shadow: 0 -10px 24px rgba(14,22,18,0.06);
}
@media (min-width: 900px) { .sticky-cta { display: none; } }
body { padding-bottom: 84px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* ── Reveal animations ──────────────────────────────────────── */

.js-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--delay, 0s);
}
.js-fade-up.is-in { opacity: 1; transform: none; }

.js-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.js-card.is-in { opacity: 1; transform: none; }

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.js-reveal.is-in { opacity: 1; transform: none; }

.js-stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.js-stat.is-in { opacity: 1; transform: none; }

.js-section-head .eyebrow,
.js-section-head h2,
.js-section-head p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.js-section-head h2 { transition-delay: 80ms; }
.js-section-head p  { transition-delay: 160ms; }
.js-section-head.is-in .eyebrow,
.js-section-head.is-in h2,
.js-section-head.is-in p { opacity: 1; transform: none; }

/* ── Utilities ──────────────────────────────────────────────── */

::selection { background: rgba(45,74,58,0.18); color: var(--ink); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--green-glow);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Reduced motion ─────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-fade-up, .js-card, .js-reveal, .js-stat,
  .js-section-head .eyebrow, .js-section-head h2, .js-section-head p {
    opacity: 1 !important;
    transform: none !important;
  }
}
