:root {
  --cream: #fbf7f0;
  --paper: #fffdf9;
  --ink: #17332c;
  --ink-soft: #496158;
  --sage: #7e8d73;
  --sage-dark: #51634e;
  --mint: #dcebdd;
  --mint-strong: #c7dfc8;
  --gold: #b27b20;
  --gold-soft: #edd9a9;
  --peach: #f5d7ca;
  --peach-soft: #fae8e0;
  --lilac: #e6dded;
  --blue: #dbe9ee;
  --white: #ffffff;
  --line: rgba(23, 51, 44, 0.13);
  --shadow: 0 22px 60px rgba(59, 78, 65, 0.12);
  --shadow-small: 0 10px 28px rgba(59, 78, 65, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); line-height: 1.65; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

.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; transform: translateY(-150%); background: var(--ink); color: white; padding: 10px 16px; border-radius: 12px; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }

.site-shell { min-height: 100vh; overflow: hidden; }
.section-wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 100; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; min-height: 88px; padding: 10px clamp(18px, 3vw, 48px); background: rgba(251, 247, 240, 0.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand-button { display: flex; align-items: center; gap: 10px; padding: 0; border: 0; background: none; cursor: pointer; text-align: left; }
.brand-logo { width: 64px; height: 64px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-small); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--serif); font-size: 1.03rem; font-weight: 500; letter-spacing: .03em; }
.brand-copy small { margin-top: 4px; color: var(--gold); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; }
.tab-nav { min-width: 0; }
.tab-list { display: flex; justify-content: center; gap: 4px; }
.tab-button { position: relative; border: 0; background: transparent; padding: 10px 11px; border-radius: 999px; color: var(--ink-soft); font-size: .84rem; font-weight: 700; cursor: pointer; white-space: nowrap; }
.tab-button::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 3px; height: 2px; background: var(--gold); transition: left .2s ease, right .2s ease; }
.tab-button:hover, .tab-button:focus-visible { background: var(--white); color: var(--ink); }
.tab-button.is-active { background: var(--mint); color: var(--ink); }
.tab-button.is-active::after { left: 24%; right: 24%; }
.accessibility-toggle { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); cursor: pointer; font-family: var(--serif); font-weight: 700; }
.accessibility-toggle:hover, .accessibility-toggle:focus-visible { background: var(--gold-soft); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.tab-panel { min-height: 70vh; animation: panelIn .35s ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.hero { min-height: 710px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 42px; padding-block: 72px 62px; }
.hero-copy h1, .page-hero h1 { margin: 12px 0 20px; font-family: var(--serif); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.hero-copy h1 { font-size: clamp(3.4rem, 7vw, 6.6rem); max-width: 760px; }
.hero-copy h1 em { color: var(--gold); font-weight: 500; }
.hero-lede { max-width: 660px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-soft); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow-small); }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover, .button-primary:focus-visible { background: var(--sage-dark); }
.button-secondary { background: var(--paper); border-color: var(--line); color: var(--ink); }
.button-ghost { background: transparent; border-color: var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 28px; color: var(--ink-soft); font-size: .88rem; }
.trust-row b { color: var(--gold); margin-right: 5px; }

.hero-art { display: grid; place-items: center; }
.logo-orbit { position: relative; width: min(100%, 560px); aspect-ratio: 1; display: grid; place-items: center; }
.logo-orbit::before, .logo-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(178, 123, 32, .28); animation: spin 26s linear infinite; }
.logo-orbit::before { inset: 3%; }
.logo-orbit::after { inset: 14%; animation-direction: reverse; animation-duration: 19s; }
.logo-orbit img { width: 83%; border-radius: 48%; box-shadow: 0 28px 90px rgba(70, 87, 74, .16); transform: rotate(-1deg); }
.orbit-dot { position: absolute; z-index: 2; border-radius: 50%; box-shadow: var(--shadow-small); animation: float 4.8s ease-in-out infinite; }
.dot-one { width: 56px; height: 56px; background: var(--peach); top: 7%; right: 8%; }
.dot-two { width: 32px; height: 32px; background: var(--mint-strong); bottom: 11%; left: 7%; animation-delay: -1.5s; }
.dot-three { width: 24px; height: 24px; background: var(--lilac); top: 29%; left: 1%; animation-delay: -2.2s; }
.puzzle { position: absolute; z-index: 3; display: grid; place-items: center; border-radius: 16px; font-size: 1.25rem; font-weight: 900; box-shadow: var(--shadow-small); animation: float 5.5s ease-in-out infinite; }
.puzzle-one { width: 58px; height: 58px; top: 1%; left: 16%; background: var(--gold-soft); color: var(--gold); transform: rotate(-8deg); }
.puzzle-two { width: 48px; height: 48px; right: 1%; top: 39%; background: var(--sage); color: white; animation-delay: -2s; }
.puzzle-three { width: 42px; height: 42px; right: 13%; bottom: 7%; background: var(--blue); color: var(--sage-dark); animation-delay: -3s; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-12px) rotate(4deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

.quick-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 110px; }
.quick-card { display: flex; align-items: center; gap: 14px; min-height: 104px; padding: 18px; border: 0; border-radius: var(--radius-lg); text-align: left; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.quick-card:hover, .quick-card:focus-visible { transform: translateY(-5px) rotate(-.3deg); box-shadow: var(--shadow); }
.quick-card.peach { background: var(--peach-soft); }
.quick-card.mint { background: var(--mint); }
.quick-card.lilac { background: var(--lilac); }
.quick-icon { width: 56px; height: 56px; flex: none; display: grid; place-items: center; border-radius: 18px; background: rgba(255,255,255,.62); font-size: 1.55rem; color: var(--gold); }
.quick-card span:last-child { display: grid; }
.quick-card small { color: var(--ink-soft); margin-top: 2px; }

.section-heading { margin-bottom: 34px; }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .cta-banner h2, .planner h2, .story-card h2, .family-card h2, .requirements-band h2, .career-form-wrap h2, .download-kit h2 { margin: 10px 0 12px; font-family: var(--serif); font-size: clamp(2.2rem, 4.8vw, 4.2rem); font-weight: 500; line-height: 1.04; letter-spacing: -.035em; }
.section-heading p { color: var(--ink-soft); }
.home-services { padding-bottom: 110px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 390px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--paper); overflow: hidden; box-shadow: var(--shadow-small); }
.service-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -80px; bottom: -80px; border-radius: 50%; background: var(--mint); opacity: .45; }
.life-card::after { background: var(--gold-soft); }
.support-card::after { background: var(--peach); }
.service-icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 24px; margin-bottom: 24px; background: var(--mint); }
.life-card .service-icon { background: var(--gold-soft); }
.support-card .service-icon { background: var(--peach); }
.service-icon svg { width: 40px; fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.service-kicker { color: var(--gold); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.service-card h3 { margin: 8px 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.service-card p { color: var(--ink-soft); }
.text-link { position: absolute; z-index: 2; left: 30px; bottom: 28px; border: 0; background: none; padding: 0; color: var(--ink); font-weight: 800; cursor: pointer; }
.text-link span { color: var(--gold); transition: margin .2s; }
.text-link:hover span { margin-left: 5px; }

.values-band { padding: 90px 0; background: var(--ink); color: white; }
.values-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 26px; align-items: center; }
.values-grid h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.5rem, 4vw, 4.3rem); line-height: 1.02; margin: 12px 0; }
.value-pill { min-height: 180px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.06); }
.value-pill > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-soft); color: var(--ink); font-weight: 900; }
.value-pill p { margin: 24px 0 0; color: rgba(255,255,255,.76); }
.value-pill strong { color: white; }
.cta-banner { display: flex; justify-content: space-between; align-items: center; gap: 34px; margin-top: 90px; margin-bottom: 100px; padding: 50px; border-radius: var(--radius-xl); background: var(--gold-soft); }
.cta-banner p { max-width: 670px; color: var(--ink-soft); }

