/* ============================================================
   Mado Gentle Fit — styles.css
   Beach palette: ocean blue · warm sand · earth green
   Mobile-first. No frameworks, no dependencies.
   ============================================================ */

@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("/fonts/caveat-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  /* sand */
  --sand-50:  #FDFAF5;
  --sand-100: #F8F1E6;
  --sand-200: #EFE2CE;
  --sand-300: #E3D0B4;
  --sand-400: #D3B891;
  /* ocean */
  --ocean-950: #072A36;
  --ocean-900: #0A3644;
  --ocean-800: #0F4A5C;
  --ocean-600: #1B7B94;
  --ocean-400: #52A7BD;
  --foam:      #C9E4E8;
  /* earth green */
  --moss-700: #3F6239;
  --moss-600: #587F51;
  --moss-400: #8CAA82;
  /* ink */
  --ink:   #10272F;
  --muted: #5B7079;
  --line:  rgba(15, 74, 92, .13);

  --serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --script: "Caveat", ui-rounded, cursive;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --wrap: 1120px;
  --gut: clamp(1.25rem, 5vw, 2.5rem);
  --r-lg: 26px;
  --r-md: 18px;

  --shadow-sm: 0 1px 2px rgba(10, 54, 68, .05),
               0 6px 18px -8px rgba(10, 54, 68, .14);
  --shadow-lg: 0 2px 4px rgba(10, 54, 68, .04),
               0 24px 60px -28px rgba(10, 54, 68, .34);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; color-scheme: light; accent-color: #3F6239; }
::selection { background: #C9E4E8; color: #072A36; }
h1, h2, h3 { text-wrap: balance; overflow-wrap: break-word; }
p { text-wrap: pretty; }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
h1, h2, h3 {
  font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.02em;
  /* Fraunces is a variable font: at display sizes the auto optical-size axis
     switches to spindly, wonky glyph forms. Pin it to a calm middle value. */
  font-variation-settings: "opsz" 24;
}
:focus-visible { outline: 2.5px solid var(--ocean-600); outline-offset: 3px; border-radius: 4px; }
/* dark sections need a light focus ring to stay visible */
.about :focus-visible, .contact-card :focus-visible,
.site-footer :focus-visible, .offer-featured :focus-visible,
.hero-card :focus-visible { outline-color: var(--foam); }
[id] { scroll-margin-top: 5.5rem; }

/* scrollbar, where styleable — quiet, in-palette */
@media (min-width: 900px) {
  ::-webkit-scrollbar { width: 12px; }
  ::-webkit-scrollbar-track { background: var(--sand-100); }
  ::-webkit-scrollbar-thumb {
    background: var(--sand-400); border-radius: 8px;
    border: 3px solid var(--sand-100);
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--ocean-400); }
}

/* other display-size Fraunces uses get the same calm optical size */
.quote, .about-quote, .portrait-mono, .hero-badge .num,
.offer-price b, .about-stats b, .footer-tag, .marquee span {
  font-variation-settings: "opsz" 24;
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(4.5rem, 12vw, 8.5rem); position: relative; }
/* below-fold sections skip rendering until needed */
.about, .faq, .freebies, .contact {
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}
.eyebrow {
  font-size: .72rem; font-weight: 650; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ocean-600);
  display: flex; align-items: center; gap: .65rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1.5px; flex: none; border-radius: 1px;
  background: currentColor; opacity: .45;
}
.section-head { max-width: 44ch; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head h2 { font-size: clamp(2.1rem, 6.4vw, 3.3rem); margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; color: var(--muted); font-size: 1.075rem; max-width: 52ch; }
:lang(fr) .section-head h2, :lang(fr) .hero h1 { hyphens: manual; }
:lang(fr) p { hyphens: auto; }
.lede { font-size: clamp(1.075rem, 2.6vw, 1.25rem); line-height: 1.65; color: var(--muted); max-width: 58ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
  font-size: .975rem; font-weight: 600; letter-spacing: .005em;
  cursor: pointer; text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(180deg, #47703F 0%, var(--moss-700) 100%);
  color: var(--sand-50);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14),
              0 10px 26px -12px rgba(63, 98, 57, .8);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #52804A 0%, var(--moss-600) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16),
              0 16px 34px -14px rgba(63, 98, 57, .9);
}

.btn-ghost { background: transparent; color: var(--ocean-900); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255, 255, 255, .7); border-color: rgba(15, 74, 92, .3); }

