:root {
  --ink: #173f3c;
  --green: #174b47;
  --green-2: #24645e;
  --cream: #f5f0e7;
  --paper: #fffaf2;
  --sun: #f2c66a;
  --coral: #d97865;
  --blush: #e8b7a8;
  --sage: #abc7ad;
  --line: rgba(23, 75, 71, 0.18);
  --shadow: 0 24px 70px rgba(38, 58, 50, 0.12);
  --radius: 28px;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; background: var(--sun); padding: 12px 18px; border-radius: 10px; font-weight: 700; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 14px auto 0;
  padding: 13px 18px 13px 22px;
  background: rgba(250, 246, 238, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 35px rgba(35, 62, 52, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  transition: .25s ease;
}
.site-header.scrolled { margin-top: 8px; background: rgba(250, 246, 238, .96); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #7f9486; font-family: "Snell Roundhand", "Segoe Script", "Bradley Hand", cursive; font-weight: 400; font-size: 31px; letter-spacing: .01em; }
.brand-mark { width: 40px; height: 40px; display: block; object-fit: contain; }
.mark-sun { fill: var(--sun); }
.mark-leaf { fill: var(--green); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .25s ease; }
.site-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--green); box-shadow: 0 12px 30px rgba(23, 75, 71, .18); }
.button-primary:hover { background: var(--green-2); box-shadow: 0 14px 35px rgba(23, 75, 71, .22); }
.button-small { min-height: 43px; padding: 0 19px; border-radius: 12px; }
.button-dark { background: var(--ink); color: #fff; }
.button-sun { background: var(--sun); color: var(--ink); }
.text-link { display: inline-flex; gap: 12px; align-items: center; border: 0; background: none; padding: 0; font-weight: 700; font-size: 14px; cursor: pointer; }
.text-link span, .text-link.light-link { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero {
  min-height: 860px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 170px 72px 55px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  grid-template-rows: 1fr auto;
  gap: 40px 50px;
  overflow: hidden;
  position: relative;
}
.hero::before { content: ""; position: absolute; width: 350px; height: 350px; border: 1px solid rgba(217, 120, 101, .18); border-radius: 50%; left: -220px; bottom: 100px; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 750; }
.eyebrow > span { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.045em; font-weight: 500; line-height: .98; }
h1 { margin-bottom: 28px; font-size: clamp(58px, 6.2vw, 90px); }
h1 em, h2 em { color: var(--coral); font-weight: 500; }
.hero-lead { max-width: 590px; margin-bottom: 32px; font-size: 18px; color: rgba(23, 63, 60, .77); }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.trust-list { list-style: none; display: flex; gap: 24px; padding: 0; margin: 38px 0 0; font-size: 12px; font-weight: 650; color: rgba(23, 63, 60, .76); }
.trust-list li { display: flex; gap: 8px; align-items: center; }
.check { width: 20px; height: 20px; display: inline-grid; place-items: center; border-radius: 50%; background: rgba(171, 199, 173, .35); color: var(--green); }

.hero-visual {
  position: relative;
  min-height: 565px;
  isolation: isolate;
}
.hero-visual::before { content: ""; position: absolute; z-index: -3; width: 470px; height: 470px; border-radius: 52% 48% 44% 56% / 59% 42% 58% 41%; background: #dfebe1; right: 1%; top: 7%; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(23, 75, 71, .17); z-index: -2; }
.orbit-one { width: 370px; height: 370px; right: 8%; top: 14%; }
.orbit-two { width: 530px; height: 270px; right: -4%; top: 31%; transform: rotate(-19deg); }
.visual-sun { position: absolute; width: 82px; height: 82px; border-radius: 50%; background: var(--sun); right: 2%; top: 10%; box-shadow: 0 15px 35px rgba(204, 154, 55, .2); }
.visual-leaf { position: absolute; z-index: -1; background: var(--green); }
.leaf-one { width: 130px; height: 65px; border-radius: 100% 0 100% 0; left: 8%; bottom: 8%; transform: rotate(18deg); opacity: .9; }
.leaf-two { width: 88px; height: 43px; border-radius: 0 100% 0 100%; right: 3%; bottom: 13%; background: var(--coral); }
.visual-center { position: absolute; inset: 50% auto auto 52%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; text-align: center; }
.visual-center svg { width: 118px; color: var(--green); }
.visual-center span { margin-top: 5px; font-family: var(--serif); font-size: 27px; line-height: 1.05; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; width: 205px; padding: 14px; background: rgba(255, 250, 242, .94); border: 1px solid rgba(255, 255, 255, .9); border-radius: 18px; box-shadow: var(--shadow); backdrop-filter: blur(8px); animation: float 5s ease-in-out infinite; }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { margin-bottom: 2px; color: rgba(23, 63, 60, .58); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { font-size: 13px; }
.mini-icon { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; font-family: var(--serif); font-size: 24px; }
.icon-spark { background: #f6e3ac; }
.icon-wave { color: #fff; background: var(--coral); }
.icon-heart { background: #c6dac6; }
.card-child { top: 10%; left: 3%; }
.card-teen { right: 0; top: 47%; animation-delay: -1.7s; }
.card-parent { bottom: 4%; left: 16%; animation-delay: -3s; }
.visual-note { position: absolute; right: 3%; bottom: 1%; font-family: var(--serif); font-size: 14px; font-style: italic; color: rgba(23, 63, 60, .65); }
@keyframes float { 50% { transform: translateY(-8px); } }
.hero-footnote { grid-column: 1 / -1; display: flex; gap: 14px; align-items: center; max-width: 560px; color: rgba(23, 63, 60, .55); font-size: 11px; }
.hero-footnote span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 9px; }
.hero-footnote p { margin: 0; }

.discovery { background: var(--green); color: #fff; padding: 110px 72px 120px; overflow: hidden; }
.discovery > * { max-width: 1296px; margin-left: auto; margin-right: auto; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 60px; margin-bottom: 50px; }
.eyebrow-light { color: rgba(255, 255, 255, .68); }
.section-heading h2, .people h2 { margin: 0; font-size: clamp(48px, 5.1vw, 76px); }
.section-heading > p { max-width: 480px; margin: 0 0 6px; color: rgba(255, 255, 255, .65); }
.explorer { color: var(--ink); background: var(--paper); border-radius: 32px; padding: 30px; box-shadow: 0 30px 80px rgba(0, 0, 0, .15); }
.explorer-topline { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 18px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.step-label { margin: 0; text-transform: uppercase; letter-spacing: .1em; font-size: 9px; color: rgba(23, 63, 60, .55); }
.step-label strong { color: var(--coral); }
.progress-track { height: 3px; max-width: 290px; background: rgba(23, 75, 71, .12); }
.progress-track span { display: block; width: 33.333%; height: 100%; background: var(--coral); transition: width .35s ease; }
.reset-button, .back-button { border: 0; background: none; color: rgba(23, 63, 60, .64); cursor: pointer; font-weight: 700; font-size: 12px; }
.explorer-panel { padding-top: 28px; }
.explorer-panel[hidden] { display: none !important; }
.panel-copy { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.panel-copy h3 { margin: 0 0 3px; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.panel-copy p { margin: 0; color: rgba(23, 63, 60, .6); font-size: 13px; }
.panel-number { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--coral); font-size: 11px; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.choice-card { min-height: 220px; position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 22px; border: 1px solid var(--line); border-radius: 21px; background: #f9f4eb; cursor: pointer; overflow: hidden; text-align: left; transition: .25s ease; }
.choice-card:hover, .choice-card:focus-visible { transform: translateY(-4px); background: #fff; border-color: var(--coral); box-shadow: 0 17px 32px rgba(42, 65, 57, .1); }
.choice-card small { margin-bottom: 3px; font-size: 11px; color: rgba(23, 63, 60, .6); }
.choice-card strong { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.choice-arrow { position: absolute; right: 18px; bottom: 20px; }
.choice-art { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); width: 82px; height: 82px; }
.art-sun { border-radius: 50%; background: var(--sun); box-shadow: 16px 9px 0 -4px var(--coral); }
.art-flower { border: 18px dotted var(--sage); border-radius: 50%; background: var(--coral); }
.art-orbit { border: 2px solid var(--coral); border-radius: 50%; }
.art-orbit::after { content: ""; position: absolute; width: 38px; height: 38px; border-radius: 50%; background: var(--green); right: -9px; bottom: -4px; box-shadow: -47px -30px 0 -10px var(--sun); }
.art-nest { width: 94px; height: 62px; top: 35px; border-radius: 50% 50% 40% 40%; border: 2px solid var(--green); transform: translateX(-50%) rotate(-4deg); }
.art-nest::before, .art-nest::after { content: ""; position: absolute; border-radius: 50%; background: var(--coral); }
.art-nest::before { width: 28px; height: 28px; top: 15px; left: 20px; }
.art-nest::after { width: 22px; height: 22px; top: 22px; right: 17px; background: var(--sun); }
.need-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.need-grid button { min-height: 64px; display: grid; grid-template-columns: 38px 1fr auto; gap: 12px; align-items: center; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; font-family: var(--serif); font-size: 22px; transition: color .2s ease, padding .2s ease; }
.need-grid button:hover { color: var(--coral); padding-left: 7px; }
.need-grid button span { font-family: var(--sans); color: rgba(23, 63, 60, .42); font-size: 9px; letter-spacing: .08em; }
.need-grid button b { font-family: var(--sans); font-size: 15px; }
.back-button { margin-top: 24px; padding: 6px 0; }
.result-panel { display: grid; grid-template-columns: 1.35fr .65fr; gap: 32px; }
.result-main { padding: 14px 20px 14px 6px; }
.result-kicker { text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 750; color: var(--coral); }
.result-kicker i { padding: 0 6px; }
.result-main h3 { max-width: 740px; margin: 22px 0; font: 500 clamp(38px, 4.3vw, 62px)/1 var(--serif); letter-spacing: -.035em; }
.result-intro { max-width: 700px; color: rgba(23, 63, 60, .73); }
.first-step { margin: 25px 0; padding: 18px 20px; border-left: 3px solid var(--sun); background: rgba(242, 198, 106, .13); }
.first-step span { display: block; margin-bottom: 5px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 750; color: rgba(23, 63, 60, .55); }
.first-step p { margin: 0; font-weight: 650; }
.result-actions { display: flex; align-items: center; gap: 24px; }
.light-link { color: rgba(23, 63, 60, .62); }
.result-reading { padding: 24px; border-radius: 22px; background: var(--green); color: #fff; }
.result-reading > p { margin-bottom: 18px; text-transform: uppercase; font-size: 10px; letter-spacing: .12em; color: rgba(255,255,255,.58); }
.reading-item { display: block; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.16); transition: transform .2s ease, color .2s ease; }
.reading-item:hover { transform: translateX(4px); color: var(--sun); }
.reading-item span { color: var(--sun); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.reading-item p { margin: 3px 0 0; font: 18px/1.18 var(--serif); }
.result-reading small { display: block; margin-top: 17px; color: rgba(255,255,255,.55); }

.home-blog { max-width: 1440px; margin: 0 auto; padding: 110px 72px 120px; background: var(--paper); }
.home-blog-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; }
.home-blog-heading h2 { margin: 0; font-size: clamp(48px, 5.1vw, 76px); }
.home-blog-heading > p { max-width: 500px; margin: 0 0 7px; color: rgba(23,63,60,.67); }
.home-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; }
.home-blog-grid a { min-height: 320px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #f5e8c8; transition: transform .25s ease, box-shadow .25s ease; }
.home-blog-grid a:nth-child(2) { background: #e1ece2; }
.home-blog-grid a:nth-child(3) { background: #f1dcd3; }
.home-blog-grid a:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.home-blog-grid span { color: var(--coral); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; font-weight: 750; }
.home-blog-grid h3 { margin: 65px 0 20px; font: 500 34px/1.03 var(--serif); letter-spacing: -.025em; }
.home-blog-grid b { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; }
.home-blog-button { margin-top: 28px; }

.content-paths { margin-top: 100px; }
.content-paths-title { display: flex; align-items: end; justify-content: space-between; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.2); }
.content-paths-title > span { font: 32px var(--serif); }
.content-paths-title p { max-width: 480px; margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.path-card { min-height: 350px; display: flex; flex-direction: column; padding: 28px; border-radius: 24px; color: var(--ink); overflow: hidden; position: relative; }
.path-card::before { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; right: -35px; top: 35px; opacity: .5; }
.path-child { background: #e7b09f; }
.path-child::before { background: var(--sun); }
.path-teen { background: #e7d0aa; }
.path-teen::before { border: 28px dotted rgba(217,120,101,.65); }
.path-parent { background: #b8cfb8; }
.path-parent::before { width: 190px; height: 85px; top: 52px; border-radius: 100% 0; background: var(--green); transform: rotate(-14deg); }
.path-card > p { text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 750; }
.path-card h3 { margin: 67px 0 12px; font: 500 34px/1.02 var(--serif); letter-spacing: -.025em; position: relative; }
.path-card > span { font-size: 12px; color: rgba(23,63,60,.66); }
.path-card button { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding: 15px 0 0; border: 0; border-top: 1px solid rgba(23,75,71,.22); background: transparent; cursor: pointer; font-size: 12px; font-weight: 750; text-align: left; }

.people { padding: 120px 72px 0; overflow: hidden; }
.people > * { max-width: 1296px; margin-left: auto; margin-right: auto; }
.approach-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; padding-bottom: 115px; }
.approach-sticky h2 { margin-bottom: 28px; }
.approach-sticky > p:last-child { max-width: 450px; color: rgba(23, 63, 60, .67); }
.principles { border-top: 1px solid var(--line); }
.principles article { display: grid; grid-template-columns: 65px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.principles article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-size: 10px; color: var(--coral); }
.principles h3 { margin-bottom: 7px; font: 500 27px var(--serif); }
.principles p { max-width: 520px; margin: 0; color: rgba(23, 63, 60, .64); }
.experts { padding: 100px 0; border-top: 1px solid var(--line); }
.experts-heading { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: end; margin-bottom: 42px; }
.experts-heading h2 { margin: 0; }
.experts-heading > p { max-width: 500px; margin-bottom: 5px; color: rgba(23, 63, 60, .62); }
.expert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.expert-card { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 410px; background: var(--paper); border-radius: 26px; overflow: hidden; box-shadow: 0 16px 50px rgba(38,58,50,.07); }
.portrait { position: relative; overflow: hidden; }
.portrait-one, .portrait-two { background: #121212; }
.portrait img { width: 100%; height: 100%; display: block; object-fit: cover; }
.portrait-one img { object-position: center 31%; transform: scale(1.04); background: #121212; }
.portrait-two img { object-position: center 42%; transform: scale(1.04); background: #121212; }
.portrait-halo { position: absolute; width: 175px; height: 175px; border-radius: 50%; background: var(--sun); left: 50%; top: 24%; transform: translateX(-50%); }
.portrait-two .portrait-halo { background: var(--sage); }
.portrait-head { position: absolute; width: 73px; height: 84px; border-radius: 48% 48% 44% 44%; background: var(--green); left: 50%; top: 28%; transform: translateX(-50%); }
.portrait-two .portrait-head { background: var(--coral); border-radius: 50% 50% 42% 46%; }
.portrait-body { position: absolute; width: 160px; height: 145px; border-radius: 50% 50% 0 0; background: var(--coral); left: 50%; bottom: -42px; transform: translateX(-50%); }
.portrait-two .portrait-body { background: var(--green); }
.expert-copy { display: flex; flex-direction: column; justify-content: center; padding: 30px 28px; }
.expert-copy small { text-transform: uppercase; letter-spacing: .1em; color: var(--coral); font-size: 9px; font-weight: 750; }
.expert-copy h3 { margin: 0 0 7px; font: 500 31px var(--serif); }
.expert-copy h3 + small { margin-bottom: 20px; }
.expert-copy p { color: rgba(23, 63, 60, .68); font-size: 16px; }
.expert-bio { margin: 0; line-height: 1.6; }

.consultation { max-width: none !important; margin: 0 -72px !important; padding: 90px max(72px, calc((100vw - 1296px)/2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; background: var(--green); color: #fff; }
.consultation-copy h2 { margin-bottom: 26px; }
.consultation-copy > p { max-width: 500px; color: rgba(255,255,255,.65); }
.consultation-note { display: flex; align-items: center; gap: 16px; margin-top: 35px; }
.consultation-note > span { width: 70px; height: 70px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-family: var(--serif); font-size: 20px; }
.consultation-note p { margin: 0; font-weight: 700; }
.consultation-note small { color: rgba(255,255,255,.54); font-weight: 400; }
.consultation-form { position: relative; padding: 32px; color: var(--ink); background: var(--paper); border-radius: 26px; }
.demo-badge { position: absolute; right: 25px; top: 0; transform: translateY(-50%); padding: 7px 12px; background: var(--sun); border-radius: 50px; text-transform: uppercase; letter-spacing: .07em; font-size: 8px; font-weight: 800; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consultation-form label, .consultation-form legend { display: block; font-size: 11px; font-weight: 750; }
.consultation-form input[type="text"], .consultation-form select { width: 100%; height: 51px; margin-top: 7px; padding: 0 14px; color: var(--ink); background: #f7f1e8; border: 1px solid rgba(23,75,71,.14); border-radius: 11px; outline: none; }
.consultation-form input:focus, .consultation-form select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(217,120,101,.12); }
.consultation-form fieldset { border: 0; padding: 0; margin: 18px 0; }
.contact-options { display: flex; gap: 8px; margin-top: 8px; }
.contact-options label { flex: 1; }
.contact-options input { position: absolute; opacity: 0; pointer-events: none; }
.contact-options span { min-height: 43px; display: grid; place-items: center; border: 1px solid rgba(23,75,71,.14); border-radius: 11px; cursor: pointer; transition: .2s ease; }
.contact-options input:checked + span { background: var(--green); color: #fff; border-color: var(--green); }
.contact-options input:focus-visible + span { outline: 3px solid rgba(217,120,101,.22); }
.direct-contact { display: grid; gap: 10px; margin-top: 28px; }
.direct-contact a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.18); transition: color .2s ease; }
.direct-contact a:hover { color: var(--sun); }
.direct-contact span { color: rgba(255,255,255,.56); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.direct-contact strong { font-size: 13px; font-weight: 650; overflow-wrap: anywhere; }
.privacy-copy { margin: 14px 0; color: rgba(23,63,60,.55); font-size: 10px; }
.form-submit { width: 100%; }
.form-message { margin: 14px 0 0; padding: 12px; border-radius: 10px; background: rgba(171,199,173,.25); font-size: 12px; font-weight: 650; }
.site-footer { padding: 55px max(40px, calc((100vw - 1296px)/2)); display: grid; grid-template-columns: 1fr auto; gap: 40px; background: #102f2d; color: #fff; }
.brand-footer { color: #c5d2c8; }
.footer-brand > p { margin: 10px 0 0; color: rgba(255,255,255,.5); font: italic 16px var(--serif); }
.footer-links { display: flex; gap: 25px; align-items: center; font-size: 12px; }
.footer-legal { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.footer-legal p { margin: 0; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid rgba(217,120,101,.52); outline-offset: 3px; }

@media (max-width: 1100px) {
  .site-header { left: 20px; right: 20px; }
  .hero { padding-left: 40px; padding-right: 40px; gap: 30px; }
  .hero-visual { min-height: 520px; }
  .floating-card { width: 183px; }
  .discovery, .people { padding-left: 40px; padding-right: 40px; }
  .home-blog { padding-left: 40px; padding-right: 40px; }
  .consultation { margin-left: -40px !important; margin-right: -40px !important; padding-left: 40px; padding-right: 40px; gap: 45px; }
  .path-card h3 { font-size: 29px; }
}

@media (max-width: 820px) {
  .site-header { margin-top: 10px; border-radius: 17px; padding: 11px 14px; }
  .menu-toggle { display: flex; width: 43px; height: 43px; flex-direction: column; justify-content: center; gap: 7px; padding: 10px; border: 0; background: var(--green); border-radius: 12px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1.5px; background: #fff; transition: .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 79px 20px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; background: var(--paper); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .site-nav .button { margin-top: 10px; border: 0; }
  .hero { min-height: auto; padding: 145px 24px 55px; grid-template-columns: 1fr; gap: 20px; }
  h1 { font-size: clamp(51px, 13vw, 72px); }
  .hero-lead { font-size: 16px; }
  .hero-visual { min-height: 520px; order: 2; }
  .hero-footnote { order: 3; }
  .discovery { padding: 85px 24px; }
  .section-heading, .experts-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading h2, .people h2 { font-size: clamp(45px, 11vw, 64px); }
  .explorer { padding: 22px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .choice-card { min-height: 205px; }
  .result-panel { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .home-blog { padding: 85px 24px; }
  .home-blog-heading { grid-template-columns: 1fr; gap: 22px; }
  .home-blog-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 300px; }
  .path-card h3 { margin-top: 50px; }
  .people { padding: 85px 24px 0; }
  .approach-grid { grid-template-columns: 1fr; gap: 35px; padding-bottom: 80px; }
  .expert-grid { grid-template-columns: 1fr; }
  .consultation { margin-left: -24px !important; margin-right: -24px !important; padding: 80px 24px; grid-template-columns: 1fr; gap: 45px; }
  .site-footer { padding: 45px 24px 95px; grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .footer-legal { grid-column: auto; flex-direction: column; gap: 8px; }
  .mobile-cta { position: fixed; z-index: 45; bottom: 12px; left: 12px; right: 12px; min-height: 52px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; color: var(--ink); background: var(--sun); border-radius: 14px; box-shadow: 0 12px 30px rgba(0,0,0,.2); font-size: 13px; font-weight: 800; }
}

@media (max-width: 520px) {
  .site-header { left: 12px; right: 12px; }
  .brand { font-size: 27px; }
  .brand-mark { width: 31px; }
  .site-nav { left: 12px; right: 12px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .text-link { justify-content: center; }
  .trust-list { flex-wrap: wrap; gap: 12px 17px; }
  .hero-visual { min-height: 455px; margin: 0 -3px; }
  .hero-visual::before { width: 340px; height: 340px; right: -3%; top: 11%; }
  .orbit-one { width: 280px; height: 280px; top: 17%; }
  .orbit-two { width: 360px; height: 210px; top: 33%; }
  .visual-sun { width: 60px; height: 60px; }
  .floating-card { width: 164px; padding: 10px; border-radius: 14px; }
  .floating-card strong { font-size: 11px; }
  .mini-icon { width: 32px; height: 32px; }
  .card-child { top: 6%; left: 0; }
  .card-teen { right: -3px; top: 54%; }
  .card-parent { bottom: 3%; left: 5%; }
  .visual-center { top: 48%; }
  .visual-center svg { width: 95px; }
  .visual-center span { font-size: 23px; }
  .visual-note { display: none; }
  .discovery { padding-left: 18px; padding-right: 18px; }
  .section-heading > p { font-size: 14px; }
  .explorer { padding: 18px 14px; border-radius: 22px; }
  .explorer-topline { grid-template-columns: 60px 1fr auto; gap: 10px; }
  .progress-track { max-width: none; }
  .panel-copy { align-items: flex-start; gap: 11px; }
  .panel-copy h3 { font-size: 25px; }
  .panel-number { width: 38px; height: 38px; flex: 0 0 auto; }
  .choice-grid { gap: 9px; }
  .choice-card { min-height: 175px; padding: 15px; }
  .choice-art { width: 64px; height: 64px; top: 20px; }
  .art-flower { border-width: 14px; }
  .art-nest { width: 72px; height: 49px; }
  .choice-card strong { font-size: 18px; }
  .choice-arrow { right: 11px; bottom: 15px; }
  .need-grid { grid-template-columns: 1fr; }
  .need-grid button { font-size: 19px; }
  .result-main { padding-right: 5px; }
  .result-main h3 { font-size: 38px; }
  .result-actions { flex-direction: column; align-items: stretch; }
  .result-actions .light-link { justify-content: center; }
  .content-paths { margin-top: 75px; }
  .content-paths-title { align-items: flex-start; flex-direction: column; gap: 10px; }
  .people { padding-left: 18px; padding-right: 18px; }
  .home-blog { padding-left: 18px; padding-right: 18px; }
  .expert-card { grid-template-columns: 1fr; }
  .portrait { min-height: 330px; }
  .experts { padding: 75px 0; }
  .consultation { margin-left: -18px !important; margin-right: -18px !important; padding-left: 18px; padding-right: 18px; }
  .consultation-form { padding: 25px 18px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-options { flex-wrap: wrap; }
  .site-footer { padding-left: 18px; padding-right: 18px; }
}

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