.page-hero { min-height: 360px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding-block: 70px 58px; }
.page-hero h1 { max-width: 900px; font-size: clamp(3.2rem, 7vw, 6.2rem); }
.page-hero p { max-width: 780px; color: var(--ink-soft); font-size: 1.12rem; }
.page-hero-badge { width: 170px; height: 170px; display: grid; place-items: center; align-content: center; border-radius: 44% 56% 54% 46%; background: var(--mint); text-align: center; transform: rotate(5deg); }
.page-hero-badge span { font-size: 2rem; color: var(--gold); }
.page-hero-badge b { line-height: 1.1; transform: rotate(-5deg); }
.flower-badge { background: var(--peach); }
.family-badge { background: var(--lilac); }
.resource-badge { background: var(--blue); }
.contact-badge { background: var(--gold-soft); }

.service-detail-grid { display: grid; gap: 26px; padding-bottom: 90px; }
.service-detail { display: grid; grid-template-columns: 100px 1fr; gap: 28px; padding: 42px; border-radius: var(--radius-xl); background: var(--paper); border: 1px solid var(--line); transition: box-shadow .25s, transform .25s; }
.service-detail.is-highlighted { box-shadow: 0 0 0 5px var(--gold-soft), var(--shadow); transform: translateY(-3px); }
.detail-number { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 26px; background: var(--mint); color: var(--gold); font-family: var(--serif); font-size: 1.9rem; }
.service-detail:nth-child(2) .detail-number { background: var(--gold-soft); }
.service-detail:nth-child(3) .detail-number { background: var(--peach); }
.service-detail h2 { margin: 8px 0 12px; font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3.7rem); font-weight: 500; line-height: 1.05; }
.service-detail p { color: var(--ink-soft); max-width: 900px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0; }
.chip-row span { padding: 7px 12px; border-radius: 999px; background: var(--mint); font-size: .82rem; font-weight: 800; }
details { border-top: 1px solid var(--line); padding-top: 16px; }
summary { cursor: pointer; font-weight: 850; }
details ul { color: var(--ink-soft); }

