/* === Kinlee Playgroups · Stylesheet === */

/* --- Design tokens --- */
:root {
  --sage-primary: #7A8C70;
  --sage-deep: #4A5444;
  --sage-muted: #9BA89A;
  --cream: #F5F3EE;
  --beige-warm: #E8DFD3;
  --clay-soft: #C9A89A;
  --text-body: #3D3A35;
  --white-warm: #FBF9F4;

  --font-display: 'Quicksand', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-wordmark: 'Quicksand', var(--font-body);
  --font-script: 'Shadows Into Light Two', 'Bradley Hand', cursive;

  --radius-card: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 4px 24px rgba(74, 84, 68, 0.08);
  --shadow-hover: 0 8px 32px rgba(74, 84, 68, 0.12);

  --max-w: 1140px;
  --section-py: clamp(56px, 9vw, 120px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='w'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.022 1.4' numOctaves='2' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.40 0 0 0 0 0.33 0 0 0 0 0.23 0 0 0 0.24 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23w)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='turbulence' baseFrequency='1.4 0.022' numOctaves='2' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.40 0 0 0 0 0.33 0 0 0 0 0.23 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.008' numOctaves='1' seed='11' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.38 0 0 0 0 0.28 0 0 0 0.10 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)'/%3E%3C/svg%3E");
  background-size: 300px 300px, 300px 300px, 600px 600px;
  background-blend-mode: multiply, multiply, multiply;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
[hidden] { display: none !important; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-muted);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

/* --- Layout helpers --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
section { padding-block: var(--section-py); }
.section-bg-beige {
  background: radial-gradient(120% 120% at 50% 50%, rgba(232, 223, 211, 0.45) 0%, rgba(232, 223, 211, 0) 75%);
}
.section-bg-warm {
  background: radial-gradient(120% 120% at 50% 50%, rgba(251, 249, 244, 0.7) 0%, rgba(251, 249, 244, 0) 75%);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
.btn-primary {
  background: var(--sage-primary);
  color: var(--white-warm);
}
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--sage-deep);
  border: 1px solid var(--sage-primary);
}
.btn-secondary:hover { background: var(--sage-primary); color: var(--white-warm); }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero-moon__orbit { animation: none !important; }
  .hero-moon__moon { opacity: 0 !important; visibility: hidden !important; }
  .hero-pillars__row { opacity: 1 !important; transform: translateY(0) !important; }
  .envelope__flap { opacity: 0 !important; }
  .envelope__seal { opacity: 0 !important; }
  .hero-letter__paper { opacity: 1 !important; transform: translateY(-45%) rotate(-1.3deg) !important; }
}

/* --- Site nav --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 250ms ease, box-shadow 250ms ease;
}
.site-nav.is-scrolled,
.site-nav.is-solid {
  background: rgba(245, 243, 238, 0.78);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: none;
}
.site-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
  background: linear-gradient(180deg, rgba(245, 243, 238, 0.72), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 250ms ease;
}
.site-nav.is-scrolled::after,
.site-nav.is-solid::after { opacity: 1; }
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.875rem;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.site-nav__mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(74, 84, 68, 0.08);
}
.site-nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-nav__wordmark-name {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--sage-primary);
  letter-spacing: -0.01em;
}
.site-nav__wordmark-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-muted);
  font-weight: 600;
  margin-top: 0.3125rem;
}
@media (max-width: 520px) {
  .site-nav__mark { width: 44px; height: 44px; }
  .site-nav__wordmark-name { font-size: 1.25rem; }
  .site-nav__wordmark-sub { font-size: 0.625rem; }
}
.site-nav__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.site-nav__menu a {
  font-size: 0.9375rem;
  color: var(--sage-deep);
  font-weight: 500;
  transition: color 200ms ease;
}
.site-nav__menu a:hover,
.site-nav__menu a.is-current { color: var(--clay-soft); }
.site-nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.site-nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--sage-deep);
  position: relative;
}
.site-nav__toggle span::before,
.site-nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--sage-deep);
  transition: transform 200ms ease;
}
.site-nav__toggle span::before { top: -7px; }
.site-nav__toggle span::after { top: 7px; }

@media (max-width: 768px) {
  .site-nav__toggle { display: inline-flex; }
  .site-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1rem 1.5rem 1.75rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(74, 84, 68, 0.06);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .site-nav.is-open .site-nav__menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
}

.nav-spacer { height: 76px; }

/* --- Scroll fade-up --- */
[data-fade] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer --- */
.site-footer {
  background: rgba(245, 243, 238, 0.78);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  border-top: none;
  padding-block: 3.5rem 2rem;
  margin-top: 4rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 22px;
  background: linear-gradient(0deg, rgba(245, 243, 238, 0.72), transparent);
  pointer-events: none;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.site-footer__brand-name {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--sage-primary);
  letter-spacing: -0.01em;
}
.site-footer__brand-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-muted);
  font-weight: 600;
  margin-top: 0.3125rem;
}
.site-footer__tagline { color: var(--sage-muted); font-size: 0.9375rem; max-width: 320px; }
.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.site-footer__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__list a, .site-footer__list span { font-size: 0.9375rem; color: var(--sage-deep); }
.site-footer__list a:hover { color: var(--clay-soft); }
.site-footer__rule { border: 0; border-top: 1px solid rgba(74, 84, 68, 0.08); margin: 2.5rem 0 1.25rem; }
.site-footer__legal {
  font-size: 0.8125rem;
  color: var(--sage-muted);
  text-align: center;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding-block: 8rem 4rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white-warm) 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
  .hero { padding-block: 9rem 6rem; }
}
.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.875rem);
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: var(--sage-deep);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 1;
  max-width: 540px;
  width: 100%;
  justify-self: center;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }

/* --- Intro / "More Than a Playgroup" --- */
.intro h2 { margin-bottom: 1rem; max-width: 22ch; }
.intro__lede { font-size: 1.0625rem; color: var(--sage-deep); max-width: 640px; margin-bottom: 3rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.feature-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--beige-warm);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-primary);
  font-family: var(--font-display);
}
.feature-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9375rem; color: var(--text-body); }

/* --- How it works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.step {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  position: relative;
}
.step__num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--sage-muted);
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.1875rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9375rem; color: var(--text-body); }

/* --- Closing CTA --- */
.cta-band {
  text-align: center;
  background: radial-gradient(120% 100% at 50% 0%, rgba(232, 223, 211, 0.55) 0%, rgba(232, 223, 211, 0.20) 100%);
  border: 0.5px solid rgba(122, 140, 112, 0.16);
  border-radius: 32px;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
  margin-block: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 280px;
  height: 280px;
  border: 0.5px solid rgba(122, 140, 112, 0.30);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 1.25rem; max-width: 22ch; margin-inline: auto; }
.cta-band__buttons { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* --- Inner-page hero --- */
.page-hero {
  padding-block: 11rem 3rem;
  background: transparent;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-primary);
}
.page-hero__inner { max-width: 760px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero__lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--sage-deep);
  max-width: 600px;
}

/* --- Pill list --- */
.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.5rem; }
.pill-list li {
  background: var(--white-warm);
  border: 1px solid rgba(122, 140, 112, 0.18);
  color: var(--sage-deep);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
}