.btn-light { background: var(--sand-100); color: var(--ocean-950); }
.btn-light:hover { background: #fff; }

.btn-outline-light { background: transparent; color: var(--sand-100); border-color: rgba(249, 244, 236, .38); }
.btn-outline-light:hover { background: rgba(249, 244, 236, .1); border-color: rgba(249, 244, 236, .7); }

.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding-block: .85rem;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease),
              backdrop-filter .4s var(--ease), padding .4s var(--ease),
              transform .45s var(--ease);
}
.site-header { will-change: transform; }
.site-header.is-hidden { transform: translateY(-105%); }
.site-header.is-stuck {
  background: rgba(253, 250, 245, .82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(10, 54, 68, .5);
  padding-block: .55rem;
}
.header-inner { display: flex; align-items: center; gap: 1rem; }
.scroll-progress {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 2.5px;
  background: linear-gradient(90deg, var(--ocean-600), var(--moss-600), var(--sand-400));
  transform: scaleX(0); transform-origin: left;
  opacity: 0; transition: opacity .3s ease;
}
.site-header.is-stuck .scroll-progress { opacity: 1; }

.brand { display: inline-flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-name {
  font-family: var(--serif); font-size: 1.075rem; line-height: 1.1;
  letter-spacing: -.015em; color: var(--ocean-950);
}
.brand-name b { font-weight: 600; display: block; }
.brand-name span {
  display: block; font-family: var(--sans); font-size: .625rem; font-weight: 600;
  letter-spacing: .19em; text-transform: uppercase; color: var(--ocean-600);
}

.nav { display: none; gap: 2rem; }
.nav a {
  font-size: .925rem; font-weight: 500; color: var(--ocean-900);
  position: relative; padding-block: .3rem; opacity: .82;
  transition: opacity .25s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--moss-600); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="true"] { opacity: 1; color: var(--moss-700); }
.nav a[aria-current="true"]::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.lang {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ocean-800); padding: .5rem .7rem; border-radius: 999px;
  border: 1px solid var(--line); transition: background-color .25s ease, border-color .25s ease;
}
.lang:hover { background: rgba(255, 255, 255, .75); border-color: rgba(15, 74, 92, .3); }
.header-actions .btn { display: none; padding: .7rem 1.25rem; font-size: .9rem; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .header-actions .btn { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-top: clamp(7.5rem, 20vw, 10.5rem);
  padding-bottom: clamp(4rem, 14vw, 7rem);
  background:
    radial-gradient(120% 85% at 78% 8%, rgba(201, 228, 232, .85) 0%, rgba(201, 228, 232, 0) 58%),
    radial-gradient(95% 70% at 8% 4%, rgba(239, 226, 206, .95) 0%, rgba(239, 226, 206, 0) 62%),
    linear-gradient(180deg, var(--sand-100) 0%, var(--sand-50) 72%);
}
/* idle drift uses the `translate` property so it composes with the
   JS parallax `transform` instead of fighting it */
@keyframes drift { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.hero-orb {
  position: absolute; border-radius: 50%; z-index: -2;
  filter: blur(46px); opacity: .55; pointer-events: none;
  will-change: transform;
  animation: drift 9s ease-in-out infinite;
}
.orb-b { animation-duration: 13s; animation-delay: -4s; }
.orb-c { animation-duration: 11s; animation-delay: -7s; }
.orb-a { width: 42vw; max-width: 380px; aspect-ratio: 1; top: 6%;  right: -9%; background: var(--ocean-400); opacity: .3; }
.orb-b { width: 34vw; max-width: 300px; aspect-ratio: 1; top: 46%; left: -13%; background: var(--sand-400); opacity: .5; }
.orb-c { width: 26vw; max-width: 230px; aspect-ratio: 1; top: 20%; left: 46%;  background: var(--moss-400); opacity: .22; }

.hero-grid { display: grid; gap: clamp(2.75rem, 7vw, 4rem); align-items: center; }

.hero-tagline {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .4rem .55rem; margin-bottom: 1.75rem;
}
.hero-tagline span {
  font-size: .7rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ocean-800); background: rgba(255, 255, 255, .55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .65);
  padding: .42rem .78rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 1px 2px rgba(10, 54, 68, .05);
}
.hero h1 {
  font-size: clamp(2.85rem, 12.5vw, 5.4rem);
  letter-spacing: -.035em; line-height: .98;
}
.hero h1 em {
  font-style: italic; font-weight: 300; color: var(--ocean-600);
  display: inline-block;
}
/* key word set in a clean sans — deliberate contrast against the serif,
   and it sidesteps Fraunces' curly lowercase "f" */
.hero h1 .kw {
  font-family: var(--sans); font-weight: 700; letter-spacing: -.045em;
  font-size: .93em; color: var(--ocean-900);
}
.hero h1 .u {
  position: relative; display: inline-block; font-style: italic; font-weight: 300;
  color: var(--moss-700);
}
.hero h1 .u::after {
  content: ""; position: absolute; left: -.06em; right: -.04em; bottom: .05em; height: .24em;
  background: rgba(140, 170, 130, .34); border-radius: 999px; z-index: -1;
  transform: rotate(-1.2deg); /* slight tilt reads hand-drawn, not machine-set */
}
.hero-copy { max-width: 34rem; margin-top: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.25rem; }
.hero-cta .btn { flex: 1 1 auto; min-width: 13rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hero-meta-stack { margin-top: 2rem; display: grid; gap: .55rem; }
.hero-meta {
  display: flex; align-items: center; gap: .65rem;
  font-size: .875rem; color: var(--muted);
}
.hero-meta-stack .hero-meta { margin-top: 0; }
.hero-meta svg { width: 18px; height: 18px; flex: none; color: var(--moss-600); }

.cohort-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.1rem; padding: .55rem 1rem .55rem .6rem;
  border-radius: 999px; background: #fff;
  border: 1px solid rgba(63, 98, 57, .22);
  box-shadow: var(--shadow-sm);
  font-size: .85rem; font-weight: 600; color: var(--moss-700);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cohort-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cohort-pill .pulse {
  position: relative; width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--moss-600); display: grid; place-items: center;
}
.cohort-pill .pulse svg { width: 14px; height: 14px; color: #fff; }
.cohort-pill .pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--moss-600); animation: ripple 2.4s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.7); opacity: 0; }
}
.cohort-pill b { font-weight: 700; color: var(--ocean-900); }
.cohort-pill, .offer-start { font-variant-numeric: tabular-nums; }