.planner { margin-bottom: 40px; padding: 46px; border-radius: var(--radius-xl); background: linear-gradient(145deg, var(--lilac), var(--peach-soft)); }
.planner-intro { max-width: 800px; }
.planner-form { margin-top: 30px; }
.planner-form fieldset, .checkbox-fieldset { border: 0; padding: 0; margin: 0 0 28px; }
.planner-form legend, .checkbox-fieldset legend { margin-bottom: 14px; font-weight: 900; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.choice-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card > span { display: grid; min-height: 106px; align-content: center; padding: 17px; border: 2px solid transparent; border-radius: var(--radius-md); background: rgba(255,255,255,.72); transition: .18s; }
.choice-card small { color: var(--ink-soft); margin-top: 4px; }
.choice-card input:checked + span { border-color: var(--gold); background: white; box-shadow: var(--shadow-small); transform: translateY(-2px); }
.choice-card input:focus-visible + span { outline: 3px solid rgba(178,123,32,.28); }
.chip-select-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-select-row label { cursor: pointer; }
.chip-select-row input { position: absolute; opacity: 0; }
.chip-select-row span { display: inline-flex; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.68); font-weight: 750; }
.chip-select-row input:checked + span { background: var(--ink); color: white; }
.planner-result { margin-top: 24px; padding: 26px; border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-small); }
.planner-result h3 { font-family: var(--serif); font-size: 2rem; font-weight: 500; margin: 0 0 10px; }
.fine-print { margin-bottom: 90px; padding: 20px 24px; border-left: 4px solid var(--gold); background: var(--paper); color: var(--ink-soft); }