/* --- Two-column block --- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 880px) { .split { grid-template-columns: 1.05fr 1fr; gap: 4rem; } }
.split__placeholder {
  background: linear-gradient(160deg, #C9A89A 0%, #B6917F 100%);
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
}
.split p { color: var(--text-body); margin-bottom: 1rem; }

/* --- Audience cards --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.audience-card {
  background: radial-gradient(120% 100% at 30% 0%, var(--white-warm) 0%, #F5EFE6 100%);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(74, 84, 68, 0.06);
}
.audience-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.audience-card p { font-size: 0.9375rem; }

/* --- Pillar grid --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.pillar {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--sage-primary);
}
.pillar h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9375rem; }
.lede-block {
  max-width: 720px;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  color: var(--sage-deep);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.4;
}

/* --- Session detail strip --- */
.detail-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--white-warm);
  border-radius: var(--radius-card);
}
.detail-strip__item .label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.detail-strip__item .value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sage-deep);
}

/* --- Booking placeholder card --- */
.booking-card {
  margin-top: 3rem;
  background: var(--beige-warm);
  border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  border: 1px dashed rgba(74, 84, 68, 0.18);
}
.booking-card h2 { margin-bottom: 1rem; }
.booking-card p { max-width: 520px; margin: 0 auto 1.5rem; color: var(--sage-deep); }
.booking-card__tag {
  display: inline-block;
  background: var(--white-warm);
  border-radius: var(--radius-pill);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-muted);
  margin-bottom: 1.25rem;
}

/* --- Contact form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 4rem; } }
.form { display: grid; gap: 1.25rem; }
.form__field { display: grid; gap: 0.375rem; }
.form__field label {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-muted);
  font-weight: 600;
}
.form__field input,
.form__field textarea,
.form__field select {
  background: var(--white-warm);
  border: 1px solid rgba(74, 84, 68, 0.14);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  color: var(--text-body);
  font-size: 1rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--sage-primary);
  box-shadow: 0 0 0 3px rgba(122, 140, 112, 0.18);
}
.form__field textarea { min-height: 130px; resize: vertical; }
.form__submit { justify-self: start; }
.contact-side {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
}
.contact-side h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.contact-side dl { margin: 0; }
.contact-side dt {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-muted);
  font-weight: 600;
  margin-top: 1rem;
}
.contact-side dd { margin: 0.25rem 0 0; color: var(--sage-deep); font-size: 0.9375rem; }

/* === Editorial moon hero === */

.hero-moon {
  position: relative;
  padding-block: clamp(9rem, 16vh, 12rem) clamp(3rem, 6vh, 5rem);
  background: transparent;
  overflow: hidden;
}
.hero-moon__eyebrow {
  position: absolute;
  top: clamp(5.5rem, 10vh, 7rem);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-muted);
  font-weight: 600;
}
.hero-moon__eyebrow--left { left: clamp(20px, 4vw, 40px); }
.hero-moon__eyebrow--right { right: clamp(20px, 4vw, 40px); }
.hero-moon__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 880px) {
  .hero-moon__grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}