/* hero card / visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(165deg, var(--ocean-800) 0%, var(--ocean-950) 100%);
  color: var(--sand-100); padding: clamp(1.6rem, 5vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 60% at 15% 0%, rgba(82, 167, 189, .5) 0%, transparent 60%),
    radial-gradient(70% 50% at 100% 12%, rgba(140, 170, 130, .32) 0%, transparent 62%);
}
.hero-card-waves { position: absolute; inset: auto 0 -1px 0; z-index: -1; opacity: .5; }
.hero-card .quote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.3rem, 4.6vw, 1.65rem); line-height: 1.35; letter-spacing: -.015em;
  hanging-punctuation: first; /* progressive: Safari hangs the opening quote */
}
.hero-card .attrib {
  margin-top: 1.35rem; display: flex; align-items: center; gap: .7rem;
  font-size: .875rem; color: rgba(249, 244, 236, .72);
}
.hero-card .attrib .dot { width: 30px; height: 1px; background: rgba(249, 244, 236, .4); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-badge {
  animation: floaty 5.5s ease-in-out infinite;
  position: absolute; z-index: 2; right: clamp(-.5rem, 1vw, .75rem); top: -1rem;
  background: var(--sand-50); color: var(--ocean-950);
  border-radius: 18px; padding: .85rem 1.05rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .7rem; max-width: 15rem;
}
.hero-badge .num {
  font-family: var(--serif); font-size: 1.6rem; line-height: 1; color: var(--moss-700);
}
.hero-badge .lbl { font-size: .72rem; line-height: 1.35; color: var(--muted); font-weight: 500; }

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
  .hero-card { min-height: 420px; }
}

/* wave divider */
.wave-divider { display: block; width: 100%; height: auto; margin-bottom: -1px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ocean-950); color: var(--foam);
  padding-block: 1.1rem; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.marquee-track > div { display: flex; align-items: center; }