.intake-hero { padding-bottom: 30px; }
.privacy-badge { width: 180px; height: 140px; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; padding: 20px; border-radius: var(--radius-xl); background: var(--mint); transform: rotate(2deg); }
.privacy-badge span { font-size: 2rem; }
.privacy-badge b { line-height: 1.2; }
.intake-layout { display: grid; grid-template-columns: 330px 1fr; gap: 30px; padding-bottom: 100px; }
.intake-sidebar { align-self: start; position: sticky; top: 116px; padding: 28px; border-radius: var(--radius-xl); background: var(--ink); color: white; }
.intake-sidebar h2 { margin: 0 0 24px; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.intake-sidebar ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.intake-sidebar li { display: flex; gap: 12px; }
.intake-sidebar li > span { flex: none; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-soft); color: var(--ink); font-weight: 900; }
.intake-sidebar li div { display: grid; }
.intake-sidebar li small { color: rgba(255,255,255,.66); }
.sidebar-note { margin-top: 28px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.78); font-size: .88rem; }
.intake-card { padding: 36px; border-radius: var(--radius-xl); background: var(--paper); box-shadow: var(--shadow); }
.form-progress { margin-bottom: 36px; }
.progress-track { display: block; height: 8px; background: var(--mint); border-radius: 999px; overflow: hidden; }
.progress-track > span { display: block; width: 25%; height: 100%; border-radius: inherit; background: var(--gold); transition: width .3s; }
.progress-labels { display: flex; justify-content: space-between; margin-top: 8px; color: var(--ink-soft); font-size: .76rem; font-weight: 750; }
.progress-labels .is-current { color: var(--gold); }
.form-heading { margin-bottom: 28px; }
.form-heading > span { color: var(--gold); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.form-heading h2 { margin: 5px 0; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.3rem); font-weight: 500; line-height: 1.05; }
.form-heading p { color: var(--ink-soft); }
.form-grid { display: grid; gap: 18px; }
.form-grid.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid .full { grid-column: 1 / -1; }
form > label, .form-step > label, .form-grid > label { display: grid; gap: 7px; margin-bottom: 18px; font-weight: 800; }
label small { font-weight: 500; color: var(--ink-soft); }
input, select, textarea { width: 100%; border: 1px solid rgba(23,51,44,.18); border-radius: 14px; background: white; padding: 12px 14px; color: var(--ink); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(178,123,32,.12); }
textarea { resize: vertical; }
.inline-options { display: flex; flex-wrap: wrap; gap: 12px; }
.inline-options label { display: flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px; background: var(--mint); font-weight: 750; }
.inline-options input, .consent-line input { width: auto; }
.form-controls { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.form-error { margin-top: 18px; padding: 12px 16px; border-radius: 14px; background: #fff0ec; color: #8e3529; font-weight: 750; }
.review-box { display: grid; gap: 12px; margin-bottom: 22px; }
.review-row { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.review-row strong { color: var(--ink-soft); }
.consent-line { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px !important; font-weight: 550 !important; }
.consent-line input { margin-top: 5px; }
.demo-alert { margin-top: 18px; padding: 16px 18px; border-radius: 16px; background: var(--gold-soft); color: var(--ink-soft); }
.success-card { text-align: center; padding: 34px; }
.success-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: var(--mint); color: var(--sage-dark); font-size: 2rem; font-weight: 900; }
.success-card h2 { font-family: var(--serif); font-size: 2.8rem; font-weight: 500; margin: 0 0 12px; }
.success-card .hero-actions { justify-content: center; }

.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; padding-bottom: 90px; }
.story-card { padding: 44px; border-radius: var(--radius-xl); background: var(--gold-soft); }
.story-card p { color: var(--ink-soft); }
.story-card p + p { margin-top: 18px; }
.placeholder-note { padding: 14px; border-radius: 14px; background: rgba(255,255,255,.56); font-size: .9rem; }
.mission-stack { display: grid; gap: 16px; }
.mission-stack article { display: grid; grid-template-columns: 58px 1fr; gap: 16px; align-items: start; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.mission-stack article > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 18px; background: var(--mint); color: var(--gold); font-size: 1.5rem; }
.mission-stack h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.mission-stack p { margin: 0; color: var(--ink-soft); }
.values-section { padding-bottom: 100px; }
.values-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.values-card-grid article { padding: 28px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
.values-card-grid article:nth-child(2) { background: var(--mint); }
.values-card-grid article:nth-child(3) { background: var(--peach-soft); }
.values-card-grid article:nth-child(4) { background: var(--lilac); }
.values-card-grid span { color: var(--gold); font-family: var(--serif); font-size: 1.5rem; }
.values-card-grid h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.values-card-grid p { color: var(--ink-soft); }
.team-placeholder { display: grid; grid-template-columns: .75fr 1.25fr; gap: 34px; align-items: center; margin-bottom: 100px; padding: 45px; border-radius: var(--radius-xl); background: var(--mint); }
.team-placeholder h2 { font-family: var(--serif); font-size: 3.2rem; font-weight: 500; line-height: 1.02; margin: 10px 0; }
.team-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.team-cards article { padding: 16px; border-radius: 20px; background: rgba(255,255,255,.74); text-align: center; }
.photo-placeholder { aspect-ratio: 1; display: grid; place-items: center; border-radius: 20px; background: var(--paper); border: 2px dashed var(--sage); color: var(--sage-dark); }
.team-cards h3 { margin: 12px 0 0; font-family: var(--serif); font-weight: 500; }
.team-cards p { margin: 4px 0; color: var(--ink-soft); font-size: .85rem; }

.journey { padding-bottom: 90px; }
.journey-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.journey-line::before { content: ""; position: absolute; top: 31px; left: 10%; right: 10%; height: 2px; background: var(--gold-soft); }
.journey-line article { position: relative; padding: 0 14px; text-align: center; }
.journey-line span { position: relative; z-index: 1; width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: var(--ink); color: white; font-family: var(--serif); font-size: 1.4rem; }
.journey-line h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin: 0; }
.journey-line p { color: var(--ink-soft); }
.family-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding-bottom: 90px; }
.family-card { padding: 36px; border-radius: var(--radius-xl); background: var(--peach-soft); }
.family-card.alt { background: var(--mint); }
.check-list { list-style: none; padding: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--gold); font-weight: 900; }
.faq-section { padding-bottom: 100px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 20px 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.faq-list summary { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.faq-list p { color: var(--ink-soft); }

.careers-hero { min-height: 500px; }
.career-orbit { position: relative; width: 250px; height: 250px; display: grid; place-items: center; border-radius: 50%; background: var(--peach); }
.career-orbit b { width: 100px; height: 100px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-family: var(--serif); font-size: 2rem; }
.career-orbit span { position: absolute; padding: 8px 13px; border-radius: 999px; background: var(--paper); font-weight: 800; box-shadow: var(--shadow-small); }
.career-orbit span:nth-child(1) { top: 15px; left: -5px; transform: rotate(-8deg); }
.career-orbit span:nth-child(2) { right: -15px; top: 78px; transform: rotate(7deg); }
.career-orbit span:nth-child(3) { bottom: 24px; left: 4px; transform: rotate(5deg); }
.job-benefits { padding-bottom: 90px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-grid article { padding: 28px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
.benefit-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: var(--mint); color: var(--gold); font-size: 1.4rem; }
.benefit-grid article:nth-child(2) > span { background: var(--gold-soft); }
.benefit-grid article:nth-child(3) > span { background: var(--lilac); }
.benefit-grid article:nth-child(4) > span { background: var(--peach); }
.benefit-grid h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.benefit-grid p { color: var(--ink-soft); }
.roles { padding-bottom: 80px; }
.role-list { display: grid; gap: 14px; }
.role-list article { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
.role-tag { color: var(--gold); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.role-list h3 { margin: 4px 0; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.role-list p { margin: 0; color: var(--ink-soft); }
.requirements-band { background: var(--ink); color: white; padding: 80px 0; }
.requirements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.light-list li { color: rgba(255,255,255,.82); }
.light-list li::before { background: var(--gold-soft); color: var(--ink); }
.career-form-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; padding-block: 90px 110px; }
.career-form { padding: 32px; border-radius: var(--radius-xl); background: var(--lilac); }

.resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-bottom: 90px; }
.resource-card { min-height: 280px; display: flex; flex-direction: column; padding: 25px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--paper); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.resource-card:hover, .resource-card:focus-visible { transform: translateY(-5px); box-shadow: var(--shadow); }
.resource-card > span { align-self: flex-start; padding: 5px 9px; border-radius: 999px; background: var(--mint); color: var(--gold); font-weight: 900; font-size: .76rem; }
.resource-card:nth-child(2n) > span { background: var(--gold-soft); }
.resource-card:nth-child(3n) > span { background: var(--peach); }
.resource-card h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; line-height: 1.12; }
.resource-card p { color: var(--ink-soft); font-size: .92rem; }
.resource-card > b { margin-top: auto; color: var(--gold); }
.download-kit { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 100px; padding: 40px; border-radius: var(--radius-xl); background: var(--mint); }
.download-list { display: grid; gap: 10px; }
.download-list button { display: flex; justify-content: space-between; align-items: center; padding: 17px; border: 0; border-radius: 14px; background: rgba(255,255,255,.68); text-align: left; font-weight: 850; }
.download-list span { color: var(--ink-soft); font-size: .75rem; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; padding-bottom: 80px; }
.contact-cards { display: grid; gap: 14px; }
.contact-cards article { display: grid; grid-template-columns: 60px 1fr; gap: 15px; align-items: center; padding: 22px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
.contact-cards article > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--mint); color: var(--gold); font-size: 1.4rem; }
.contact-cards article:nth-child(2) > span { background: var(--gold-soft); }
.contact-cards article:nth-child(3) > span { background: var(--peach); }
.contact-cards article:nth-child(4) > span { background: var(--lilac); }
.contact-cards small { color: var(--gold); font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.contact-cards h2 { margin: 4px 0; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.contact-cards p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.contact-form { padding: 34px; border-radius: var(--radius-xl); background: var(--peach-soft); }
.emergency-note { display: flex; gap: 16px; align-items: center; margin-bottom: 100px; padding: 22px; border-radius: var(--radius-lg); background: var(--gold-soft); }
.emergency-note > span { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-weight: 900; }
.emergency-note p { margin: 0; }

.site-footer { background: #102720; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr 1.4fr; gap: 40px; padding-block: 60px; }
.footer-brand img { width: 170px; border-radius: 28px; }
.footer-brand p { color: var(--gold-soft); font-family: var(--serif); font-style: italic; font-size: 1.2rem; }
.site-footer h2 { margin: 0 0 15px; color: var(--gold-soft); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
.site-footer button, .site-footer a { display: block; border: 0; background: none; padding: 4px 0; color: rgba(255,255,255,.78); text-decoration: none; cursor: pointer; }
.site-footer button:hover, .site-footer a:hover { color: white; }
.footer-note p { color: rgba(255,255,255,.62); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 20px 28px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.52); font-size: .76rem; }

.toast { position: fixed; z-index: 500; left: 50%; bottom: 26px; transform: translate(-50%, 130%); padding: 12px 18px; border-radius: 999px; background: var(--ink); color: white; box-shadow: var(--shadow); transition: transform .25s; }
.toast.is-visible { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

body.easy-read { font-size: 1.1rem; }
body.easy-read p, body.easy-read li, body.easy-read small { line-height: 1.85; }
body.easy-read .tab-button { font-size: .9rem; }
body.easy-read .accessibility-toggle { background: var(--gold-soft); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto auto; }
  .menu-toggle { display: block; justify-self: end; }
  .tab-nav { position: absolute; top: 82px; left: 18px; right: 18px; display: none; padding: 14px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: var(--shadow); }
  .tab-nav.is-open { display: block; }
  .tab-list { display: grid; grid-template-columns: repeat(4, 1fr); }
  .accessibility-toggle { justify-self: end; }
  .hero { min-height: auto; padding-top: 58px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-grid > div:first-child { grid-column: 1 / -1; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .values-card-grid, .benefit-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .site-header { min-height: 74px; padding: 8px 16px; gap: 8px; }
  .brand-logo { width: 52px; height: 52px; border-radius: 15px; }
  .brand-copy { display: none; }
  .tab-nav { top: 70px; }
  .tab-list { grid-template-columns: repeat(2, 1fr); }
  .hero, .story-grid, .team-placeholder, .career-form-wrap, .contact-layout, .download-kit { grid-template-columns: 1fr; }
  .hero { gap: 20px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .trust-row { justify-content: center; }
  .hero-art { order: -1; }
  .logo-orbit { width: min(90vw, 430px); }
  .quick-links, .service-grid { grid-template-columns: 1fr; }
  .quick-links { margin-bottom: 75px; }
  .service-card { min-height: 350px; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 34px; }
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-badge, .career-orbit, .privacy-badge { display: none; }
  .service-detail { grid-template-columns: 1fr; padding: 28px; }
  .intake-layout { grid-template-columns: 1fr; }
  .intake-sidebar { position: static; }
  .team-cards { grid-template-columns: repeat(3, 1fr); }
  .journey-line { grid-template-columns: 1fr 1fr; gap: 32px; }
  .journey-line::before { display: none; }
  .family-grid, .requirements-grid { grid-template-columns: 1fr; }
  .role-list article { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .section-wrap { width: min(100% - 24px, 1180px); }
  .hero-copy h1, .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .hero { padding-top: 36px; }
  .logo-orbit { width: 320px; }
  .quick-card { min-height: 96px; }
  .values-grid, .choice-grid, .choice-grid.two, .values-card-grid, .benefit-grid, .resource-grid, .family-grid, .form-grid.two-col, .team-cards { grid-template-columns: 1fr; }
  .planner, .intake-card, .story-card, .family-card, .contact-form, .career-form, .download-kit { padding: 24px; }
  .review-row { grid-template-columns: 1fr; gap: 2px; }
  .journey-line { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand img { width: 140px; }
  .form-controls { flex-direction: column-reverse; }
  .form-controls .button { width: 100%; }
}

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

@media print {
  .site-header, .site-footer, .intake-sidebar, .form-progress, .form-controls, .demo-alert, .toast { display: none !important; }
  body { background: white; }
  .tab-panel { display: none !important; }
  #panel-intake { display: block !important; }
  .page-hero { min-height: auto; padding: 10px 0; }
  .intake-layout { display: block; }
  .intake-card { box-shadow: none; border: 0; padding: 0; }
  #intake-form { display: none !important; }
  #intake-success { display: block !important; }
  .success-card .hero-actions { display: none; }
}

/* Photography system */
.hero-photo-collage {
  position: relative;
  min-height: 610px;
  align-content: center;
  isolation: isolate;
}
.hero-photo {
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 253, 249, .94);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(40, 65, 54, .17);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-main {
  width: min(76%, 390px);
  aspect-ratio: 350 / 426;
  transform: translate(-12%, -4%) rotate(-2.2deg);
}
.hero-photo-secondary {
  position: absolute;
  z-index: 2;
  width: min(55%, 280px);
  aspect-ratio: 350 / 426;
  right: 0;
  bottom: 1%;
  transform: rotate(3deg);
}
.hero-logo-chip {
  position: absolute;
  z-index: 3;
  left: 3%;
  bottom: 2%;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 265px;
  padding: 11px 16px 11px 11px;
  border: 1px solid rgba(178, 123, 32, .2);
  border-radius: 999px;
  background: rgba(255, 253, 249, .94);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(10px);
  color: var(--sage-dark);
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.2;
}
.hero-logo-chip img {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 15px;
  object-fit: cover;
}
.photo-spark {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: var(--shadow-small);
  animation: float 5.5s ease-in-out infinite;
}
.photo-spark-one {
  width: 58px;
  height: 58px;
  right: 8%;
  top: 5%;
  background: var(--gold-soft);
  color: var(--gold);
}
.photo-spark-two {
  width: 48px;
  height: 48px;
  left: 2%;
  top: 26%;
  background: var(--mint);
  color: var(--sage-dark);
  animation-delay: -2s;
}

.service-detail {
  grid-template-columns: 82px minmax(220px, 290px) 1fr;
  align-items: center;
}
.service-detail-photo {
  position: relative;
  margin: 0;
  height: 300px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--mint);
  box-shadow: var(--shadow-small);
}
.service-detail-photo::after,
.page-hero-photo::after,
.story-photo::after,
.team-showcase-photo::after,
.family-photo-band figure::after,
.contact-photo-note::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,.08), transparent 45%, rgba(23,51,44,.06));
  mix-blend-mode: soft-light;
}
.service-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#service-respite .service-detail-photo img { object-position: center 45%; }
#service-life-skills .service-detail-photo img { object-position: center 40%; }
#service-personal-supports .service-detail-photo img { object-position: center 38%; }

.page-hero-photo {
  position: relative;
  width: clamp(230px, 26vw, 330px);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--paper);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,253,249,.9);
  box-shadow: var(--shadow-small);
  text-align: center;
  color: var(--sage-dark);
  font-weight: 800;
  font-size: .8rem;
  backdrop-filter: blur(10px);
}
.intake-photo img { object-position: center top; }
.careers-photo { width: clamp(260px, 30vw, 370px); }
.careers-photo img { object-position: center 20%; }

.story-card {
  overflow: hidden;
}
.story-photo {
  position: relative;
  width: calc(100% + 64px);
  height: 360px;
  margin: 26px -32px 30px;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.team-showcase {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
  padding-bottom: 110px;
}
.team-showcase-photo {
  position: relative;
  margin: 0;
  height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--mint);
  box-shadow: var(--shadow);
}
.team-showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.team-showcase-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(16,39,32,.82);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}
.team-showcase-copy h2,
.family-photo-band h2,
.contact-photo-note h2 {
  margin: 10px 0 14px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.team-showcase-copy p,
.family-photo-band p,
.contact-photo-note p {
  color: var(--ink-soft);
}
.team-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 28px;
}
.team-traits span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--sage-dark);
  font-size: .82rem;
  font-weight: 850;
}
.team-traits span:nth-child(2) { background: var(--gold-soft); }
.team-traits span:nth-child(3) { background: var(--peach); }
.team-traits span:nth-child(4) { background: var(--lilac); }

.family-photo-band {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 96px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-small);
}
.family-photo-band figure {
  position: relative;
  height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: 25px;
}
.family-photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.family-photo-band > div { padding: 20px 28px 20px 6px; }