.hero-moon__copy { max-width: 540px; }
.hero-moon__headline {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--sage-deep);
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin: 0 0 2.25rem;
}
.hero-moon__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-primary);
}
.hero-moon__subhead {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--sage-muted);
  line-height: 1.55;
  max-width: 40ch;
  margin: -1rem 0 2rem;
}
.hero-moon__form-wrap { max-width: 480px; }
.hero-moon__microcopy {
  font-size: 0.8125rem;
  color: var(--sage-muted);
  margin-top: 0.75rem;
}
.hero-moon__links {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.hero-moon__links a {
  font-size: 0.875rem;
  color: var(--sage-muted);
  transition: color 200ms ease;
}
.hero-moon__links a:hover { color: var(--sage-deep); }

/* Right-column moon composition */
.hero-moon__visual {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}
.hero-moon__halo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-moon__halo--outer {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(122, 140, 112, 0.14) 0%, rgba(232, 223, 211, 0) 60%);
}
.hero-moon__halo--inner {
  width: 78%;
  height: 78%;
  background: radial-gradient(circle, rgba(201, 168, 154, 0.22) 0%, rgba(201, 168, 154, 0) 55%);
}
.hero-moon__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88%;
  height: 88%;
  transform: translate(-50%, -50%);
  animation: orbitRotate 120s linear infinite;
  pointer-events: none;
}
.hero-moon__orbit svg { width: 100%; height: 100%; display: block; }
@keyframes orbitRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-moon__moon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64%;
  height: 64%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 16px 50px rgba(74, 84, 68, 0.16),
    0 4px 14px rgba(74, 84, 68, 0.08);
  animation: fadeOutMoon 0.8s ease-out 1.2s forwards;
}
@keyframes fadeOutMoon {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); visibility: hidden; }
}
.hero-moon__moon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-moon__moon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset -16px -22px 48px rgba(74, 49, 32, 0.20);
  pointer-events: none;
}
.hero-moon__sparkle {
  position: absolute;
  left: 6%;
  top: 18%;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.hero-moon__corner-arc {
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  z-index: 1;
}

/* Hero pillars (replace moon after fade) */
.hero-pillars {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2;
}
.hero-pillars__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: transform 200ms ease;
  cursor: default;
}
.hero-pillars__row:nth-child(1) { animation: fadeInPillar 0.6s ease-out 1.5s forwards; }
.hero-pillars__row:nth-child(2) { animation: fadeInPillar 0.6s ease-out 1.7s forwards; }
.hero-pillars__row:nth-child(3) { animation: fadeInPillar 0.6s ease-out 1.9s forwards; }
@keyframes fadeInPillar {
  to { opacity: 1; transform: translateY(0); }
}
.hero-pillars__disc {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 14px rgba(74, 84, 68, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.hero-pillars__disc::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 0.5px solid rgba(122, 140, 112, 0.30);
  border-radius: 50%;
  transition: inset 220ms ease, border-color 220ms ease;
}
.hero-pillars__disc--sage { background: radial-gradient(circle at 35% 35%, #BFC6B5 0%, #8E9C82 100%); }
.hero-pillars__disc--beige { background: radial-gradient(circle at 35% 35%, #EFE2D2 0%, #D7C4AC 100%); }
.hero-pillars__disc--clay { background: radial-gradient(circle at 35% 35%, #DCB6A3 0%, #B68F7A 100%); }
.hero-pillars__label h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--sage-deep);
  margin: 0 0 0.125rem;
  transition: color 220ms ease;
}
.hero-pillars__label p {
  font-size: 0.8125rem;
  color: var(--sage-muted);
  margin: 0;
  max-width: 22ch;
}
.hero-pillars__row:hover .hero-pillars__disc {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(74, 84, 68, 0.20), 0 0 0 8px rgba(122, 140, 112, 0.10);
}
.hero-pillars__row:hover .hero-pillars__disc::after {
  inset: -8px;
  border-color: rgba(122, 140, 112, 0.50);
}
.hero-pillars__row:hover .hero-pillars__label h3 { color: var(--sage-primary); }

/* Mobile: shrink the moon and stack */
@media (max-width: 879px) {
  .hero-moon__visual { width: min(86%, 360px); }
  .hero-moon__eyebrow--right { display: none; }
  .hero-pillars__disc { width: 48px; height: 48px; }
  .hero-pillars__label h3 { font-size: 1rem; }
  .hero-pillars__label p { font-size: 0.75rem; }
}

/* === Envelope wrapper with handwritten letter sliding out === */

.hero-envelope-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 5 / 5.6;
}

.envelope {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 5 / 3.1;
}

.envelope__back {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.32 0 0 0 0 0.28 0 0 0 0 0.21 0 0 0 0.22 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    radial-gradient(120% 80% at 20% 5%, rgba(255, 246, 226, 0.18) 0%, transparent 50%),
    linear-gradient(180deg, #C5CCBB 0%, #ADB69E 60%, #939D83 100%);
  background-size: 220px 220px, 100% 100%, 100% 100%;
  background-blend-mode: multiply, screen, normal;
  border-radius: 7px 5px 6px 8px;
  box-shadow:
    0 28px 56px rgba(74, 49, 32, 0.20),
    0 8px 18px rgba(74, 49, 32, 0.12),
    inset 0 0 36px rgba(74, 49, 32, 0.10),
    inset 4px 6px 18px rgba(255, 246, 226, 0.08);
  z-index: 1;
}

.envelope__front {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0 0.11 0 0 0 0.26 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    radial-gradient(120% 100% at 15% 0%, rgba(255, 246, 226, 0.20) 0%, transparent 55%),
    linear-gradient(180deg, #9DA792 0%, #889378 60%, #707B62 100%);
  background-size: 240px 240px, 100% 100%, 100% 100%;
  background-blend-mode: multiply, screen, normal;
  clip-path: polygon(0 0, 50% 52%, 100% 0, 100% 100%, 0 100%);
  z-index: 4;
  border-radius: 0 0 6px 8px;
  box-shadow: inset 0 1px 0 rgba(255, 246, 226, 0.12);
}
/* Soft cast shadow along the V edge so the front reads as in front of pocket */
.envelope__front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40, 32, 22, 0.18) 0%, transparent 28%);
  pointer-events: none;
  clip-path: polygon(0 0, 50% 52%, 100% 0, 100% 8%, 0 8%);
}

.envelope__flap {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0 0.11 0 0 0 0.26 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    radial-gradient(120% 100% at 15% 0%, rgba(255, 246, 226, 0.22) 0%, transparent 55%),
    linear-gradient(165deg, #95A088 0%, #717D63 100%);
  background-size: 240px 240px, 100% 100%, 100% 100%;
  background-blend-mode: multiply, screen, normal;
  clip-path: polygon(0 0, 100% 0, 50% 52%);
  z-index: 5;
  animation: flapOpen 1.6s cubic-bezier(0.45, 0.05, 0.30, 1.0) 1.0s forwards;
}
@keyframes flapOpen {
  0%   { clip-path: polygon(0 0, 100% 0, 50% 52%); opacity: 1; }
  65%  { opacity: 1; }
  100% { clip-path: polygon(0 0, 100% 0, 50% 0); opacity: 0; }
}

.envelope__seal {
  position: absolute;
  top: 24%;
  left: 50%;
  width: clamp(68px, 16%, 104px);
  aspect-ratio: 1;
  border-radius: 48% 52% 51% 49% / 51% 49% 50% 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.20) 0%, transparent 38%),
    radial-gradient(circle at 70% 75%, rgba(0, 0, 0, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 40% 35%, #A6B59A 0%, #7A8C70 45%, #4A5444 100%);
  box-shadow:
    inset -7px -11px 22px rgba(40, 50, 35, 0.38),
    inset 4px 6px 14px rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(40, 50, 35, 0.30);
  transform: translate(-50%, -50%);
  animation: sealVanish 0.9s ease-out 0.5s forwards;
}
.envelope__seal::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px solid rgba(40, 50, 35, 0.48);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}
.envelope__seal-mark {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(36px, 7vw, 56px);
  color: #3D4738;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-top: -2px;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.32),
    0 -1px 0 rgba(0, 0, 0, 0.30);
}
@keyframes sealVanish {
  0%   { opacity: 1; transform: translate(-50%, -50%) rotate(0deg); }
  60%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -64%) rotate(-14deg); }
}

/* The handwritten letter card sits between back (z 1) and front (z 4). Slides
   up from inside the envelope on load. */
.envelope__letter-wrap {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 82%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.envelope__letter-wrap .hero-letter__paper { pointer-events: auto; }

.hero-letter__paper {
  position: relative;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.36 0 0 0 0 0.27 0 0 0 0.16 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    radial-gradient(120% 100% at 12% 0%, rgba(255, 250, 235, 0.55) 0%, transparent 50%),
    linear-gradient(165deg, #F2EAD9 0%, #E8DFD3 60%, #D8CDB8 100%);
  background-size: 200px 200px, 100% 100%, 100% 100%;
  background-blend-mode: multiply, screen, normal;
  border-radius: 6px 4px 5px 7px;
  padding: clamp(1.25rem, 2.4vw, 1.75rem) clamp(1.125rem, 2.2vw, 1.625rem) clamp(2.25rem, 4.5vw, 3rem);
  box-shadow:
    0 16px 32px rgba(74, 49, 32, 0.22),
    0 6px 14px rgba(74, 49, 32, 0.12),
    inset 0 1px 0 rgba(255, 250, 235, 0.7),
    inset 0 -1px 0 rgba(74, 49, 32, 0.06);
  color: var(--sage-deep);
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  line-height: 1.5;
  min-height: 320px;
  opacity: 0;
  transform: translateY(140px) rotate(-1.3deg);
  animation: letterEmerge 1.8s cubic-bezier(0.32, 1.05, 0.55, 1.0) 2.2s forwards;
}
.hero-letter__paper p { margin-bottom: 0.5rem; }
.hero-letter__paper p:last-child { margin-bottom: 0; }
.hero-letter__salutation {
  font-size: clamp(1.1875rem, 2.2vw, 1.4375rem);
  margin-bottom: 0.75rem;
}
.hero-letter__signature {
  font-size: clamp(1.0625rem, 1.9vw, 1.25rem);
  margin-top: 1.125rem;
  text-align: center;
  color: var(--sage-primary);
}
@keyframes letterEmerge {
  0%   { opacity: 0; transform: translateY(140px) rotate(-1.3deg); }
  25%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(-45%) rotate(-1.3deg); }
}

@media (max-width: 879px) {
  .hero-envelope-wrap { max-width: 420px; aspect-ratio: 5 / 6; }
}
@media (max-width: 520px) {
  .envelope__seal { width: 56px; }
  .envelope__seal-mark { font-size: 22px; }
  .envelope__letter-wrap { width: 94%; }
}

/* --- Waitlist form (pill-shaped, glassmorphic) --- */
.waitlist-form {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.4375rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(74, 84, 68, 0.08);
  border: 0.5px solid rgba(74, 84, 68, 0.12);
  width: 100%;
  max-width: 480px;
}
.waitlist-form__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  outline: none;
}
.waitlist-form__input::placeholder { color: var(--sage-muted); }
.waitlist-form__submit {
  background: var(--sage-deep);
  color: var(--white-warm);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 0 0 0 rgba(122, 140, 112, 0);
}
.waitlist-form__submit:hover {
  background: #2F3A2A;
  transform: translateY(-1px);
  box-shadow: 0 0 0 6px rgba(122, 140, 112, 0.14);
}

@media (max-width: 520px) {
  .waitlist-form {
    flex-direction: column;
    border-radius: 18px;
    padding: 0.5rem;
    gap: 0.375rem;
  }
  .waitlist-form__input {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
  .waitlist-form__submit { width: 100%; padding: 0.875rem 1.5rem; }
}

/* --- 3-pillar reinforcement strip (discs in slight arc) --- */
.pillars-strip {
  background:
    radial-gradient(rgba(74, 84, 68, 0.04) 1px, transparent 1px) 0 0 / 6px 6px,
    var(--beige-warm);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 0.5px solid rgba(122, 140, 112, 0.16);
  position: relative;
}
.pillars-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
  align-items: end;
}
@media (min-width: 720px) {
  .pillars-strip__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .pillars-strip__item:nth-child(2) { transform: translateY(-1.75rem); }
}
.pillars-strip__item { text-align: center; }
.pillars-strip__disc {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  position: relative;
  box-shadow: 0 6px 22px rgba(74, 84, 68, 0.12);
}
.pillars-strip__disc::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 0.5px solid rgba(122, 140, 112, 0.30);
  border-radius: 50%;
}
.pillars-strip__disc--sage {
  background: radial-gradient(circle at 35% 35%, #BFC6B5 0%, #8E9C82 100%);
}
.pillars-strip__disc--beige {
  background: radial-gradient(circle at 35% 35%, #EFE2D2 0%, #D7C4AC 100%);
}
.pillars-strip__disc--clay {
  background: radial-gradient(circle at 35% 35%, #DCB6A3 0%, #B68F7A 100%);
}
.pillars-strip__item h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  color: var(--sage-deep);
  font-weight: 500;
  margin-bottom: 0.375rem;
}
.pillars-strip__item p {
  font-size: 0.9375rem;
  color: var(--text-body);
  max-width: 22ch;
  margin: 0 auto;
}

/* --- Sticky CTA bar (inner pages only) --- */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--sage-deep);
  color: var(--white-warm);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 -4px 16px rgba(74, 84, 68, 0.12);
  transform: translateY(0);
  transition: transform 250ms ease, opacity 250ms ease;
}
.cta-bar.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cta-bar__link {
  color: var(--white-warm);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cta-bar__link:hover { text-decoration: underline; }
.cta-bar__dismiss {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 249, 244, 0.7);
  font-size: 1.125rem;
  border-radius: 50%;
  transition: background 200ms ease, color 200ms ease;
}
.cta-bar__dismiss:hover { background: rgba(251, 249, 244, 0.08); color: var(--white-warm); }