.marquee span {
  font-family: var(--serif); font-size: clamp(1rem, 3vw, 1.35rem);
  font-style: italic; font-weight: 300; letter-spacing: .01em;
  padding-inline: 1.4rem; white-space: nowrap;
}
.marquee i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--moss-400); flex: none;
}
@keyframes slide { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { background: var(--sand-50); padding-block: clamp(3.25rem, 8vw, 5rem); }
.steps-row { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; counter-reset: step; }
.steps-row li { display: flex; gap: 1rem; align-items: flex-start; }
.step-n {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.15rem; color: var(--ocean-800);
  background: var(--foam); border: 1px solid rgba(15, 74, 92, .12);
}
.steps-row h3 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; letter-spacing: -.005em; }
.steps-row p { color: var(--muted); font-size: .93rem; margin-top: .25rem; max-width: 30ch; }
@media (min-width: 760px) {
  .steps-row { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

/* ============================================================
   APPROACH (3M)
   ============================================================ */
.approach { background: var(--sand-50); }
.m-grid { display: grid; gap: 1.1rem; }
.m-card {
  position: relative; overflow: hidden; isolation: isolate;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 5vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease;
}
.m-card::after {
  content: ""; position: absolute; inset: auto -30% -55% auto; width: 62%; aspect-ratio: 1;
  z-index: -1; border-radius: 50%; background: var(--tint); opacity: .16;
  transition: transform .6s var(--ease); transform: scale(.85);
}
.m-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(140, 170, 130, .45); }
.m-card:hover::after { transform: scale(1.12); }
.m-icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: var(--tint); color: #fff; margin-bottom: 1.4rem;
  box-shadow: 0 8px 20px -10px var(--tint);
  transition: transform .5s var(--ease);
}
.m-card:hover .m-icon { transform: rotate(-5deg) scale(1.07); }
.m-icon svg { width: 25px; height: 25px; }
.m-card h3 { font-size: 1.45rem; letter-spacing: -.02em; }
.m-card .fr-note {
  font-family: var(--script); font-size: 1.15rem; color: var(--muted);
  margin-top: .1rem; line-height: 1.2;
}
.m-card p { margin-top: .85rem; color: var(--muted); font-size: 1rem; }
.m-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.35rem; }
.m-tags li {
  list-style: none; font-size: .76rem; font-weight: 600; letter-spacing: .02em;
  padding: .35rem .7rem; border-radius: 999px;
  background: var(--sand-100); color: var(--ocean-800);
}
@media (min-width: 760px) { .m-grid { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; } }

/* ============================================================
   OFFERS
   ============================================================ */