.contact-photo-note {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 370px) 1fr;
  gap: 40px;
  align-items: center;
  min-height: 420px;
  margin-bottom: 70px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--mint);
}
.contact-photo-note > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 32%;
}
.contact-photo-note > div {
  position: relative;
  z-index: 2;
  padding: 40px 52px 40px 0;
}

@media (max-width: 1080px) {
  .service-detail { grid-template-columns: 76px minmax(190px, 240px) 1fr; gap: 22px; }
  .service-detail-photo { height: 270px; }
  .team-showcase { gap: 34px; }
}

@media (max-width: 820px) {
  .hero-photo-collage { min-height: 520px; width: min(100%, 580px); margin-inline: auto; }
  .hero-photo-main { transform: translate(-8%, -2%) rotate(-2deg); }
  .hero-photo-secondary { right: 3%; }
  .service-detail { grid-template-columns: 76px 1fr; align-items: start; }
  .service-detail-photo { grid-column: 2; height: 360px; }
  .service-detail > div:last-child { grid-column: 1 / -1; }
  .page-hero-photo { display: block; width: min(100%, 430px); justify-self: center; }
  .team-showcase, .family-photo-band, .contact-photo-note { grid-template-columns: 1fr; }
  .team-showcase-photo { height: 560px; }
  .family-photo-band figure { height: 420px; }
  .family-photo-band > div { padding: 8px 12px 18px; }
  .contact-photo-note { padding-bottom: 30px; }
  .contact-photo-note > img { min-height: 420px; max-height: 520px; }
  .contact-photo-note > div { padding: 8px 28px 10px; }
}