/* Bottom-padding spacer so the sticky bar doesn't cover footer content on inner pages */
body.has-cta-bar .site-footer { padding-bottom: 5rem; }

/* === Hero-adjacent fit-check strip === */
.fit-strip {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}
.fit-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .fit-strip__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: center;
  }
  .fit-strip__item + .fit-strip__item {
    border-left: 0.5px solid rgba(122, 140, 112, 0.22);
  }
}
.fit-strip__item {
  padding-inline: clamp(1rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.fit-strip__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-muted);
  font-weight: 600;
}
.fit-strip__value {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--sage-deep);
  font-weight: 500;
}
.fit-strip__note {
  font-size: 0.8125rem;
  color: var(--sage-muted);
}

/* === Status pill (hero) === */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(122, 140, 112, 0.12);
  color: var(--sage-deep);
  border: 0.5px solid rgba(122, 140, 112, 0.28);
  border-radius: var(--radius-pill);
  padding: 0.375rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-primary);
  box-shadow: 0 0 0 3px rgba(122, 140, 112, 0.18);
}

/* === Founder credibility block === */
.founder {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.founder__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 720px) {
  .founder__inner {
    grid-template-columns: auto 1fr;
    gap: 2.75rem;
    text-align: left;
  }
}
.founder__photo {
  width: clamp(150px, 30vw, 200px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.founder__photo::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 0.5px solid rgba(122, 140, 112, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.founder__photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(74, 84, 68, 0.16);
}
.founder__body .eyebrow { margin-bottom: 0.75rem; }
.founder__name {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--sage-deep);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  margin-bottom: 0.875rem;
}
.founder__cred {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--sage-muted);
  font-weight: 600;
  font-family: var(--font-body);
  margin-left: 0.375rem;
  white-space: nowrap;
}
.founder__blurb {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 54ch;
  margin-inline: auto;
}

/* === Fit-strip framing line === */
.fit-strip__intro {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-muted);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

/* === Inline form success messages === */
.waitlist-form__success {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--sage-deep);
  font-weight: 500;
  max-width: 42ch;
}
.form__success {
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  color: var(--sage-deep);
}
.form__success a { color: var(--sage-primary); text-decoration: underline; }

/* === Secondary CTA strip (below fit-strip, before footer) === */
.cta-strip {
  padding-block: clamp(1.5rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.cta-strip__lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.0625rem, 1.8vw, 1.3125rem);
  color: var(--sage-deep);
  margin: 0 0 1.125rem;
}
