:root {
  --ink: #1b2f36;
  --muted: #5e6d70;
  --paper: #f8f5ef;
  --cream: #fffdf8;
  --coral: #d96f57;
  --coral-dark: #b55440;
  --gold: #eabf5b;
  --sage: #dce8dc;
  --sage-ink: #316151;
  --blue: #dcebed;
  --line: #dce0d9;
  --deep: #173b43;
  --white: #fff;
  --shadow: 0 24px 55px rgba(34, 58, 56, 0.12);
  --round: 24px;
  font-size: 100%;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.text-large { font-size: 1.115rem; }

body.text-large .button,
body.text-large .desktop-nav,
body.text-large .footer-links,
body.text-large .call-card { font-size: .95rem; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { background: #f5cdb8; color: var(--ink); }

.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 112px 0; }
.sr-only {
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; position: absolute;
}

.skip-link {
  position: fixed; z-index: 1000; left: 16px; top: -60px; padding: 12px 16px;
  border-radius: 8px; background: var(--ink); color: var(--white); font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 3px solid #d47930; outline-offset: 3px; }

.site-header {
  position: sticky; top: 0; z-index: 30; background: rgba(248,245,239,.93);
  border-bottom: 1px solid rgba(27,47,54,.07); backdrop-filter: blur(14px);
}
.navigation { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { color: var(--deep); display: inline-flex; align-items: center; gap: 9px; font-size: 1.45rem; font-weight: 800; letter-spacing: -.07em; }
.brand-mark { width: 34px; height: 34px; color: var(--coral); flex: 0 0 auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 30px); font-size: .88rem; font-weight: 650; color: #46585a; }
.desktop-nav a, .footer-links a { transition: color .2s ease; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--coral-dark); }
.nav-actions { display: flex; align-items: center; gap: 13px; }
.text-size-button {
  width: 44px; height: 44px; display: inline-flex; align-items: baseline; justify-content: center; gap: 1px;
  border: 1px solid #d4d8d1; border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer;
  font-weight: 700; font-size: .75rem; transition: background .2s, border .2s;
}
.text-size-button:hover, .text-size-button[aria-pressed="true"] { background: #e9eee7; border-color: #9baea4; }
.text-size-large { font-size: 1rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 13px 21px;
  border: 1px solid transparent; border-radius: 999px; background: var(--coral); color: var(--white);
  font-size: .94rem; font-weight: 750; line-height: 1.2; cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s;
}
.button:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 9px 18px rgba(173,79,58,.2); }
.button svg { width: 18px; height: 18px; }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .82rem; }
.button-primary { min-height: 56px; padding: 16px 23px; }
.button-light { background: var(--cream); color: var(--deep); white-space: nowrap; }
.button-light:hover { background: #fff6e9; color: var(--deep); }
.menu-button { display: none; }
.mobile-nav { display: none; }

.hero { position: relative; overflow: hidden; padding: 94px 0 102px; }
.hero::before {
  content: ""; position: absolute; z-index: -1; left: -270px; top: 100px; width: 510px; height: 510px;
  background: radial-gradient(circle, rgba(230,194,126,.19), rgba(230,194,126,0) 68%);
}
.hero-grid { display: grid; grid-template-columns: 1fr minmax(430px, .95fr); align-items: center; gap: clamp(50px, 7vw, 105px); }
.eyebrow {
  display: flex; align-items: center; gap: 9px; margin: 0 0 15px; color: var(--sage-ink);
  font-size: .73rem; font-weight: 800; letter-spacing: .115em; line-height: 1.25; text-transform: uppercase;
}
.eyebrow-dark { color: #4e615b; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(217,111,87,.13); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.058em; line-height: 1.055; }
h1 { max-width: 655px; margin-bottom: 26px; font-size: clamp(3.05rem, 5.2vw, 5.25rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.25rem, 3.8vw, 3.8rem); }
h3 { font-size: 1.16rem; line-height: 1.25; letter-spacing: -.025em; }
.hero-lead { max-width: 610px; margin-bottom: 10px; color: #405154; font-size: clamp(1.17rem, 1.6vw, 1.38rem); line-height: 1.52; }
.hero-detail { max-width: 565px; margin-bottom: 32px; color: var(--muted); font-size: 1rem; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-bottom: 29px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--coral-dark); font-size: .94rem; font-weight: 800; }
.text-link:hover span { transform: translateX(3px); }
.text-link span { transition: transform .2s; font-size: 1.08rem; }
.text-link-dark { color: var(--deep); }
.trust-list { display: flex; align-items: center; flex-wrap: wrap; gap: 11px 23px; padding: 0; margin: 0; list-style: none; color: #536668; font-size: .83rem; font-weight: 650; }
.check { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; margin-right: 6px; border-radius: 50%; background: #dce8dd; color: #34705c; font-size: .72rem; font-weight: 900; }

.hero-art { position: relative; min-height: 500px; display: flex; align-items: center; justify-content: center; }
.sun-shape { position: absolute; width: min(94%, 460px); aspect-ratio: 1; border-radius: 49% 51% 50% 50% / 52% 52% 48% 48%; background: #f6d994; transform: rotate(-6deg); }
.hero-orbit { position: absolute; border: 1px solid rgba(101,119,103,.19); border-radius: 50%; }
.orbit-one { width: 485px; height: 310px; transform: rotate(-18deg); }
.orbit-two { width: 310px; height: 490px; transform: rotate(29deg); }
.call-card {
  position: relative; z-index: 2; width: min(100%, 407px); padding: 25px; border: 1px solid rgba(255,255,255,.9);
  border-radius: 28px; background: rgba(255,253,248,.93); box-shadow: 0 25px 45px rgba(64,73,62,.15); backdrop-filter: blur(8px);
}
.call-card-top, .call-person, .call-card-bottom { display: flex; align-items: center; justify-content: space-between; }
.call-card-label { margin-bottom: 3px; color: #6e7772; font-size: .64rem; font-weight: 800; letter-spacing: .12em; }
.call-card-time { margin: 0; color: #253c3c; font-size: .82rem; font-weight: 700; }
.call-status { display: inline-flex; align-items: center; gap: 6px; color: #3d7a63; font-size: .7rem; font-weight: 750; }
.call-status span { width: 7px; height: 7px; border-radius: 50%; background: #4ab57a; }
.call-person { justify-content: flex-start; gap: 15px; margin: 34px 0 30px; }
.avatar { width: 61px; height: 61px; border-radius: 50%; overflow: hidden; background: #e8cfa9; flex: 0 0 auto; }
.avatar svg { display: block; width: 100%; height: 100%; }
.call-person-name { margin-bottom: 1px; color: var(--deep); font-size: 1.06rem; font-weight: 800; }
.call-person-sub { margin: 0; color: #647171; font-size: .82rem; }
.sound-wave { height: 68px; display: flex; align-items: center; justify-content: space-around; padding: 0 2px; }
.sound-wave span { width: 3px; border-radius: 6px; background: #d77863; animation: wave 1.35s ease-in-out infinite alternate; }
.sound-wave span:nth-child(1), .sound-wave span:nth-child(17) { height: 14px; animation-delay: .1s; }
.sound-wave span:nth-child(2), .sound-wave span:nth-child(16) { height: 27px; animation-delay: .26s; }
.sound-wave span:nth-child(3), .sound-wave span:nth-child(15) { height: 18px; animation-delay: .42s; }
.sound-wave span:nth-child(4), .sound-wave span:nth-child(14) { height: 38px; animation-delay: .18s; }
.sound-wave span:nth-child(5), .sound-wave span:nth-child(13) { height: 53px; animation-delay: .7s; }
.sound-wave span:nth-child(6), .sound-wave span:nth-child(12) { height: 31px; animation-delay: .35s; }
.sound-wave span:nth-child(7), .sound-wave span:nth-child(11) { height: 43px; animation-delay: .9s; }
.sound-wave span:nth-child(8), .sound-wave span:nth-child(10) { height: 60px; animation-delay: .55s; }
.sound-wave span:nth-child(9) { height: 35px; animation-delay: .05s; }
@keyframes wave { from { transform: scaleY(.54); opacity: .72; } to { transform: scaleY(1); opacity: 1; } }
.call-card-bottom { padding-top: 17px; border-top: 1px solid #e7e2d9; color: #697473; font-size: .73rem; font-weight: 700; }
.phone-icon { color: var(--coral); font-size: 1.4rem; font-weight: 700; transform: rotate(-32deg); }
.floating-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.85); border-radius: 14px; background: rgba(255,253,248,.92); box-shadow: 0 13px 30px rgba(58,67,56,.12); color: #3d534c; font-size: .72rem; font-weight: 750; line-height: 1.3; }
.note-one { top: 66px; right: -17px; }
.note-two { bottom: 62px; left: -21px; }
.note-icon, .note-check { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; font-size: 1rem; }
.note-icon { background: #fff0c8; color: #c18423; }
.note-check { background: #dcece0; color: #438261; }

.intro-strip { padding: 25px 0; background: var(--deep); color: #fffdf6; }
.intro-strip-grid { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.intro-strip p { margin: 0; font-family: Georgia, serif; font-size: clamp(1.12rem, 1.8vw, 1.42rem); letter-spacing: -.025em; }
.intro-icons { display: flex; align-items: center; gap: 13px; color: #efc96f; font-size: 1.18rem; }
.intro-icons i { width: 30px; height: 1px; background: rgba(255,255,255,.27); }

.story-section { padding-bottom: 123px; }
.story-grid { display: grid; grid-template-columns: .95fr 1fr; gap: min(15vw, 190px); align-items: start; }
.section-heading h2 { margin: 0; }
.story-copy { max-width: 530px; padding-top: 38px; color: #48595a; font-size: 1.075rem; }
.story-copy p { margin-bottom: 19px; }
.story-copy .text-link { margin-top: 11px; }

.steps-section { background: #e6ede5; }
.center-heading { max-width: 650px; margin: 0 auto 62px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.center-heading h2 { margin-bottom: 13px; }
.center-heading p:last-child { margin-bottom: 0; color: #5c6a65; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; padding: 0; margin: 0; list-style: none; counter-reset: steps; }
.step { position: relative; padding: 31px 28px 29px; border: 1px solid rgba(51,90,69,.12); border-radius: 18px; background: rgba(255,255,255,.42); }
.step-number { position: absolute; top: 17px; right: 19px; color: #8a9b91; font-size: .68rem; font-weight: 800; letter-spacing: .11em; }
.step-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 18px; }
.step-icon svg { width: 34px; height: 34px; }
.step-icon-peach { color: #ac624d; background: #f5d8c9; }
.step-icon-yellow { color: #9a741e; background: #f7e6b3; }
.step-icon-blue { color: #3a6e77; background: #d5e8e9; }
.step h3 { margin-bottom: 11px; color: #29443d; }
.step p { margin: 0; color: #5d6d64; font-size: .93rem; line-height: 1.6; }
.disclaimer { max-width: 730px; margin: 37px auto 0; color: #617069; text-align: center; font-size: .77rem; }

.support-section { background: var(--cream); }
.support-layout { display: grid; grid-template-columns: minmax(350px,.9fr) 1fr; align-items: center; gap: clamp(50px, 9vw, 140px); }
.support-art { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; }
.support-circle { position: absolute; width: min(100%, 410px); aspect-ratio: 1; border-radius: 50%; background: #d9ece8; }
.support-card { position: absolute; padding: 25px; border: 1px solid rgba(255,255,255,.9); background: #fffdfa; box-shadow: 0 20px 40px rgba(48,72,64,.12); }
.support-card-back { width: 245px; height: 215px; top: 47px; right: 10px; border-radius: 19px; transform: rotate(8deg); background: #f6dba1; }
.support-card-front { z-index: 2; width: min(100%, 335px); padding: 29px; border-radius: 22px; transform: rotate(-5deg); }
.small-label { margin-bottom: 19px; color: #6b7870; font-size: .64rem; font-weight: 850; letter-spacing: .115em; }
.support-card ul { margin: 0; padding: 0; list-style: none; }
.support-card li { display: flex; align-items: center; gap: 11px; padding: 10px 0; border-top: 1px solid #ece7df; color: #364c47; font-size: .86rem; font-weight: 720; }
.support-card li:first-child { border-top: 0; padding-top: 0; }
.support-card li span { width: 21px; color: var(--coral); font-size: 1rem; text-align: center; }
.tiny-calendar { display: grid; grid-template-columns: repeat(7,1fr); gap: 9px 6px; padding: 11px 0; color: #ad8329; font-size: .45rem; font-weight: 900; text-align: center; }
.tiny-calendar b { display: block; width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,.52); }
.tiny-calendar b.is-active { position: relative; background: #d67e5c; box-shadow: 0 0 0 4px rgba(214,126,92,.15); }
.support-flower { position: absolute; bottom: 30px; left: 20px; z-index: 3; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: #fff4d6; font-size: 2rem; transform: rotate(18deg); }
.support-copy h2 { max-width: 500px; }
.section-lead { max-width: 560px; margin-bottom: 32px; color: #536363; font-size: 1.07rem; }
.feature-list { display: grid; gap: 20px; }
.feature-list article { display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: start; }
.feature-icon { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 14px; font-size: 1.15rem; font-weight: 800; }
.feature-icon-rose { color: #a8564b; background: #f7dcd3; }
.feature-icon-gold { color: #96721d; background: #fbebbd; }
.feature-icon-blue { color: #3a6e77; background: #d7ebec; }
.feature-list h3 { margin: 0 0 4px; font-size: 1rem; color: #2c4642; }
.feature-list p { margin: 0; color: #657170; font-size: .89rem; line-height: 1.58; }

.family-section { overflow: hidden; background: var(--deep); color: #fffdf8; }
.family-grid { display: grid; grid-template-columns: .98fr .8fr; align-items: center; gap: 105px; }
.family-copy .eyebrow { color: #f0c975; }
.family-copy h2 { max-width: 570px; }
.family-copy .section-lead { color: #d6e0dc; }
.family-list { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.family-list li { display: flex; gap: 8px; max-width: 570px; color: #d1dcd8; font-size: .92rem; }
.family-list .check { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px; margin-right: 0; background: #285950; color: #d2eadf; }
.family-list strong { color: #fffdf8; }
.family-art { position: relative; min-height: 390px; }
.family-sun { position: absolute; top: 20px; right: 0; width: 330px; height: 330px; border-radius: 50%; background: #f1c66e; opacity: .98; }
.family-person { position: absolute; z-index: 2; bottom: 0; }
.family-person-left { left: 43px; }
.family-person-right { right: 15px; transform: scale(.9); transform-origin: bottom right; }
.person-head { position: relative; width: 106px; height: 120px; border-radius: 48% 48% 45% 45%; background: #bf7c55; }
.family-person-left .person-head { background: #e9b28d; }
.person-head::before { content: ""; position: absolute; top: -12px; left: 6px; width: 96px; height: 63px; border-radius: 56% 52% 35% 35%; background: #bec7bf; }
.family-person-right .person-head::before { top: -15px; left: 0; width: 109px; height: 70px; border-radius: 62% 53% 38% 40%; background: #583f36; }
.person-head span { position: absolute; z-index: 1; top: 65px; left: 49px; width: 8px; height: 8px; border-radius: 50%; background: #55372f; box-shadow: 29px 0 0 #55372f; }
.person-body { width: 155px; height: 201px; margin-left: -25px; border-radius: 47% 47% 0 0; background: #d97a61; }
.family-person-left .person-body { background: #f1e2d4; }
.connection-line { position: absolute; z-index: 4; width: 100%; height: 100%; left: 0; bottom: 16px; overflow: visible; }
.family-note { position: absolute; z-index: 6; top: 49px; left: 7px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.5); border-radius: 13px; background: rgba(255,253,248,.93); box-shadow: 0 13px 26px rgba(0,0,0,.13); color: var(--deep); font-size: .75rem; font-weight: 800; line-height: 1.3; transform: rotate(-3deg); }

.privacy-section { padding-top: 0; background: var(--deep); }
.privacy-card { display: grid; grid-template-columns: 75px 1fr auto; align-items: center; gap: 26px; padding: 34px 41px; border: 1px solid rgba(255,255,255,.25); border-radius: 20px; background: rgba(255,255,255,.06); color: var(--white); }
.privacy-icon { width: 59px; height: 59px; display: grid; place-items: center; border-radius: 50%; background: #e3c276; color: var(--deep); }
.privacy-icon svg { width: 32px; height: 32px; }
.privacy-card .eyebrow { margin-bottom: 8px; color: #f0c975; }
.privacy-card h2 { margin-bottom: 9px; font-family: "Segoe UI", Arial, sans-serif; font-size: 1.3rem; font-weight: 750; letter-spacing: -.025em; }
.privacy-card p:last-child { max-width: 710px; margin-bottom: 0; color: #d3ded9; font-size: .88rem; }
.privacy-card .text-link { color: #fff3d7; }

.faq-section { background: #f3efe7; }
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: min(11vw, 150px); align-items: start; }
.faq-intro p:last-child { max-width: 360px; color: #5e6d6b; }
.faq-list { border-top: 1px solid #cfd4cc; }
details { border-bottom: 1px solid #cfd4cc; }
summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 74px; padding: 17px 2px; color: #29433f; font-size: 1.025rem; font-weight: 750; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { position: relative; width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%; background: #dbe6d9; }
summary span::before, summary span::after { content: ""; position: absolute; top: 10px; left: 5px; width: 12px; height: 2px; border-radius: 4px; background: #416758; transition: transform .2s; }
summary span::after { transform: rotate(90deg); }
details[open] summary span::after { transform: rotate(0deg); }
details p { max-width: 670px; padding: 0 40px 23px 2px; margin: 0; color: #5a6967; font-size: .92rem; }

.cta-section { padding: 95px 0; background: var(--cream); }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 38px; padding: 54px 61px; overflow: hidden; position: relative; border-radius: 28px; background: #d4745a; color: var(--white); }
.cta-card::before, .cta-card::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; pointer-events: none; }
.cta-card::before { width: 400px; height: 400px; right: -122px; top: -250px; }
.cta-card::after { width: 530px; height: 530px; right: -40px; bottom: -380px; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card .eyebrow { color: #fff0cc; }
.cta-card h2 { margin-bottom: 12px; font-size: clamp(2.15rem,3.4vw,3.35rem); }
.cta-card p:last-child { max-width: 640px; margin: 0; color: #fff1e9; }

.site-footer { padding: 52px 0 27px; background: #efe8dc; }
.footer-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.footer-top { padding-bottom: 35px; border-bottom: 1px solid #d6d4cc; }
.brand-footer { font-size: 1.35rem; }
.footer-top > p { margin: 0; color: #68726e; font-size: .88rem; }
.footer-links { display: flex; gap: 23px; color: #52615c; font-size: .8rem; font-weight: 700; }
.footer-bottom { padding-top: 21px; color: #77807a; font-size: .72rem; }
.footer-bottom p { margin: 0; }
.legal-eyebrow { margin-top: 68px; }
.legal-return { margin-top: 44px; }
.not-found-eyebrow { justify-content: center; }

.reveal { opacity: 0; transform: translateY(17px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button {
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px;
    padding: 0; border: 1px solid #d4d8d1; border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer;
  }
  .menu-button > span:not(.sr-only) { display: block; width: 18px; height: 2px; border-radius: 4px; background: currentColor; transition: transform .2s; }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { padding-top: 5px; padding-bottom: 20px; }
  .mobile-nav:not([hidden]) { display: grid; gap: 7px; }
  .mobile-nav a:not(.button) { padding: 10px 2px; border-bottom: 1px solid #e0e1da; color: #405452; font-weight: 700; }
  .mobile-nav .button { margin-top: 9px; }
  .hero-grid { grid-template-columns: 1fr; gap: 33px; }
  .hero-copy { max-width: 700px; }
  .hero-art { max-width: 600px; width: 100%; margin: 0 auto; min-height: 440px; }
  .story-grid, .faq-grid { gap: 70px; }
  .support-layout { gap: 56px; }
  .family-grid { gap: 50px; }
  .privacy-card { grid-template-columns: 60px 1fr; }
  .privacy-card > .text-link { grid-column: 2; }
}

@media (max-width: 720px) {
  :root { scroll-padding-top: 75px; }
  .container { width: min(100% - 34px, 580px); }
  .section { padding: 76px 0; }
  .navigation { min-height: 72px; gap: 10px; }
  .brand { font-size: 1.3rem; }
  .brand-mark { width: 31px; height: 31px; }
  .text-size-button { display: none; }
  .nav-actions { gap: 8px; }
  .nav-actions .button-small { display: none; }
  .hero { padding: 63px 0 72px; }
  h1 { margin-bottom: 20px; font-size: clamp(2.75rem, 13vw, 4.1rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .hero-lead { font-size: 1.1rem; }
  .hero-detail { font-size: .94rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button-primary { width: 100%; }
  .trust-list { display: grid; gap: 8px; font-size: .79rem; }
  .hero-art { min-height: 372px; }
  .sun-shape { width: 330px; }
  .orbit-one { width: 355px; height: 215px; }
  .orbit-two { width: 220px; height: 360px; }
  .call-card { width: min(100%, 335px); padding: 20px; border-radius: 22px; }
  .call-person { margin: 22px 0 20px; }
  .call-person-name { font-size: .94rem; }
  .call-person-sub { font-size: .75rem; }
  .sound-wave { height: 54px; }
  .floating-note { padding: 9px 10px; font-size: .65rem; }
  .note-one { top: 25px; right: -2px; }
  .note-two { left: -1px; bottom: 13px; }
  .note-icon, .note-check { width: 24px; height: 24px; }
  .intro-strip { padding: 21px 0; }
  .intro-strip-grid { display: block; }
  .intro-strip p { font-size: 1.08rem; }
  .intro-icons { margin-top: 13px; }
  .story-section { padding-bottom: 79px; }
  .story-grid, .support-layout, .family-grid, .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-copy { padding-top: 0; font-size: 1rem; }
  .center-heading { margin-bottom: 39px; }
  .steps { grid-template-columns: 1fr; gap: 14px; }
  .step { padding: 26px 23px; }
  .step-icon { margin-bottom: 19px; }
  .support-layout { display: flex; flex-direction: column-reverse; }
  .support-art { width: 100%; min-height: 360px; }
  .support-card-back { top: 18px; right: 5px; }
  .support-flower { bottom: 2px; left: 4px; }
  .feature-list { gap: 17px; }
  .family-art { min-height: 323px; max-width: 415px; width: 100%; margin: 0 auto; }
  .family-sun { width: 270px; height: 270px; }
  .family-person-left { left: 30px; transform: scale(.82); transform-origin: bottom left; }
  .family-person-right { right: -6px; transform: scale(.72); transform-origin: bottom right; }
  .family-note { top: 25px; left: 0; }
  .privacy-section { padding-top: 0; }
  .privacy-card { grid-template-columns: 1fr; gap: 17px; padding: 29px 24px; }
  .privacy-card > .text-link { grid-column: 1; }
  .privacy-card h2 { font-size: 1.15rem; }
  .faq-intro h2 { max-width: 390px; }
  summary { min-height: 68px; font-size: .96rem; }
  details p { padding-right: 5px; }
  .cta-section { padding: 65px 0; }
  .cta-card { display: block; padding: 39px 27px; }
  .cta-card .button { width: 100%; margin-top: 29px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer-top { padding-bottom: 28px; }
  .footer-bottom { gap: 7px; }
}

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