@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Nunito:wght@600;700;800;900&display=swap");

:root {
  --teal: #1fa9ad;
  --teal-dark: #0b7d82;
  --teal-deep: #075e63;
  --red: #ef2638;
  --red-dark: #c91d2d;
  --green: #68c52a;
  --green-dark: #2f760d;
  --yellow: #ffb51b;
  --yellow-deep: #9b6600;
  --white: #ffffff;
  --cream: #fffdf7;
  --charcoal: #263238;
  --muted: #5f6e73;
  --line: #d9e7e7;
  --light-teal: #eaf8f8;
  --light-green: #f1f9e9;
  --light-yellow: #fff6da;
  --light-red: #fff0f2;
  --shadow-sm: 0 8px 24px rgba(18, 77, 79, 0.08);
  --shadow: 0 18px 54px rgba(18, 77, 79, 0.12);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --font-body: "DM Sans", Inter, system-ui, sans-serif;
  --font-display: "Nunito", ui-rounded, "Arial Rounded MT Bold", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body), "DM Sans", Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display), Nunito, ui-rounded, "Arial Rounded MT Bold", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(3rem, 6vw, 5.55rem); font-weight: 850; }
h2 { font-size: clamp(2.35rem, 4.2vw, 4rem); font-weight: 820; }
h3 { font-size: 1.35rem; font-weight: 800; }
p { margin: 0; }

::selection { background: var(--yellow); color: var(--charcoal); }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  border-radius: 10px;
  background: var(--charcoal);
  color: white;
  padding: .75rem 1rem;
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: clamp(76px, 9vw, 124px) 0; }