@media (max-width: 560px) {
  .hero-photo-collage { min-height: 420px; }
  .hero-photo { border-width: 5px; border-radius: 25px; }
  .hero-photo-main { width: 72%; transform: translate(-5%, -3%) rotate(-2deg); }
  .hero-photo-secondary { width: 52%; right: 1%; bottom: 3%; }
  .hero-logo-chip { left: 1%; bottom: 0; max-width: 230px; font-size: .82rem; }
  .hero-logo-chip img { width: 44px; height: 44px; }
  .photo-spark-one { width: 46px; height: 46px; }
  .photo-spark-two { width: 38px; height: 38px; }
  .service-detail { grid-template-columns: 58px 1fr; gap: 14px; }
  .service-detail-photo { grid-column: 1 / -1; height: 360px; }
  .detail-number { width: 58px; height: 58px; border-radius: 19px; font-size: 1.45rem; }
  .story-photo { width: calc(100% + 48px); height: 330px; margin-inline: -24px; }
  .team-showcase-photo { height: 500px; }
  .family-photo-band { padding: 16px; }
  .family-photo-band figure { height: 380px; }
  .contact-photo-note > img { min-height: 360px; }
}

/* Keep the empty status toast fully out of view until it contains a message. */
.toast { opacity: 0; visibility: hidden; pointer-events: none; }
.toast.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