.offers { background: linear-gradient(180deg, var(--sand-100) 0%, var(--sand-50) 100%); }
.offer-grid { display: grid; gap: 1.1rem; align-items: start; }
.offer {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 5vw, 2.1rem); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-featured {
  background: linear-gradient(165deg, var(--ocean-800) 0%, var(--ocean-950) 100%);
  color: var(--sand-100); border-color: transparent; position: relative; isolation: isolate;
  box-shadow: var(--shadow-lg);
}
.offer-featured::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: radial-gradient(80% 55% at 85% 0%, rgba(82, 167, 189, .42) 0%, transparent 62%);
}
.offer-tag {
  align-self: flex-start; font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .38rem .75rem; border-radius: 999px;
  background: var(--sand-100); color: var(--ocean-800); margin-bottom: 1.15rem;
}
.offer-featured .offer-tag { background: var(--moss-600); color: #fff; }
.offer h3 { font-size: 1.6rem; }
.offer > p { margin-top: .7rem; color: var(--muted); font-size: .99rem; }
.offer-featured > p { color: rgba(249, 244, 236, .72); }
.offer .offer-fit {
  margin-top: .85rem; font-size: .84rem; font-weight: 600; color: var(--moss-700);
  padding: .5rem .8rem; border-radius: 10px;
  background: rgba(140, 170, 130, .14); border-left: 2.5px solid var(--moss-400);
}
.offer-featured .offer-fit {
  color: var(--foam); background: rgba(201, 228, 232, .1);
  border-left-color: var(--ocean-400);
}
.offer-price {
  display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap;
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.offer-featured .offer-price { border-top-color: rgba(249, 244, 236, .18); }
.offer-price b { font-family: var(--serif); font-weight: 400; font-size: 2.15rem; letter-spacing: -.03em; }
.offer-price s { color: var(--muted); font-size: 1rem; }
.offer-featured .offer-price s { color: rgba(249, 244, 236, .55); }
.offer-price em { font-style: normal; font-size: .84rem; color: var(--muted); }
.offer-featured .offer-price em { color: rgba(249, 244, 236, .7); }
.offer-start {
  display: flex; align-items: center; gap: .55rem; margin-top: .9rem;
  font-size: .84rem; font-weight: 600; color: var(--foam);
}
.offer-start svg { width: 16px; height: 16px; flex: none; opacity: .85; }

.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .8rem; }
.checklist li { display: flex; gap: .7rem; font-size: .96rem; line-height: 1.5; }
.checklist svg { width: 18px; height: 18px; flex: none; margin-top: .22rem; color: var(--moss-600); }
/* checkmarks draw themselves in as the card reveals */
.checklist svg path { stroke-dasharray: 26; stroke-dashoffset: 26; }
.reveal.in .checklist svg path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .55s var(--ease);
}
.reveal.in .checklist li:nth-child(1) path { transition-delay: .25s; }
.reveal.in .checklist li:nth-child(2) path { transition-delay: .37s; }
.reveal.in .checklist li:nth-child(3) path { transition-delay: .49s; }
.reveal.in .checklist li:nth-child(4) path { transition-delay: .61s; }
.reveal.in .checklist li:nth-child(5) path { transition-delay: .73s; }
.offer-featured .checklist svg { color: var(--moss-400); }
.offer .btn { margin-top: auto; }
.offer .checklist { margin-bottom: 1.9rem; }

@media (min-width: 980px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
  .offer-featured { transform: translateY(-14px); }
  .offer-featured:hover { transform: translateY(-19px); }
}

/* ============================================================
   PROGRAM SPLIT
   ============================================================ */
.program { background: var(--sand-50); }
.split { display: grid; gap: clamp(2.25rem, 6vw, 3.5rem); align-items: center; }
.split-visual { position: relative; }
.panel {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  background: linear-gradient(160deg, var(--foam) 0%, var(--sand-200) 100%);
  aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-lg);
}
.panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }
@keyframes sunGlow {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: .95; transform: scale(1.05); }
}
.panel .sun {
  transform-box: fill-box; transform-origin: center;
  animation: sunGlow 7s ease-in-out infinite;
}
.panel-note {
  position: absolute; left: 50%; bottom: 1.15rem; transform: translateX(-50%);
  background: rgba(253, 250, 245, .92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 999px; padding: .6rem 1.15rem; font-size: .8rem; font-weight: 600;
  color: var(--ocean-900); white-space: nowrap; box-shadow: var(--shadow-sm);
}
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.feature-list li {
  display: flex; gap: 1rem; padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}
.feature-list li:first-child { padding-top: 0; }
.feature-list li:last-child { border-bottom: 0; }
.feature-list .n {
  font-family: var(--serif); font-size: .8rem; font-weight: 600; color: var(--ocean-600);
  padding-top: .3rem; flex: none; letter-spacing: .06em;
}
.feature-list h3 { font-size: 1.12rem; font-family: var(--sans); font-weight: 600; letter-spacing: -.005em; }
.feature-list p { color: var(--muted); font-size: .95rem; margin-top: .22rem; }

@media (min-width: 900px) {
  .split { grid-template-columns: .95fr 1.05fr; }
  .split-visual { order: -1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--ocean-950); color: var(--sand-100); position: relative; overflow: hidden; }
.about::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 50% at 12% 0%, rgba(82, 167, 189, .3) 0%, transparent 60%),
    radial-gradient(60% 55% at 92% 88%, rgba(88, 127, 81, .3) 0%, transparent 62%);
  pointer-events: none;
}
.about .wrap { position: relative; }
.about .eyebrow { color: var(--moss-400); }
.about-grid { display: grid; gap: clamp(2.25rem, 6vw, 3.5rem); align-items: center; }
.about h2 { font-size: clamp(2rem, 6vw, 3rem); margin-top: 1rem; }
.about-quote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 3.4vw, 1.6rem); line-height: 1.5; letter-spacing: -.015em;
  color: #fff; margin-top: 1.6rem;
  padding-left: 1.35rem; border-left: 2px solid var(--moss-400);
}
.about p.body { margin-top: 1.5rem; color: rgba(249, 244, 236, .74); }
.signature {
  font-family: var(--script); font-size: 2.35rem; line-height: 1;
  color: var(--foam); margin-top: 1.75rem;
}
.signature + .role {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(249, 244, 236, .55); margin-top: .5rem;
}
.about-cta {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: 1.75rem; font-size: .95rem; font-weight: 600; color: var(--foam);
  border-bottom: 1.5px solid rgba(201, 228, 232, .4);
  padding-bottom: .2rem; transition: border-color .3s ease, gap .35s var(--ease);
}
.about-cta svg { width: 17px; height: 17px; }
.about-cta:hover { border-color: var(--foam); gap: .8rem; }
.portrait {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1 / 1.12; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--ocean-800), var(--ocean-950));
}
.portrait svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.portrait-mono {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-size: clamp(4.5rem, 16vw, 7rem); font-weight: 300;
  color: rgba(201, 228, 232, .9); letter-spacing: -.04em;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
  margin-top: 2.25rem; padding-top: 2rem; border-top: 1px solid rgba(249, 244, 236, .16);
}
.about-stats b {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 4.5vw, 2rem); letter-spacing: -.02em; color: var(--foam);
}
.about-stats span { font-size: .78rem; color: rgba(249, 244, 236, .6); line-height: 1.35; display: block; margin-top: .2rem; }