.announcement { background: var(--teal-deep); color: white; font-size: .9rem; }
.announcement-inner { min-height: 39px; display: flex; align-items: center; justify-content: center; gap: .55rem; }
.announcement svg { width: 17px; height: 17px; color: var(--yellow); }
.announcement a { display: inline-flex; align-items: center; gap: .35rem; margin-left: .4rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.announcement a svg { width: 14px; color: white; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(31, 169, 173, .14);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 5px 24px rgba(12, 67, 69, .05);
  backdrop-filter: blur(14px);
}

.header-inner { min-height: 86px; display: flex; align-items: center; gap: 2.25rem; }
.brand { display: block; flex: 0 0 auto; width: 155px; height: 70px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; align-items: stretch; justify-content: center; gap: .2rem; margin-left: auto; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: flex; align-items: center; gap: .25rem; padding: 1rem .66rem; font-size: .91rem; font-weight: 750; color: #3b4b50; white-space: nowrap; }
.nav-item > a svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-item > a::after { content: ""; position: absolute; height: 3px; left: .7rem; right: .7rem; bottom: 5px; border-radius: 100px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-item > a:hover, .nav-item > a.active { color: var(--teal-dark); }
.nav-item > a:hover::after, .nav-item > a.active::after { transform: scaleX(1); }
.nav-item:hover > a svg, .nav-item:focus-within > a svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% - 4px); left: 0; min-width: 215px; padding: .55rem; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; border-radius: 10px; padding: .7rem .8rem; font-size: .91rem; font-weight: 700; }
.dropdown a:hover, .dropdown a:focus { background: var(--light-teal); color: var(--teal-deep); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.menu-button { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--light-teal); cursor: pointer; }
.menu-button svg { width: 24px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: .78rem 1.3rem;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(18, 77, 79, .17); }
.button svg { width: 19px; height: 19px; }
.button-small { min-height: 45px; padding: .65rem 1rem; font-size: .92rem; }
.button-teal { background: var(--teal-dark); color: white; }
.button-teal:hover { background: var(--teal-deep); }
.button-red { background: var(--red-dark); color: white; }
.button-red:hover { background: #a91424; }
.button-yellow { background: var(--yellow); color: #362600; }
.button-yellow:hover { background: #ffc23f; }
.button-outline { border-color: var(--teal); background: white; color: var(--teal-deep); }
.button-outline:hover { background: var(--light-teal); }
.button-outline-light { border-color: rgba(255, 255, 255, .65); color: white; }
.button-outline-light:hover { background: rgba(255, 255, 255, .12); }
.button[disabled] { cursor: not-allowed; opacity: .62; transform: none; box-shadow: none; }

.mobile-drawer { position: fixed; z-index: 1200; inset: 0; visibility: hidden; pointer-events: none; }
.mobile-drawer.open { visibility: visible; pointer-events: auto; }
.drawer-backdrop { position: absolute; inset: 0; border: 0; background: rgba(10, 39, 41, .55); opacity: 0; transition: opacity .25s; }
.open .drawer-backdrop { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; width: min(88vw, 390px); height: 100%; overflow-y: auto; padding: 1.25rem; background: white; transform: translateX(105%); transition: transform .28s ease; }
.open .drawer-panel { transform: translateX(0); }
.drawer-heading { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 1rem; margin-bottom: .55rem; color: var(--teal-deep); font-family: var(--font-display), sans-serif; font-size: 1.35rem; font-weight: 850; }
.drawer-heading button { display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--light-teal); cursor: pointer; }
.drawer-heading svg { width: 22px; }
.drawer-panel > a, .drawer-panel summary { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #edf2f2; padding: .9rem .3rem; font-size: 1.04rem; font-weight: 800; cursor: pointer; list-style: none; }
.drawer-panel summary::-webkit-details-marker { display: none; }
.drawer-panel summary svg { width: 17px; transition: transform .2s; }
.drawer-panel details[open] summary svg { transform: rotate(180deg); }
.drawer-panel details > a { display: block; border-bottom: 1px solid #edf2f2; padding: .72rem .7rem .72rem 1rem; color: var(--muted); font-weight: 650; }
.drawer-panel .drawer-donate { justify-content: center; margin-top: 1.2rem; border: 0; color: white; }

.eyebrow { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .78rem; font-weight: 900; letter-spacing: .12em; line-height: 1.3; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 27px; height: 4px; border-radius: 99px; background: currentColor; transform: rotate(-3deg); }
.eyebrow-teal { color: var(--teal-dark); }
.eyebrow-green { color: var(--green-dark); }
.eyebrow-red { color: var(--red-dark); }
.eyebrow-yellow { color: var(--yellow-deep); }

.home-hero { position: relative; overflow: hidden; padding: clamp(42px, 5.5vw, 76px) 0 clamp(64px, 7vw, 96px); background: linear-gradient(110deg, var(--cream) 0 55%, var(--light-teal) 55% 100%); }
.home-hero::after { content: ""; position: absolute; left: -5%; right: -5%; bottom: -38px; height: 75px; border-radius: 50%; background: var(--cream); }
.hero-blob { position: absolute; width: 450px; height: 450px; border: 55px solid rgba(255, 181, 27, .16); border-radius: 50%; right: -160px; top: -180px; }
.home-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(40px, 6vw, 80px); }
.home-hero-copy { padding: 1rem 0; }
.home-hero-copy h1 { max-width: 660px; }
.home-hero-copy h1 span { position: relative; display: block; color: var(--teal-dark); }
.home-hero-copy h1 span::after { content: ""; display: block; width: 88%; height: 9px; margin: .15rem 0 0 3%; border-radius: 50%; background: var(--yellow); transform: rotate(-1.2deg) skewX(-12deg); opacity: .8; }
.home-hero-copy > p { max-width: 635px; margin-top: 1.5rem; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.85rem; }
.hero-trust { display: flex; max-width: 565px; align-items: flex-start; gap: .65rem; margin-top: 1.4rem; color: #53656a; font-size: .88rem; line-height: 1.5; }
.hero-trust svg { flex: 0 0 auto; width: 21px; color: var(--green-dark); }
.hero-photo-wrap { position: relative; min-width: 0; }
.hero-photo { position: relative; aspect-ratio: 1.12; overflow: hidden; border: 9px solid white; border-radius: 44% 16% 36% 18% / 25% 30% 20% 35%; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-note { position: absolute; bottom: 6%; left: -7%; display: flex; align-items: center; gap: .65rem; border: 5px solid white; border-radius: 18px; background: var(--yellow); padding: .8rem 1rem; box-shadow: var(--shadow-sm); font-family: var(--font-display), sans-serif; font-size: 1.02rem; line-height: 1.2; transform: rotate(-2deg); }
.hero-note svg { width: 31px; color: #895800; }
.hero-heart { position: absolute; top: 7%; right: -2%; display: grid; width: 55px; height: 55px; place-items: center; border-radius: 50%; background: var(--red); color: white; box-shadow: 0 8px 22px rgba(239, 38, 56, .25); transform: rotate(9deg); }
.hero-heart svg { width: 27px; }

.mission-intro { background: var(--cream); }
.mission-grid { display: grid; grid-template-columns: 160px 1.15fr .85fr; align-items: center; gap: clamp(30px, 5vw, 72px); }
.mission-mark { position: relative; display: grid; width: 138px; height: 138px; place-items: center; border-radius: 50% 42% 48% 35%; background: var(--light-teal); color: var(--teal-dark); transform: rotate(-3deg); }
.mission-mark > svg { width: 70px; height: 70px; }
.mission-mark span { position: absolute; right: 0; top: -3px; display: grid; width: 46px; height: 46px; place-items: center; border: 4px solid white; border-radius: 50%; background: var(--red); color: white; }
.mission-mark span svg { width: 22px; }
.mission-grid h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.mission-copy { border-left: 1px solid var(--line); padding-left: clamp(24px, 4vw, 54px); }
.mission-copy p { color: var(--muted); font-size: 1.07rem; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.25rem; color: var(--teal-deep); font-weight: 900; }
.text-link svg { width: 17px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }

.programs-preview { position: relative; background: var(--light-teal); }
.programs-preview::before { content: ""; position: absolute; inset: 0; opacity: .27; background-image: radial-gradient(var(--teal) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent); }
.programs-preview .container { position: relative; }
.section-heading { max-width: 720px; margin-bottom: clamp(35px, 5vw, 58px); }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { margin-bottom: 1.15rem; }
.section-heading > p { color: var(--muted); font-size: 1.07rem; line-height: 1.75; }
.program-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.program-card { position: relative; min-height: 360px; overflow: hidden; border: 1px solid rgba(31, 169, 173, .18); border-radius: var(--radius); background: white; padding: 1.55rem; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.program-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card-number { position: absolute; right: 1.2rem; top: .7rem; color: #e5f2f2; font-family: var(--font-display), sans-serif; font-size: 3.7rem; font-weight: 950; line-height: 1; }
.icon-badge { position: relative; display: grid; width: 60px; height: 60px; place-items: center; border-radius: 18px 18px 24px 14px; }
.icon-badge svg { width: 29px; height: 29px; }
.icon-teal { background: var(--light-teal); color: var(--teal-dark); }
.icon-green { background: var(--light-green); color: var(--green-dark); }
.icon-yellow { background: var(--light-yellow); color: var(--yellow-deep); }
.icon-red { background: var(--light-red); color: var(--red-dark); }
.program-card h3 { margin: 1.4rem 0 .8rem; }
.program-card > p { color: var(--muted); font-size: .96rem; line-height: 1.7; }
.program-card .text-link { position: absolute; left: 1.55rem; bottom: 1.45rem; font-size: .9rem; }

.how-help { background: white; }
.how-grid { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: clamp(45px, 7vw, 92px); }
.how-photo { position: relative; aspect-ratio: .9; overflow: hidden; border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm); box-shadow: var(--shadow); }
.how-photo::after { content: ""; position: absolute; inset: 0; border: 9px solid rgba(255, 255, 255, .85); border-radius: inherit; pointer-events: none; }
.how-photo img { object-fit: cover; }
.photo-label { position: absolute; z-index: 1; right: 1.1rem; bottom: 1.1rem; display: flex; align-items: center; gap: .45rem; border-radius: 999px; background: rgba(255,255,255,.92); padding: .55rem .8rem; color: var(--muted); font-size: .75rem; font-weight: 800; }
.photo-label svg { width: 16px; color: var(--red); }
.steps-list { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.steps-list::before { content: ""; position: absolute; left: 24px; top: 28px; bottom: 28px; width: 2px; background: repeating-linear-gradient(to bottom, var(--teal) 0 7px, transparent 7px 13px); }
.steps-list li { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 1rem; padding: .4rem 0 1.45rem; }
.steps-list li > span { z-index: 1; display: grid; width: 50px; height: 50px; place-items: center; border: 4px solid white; border-radius: 50%; background: var(--teal); color: white; box-shadow: 0 0 0 2px var(--teal); font-family: var(--font-display), sans-serif; font-weight: 900; }
.steps-list li:nth-child(2) > span { background: var(--green); box-shadow: 0 0 0 2px var(--green); }
.steps-list li:nth-child(3) > span { background: var(--yellow); box-shadow: 0 0 0 2px var(--yellow); color: #593b00; }
.steps-list h3 { margin: .1rem 0 .35rem; }
.steps-list p { color: var(--muted); }

.serve-section { background: var(--light-yellow); }
.serve-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(45px, 7vw, 90px); }
.serve-details { border: 1px solid rgba(255, 181, 27, .45); border-radius: var(--radius); background: white; padding: clamp(22px, 4vw, 38px); box-shadow: var(--shadow-sm); }
.serve-details dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; }
.serve-details dl div { border-bottom: 1px solid #ece7d8; padding: 1rem .65rem; }
.serve-details dl div:nth-last-child(-n+2) { border-bottom: 0; }
.serve-details dt { color: var(--muted); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.serve-details dd { margin: .25rem 0 0; color: var(--charcoal); font-family: var(--font-display), sans-serif; font-size: 1.05rem; font-weight: 800; }
.serve-details > p { display: flex; align-items: flex-start; gap: .6rem; border-radius: 12px; background: var(--light-teal); padding: .8rem; margin-top: 1.1rem; color: var(--teal-deep); font-size: .83rem; }
.serve-details > p svg { flex: 0 0 auto; width: 18px; }

.help-section { background: var(--cream); }
.help-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.help-card { min-height: 285px; border: 1px solid var(--line); border-radius: var(--radius); background: white; padding: 1.45rem; box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s; }
.help-card:hover { transform: translateY(-6px) rotate(-.3deg); border-color: var(--teal); }
.help-card h3 { margin: 1.25rem 0 .65rem; }
.help-card p { color: var(--muted); font-size: .94rem; }
.help-card > span { display: flex; align-items: center; gap: .35rem; margin-top: 1.1rem; color: var(--teal-deep); font-weight: 850; }
.help-card > span svg { width: 17px; }

.stories-section { background: white; }
.story-card { position: relative; display: grid; grid-template-columns: .55fr 1.45fr; align-items: center; gap: clamp(30px, 6vw, 80px); overflow: hidden; border-radius: var(--radius-lg); background: var(--light-green); padding: clamp(32px, 6vw, 72px); }
.story-art { position: relative; display: grid; width: min(100%, 270px); aspect-ratio: 1; place-items: center; border-radius: 50% 40% 45% 35%; background: var(--yellow); color: #8d5a00; transform: rotate(-4deg); }
.story-art > svg:first-child { width: 52%; height: 52%; }
.story-art > svg:last-child { position: absolute; right: -4%; bottom: 8%; width: 30%; color: var(--red); fill: white; }
.story-card h2 { max-width: 700px; font-size: clamp(2.1rem, 3.6vw, 3.5rem); }
.story-card blockquote { margin: 1.4rem 0 1.1rem; color: #3d5b32; font-family: var(--font-display), sans-serif; font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 750; line-height: 1.5; }
.story-policy { display: flex; align-items: flex-start; gap: .55rem; color: var(--muted); font-size: .86rem; }
.story-policy svg { flex: 0 0 auto; width: 19px; color: var(--green-dark); }

.cta-band { position: relative; overflow: hidden; background: var(--teal-deep); color: white; padding: clamp(64px, 7vw, 90px) 0; }
.cta-band h2 { color: white; }
.cta-band .eyebrow { color: var(--yellow); }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 2rem; }
.cta-inner > div:first-child > p { max-width: 700px; margin-top: 1rem; color: #d8f4f3; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: .75rem; }
.cta-doodle { position: absolute; opacity: .12; }
.cta-doodle svg { width: 150px; height: 150px; }
.cta-doodle-one { left: -30px; bottom: -55px; color: var(--red); transform: rotate(-12deg); }
.cta-doodle-two { right: 5%; top: -65px; color: var(--yellow); }

.contact-preview { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(40px, 7vw, 90px); }
.contact-points { display: grid; gap: .8rem; }
.contact-points p { display: flex; align-items: center; gap: .75rem; color: var(--muted); }
.contact-points p > svg { width: 24px; color: var(--teal-dark); }
.contact-points strong { display: block; color: var(--charcoal); }

.form-card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); background: white; padding: clamp(22px, 4vw, 38px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid label { display: grid; gap: .38rem; color: #405257; font-size: .86rem; font-weight: 800; }
.form-grid label.full { grid-column: 1 / -1; }
.optional { color: var(--muted); font-size: .74rem; font-weight: 600; }
.form-card input, .form-card select, .form-card textarea { width: 100%; border: 1.5px solid #b9cccc; border-radius: 10px; background: white; padding: .78rem .85rem; color: var(--charcoal); transition: border-color .2s, box-shadow .2s; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 4px rgba(31, 169, 173, .13); }
.form-card textarea { resize: vertical; min-height: 120px; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: .7rem; margin: 1rem 0; color: var(--muted); font-size: .85rem; }
.checkbox input { width: 19px; height: 19px; margin-top: .15rem; accent-color: var(--teal-dark); }
.form-privacy { display: flex; align-items: flex-start; gap: .5rem; margin-top: 1rem; color: var(--muted); font-size: .78rem; }
.form-privacy svg { flex: 0 0 auto; width: 17px; color: var(--teal-dark); }
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.form-status { border-radius: 10px; padding: .8rem 1rem; margin-top: 1rem; font-weight: 700; }
.form-status.success { background: var(--light-green); color: #2b6c0a; }
.form-status.error { background: var(--light-red); color: #a31928; }

.site-footer { position: relative; overflow: hidden; background: #103f42; color: #d9eeee; padding: 80px 0 0; }
.footer-sun { position: absolute; right: -40px; top: -58px; color: var(--yellow); opacity: .12; }
.footer-sun svg { width: 210px; height: 210px; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.4fr .7fr .8fr 1.1fr; gap: clamp(30px, 5vw, 64px); padding-bottom: 58px; }
.footer-brand { max-width: 310px; }
.footer-logo { width: 185px; height: 138px; overflow: hidden; border-radius: 18px; background: hidden; padding: .25rem; margin-bottom: 1rem; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand p { margin-bottom: 1.25rem; }
.site-footer h2 { margin-bottom: 1.1rem; color: white; font-size: 1.05rem; letter-spacing: 0; }
.footer-links, .footer-contact { display: grid; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #d9eeee; font-size: .93rem; }
.footer-links a:hover { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.footer-contact li { display: flex; align-items: flex-start; gap: .55rem; font-size: .86rem; }
.footer-contact svg { flex: 0 0 auto; width: 18px; color: var(--yellow); }
.safety-note { margin-top: 1rem; color: #a9c9ca; font-size: .75rem; }
.social-placeholder { display: flex; align-items: flex-start; gap: .45rem; margin-top: 1rem; color: #bcd7d8; font-size: .78rem; }
.social-placeholder svg { flex: 0 0 auto; width: 17px; color: var(--yellow); }
.footer-bottom { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: .5rem 2rem; border-top: 1px solid rgba(255,255,255,.14); padding: 1.4rem 0 1.7rem; color: #b2cccc; font-size: .78rem; }
.footer-bottom nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 1rem; }
.footer-bottom nav a:hover { color: white; }
.verification-note { grid-column: 1 / -1; color: #90b5b6; }

/* Interior page foundations */
.page-hero { position: relative; overflow: hidden; padding: clamp(70px, 9vw, 118px) 0; }
.page-hero-teal { background: var(--light-teal); }
.page-hero-green { background: var(--light-green); }
.page-hero-yellow { background: var(--light-yellow); }
.page-hero-red { background: var(--light-red); }
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.page-hero-inner .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5rem); }
.page-hero-inner > p { max-width: 760px; margin: 1.3rem auto 0; color: var(--muted); font-size: 1.12rem; }
.page-hero .hero-buttons { justify-content: center; }
.page-hero-doodle { position: absolute; right: 4%; top: 8%; color: var(--yellow); opacity: .45; transform: rotate(9deg); }
.page-hero-doodle svg { width: 110px; height: 110px; }
.placeholder-notice { display: flex; align-items: flex-start; gap: .9rem; border: 1px dashed var(--teal); border-radius: 14px; background: var(--light-teal); padding: 1rem; }
.placeholder-notice > svg { flex: 0 0 auto; width: 23px; color: var(--teal-dark); }
.placeholder-notice strong { display: block; color: var(--teal-deep); }
.placeholder-notice p { color: var(--muted); font-size: .9rem; }

.split-story { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(45px, 7vw, 92px); }
.split-story.reverse { grid-template-columns: 1.05fr .95fr; }
.interior-photo { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm); box-shadow: var(--shadow); }
.interior-photo img { object-fit: cover; }
.split-story h2 { margin-bottom: 1.35rem; }
.split-story > div:not(.interior-photo) > p { margin-top: 1rem; color: var(--muted); font-size: 1.03rem; }
.inline-note { display: flex; align-items: flex-start; gap: .7rem; border-radius: 14px; background: var(--light-yellow); padding: 1rem; margin-top: 1.5rem; color: var(--muted); font-size: .86rem; }
.inline-note > svg { flex: 0 0 auto; width: 20px; color: var(--yellow-deep); }
.inline-note strong { display: block; color: var(--charcoal); }
.mission-vision { background: var(--light-teal); }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.statement-grid article { border: 1px solid rgba(31,169,173,.18); border-radius: var(--radius); background: white; padding: clamp(25px, 4vw, 42px); box-shadow: var(--shadow-sm); }
.statement-grid .eyebrow { margin: 1.3rem 0 .65rem; }
.statement-grid h3 { max-width: 530px; font-size: clamp(1.65rem, 2.5vw, 2.3rem); }
.statement-grid article > p:last-child { margin-top: 1rem; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.3rem; }
.values-grid article { display: flex; align-items: flex-start; gap: .9rem; min-height: 175px; border: 1px solid rgba(31,169,173,.17); border-radius: 18px; background: rgba(255,255,255,.75); padding: 1.2rem; }
.values-grid .icon-badge { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; }
.values-grid .icon-badge svg { width: 23px; }
.values-grid h3 { margin: .15rem 0 .35rem; font-size: 1.05rem; }
.values-grid p { color: var(--muted); font-size: .86rem; line-height: 1.55; }
.approach-section { background: white; }
.approach-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: clamp(42px, 7vw, 90px); }
.check-list { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 30px 1fr; align-items: start; gap: .75rem; color: var(--muted); }
.check-list li > svg { width: 26px; height: 26px; border-radius: 50%; background: var(--light-green); padding: 5px; color: var(--green-dark); }
.check-list strong { display: block; color: var(--charcoal); }
.check-list.compact { gap: .8rem; }
.approach-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--yellow); padding: clamp(30px, 5vw, 54px); transform: rotate(1deg); box-shadow: var(--shadow); }
.approach-card > svg { width: 72px; height: 72px; margin-bottom: 1.3rem; color: var(--teal-deep); }
.approach-card h3 { font-size: clamp(1.6rem, 2.5vw, 2.25rem); }
.approach-card p { margin-top: 1rem; color: #5d460d; }
.commitment-section { background: var(--light-green); }
.commitment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.commitment-grid > div { border-radius: var(--radius); background: white; padding: clamp(28px, 5vw, 50px); box-shadow: var(--shadow-sm); }
.commitment-grid h2 { margin: 1.25rem 0 .9rem; font-size: clamp(1.75rem, 3vw, 2.6rem); }
.commitment-grid p { color: var(--muted); }

.leadership-group { margin-top: clamp(70px, 8vw, 105px); }
.leadership-group .section-heading { margin-bottom: 2rem; }
.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.profile-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; }
.profile-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.profile-photo { display: grid; min-height: 250px; place-items: center; background: linear-gradient(135deg, var(--light-teal), var(--light-yellow)); color: var(--teal); }
.profile-photo svg { width: 80px; height: 80px; opacity: .55; }
.profile-card > div:last-child { padding: 1.35rem; }
.profile-status { color: var(--red-dark); font-size: .73rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.profile-card h3 { margin-top: .3rem; font-size: 1.4rem; }
.profile-role { color: var(--teal-dark) !important; font-weight: 800; }
.profile-card p { margin-top: .45rem; color: var(--muted); font-size: .9rem; }
.profile-card details { border-top: 1px solid var(--line); margin-top: 1rem; padding-top: .75rem; }
.profile-card summary { display: flex; align-items: center; justify-content: space-between; color: var(--teal-deep); font-weight: 850; cursor: pointer; list-style: none; }
.profile-card summary::-webkit-details-marker { display: none; }
.profile-card summary svg { width: 17px; }

.programs-intro { background: white; }
.program-detail-section { background: var(--light-teal); }
.program-accordion { display: grid; gap: .8rem; }
.program-accordion details { border: 1px solid rgba(31,169,173,.25); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); }
.program-accordion summary { display: grid; grid-template-columns: 60px 1fr 24px; align-items: center; gap: 1rem; padding: 1.15rem; cursor: pointer; list-style: none; }
.program-accordion summary::-webkit-details-marker { display: none; }
.program-accordion summary > span { display: grid; }
.program-accordion summary strong { font-family: var(--font-display), sans-serif; font-size: 1.3rem; }
.program-accordion summary small { margin-top: .22rem; color: var(--muted); font-size: .9rem; }
.program-accordion summary > svg { width: 22px; color: var(--teal-dark); transition: transform .2s; }
.program-accordion details[open] summary > svg { transform: rotate(180deg); }
.program-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; border-top: 1px solid var(--line); padding: clamp(22px, 4vw, 38px); }
.program-detail-grid h3 { margin-bottom: .5rem; font-size: 1rem; color: var(--teal-deep); }
.program-detail-grid p { color: var(--muted); }
.program-detail-grid ul { display: grid; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.program-detail-grid li { display: flex; align-items: flex-start; gap: .45rem; color: var(--muted); }
.program-detail-grid li svg { flex: 0 0 auto; width: 18px; color: var(--green-dark); }

.admissions-overview { background: white; }
.urgent-guidance { display: flex; align-items: flex-start; gap: 1rem; border-left: 6px solid var(--red); border-radius: 14px; background: var(--light-red); padding: 1.25rem; margin-bottom: 4rem; }
.urgent-guidance > svg { flex: 0 0 auto; width: 28px; color: var(--red-dark); }
.urgent-guidance h2 { font-size: 1.35rem; }
.urgent-guidance p { color: var(--muted); }
.admission-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(45px, 7vw, 90px); margin-bottom: 2rem; }
.fine-print { color: var(--muted); font-size: .83rem; }
.admission-facts { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); padding: .7rem; }
.admission-facts div { padding: 1rem; border-bottom: 1px solid var(--line); }
.admission-facts div:nth-last-child(-n+2) { border-bottom: 0; }
.admission-facts dt { color: var(--muted); font-size: .75rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.admission-facts dd { margin: .3rem 0 0; font-weight: 750; }
.admission-process { background: var(--light-green); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .9rem; margin: 0; padding: 0; list-style: none; }
.process-grid li { position: relative; min-height: 285px; border: 1px solid rgba(104,197,42,.25); border-radius: 20px; background: white; padding: 1.25rem; }
.process-grid li > span { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--green); color: white; font-family: var(--font-display), sans-serif; font-weight: 900; }
.process-grid h3 { margin: 1.2rem 0 .7rem; font-size: 1.12rem; }
.process-grid p { color: var(--muted); font-size: .88rem; }
.guide-section { background: var(--light-yellow); }
.guide-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(40px, 7vw, 88px); }
.guide-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.disabled-download { display: inline-flex; align-items: center; gap: .45rem; border-radius: 999px; background: rgba(255,255,255,.75); padding: .75rem 1rem; color: var(--muted); font-size: .83rem; }
.disabled-download svg { width: 18px; }
.do-dont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.do-dont-grid article { border-radius: 20px; background: white; padding: 1.4rem; box-shadow: var(--shadow-sm); }
.do-dont-grid h3 { display: flex; align-items: center; gap: .55rem; }
.do-dont-grid h3 svg { width: 23px; color: var(--green-dark); }
.do-dont-grid article:last-child h3 svg { color: var(--red-dark); }
.do-dont-grid ul { margin: 1rem 0 0; padding-left: 1.2rem; color: var(--muted); }
.referral-form-section { background: white; }
.form-section-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: clamp(42px, 7vw, 82px); }
.inline-link { display: flex; align-items: center; gap: .45rem; color: var(--muted); }
.inline-link svg { width: 20px; color: var(--teal-dark); }
.inline-link a { color: var(--teal-deep); font-weight: 850; text-decoration: underline; }

.involvement-section { background: white; }
.volunteer-photo { min-height: 520px; }
.interest-form-block { display: grid; grid-template-columns: .6fr 1.4fr; align-items: start; gap: clamp(35px, 6vw, 75px); border-top: 1px solid var(--line); padding-top: 70px; margin-top: 90px; }
.interest-form-block > div:first-child h2 { font-size: clamp(2rem, 3vw, 2.8rem); }
.interest-form-block > div:first-child p { margin-top: .8rem; color: var(--muted); }
.careers-section { background: var(--light-green); }
.careers-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(40px, 7vw, 85px); align-items: start; }
.career-card { border-radius: var(--radius); background: white; padding: clamp(25px, 4vw, 40px); box-shadow: var(--shadow); }
.career-card h3 { margin: 1.2rem 0 .6rem; font-size: 1.6rem; }
.career-card > p { color: var(--muted); }
.upload-placeholder { display: flex; align-items: flex-start; gap: .7rem; border: 1px dashed var(--teal); border-radius: 12px; background: var(--light-teal); padding: 1rem; margin: 1.2rem 0; color: var(--muted); font-size: .86rem; }
.upload-placeholder svg { flex: 0 0 auto; width: 22px; color: var(--teal-dark); }
.upload-placeholder strong { display: block; color: var(--teal-deep); }
.equal-opportunity { font-size: .78rem !important; }
.careers-section .interest-form-block { border-color: rgba(104,197,42,.35); }
.partners-section { background: var(--light-teal); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.partner-grid article { border: 1px solid rgba(31,169,173,.2); border-radius: 20px; background: white; padding: 1.35rem; }
.partner-grid h3 { margin: 1rem 0 .55rem; }
.partner-grid p { color: var(--muted); font-size: .9rem; }
.wishlist-section { background: white; }
.wishlist-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: clamp(42px, 7vw, 85px); }
.wish-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.wish-cards article { min-height: 260px; border-radius: 20px; background: var(--cream); border: 1px solid var(--line); padding: 1.25rem; }
.wish-cards h3 { margin: 1rem 0 .55rem; }
.wish-cards p { color: var(--muted); font-size: .87rem; }

.donation-section { background: white; }
.donation-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(45px, 7vw, 90px); }
.donation-grid .placeholder-notice { margin-top: 1.5rem; }
.donation-panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.giving-toggle { display: grid; grid-template-columns: 1fr 1fr; border-radius: 999px; background: var(--light-teal); padding: .3rem; margin-bottom: 1.6rem; }
.giving-toggle button { border: 0; border-radius: 999px; background: transparent; padding: .75rem; font-weight: 850; cursor: pointer; }
.giving-toggle button.active { background: var(--teal-dark); color: white; box-shadow: var(--shadow-sm); }
.donation-panel fieldset { border: 0; margin: 0 0 1.2rem; padding: 0; }
.donation-panel legend, .donation-panel > label { display: grid; gap: .4rem; width: 100%; color: #405257; font-size: .86rem; font-weight: 850; }
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; margin: .65rem 0 1rem; }
.amount-grid button { border: 1.5px solid var(--line); border-radius: 12px; background: white; padding: .8rem .4rem; color: var(--teal-deep); font-family: var(--font-display), sans-serif; font-size: 1.2rem; font-weight: 900; cursor: pointer; }
.amount-grid button.active { border-color: var(--teal); background: var(--light-teal); box-shadow: 0 0 0 3px rgba(31,169,173,.12); }
.custom-amount { display: grid; gap: .35rem; color: #405257; font-size: .85rem; font-weight: 850; }
.custom-amount > span { position: relative; }
.custom-amount > span > span { position: absolute; left: 1rem; top: 50%; color: var(--muted); transform: translateY(-50%); }
.custom-amount input { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; background: white; padding: .8rem .8rem .8rem 2rem; }
.donation-panel select { border: 1.5px solid var(--line); border-radius: 10px; background: white; padding: .8rem; }
.donation-submit { width: 100%; }
.giving-categories { background: var(--light-yellow); }
.designation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.designation-grid article { border-radius: 20px; background: white; padding: 1.4rem; box-shadow: var(--shadow-sm); }
.designation-grid h3 { margin: 1rem 0 .5rem; }
.designation-grid p { color: var(--muted); font-size: .9rem; }
.donor-trust { background: var(--teal-deep); color: white; }
.trust-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(40px, 7vw, 85px); }
.trust-grid > div:first-child { display: grid; grid-template-columns: 60px 1fr; align-items: center; gap: 1rem; }
.trust-grid > div:first-child svg { width: 60px; color: var(--yellow); }
.trust-grid h2 { color: white; font-size: clamp(2rem, 4vw, 3.4rem); }
.trust-grid > div:last-child { color: #d8eeee; font-size: 1.03rem; }
.trust-grid > div:last-child p + p { margin-top: 1rem; }

.contact-page-section { background: white; }
.contact-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-card-grid article { border: 1px solid var(--line); border-radius: 20px; background: var(--cream); padding: 1.4rem; }
.contact-card-grid article > svg { width: 34px; color: var(--teal-dark); }
.contact-card-grid h3 { margin: 1rem 0 .45rem; }
.contact-card-grid p { color: var(--charcoal); font-weight: 750; }
.contact-card-grid span { display: block; margin-top: .35rem; color: var(--muted); font-size: .83rem; }
.contact-route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.contact-route-grid > a { display: grid; grid-template-columns: 42px 1fr 22px; align-items: center; gap: .9rem; border-radius: 18px; background: var(--light-teal); padding: 1rem; }
.contact-route-grid > a > svg:first-child { width: 32px; color: var(--teal-dark); }
.contact-route-grid > a > svg:last-child { width: 20px; }
.contact-route-grid strong { display: block; }
.contact-route-grid span { color: var(--muted); font-size: .9rem; }
.contact-full-form { border-top: 1px solid var(--line); padding-top: 90px; margin-top: 90px; }
.contact-social { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: .9rem; border-radius: 18px; background: var(--light-yellow); padding: 1.15rem; margin-top: 1rem; }
.contact-social > svg { width: 34px; color: var(--yellow-deep); }
.contact-social h2 { font-size: 1.1rem; }
.contact-social p, .contact-social > span { color: var(--muted); font-size: .83rem; }
.map-placeholder { max-width: 900px; border: 1px dashed var(--teal); border-radius: var(--radius); background: var(--light-teal); padding: clamp(30px, 5vw, 55px); margin: 90px auto 0; text-align: center; }
.map-placeholder > svg { width: 58px; color: var(--teal-dark); }
.map-placeholder h2 { margin-top: .8rem; }
.map-placeholder p { max-width: 680px; margin: .8rem auto 1.25rem; color: var(--muted); }

.legal-section { background: white; }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; align-items: start; gap: clamp(40px, 7vw, 90px); }
.legal-layout aside { position: sticky; top: 125px; border-radius: 16px; background: var(--light-yellow); padding: 1.25rem; }
.legal-layout aside svg { width: 30px; color: var(--yellow-deep); }
.legal-layout aside strong { display: block; margin-top: .6rem; }
.legal-layout aside p { margin-top: .4rem; color: var(--muted); font-size: .85rem; }
.legal-layout article { max-width: 760px; }
.legal-layout article section { border-bottom: 1px solid var(--line); padding: 0 0 2rem; margin-bottom: 2rem; }
.legal-layout article h2 { margin-bottom: 1rem; font-size: clamp(1.55rem, 2.5vw, 2.1rem); }
.legal-layout article p { color: var(--muted); }
.legal-layout article p + p { margin-top: 1rem; }
.legal-contact a { color: var(--teal-deep); font-weight: 850; text-decoration: underline; }
.not-found { display: grid; min-height: 72vh; place-items: center; align-content: center; padding: 80px 20px; text-align: center; }
.not-found-art { position: relative; display: grid; width: 170px; height: 150px; place-items: center; margin-bottom: 1.5rem; color: var(--teal-dark); }
.not-found-art > svg:first-child { width: 115px; height: 115px; }
.not-found-art span { position: absolute; bottom: 0; border-radius: 999px; background: var(--red); padding: .25rem .65rem; color: white; font-weight: 900; }
.not-found-art > svg:last-child { position: absolute; right: -10px; top: -8px; width: 52px; color: var(--yellow); }
.not-found > p:not(.eyebrow) { margin-top: 1rem; color: var(--muted); }
.not-found .hero-buttons { justify-content: center; }
.how-photo img, .interior-photo img { width: 100%; height: 100%; object-fit: cover; }
.impact-section { background: var(--teal-deep); color: white; }
.impact-section h2 { color: white; text-align: center; }
.submission-page { display: grid; min-height: 70vh; place-items: center; padding: 80px 20px; background: var(--light-teal); }
.submission-result { width: min(720px, 100%); border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; padding: clamp(30px, 6vw, 64px); box-shadow: var(--shadow); text-align: center; }
.submission-result > svg { width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%; background: var(--light-green); padding: 14px; color: var(--green-dark); }
.submission-result > p { max-width: 580px; margin: 1rem auto 0; color: var(--muted); }
.submission-result .hero-buttons { justify-content: center; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .header-actions { margin-left: auto; }
  .home-hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .program-card-grid, .help-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-grid, .designation-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 30px, 720px); }
  .home-hero { background: linear-gradient(to bottom, var(--cream) 0 47%, var(--light-teal) 47% 100%); }
  .home-hero-grid, .how-grid, .serve-grid, .contact-grid, .cta-inner { grid-template-columns: 1fr; }
  .home-hero-copy { text-align: center; }
  .home-hero-copy .eyebrow, .hero-buttons { justify-content: center; }
  .home-hero-copy > p, .hero-trust { margin-left: auto; margin-right: auto; }
  .hero-photo-wrap { max-width: 650px; margin-inline: auto; }
  .hero-photo { aspect-ratio: 1.25; }
  .mission-grid { grid-template-columns: 115px 1fr; }
  .mission-mark { width: 105px; height: 105px; }
  .mission-copy { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); padding: 1.5rem 0 0; }
  .how-photo { aspect-ratio: 1.25; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .split-story, .split-story.reverse, .approach-grid, .admission-grid, .guide-grid, .form-section-grid, .interest-form-block, .careers-grid, .wishlist-grid, .donation-grid, .trust-grid { grid-template-columns: 1fr; }
  .interior-photo { min-height: 460px; order: -1; }
  .split-story.reverse .interior-photo { order: -1; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li { min-height: 230px; }
  .interest-form-block { margin-top: 70px; padding-top: 55px; }
  .wish-cards { grid-template-columns: repeat(3, 1fr); }
  .trust-grid > div:first-child { grid-template-columns: 50px 1fr; }
  .trust-grid > div:first-child svg { width: 50px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-layout aside { position: static; }
}

@media (max-width: 580px) {
  .section-pad { padding: 70px 0; }
  h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .announcement-inner { flex-wrap: wrap; gap: .25rem .45rem; padding: .4rem 0; line-height: 1.25; }
  .announcement a { margin-left: 0; }
  .header-inner { min-height: 76px; }
  .brand { width: 127px; height: 62px; }
  .header-actions .button { width: 43px; min-height: 43px; overflow: hidden; padding: 0; font-size: 0; }
  .header-actions .button svg { width: 21px; }
  .home-hero { padding-top: 38px; }
  .home-hero-copy h1 span::after { height: 6px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .button { width: 100%; }
  .hero-photo { aspect-ratio: .95; border-width: 6px; }
  .hero-note { left: -1%; bottom: 3%; font-size: .88rem; }
  .hero-heart { width: 46px; height: 46px; }
  .program-card-grid, .help-grid, .serve-details dl, .form-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 335px; }
  .serve-details dl div:nth-last-child(2) { border-bottom: 1px solid #ece7d8; }
  .story-card { grid-template-columns: 1fr; text-align: center; }
  .story-art { width: 170px; margin-inline: auto; }
  .story-card .eyebrow { justify-content: center; }
  .story-policy { text-align: left; }
  .cta-actions { flex-direction: column; }
  .cta-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom nav { justify-content: flex-start; }
  .verification-note { grid-column: auto; }
  .page-hero-doodle { right: -30px; top: -20px; }
  .statement-grid, .commitment-grid, .profile-grid, .profile-grid.two, .program-detail-grid, .admission-facts, .process-grid, .do-dont-grid, .partner-grid, .wish-cards, .designation-grid, .contact-card-grid, .contact-route-grid { grid-template-columns: 1fr; }
  .contact-social { grid-template-columns: 42px 1fr; }
  .contact-social > span { grid-column: 2; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { min-height: auto; }
  .interior-photo { min-height: 370px; }
  .program-accordion summary { grid-template-columns: 48px 1fr 20px; gap: .7rem; }
  .program-accordion summary .icon-badge { width: 48px; height: 48px; }
  .program-accordion summary small { display: none; }
  .process-grid li { min-height: auto; }
  .interest-form-block { margin-top: 55px; padding-top: 45px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
}

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

@media print {
  .announcement, .site-header, .site-footer, .cta-band, .button, .no-print { display: none !important; }
  body { background: white; color: black; font-size: 11pt; }
  .section-pad, .page-hero { padding: 24px 0; }
  .container { width: 100%; max-width: none; }
  a { color: black; text-decoration: none; }
  h1, h2, h3 { color: black; break-after: avoid; }
  article, section { break-inside: avoid; }
}
