:root {
  --ink: #14271f;
  --ink-soft: #53645d;
  --ink-muted: #748079;
  --paper: #f4f0ec;
  --paper-warm: #faf7f3;
  --surface: #ffffff;
  --surface-soft: #fbfaf8;
  --green: #40c076;
  --green-bright: #52ce88;
  --green-dark: #258e56;
  --green-deep: #155840;
  --green-ink: #0d3d2e;
  --green-pale: #e9f8ef;
  --purple: #9b72dc;
  --purple-dark: #7650b8;
  --purple-pale: #f1eaff;
  --line: rgba(20, 39, 31, 0.12);
  --line-strong: rgba(20, 39, 31, 0.2);
  --shadow-sm: 0 10px 26px rgba(24, 48, 38, 0.08);
  --shadow-md: 0 22px 52px rgba(24, 48, 38, 0.12);
  --shadow-lg: 0 38px 90px rgba(24, 48, 38, 0.17);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-xl: 44px;
  --radius-pill: 999px;
  --container: 1240px;
  --header-height: 92px;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open,
body.contact-open,
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
figure, blockquote { margin: 0; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.04em; line-height: 1.03; }
h1 { font-size: clamp(3.45rem, 6.2vw, 6.4rem); font-weight: 800; }
h2 { font-size: clamp(2.55rem, 4.4vw, 4.65rem); font-weight: 800; }
h3 { font-size: clamp(1.22rem, 1.8vw, 1.62rem); font-weight: 750; }
p { color: var(--ink-soft); font-size: 1.03rem; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(84px, 8vw, 126px) 0; scroll-margin-top: calc(var(--header-height) - 4px); }
.eyebrow {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow.light { color: #b7edcc; }
.section-lede { max-width: 690px; font-size: clamp(1.08rem, 1.55vw, 1.25rem); line-height: 1.68; }
.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; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 11px 16px; border-radius: 12px; background: var(--ink); color: #fff; transform: translateY(-150%); transition: transform 160ms ease; }
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; z-index: 1300; inset: 0 0 auto; height: 3px; background: transparent; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--green), var(--purple)); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 800;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(155, 114, 220, .34); outline-offset: 4px; }
.button-primary { background: var(--green); color: var(--green-ink); box-shadow: 0 14px 30px rgba(64, 192, 118, .24); }
.button-primary:hover { background: var(--green-bright); box-shadow: 0 17px 36px rgba(64, 192, 118, .3); }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.82); color: var(--ink); }
.button-secondary:hover { border-color: rgba(20,39,31,.3); background: #fff; }
.button-white { background: #fff; color: var(--green-deep); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.button-white:hover { background: var(--green-pale); }
.button-outline-light { border-color: rgba(255,255,255,.42); background: transparent; color: #fff; }
.button-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.button-small { min-height: 46px; padding-inline: 19px; font-size: .78rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 800; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.text-link-light { color: #c7f2d6; }

.site-header {
  position: sticky;
  z-index: 1100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(20,39,31,.08);
  background: rgba(244,240,236,.93);
  backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.is-scrolled { background: rgba(244,240,236,.98); box-shadow: 0 12px 36px rgba(20,39,31,.08); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 13px; }
.brand img { width: 52px; height: 52px; }
.brand span { display: grid; gap: 2px; }
.brand strong { font-family: var(--font-display); font-size: 1.04rem; font-weight: 800; letter-spacing: -.02em; }
.brand small { color: var(--ink-muted); font-size: .68rem; font-weight: 700; letter-spacing: .03em; }
.primary-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 26px; font-family: var(--font-display); font-size: .78rem; font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { position: relative; padding: 15px 0; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: 7px; left: 0; height: 2px; border-radius: 99px; background: var(--purple); transform: scaleX(0); transform-origin: left; transition: transform 170ms ease; }
.nav-links a:hover::after, .nav-links a.is-current::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 13px; background: rgba(255,255,255,.8); cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 4px; background: var(--ink); transition: transform 170ms ease, opacity 170ms ease; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 6vw, 92px) 0 clamp(84px, 7vw, 112px);
  background:
    radial-gradient(circle at 96% 8%, rgba(155,114,220,.18), transparent 27rem),
    radial-gradient(circle at 7% 92%, rgba(64,192,118,.13), transparent 29rem),
    linear-gradient(180deg, #f9f6f3, var(--paper));
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(to right, rgba(20,39,31,.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(20,39,31,.05) 1px, transparent 1px); background-size: 100px 100px; mask-image: linear-gradient(to bottom, #000, transparent 82%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,.92fr) minmax(500px,1.08fr); gap: clamp(54px, 6vw, 92px); align-items: center; }
.hero-copy { min-width: 0; }
.hero-copy h1 { max-width: 10.8ch; margin-bottom: 27px; font-size: clamp(3.55rem, 5vw, 5.2rem); }
.hero-copy h1 span { display: block; color: var(--green-dark); }
.hero-lede { max-width: 600px; margin-bottom: 17px; color: var(--ink); font-size: clamp(1.13rem, 1.65vw, 1.38rem); line-height: 1.62; }
.hero-support { max-width: 610px; margin-bottom: 0; font-size: 1.01rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.hero-figure { min-width: 0; }
.photo-shell { overflow: hidden; border: 10px solid rgba(255,255,255,.96); border-radius: 32px; background: #fff; box-shadow: var(--shadow-lg); }
.photo-shell img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-shell { aspect-ratio: 1.32 / 1; }
.hero-photo-shell img { object-position: center; }
.photo-caption { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 24px; align-items: start; padding: 17px 8px 0; }
.photo-caption strong { color: var(--green-dark); font-family: var(--font-display); font-size: .77rem; white-space: nowrap; }
.photo-caption span { justify-self: end; max-width: 52ch; color: var(--ink-muted); font-size: .73rem; line-height: 1.55; text-align: right; }

.method-section { overflow: hidden; background: var(--green-deep); color: #fff; }
.method-section::before { content: ""; position: absolute; width: 460px; height: 460px; top: -230px; right: -130px; border-radius: 50%; background: rgba(155,114,220,.22); }
.method-top { position: relative; display: grid; grid-template-columns: minmax(0,1fr) minmax(390px,.72fr); gap: clamp(44px,6vw,88px); align-items: center; }
.method-copy h2 { max-width: 10ch; margin-bottom: 24px; color: #fff; }
.method-copy p { max-width: 700px; color: rgba(255,255,255,.76); font-size: 1.08rem; line-height: 1.72; }
.method-copy .text-link { margin-top: 8px; }
.abe-card { overflow: hidden; padding: 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; background: rgba(255,255,255,.08); box-shadow: 0 28px 70px rgba(0,0,0,.18); }
.abe-card img { width: 100%; aspect-ratio: 1.5 / 1; border-radius: 21px; object-fit: cover; object-position: center; }
.abe-card figcaption { padding: 16px 12px 8px; }
.abe-card strong { display: block; margin-bottom: 5px; color: #fff; font-family: var(--font-display); font-size: .82rem; }
.abe-card span { display: block; color: rgba(255,255,255,.69); font-size: .78rem; line-height: 1.55; }
.method-grid { position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 15px; margin-top: clamp(48px,6vw,78px); }
.method-grid article { min-height: 225px; padding: 25px; border: 1px solid rgba(255,255,255,.14); border-radius: 25px; background: rgba(255,255,255,.075); }
.method-grid article:nth-child(2), .method-grid article:nth-child(4) { background: rgba(155,114,220,.14); }
.method-grid span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 36px; border-radius: 50%; background: var(--green); color: var(--green-ink); font-family: var(--font-display); font-size: .73rem; font-weight: 800; }
.method-grid h3 { margin-bottom: 10px; color: #fff; font-size: 1.15rem; }
.method-grid p { margin-bottom: 0; color: rgba(255,255,255,.68); font-size: .87rem; line-height: 1.55; }

.todos-section { overflow: hidden; background: linear-gradient(180deg, #edf9f2, #f4f8f4); }
.todos-grid { display: grid; grid-template-columns: minmax(350px,.78fr) minmax(540px,1.22fr); gap: clamp(52px,7vw,100px); align-items: center; }
.todos-copy h2 { max-width: 11ch; margin-bottom: 24px; }
.todos-copy p { max-width: 620px; }
.todos-copy .button { margin-top: 12px; }
.todos-photo-shell { aspect-ratio: 1.33 / 1; }
.todos-photo-shell img { object-position: center; }
.todos-caption { padding-inline: 8px; }

.mini-feature { overflow: hidden; background: var(--paper); }
.mini-feature-shell { position: relative; overflow: hidden; padding: clamp(42px,6vw,76px); border-radius: var(--radius-xl); background: radial-gradient(circle at 92% 7%, rgba(155,114,220,.38), transparent 24rem), linear-gradient(145deg, #174f3e, #0f4535); box-shadow: var(--shadow-lg); }
.mini-feature-shell::after { content: ""; position: absolute; width: 420px; height: 220px; right: -120px; bottom: -130px; border: 2px solid rgba(255,255,255,.12); border-radius: 50%; }
.mini-feature-heading { position: relative; max-width: 800px; }
.mini-feature-heading h2 { margin-bottom: 16px; color: #fff; }
.mini-feature-heading > p:last-child { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.thread-grid { position: relative; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 36px; }
.thread-card { position: relative; display: flex; min-height: 330px; flex-direction: column; padding: 31px; border: 1px solid rgba(255,255,255,.15); border-radius: 28px; background: rgba(255,255,255,.95); box-shadow: 0 24px 55px rgba(0,0,0,.14); transition: transform 180ms ease, box-shadow 180ms ease; }
.thread-card:hover { transform: translateY(-5px); box-shadow: 0 30px 68px rgba(0,0,0,.2); }
.thread-card::after { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 6px; border-radius: 28px 28px 0 0; }
.story-thread::after { background: var(--green); }
.science-thread::after { background: var(--purple); }
.thread-icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 28px; border-radius: 18px; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; }
.story-thread .thread-icon { background: var(--green-pale); color: var(--green-dark); }
.science-thread .thread-icon { background: var(--purple-pale); color: var(--purple-dark); }
.thread-kicker { margin-bottom: 8px; color: var(--ink-muted); font-family: var(--font-display); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.thread-card h3 { margin-bottom: 12px; font-size: clamp(1.5rem,2.4vw,2.2rem); }
.thread-card p:not(.thread-kicker) { max-width: 45ch; margin-bottom: 22px; font-size: .95rem; }
.thread-card > strong { margin-top: auto; color: var(--green-dark); font-family: var(--font-display); font-size: .78rem; }
.science-thread > strong { color: var(--purple-dark); }
.mini-feature-footer { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 34px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.17); }
.mini-feature-footer p { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.69); font-size: .9rem; }
.mini-feature-footer > div { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 10px; }

.journey-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 8%, rgba(155,114,220,.12), transparent 24rem),
    #fff;
}
.journey-heading { max-width: 850px; margin-bottom: clamp(44px,6vw,72px); }
.journey-heading h2 { max-width: 11ch; margin-bottom: 20px; }
.journey-heading > p { max-width: 720px; margin-bottom: 0; color: var(--ink); font-size: clamp(1.08rem,1.5vw,1.24rem); line-height: 1.68; }
.journey-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(390px,.85fr); gap: clamp(42px,6vw,78px); align-items: start; }
.soccer-collage { position: sticky; top: calc(var(--header-height) + 22px); display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; min-width: 0; }
.soccer-collage figure { overflow: hidden; display: grid; grid-template-rows: minmax(0,1fr) auto; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-sm); }
.soccer-collage img { width: 100%; height: 100%; object-fit: cover; }
.soccer-team-photo { grid-column: 1 / -1; }
.soccer-team-photo img { aspect-ratio: 1.315 / 1; object-position: center; }
.soccer-moment-photo img { aspect-ratio: 1 / 1; object-position: center; }
.soccer-collage figcaption { display: grid; gap: 3px; min-height: 72px; padding: 14px 16px 15px; }
.soccer-collage figcaption span { color: var(--purple-dark); font-family: var(--font-display); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.soccer-collage figcaption strong { color: var(--ink-soft); font-size: .74rem; line-height: 1.45; }
.journey-story { overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: var(--paper-warm); box-shadow: var(--shadow-md); }
.journey-beat { padding: 25px 28px 26px; border-bottom: 1px solid var(--line); }
.journey-label { margin-bottom: 7px; color: var(--green-dark); font-family: var(--font-display); font-size: .66rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.journey-beat h3 { margin-bottom: 10px; font-size: clamp(1.26rem,1.7vw,1.55rem); line-height: 1.14; }
.journey-beat p:not(.journey-label) { margin-bottom: 0; font-size: .92rem; line-height: 1.62; }
.journey-addie { display: grid; grid-template-columns: 108px minmax(0,1fr); gap: 21px; align-items: start; background: var(--green-pale); }
.journey-addie picture { overflow: hidden; border: 5px solid #fff; border-radius: 20px; background: #f4cf4a; box-shadow: var(--shadow-sm); }
.journey-addie img { width: 100%; aspect-ratio: .79 / 1; object-fit: cover; }
.journey-addie .text-link { margin-top: 13px; font-size: .78rem; }
.journey-ethos { margin: 0; padding: 25px 28px 28px; background: var(--purple-pale); }
.journey-ethos p { margin: 0; color: #4f3975; font-family: var(--font-serif); font-size: clamp(1.08rem,1.45vw,1.24rem); font-style: italic; line-height: 1.58; }

.family-section { overflow: hidden; background: linear-gradient(180deg, var(--paper-warm), #fff); }
.family-heading { max-width: 980px; margin-bottom: clamp(42px,6vw,72px); }
.family-heading h2 { max-width: 13ch; margin-bottom: 24px; }
.family-intro { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(26px,5vw,70px); }
.family-intro p { margin-bottom: 0; font-size: 1.06rem; line-height: 1.7; }
.family-gallery { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(260px,.55fr) minmax(300px,.65fr); grid-template-rows: auto auto; gap: 18px; align-items: stretch; }
.family-gallery figure, .family-community { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.family-gallery figure img { width: 100%; height: 100%; object-fit: cover; }
.family-main { grid-row: 1 / span 2; display: grid; grid-template-rows: minmax(0,1fr) auto; }
.family-main img { aspect-ratio: 1.5 / 1; object-position: center; }
.family-baby { display: grid; grid-template-rows: minmax(0,1fr) auto; }
.family-baby img { aspect-ratio: 1 / 1; object-position: center 25%; }
.family-now { grid-row: 1 / span 2; display: grid; grid-template-rows: minmax(0,1fr) auto; }
.family-now img { min-height: 560px; object-position: center 30%; }
.family-gallery figcaption { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 64px; padding: 14px 17px; }
.family-gallery figcaption span { color: var(--purple-dark); font-family: var(--font-display); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.family-gallery figcaption strong { color: var(--ink-soft); font-size: .72rem; text-align: right; }
.family-community { align-self: stretch; padding: 28px; background: var(--green-deep); color: #fff; }
.family-community h3 { margin-bottom: 17px; color: #fff; font-size: clamp(1.55rem,2.5vw,2.25rem); }
.family-community p { color: rgba(255,255,255,.72); font-size: .91rem; line-height: 1.68; }
.family-ending { margin-top: 30px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.17); color: #fff !important; font-family: var(--font-serif); font-size: 1.18rem !important; font-style: italic; }

.book-section { background: var(--paper); }
.book-shell { display: grid; grid-template-columns: minmax(300px,.62fr) minmax(0,.82fr); gap: clamp(60px,9vw,130px); align-items: center; max-width: 1040px; }
.book-visual { text-align: center; }
.book-visual img { width: min(100%, 350px); margin: 0 auto; border-radius: 8px; box-shadow: 0 30px 64px rgba(20,39,31,.2); }
.book-visual p { margin: 19px 0 0; color: var(--purple-dark); font-family: var(--font-serif); font-size: 1rem; font-style: italic; }
.book-copy h2 { margin-bottom: 22px; font-family: var(--font-serif); font-size: clamp(3.2rem,5vw,5.4rem); letter-spacing: -.045em; }
.book-copy p { max-width: 670px; }
.book-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }

.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 32px; align-items: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.footer-brand img { width: 46px; height: 46px; }
.footer-brand > div { display: grid; gap: 1px; }
.footer-brand strong { font-family: var(--font-display); font-size: .9rem; }
.footer-brand span { color: var(--ink-muted); font-size: .7rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; font-size: .72rem; font-weight: 800; }
.site-footer nav a:hover { color: var(--green-dark); }
.site-footer > .container > p { margin: 0; color: var(--ink-muted); font-size: .68rem; white-space: nowrap; }

.contact-scrim { position: fixed; z-index: 1800; inset: 0; background: rgba(7,20,15,.46); backdrop-filter: blur(4px); }
.contact-popover { position: fixed; z-index: 1900; top: 108px; right: max(20px, calc((100vw - var(--container)) / 2)); width: min(430px, calc(100vw - 32px)); padding: 30px; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(-12px) scale(.98); transition: opacity 180ms ease, transform 180ms ease; }
body.contact-open .contact-popover { opacity: 1; pointer-events: auto; transform: none; }
.contact-popover-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--paper); cursor: pointer; font-size: 1.45rem; line-height: 1; }
.contact-popover h2 { margin-bottom: 8px; font-size: 2.5rem; }
.contact-popover-intro { margin-bottom: 22px; }
.contact-list { display: grid; gap: 9px; }
.contact-list a { display: grid; gap: 3px; padding: 15px 16px; border-radius: 17px; background: var(--green-pale); transition: transform 160ms ease, background 160ms ease; }
.contact-list a:nth-child(2) { background: var(--purple-pale); }
.contact-list a:hover { transform: translateY(-2px); background: #dff5e8; }
.contact-list span { color: var(--ink-muted); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-list strong { font-size: .88rem; }

.book-dialog { width: min(1020px, calc(100vw - 28px)); max-height: calc(100vh - 28px); padding: 0; border: 0; border-radius: 30px; background: #fff; box-shadow: 0 40px 100px rgba(0,0,0,.28); }
.book-dialog::backdrop { background: rgba(7,20,15,.6); backdrop-filter: blur(6px); }
.dialog-shell { display: grid; max-height: calc(100vh - 28px); grid-template-rows: auto minmax(360px,1fr) auto; }
.dialog-shell > header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.dialog-shell > header .eyebrow { margin-bottom: 5px; }
.dialog-shell > header h2 { margin-bottom: 0; font-family: var(--font-serif); font-size: 2rem; }
.dialog-close { width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--paper); cursor: pointer; font-size: 1.5rem; }
.dialog-body { min-height: 0; }
.dialog-body iframe { width: 100%; height: 100%; min-height: 560px; border: 0; }
.dialog-shell > footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 22px; border-top: 1px solid var(--line); }
.dialog-shell > footer p { margin: 0; font-size: .78rem; }

[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 600ms ease, transform 600ms ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (min-width: 1101px) and (max-width: 1280px) {
  .nav-shell { width: min(calc(100% - 24px), var(--container)); gap: 15px; }
  .primary-nav { gap: 15px; font-size: .72rem; }
  .nav-links { gap: 13px; }
  .nav-actions .button-small { padding-inline: 14px; font-size: .72rem; }
}

@media (max-width: 1100px) {
  :root { --header-height: 82px; }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; z-index: 1120; top: var(--header-height); right: 16px; left: 16px; display: grid; max-height: calc(100vh - var(--header-height) - 16px); align-content: start; gap: 18px; padding: 22px; overflow: auto; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity 170ms ease, transform 170ms ease; }
  body.nav-open .primary-nav { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links { display: grid; gap: 0; }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .nav-links a::after { display: none; }
  .nav-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(3) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 840px; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-figure { max-width: 900px; }
  .method-top { grid-template-columns: 1fr; }
  .method-copy { max-width: 850px; }
  .abe-card { max-width: 680px; }
  .method-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .todos-grid { grid-template-columns: 1fr; }
  .todos-copy { max-width: 780px; }
  .todos-copy h2 { max-width: 13ch; }
  .todos-figure { max-width: 900px; }
  .journey-layout { grid-template-columns: 1fr; }
  .soccer-collage { position: static; max-width: 920px; }
  .journey-story { max-width: 920px; }
  .family-gallery { grid-template-columns: 1.2fr .8fr; grid-template-rows: auto auto; }
  .family-main { grid-row: 1; }
  .family-now { grid-row: 1 / span 2; }
  .family-community { grid-column: 1; }
  .family-baby { display: none; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 760px) {
  :root { --header-height: 76px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: .94rem; }
  .brand small { max-width: 210px; font-size: .62rem; }
  .hero { padding: 52px 0 82px; }
  .hero-grid { gap: 42px; }
  .hero-copy h1 { max-width: 10.5ch; margin-bottom: 22px; font-size: clamp(3.25rem, 14vw, 5.2rem); }
  .hero-lede { font-size: 1.08rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .photo-shell { border-width: 7px; border-radius: 24px; }
  .photo-caption { grid-template-columns: 1fr; gap: 5px; padding: 13px 4px 0; }
  .photo-caption span { justify-self: start; text-align: left; }
  .method-copy h2, .todos-copy h2, .family-heading h2, .journey-heading h2 { max-width: 12ch; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: auto; }
  .method-grid span { margin-bottom: 22px; }
  .thread-grid { grid-template-columns: 1fr; }
  .thread-card { min-height: 290px; }
  .mini-feature-shell { padding: 34px 22px; border-radius: 30px; }
  .mini-feature-footer { align-items: flex-start; flex-direction: column; }
  .mini-feature-footer > div { display: grid; width: 100%; }
  .mini-feature-footer .button { width: 100%; }
  .journey-addie { grid-template-columns: 92px minmax(0,1fr); }
  .family-intro { grid-template-columns: 1fr; gap: 12px; }
  .family-gallery { grid-template-columns: 1fr; }
  .family-main, .family-now, .family-community { grid-column: auto; grid-row: auto; }
  .family-baby { display: grid; }
  .family-now img { min-height: 0; aspect-ratio: .86 / 1; }
  .family-gallery figcaption { min-height: 58px; }
  .book-shell { grid-template-columns: 1fr; gap: 48px; }
  .book-visual img { width: min(76vw, 330px); }
  .book-copy h2 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .book-actions { display: grid; }
  .book-actions .button { width: 100%; }
  .contact-popover { top: 88px; right: 14px; left: 14px; width: auto; }
  .dialog-shell > footer { align-items: flex-start; flex-direction: column; }
  .dialog-body iframe { min-height: 450px; }
}

@media (max-width: 600px) {
  .soccer-collage { grid-template-columns: 1fr; }
  .soccer-team-photo { grid-column: auto; }
  .soccer-team-photo img, .soccer-moment-photo img { aspect-ratio: auto; }
  .journey-beat, .journey-ethos { padding-inline: 22px; }
  .journey-addie { grid-template-columns: 82px minmax(0,1fr); gap: 16px; }
}

@media (max-width: 430px) {
  .brand small { display: none; }
  .nav-actions { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .thread-card { padding: 27px 23px; }
  .family-gallery figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .family-gallery figcaption strong { text-align: left; }
  .site-footer nav { gap: 12px; }
}

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


/* ==========================================================
   Final family and book redesign
   ========================================================== */
.family-v2 {
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 4%, rgba(155,114,220,.14), transparent 25rem),
    linear-gradient(180deg, #fff 0%, var(--paper-warm) 100%);
}
.family-v2-heading {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(420px,1.08fr);
  gap: clamp(42px,7vw,104px);
  align-items: start;
  margin-bottom: clamp(42px,6vw,72px);
}
.family-v2-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3rem,5.3vw,5.75rem);
  line-height: .99;
}
.family-v2-intro {
  display: grid;
  gap: 16px;
  padding-top: 6px;
}
.family-v2-intro p {
  max-width: 66ch;
  margin: 0;
  font-size: clamp(1.02rem,1.35vw,1.17rem);
  line-height: 1.7;
}
.family-v2-intro p:last-child {
  padding: 17px 20px;
  border-left: 4px solid var(--purple);
  border-radius: 0 16px 16px 0;
  background: var(--purple-pale);
  color: #4f3975;
  font-weight: 650;
}
.family-v2-gallery {
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(340px,.75fr);
  grid-template-rows: minmax(0,1fr) auto;
  gap: 20px;
  align-items: stretch;
}
.family-v2-gallery figure,
.family-v2-story {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}
.family-v2-gallery figure {
  display: grid;
  grid-template-rows: minmax(0,1fr) auto;
  background: #fff;
}
.family-v2-gallery figure picture {
  min-height: 0;
}
.family-v2-gallery figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.family-v2-main {
  grid-row: 1 / span 2;
}
.family-v2-main img {
  aspect-ratio: .92 / 1;
  object-position: center 34%;
}
.family-v2-then img {
  aspect-ratio: 1.5 / 1;
  object-position: center 56%;
}
.family-v2-now img {
  aspect-ratio: .95 / 1;
  object-position: center 36%;
}
.family-v2-gallery figcaption {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 19px;
  background: #fff;
}
.family-v2-gallery figcaption span {
  flex: 0 0 auto;
  color: var(--purple-dark);
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.family-v2-gallery figcaption strong {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: .77rem;
  line-height: 1.45;
  text-align: right;
}
.family-v2-story {
  align-self: stretch;
  padding: clamp(27px,3vw,38px);
  background:
    radial-gradient(circle at 100% 0%, rgba(155,114,220,.28), transparent 15rem),
    var(--green-deep);
  color: #fff;
}
.family-v2-story h3 {
  max-width: 15ch;
  margin-bottom: 19px;
  color: #fff;
  font-size: clamp(1.65rem,2.6vw,2.55rem);
  line-height: 1.08;
}
.family-v2-story > p:not(.eyebrow) {
  color: rgba(255,255,255,.76);
  font-size: .95rem;
  line-height: 1.7;
}
.family-v2-story blockquote {
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.family-v2-story blockquote p {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(1.16rem,1.7vw,1.38rem);
  font-style: italic;
  line-height: 1.52;
}

.book-v2 {
  overflow: hidden;
  background: #fff;
}
.book-v2-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr);
  gap: clamp(56px,8vw,120px);
  align-items: center;
  overflow: hidden;
  padding: clamp(52px,7vw,94px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 92% 8%, rgba(155,114,220,.52), transparent 25rem),
    linear-gradient(145deg, #174f3e 0%, #0f4535 66%, #153f34 100%);
  box-shadow: var(--shadow-lg);
}
.book-v2-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 300px;
  left: -190px;
  bottom: -210px;
  border: 3px solid rgba(255,255,255,.11);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.book-v2-art {
  min-width: 0;
  text-align: center;
}
.book-v2-cover-wrap {
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 38px 90px rgba(0,0,0,.30);
  transform: rotate(-2.2deg);
  transition: transform 240ms ease;
}
.book-v2-cover-wrap:hover { transform: rotate(0deg) translateY(-4px); }
.book-v2-cover-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.book-v2-art > p {
  margin: 24px 0 0;
  color: #f4e9ff;
  font-family: var(--font-serif);
  font-size: 1.16rem;
  font-style: italic;
}
.book-v2-copy { color: #fff; }
.book-v2-copy h2 {
  max-width: 12ch;
  margin-bottom: 23px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(3.3rem,5.7vw,6.1rem);
  line-height: .97;
  letter-spacing: -.045em;
}
.book-v2-lede {
  max-width: 700px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.1rem,1.55vw,1.28rem);
  line-height: 1.67;
}
.book-v2-threads {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
  margin: 26px 0 23px;
}
.book-v2-threads a {
  display: grid;
  gap: 7px;
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 22px;
  background: rgba(255,255,255,.085);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.book-v2-threads a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.13);
}
.book-v2-threads span {
  color: #bff0d3;
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.book-v2-threads a:nth-child(2) span { color: #ddcfff; }
.book-v2-threads strong {
  color: #fff;
  font-size: .94rem;
  line-height: 1.5;
}
.book-v2-note {
  max-width: 670px;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.66;
}
.book-v2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px 13px;
  margin-top: 28px;
}
.button-purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 26px rgba(118,80,184,.28);
}
.button-purple:hover {
  background: var(--purple-dark);
  box-shadow: 0 16px 32px rgba(118,80,184,.35);
}
.book-v2-amazon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 8px;
  color: rgba(255,255,255,.84);
  font-weight: 750;
}
.book-v2-amazon:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.book-v2-quote {
  max-width: 690px;
  margin-top: 31px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.19);
}
.book-v2-quote p {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem,2vw,1.62rem);
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .family-v2-heading { grid-template-columns: 1fr; gap: 25px; }
  .family-v2-heading h2 { max-width: 15ch; }
  .family-v2-intro { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .family-v2-intro p:last-child { grid-column: 1 / -1; }
  .family-v2-gallery { grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr); }
  .book-v2-shell { grid-template-columns: minmax(260px,.62fr) minmax(0,1.1fr); gap: 50px; padding: 58px 46px; }
}

@media (max-width: 860px) {
  .family-v2-heading h2 { max-width: 12ch; }
  .family-v2-intro { grid-template-columns: 1fr; }
  .family-v2-intro p:last-child { grid-column: auto; }
  .family-v2-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .family-v2-main { grid-row: auto; }
  .family-v2-main img { aspect-ratio: 1.5 / 1; }
  .family-v2-now img { aspect-ratio: 4 / 5; object-position: center 33%; }
  .family-v2-gallery figcaption { min-height: 62px; }
  .book-v2-shell { grid-template-columns: 1fr; gap: 48px; padding: 46px 28px; border-radius: 32px; }
  .book-v2-cover-wrap { width: min(76vw, 340px); }
  .book-v2-copy { text-align: left; }
}

@media (max-width: 620px) {
  .family-v2-heading h2 { font-size: clamp(2.65rem,13vw,4.2rem); }
  .family-v2-gallery { gap: 14px; }
  .family-v2-side-stack { grid-template-columns: 1fr; }
  .family-v2-gallery figure, .family-v2-story { border-radius: 24px; }
  .family-v2-main img { aspect-ratio: 4 / 5; object-position: center 30%; }
  .family-v2-then img { aspect-ratio: 1.36 / 1; }
  .family-v2-now img { aspect-ratio: 4 / 5; object-position: center 28%; }
  .family-v2-gallery figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .family-v2-gallery figcaption strong { text-align: left; }
  .family-v2-story { padding: 25px 22px; }
  .book-v2-shell { padding: 36px 20px 40px; }
  .book-v2-copy h2 { font-size: clamp(3rem,14vw,4.4rem); }
  .book-v2-threads { grid-template-columns: 1fr; }
  .book-v2-threads a { min-height: 0; }
  .book-v2-actions { display: grid; }
  .book-v2-actions .button { width: 100%; }
  .book-v2-amazon { justify-content: center; }
}


/* Compact final family composition */
.family-v2-gallery {
  grid-template-columns: minmax(0,1.06fr) minmax(320px,.94fr);
  grid-template-rows: auto auto;
  align-items: start;
}
.family-v2-main {
  grid-column: 1;
  grid-row: 1;
}
.family-v2-side-stack {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 20px;
  align-content: start;
}
.family-v2-then,
.family-v2-now {
  height: 100%;
}
.family-v2-main img {
  aspect-ratio: .92 / 1;
  object-position: center 34%;
}
.family-v2-then img {
  aspect-ratio: 1.5 / 1;
  object-position: center 56%;
}
.family-v2-now img {
  aspect-ratio: .92 / 1;
  object-position: center 28%;
}
.family-v2-story {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr) minmax(250px,.72fr);
  gap: clamp(26px,4vw,58px);
  align-items: start;
  padding: clamp(31px,4vw,48px);
}
.family-v2-story h3 {
  max-width: 14ch;
  margin: 0;
}
.family-v2-story-copy {
  display: grid;
  gap: 14px;
}
.family-v2-story-copy p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.74;
}
.family-v2-story blockquote {
  margin: 0;
  padding: 0 0 0 24px;
  border-top: 0;
  border-left: 1px solid rgba(255,255,255,.23);
}
@media (max-width: 1100px) {
  .family-v2-gallery { grid-template-columns: minmax(0,1fr) minmax(290px,.78fr); }
  .family-v2-story { grid-template-columns: 1fr 1.25fr; }
  .family-v2-story blockquote { grid-column: 1 / -1; padding: 22px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
}
@media (max-width: 860px) {
  .family-v2-gallery { grid-template-columns: 1fr; }
  .family-v2-main, .family-v2-side-stack, .family-v2-story { grid-column: auto; grid-row: auto; }
  .family-v2-side-stack { grid-template-columns: 1fr 1fr; }
  .family-v2-main img { aspect-ratio: 1.05 / 1; object-position: center 30%; }
  .family-v2-then img { aspect-ratio: 1.35 / 1; }
  .family-v2-now img { aspect-ratio: .92 / 1; object-position: center 28%; }
  .family-v2-story { grid-template-columns: 1fr; gap: 22px; }
  .family-v2-story blockquote { grid-column: auto; }
}