@media (min-width: 880px) { .about-grid { grid-template-columns: .82fr 1.18fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--sand-100); }
.faq-list { display: grid; gap: .7rem; }
details {
  background: var(--sand-50); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: background-color .3s ease, box-shadow .4s var(--ease);
}
details[open] { background: #fff; box-shadow: var(--shadow-sm); }
summary {
  cursor: pointer; list-style: none; padding: 1.2rem 1.35rem;
  display: flex; align-items: center; gap: 1rem;
  font-weight: 600; font-size: 1.01rem; line-height: 1.45;
}
summary::-webkit-details-marker { display: none; }
summary .chev {
  margin-left: auto; flex: none; width: 20px; height: 20px; color: var(--ocean-600);
  transition: transform .4s var(--ease);
}
details[open] summary .chev { transform: rotate(45deg); }
details .answer { padding: 0 1.35rem 1.35rem; color: var(--muted); font-size: .99rem; max-width: 62ch; }
.answer a {
  color: var(--ocean-600); font-weight: 500;
  text-decoration: underline; text-decoration-thickness: 1.5px;
  text-underline-offset: 3px; text-decoration-color: rgba(27, 123, 148, .4);
  transition: text-decoration-color .25s ease;
}
.answer a:hover { text-decoration-color: var(--ocean-600); }

/* ============================================================
   FREEBIES
   ============================================================ */
.freebies { background: var(--sand-100); padding-top: 0; }
.freebie-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; gap: 1.5rem; align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.75rem, 5.5vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.freebie-card::before {
  content: ""; position: absolute; z-index: -1;
  right: -12%; top: -55%; width: 46%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 228, 232, .8) 0%, rgba(201, 228, 232, 0) 70%);
}
.freebie-script {
  font-family: var(--script); font-size: 1.5rem; color: var(--moss-600);
  line-height: 1.1; margin-bottom: .35rem;
}
.freebie-card h2 { font-size: clamp(1.6rem, 4.6vw, 2.2rem); }
.freebie-card p.sub { margin-top: .7rem; color: var(--muted); font-size: 1rem; max-width: 46ch; }
.freebie-chips { list-style: none; margin: 1.1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.freebie-chips li {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: var(--ocean-800);
  background: var(--sand-100); border: 1px solid var(--line);
  padding: .42rem .8rem; border-radius: 999px;
}
.freebie-chips li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--moss-600);
}
.freebie-cta { display: flex; flex-direction: column; gap: .6rem; }
.freebie-cta .hint { font-size: .8rem; color: var(--muted); text-align: center; }
@media (min-width: 820px) {
  .freebie-card { grid-template-columns: 1.35fr .65fr; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--sand-50); }
.contact-card {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: clamp(26px, 5vw, 34px);
  background: linear-gradient(160deg, var(--moss-700) 0%, #2C4A2A 100%);
  color: var(--sand-100); padding: clamp(2rem, 7vw, 3.75rem);
  box-shadow: var(--shadow-lg);
}
.contact-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(75% 60% at 90% 5%, rgba(82, 167, 189, .38) 0%, rgba(82, 167, 189, .12) 40%, transparent 62%),
    radial-gradient(60% 50% at 5% 95%, rgba(211, 184, 145, .3) 0%, rgba(211, 184, 145, .1) 40%, transparent 62%);
}
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); }
.contact h2 { font-size: clamp(2rem, 6.4vw, 3rem); margin-top: 1rem; }
.contact .eyebrow { color: rgba(201, 228, 232, .9); }
.contact .lede { color: rgba(249, 244, 236, .76); margin-top: 1.1rem; }
.contact-links { display: grid; gap: .55rem; margin-top: 2rem; }
.contact-links a {
  display: flex; align-items: center; gap: .85rem; padding: .85rem 1.1rem;
  border-radius: 14px; background: rgba(249, 244, 236, .08);
  border: 1px solid rgba(249, 244, 236, .14); font-size: .95rem; font-weight: 500;
  transition: background-color .3s ease, transform .35s var(--ease);
}
.contact-links a:hover { background: rgba(249, 244, 236, .16); transform: translateX(4px); }
.contact-links svg { width: 19px; height: 19px; flex: none; opacity: .9; }
.contact-links .val { margin-left: auto; opacity: .62; font-size: .85rem; }
.contact .ps {
  margin-top: 1.5rem; font-family: var(--script);
  font-size: 1.3rem; line-height: 1.3; color: var(--foam);
}

.form { display: grid; gap: .9rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: rgba(249, 244, 236, .72); }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px;
  background: rgba(253, 250, 245, .95); border: 1px solid transparent; color: var(--ink);
  font-size: 1rem; transition: box-shadow .25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #94A5AC; }
.field input:focus, .field textarea:focus { outline: none; box-shadow: 0 0 0 3px rgba(201, 228, 232, .65); }
.field textarea { resize: vertical; min-height: 118px; }
.form .btn { margin-top: .4rem; }
.form-note { font-size: .8rem; color: rgba(249, 244, 236, .82); text-align: center; }

@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr .92fr; align-items: center; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ocean-950); color: rgba(249, 244, 236, .62); padding-block: 3.25rem 2.25rem; }
.footer-top { display: grid; gap: 1.75rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(249, 244, 236, .12); }
.site-footer .brand-name { color: var(--sand-100); }
.site-footer .brand-name span { color: var(--moss-400); }
.footer-tag {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.05rem; color: rgba(249, 244, 236, .75);
  margin-top: 1rem; max-width: 26ch; text-wrap: balance;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: .65rem 1.5rem; font-size: .9rem; }
.footer-nav a { transition: color .25s ease; }
.footer-nav a:hover { color: var(--sand-100); }
.socials { display: flex; gap: .5rem; margin-top: 1.25rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(249, 244, 236, .08); border: 1px solid rgba(249, 244, 236, .14);
  transition: background-color .3s ease, transform .35s var(--ease);
}
.socials a:hover { background: rgba(249, 244, 236, .18); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  padding-top: 1.5rem; font-size: .8rem;
}
.footer-bottom a { transition: color .25s ease; }
.footer-bottom a:hover { color: var(--sand-100); }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr; } }

/* mobile sticky CTA */
.sticky-cta {
  position: fixed; z-index: 55; left: .75rem; right: .75rem;
  bottom: calc(.75rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(160%);
  transition: transform .6s cubic-bezier(.34, 1.4, .64, 1); /* gentle spring */
}
.sticky-cta.is-on { transform: translateY(0); }
.sticky-cta .btn { box-shadow: 0 14px 34px -10px rgba(63, 98, 57, .75); }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal-l { transform: translate(-26px, 12px); }
.reveal-r { transform: translate(26px, 12px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .85s var(--ease), transform .85s var(--ease); }
details .answer { overflow: hidden; }

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