:root {
  --ink: #252a2a;
  --muted: #5f6967;
  --cream: #f4fbf1;
  --paper: #ffffff;
  --green: #22ae1d;
  --green-dark: #147519;
  --green-soft: #eefae9;
  --red: #d92535;
  --red-dark: #a91222;
  --gold: #f2bc4f;
  --line: #dce5df;
  --shadow: 0 24px 70px rgba(25, 72, 40, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3rem, 6.4vw, 6.8rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4.7rem); }
h3 { font-size: clamp(1.45rem, 2vw, 2rem); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(244, 251, 241, 0.94);
  border-bottom: 1px solid rgba(32, 122, 58, 0.12);
  backdrop-filter: blur(18px);
  transition: transform .35s ease, opacity .35s ease;
}
.site-header-hidden { transform: translateY(-105%); opacity: 0; pointer-events: none; }
.header-inner {
  width: min(1400px, calc(100% - 40px));
  min-height: 118px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.header-logo { width: 148px; height: auto; }
.logo-blend { mix-blend-mode: multiply; }
.brand strong { display: block; font-family: Georgia, serif; font-size: 1.2rem; letter-spacing: -0.03em; }
.brand small { display: block; color: var(--muted); font-size: .67rem; letter-spacing: .2em; text-transform: uppercase; }
.brand-apple { position: relative; width: 40px; height: 38px; border-radius: 48% 52% 50% 50%; background: var(--red); transform: rotate(-2deg); }
.brand-apple::after { content: ""; position: absolute; width: 5px; height: 14px; background: #58342a; border-radius: 8px; left: 20px; top: -8px; transform: rotate(12deg); }
.brand-leaf { position: absolute; width: 17px; height: 9px; border-radius: 100% 0 100% 0; background: #70bc35; left: 24px; top: -5px; transform: rotate(-10deg); }
.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 2.3vw, 34px); color: #39433f; font-size: .9rem; font-weight: 700; }
.desktop-nav a:not(.nav-donate) { padding: 42px 0 38px; border-bottom: 3px solid transparent; }
.desktop-nav a:not(.nav-donate):hover { color: var(--green); border-color: var(--green); }
.nav-donate { padding: 11px 20px; background: var(--red); color: white; border-radius: 999px; box-shadow: 0 8px 22px rgba(217, 37, 53, .22); }
.nav-donate:hover { background: var(--red-dark); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; padding: 10px 15px; border: 1px solid var(--green); border-radius: 999px; font-weight: 800; color: var(--green-dark); }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; right: 0; top: calc(100% + 12px); width: min(280px, calc(100vw - 32px)); padding: 16px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); display: grid; gap: 4px; }
.mobile-menu nav a { padding: 11px 12px; border-radius: 10px; font-weight: 700; }
.mobile-menu nav .nav-donate { margin-top: 8px; text-align: center; color: white; }

.eyebrow { display: inline-block; color: var(--green-dark); font-size: .73rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.home-hero {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 76px) 0 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  overflow: hidden;
}
.home-hero::before { content: ""; position: absolute; width: 720px; height: 520px; left: -270px; bottom: -230px; border-radius: 50%; background: rgba(112,188,53,.14); }
.home-hero::after { content: ""; position: absolute; width: 530px; height: 530px; right: -190px; top: 270px; border: 8px solid rgba(217,37,53,.48); border-radius: 50%; }
.home-hero-copy { position: relative; z-index: 2; width: min(1180px, 100%); text-align: center; }
.home-hero h1 { max-width: 1180px; margin: 20px auto 26px; font-size: clamp(1.25rem, 5.8vw, 4.8rem); }
.home-hero h1 span, .home-hero h1 em { display: block; white-space: nowrap; }
.home-hero h1 em { color: var(--green); font-style: normal; }
.home-hero-copy > p { max-width: 760px; margin-left: auto; margin-right: auto; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.3rem); }
.home-hero-copy > p span { display: block; }
.button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 34px 0 38px; }
.button { display: inline-flex; min-height: 52px; padding: 0 25px; border-radius: 999px; align-items: center; justify-content: center; font-size: .94rem; font-weight: 900; }
.button-primary { background: var(--red); color: white; box-shadow: 0 13px 30px rgba(217, 37, 53, .22); }
.button-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.button-secondary { border: 1.5px solid var(--green); color: var(--green-dark); background: rgba(255,255,255,.5); }
.button-secondary:hover { background: white; }
.button-light { background: white; color: var(--red-dark); }
.mission-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.mission-notes span { padding: 8px 12px; border: 1px solid rgba(32,122,58,.18); border-radius: 999px; background: rgba(255,255,255,.6); color: var(--muted); font-size: .78rem; }
.mission-notes strong { color: var(--green-dark); }

.home-hero-art { position: relative; z-index: 2; width: min(600px, 100%); min-height: 580px; display: flex; align-items: center; justify-content: center; }
.home-hero-art::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: rgba(112,188,53,.13); }
.pip-stage { position: relative; z-index: 2; width: min(540px, 88vw); aspect-ratio: 1; border: 16px solid rgba(255,255,255,.86); border-radius: 50%; overflow: hidden; background: #dfe5ee; box-shadow: var(--shadow); }
.pip-stage .mascot-media { width: 100%; height: 100%; overflow: hidden; border-radius: 50%; background: #dfe5ee; box-shadow: none; }
.pip-stage .mascot-media video,
.pip-stage .mascot-poster { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; object-position: 70% center; clip-path: none; }
.pip-stage .mascot-name { left: 50%; bottom: 7%; transform: translateX(-50%); padding: 7px 15px; }

.mascot-media { position: relative; border-radius: 28px; overflow: hidden; background: white; box-shadow: 0 18px 50px rgba(28,54,39,.15); }
.mascot-media video, .mascot-media > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.mascot-poster { display: none; }
.mascot-name { position: absolute; left: 14px; bottom: 12px; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--ink); font-size: .72rem; font-weight: 900; }

.quick-paths { width: min(1320px, calc(100% - 40px)); margin: -20px auto 110px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--green-dark); color: white; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.quick-paths a { padding: 26px 30px; display: flex; gap: 16px; align-items: center; border-right: 1px solid rgba(255,255,255,.16); }
.quick-paths a:last-child { border: 0; }
.quick-paths a:hover { background: rgba(255,255,255,.08); }
.quick-paths span { color: #bfe29b; font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.quick-paths strong { font-family: Georgia, serif; font-size: 1.05rem; }
.impact-strip { margin-top: -72px; margin-bottom: 120px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.impact-strip article { min-height: 155px; padding: 28px 30px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-top: 6px solid var(--red); border-radius: 22px; background: white; box-shadow: 0 14px 36px rgba(29,71,41,.08); }
.impact-strip strong { color: var(--green-dark); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; }
.impact-strip span { margin-top: 12px; color: var(--muted); font-size: .86rem; font-weight: 800; }

.vision-section { width: min(1260px, calc(100% - 40px)); margin: 0 auto 130px; display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.vision-image { position: relative; }
.vision-image::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border-radius: 34px; background: var(--gold); }
.vision-image img { position: relative; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.vision-image.mascot-still-support { width: min(500px, 100%); justify-self: center; }
.vision-image.mascot-still-support::before { border-radius: 50%; background: var(--green); }
.vision-image.mascot-still-support img { aspect-ratio: 1; border-radius: 50%; object-position: center; }
.vision-copy h2 { max-width: 700px; margin: 18px 0 24px; color: var(--green-dark); }
.vision-copy p { max-width: 620px; color: var(--muted); font-size: 1.12rem; }
.text-link { display: inline-flex; gap: 10px; margin-top: 14px; color: var(--green-dark); font-weight: 900; border-bottom: 2px solid var(--green); }

.promise-section, .guides-section, .page-section { padding: 120px max(24px, 5vw); }
.promise-section { background: white; }
.section-heading { max-width: 780px; margin-bottom: 52px; }
.section-heading h2 { margin: 16px 0 20px; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.action-card { position: relative; min-height: 300px; padding: 34px; background: var(--cream); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.action-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -45px; bottom: -45px; border-radius: 50%; background: var(--green-soft); }
.card-number { color: var(--green); font-size: .75rem; font-weight: 900; letter-spacing: .16em; }
.action-card h3 { margin: 44px 0 16px; }
.action-card p { color: var(--muted); }
.action-card a { display: inline-block; margin-top: 14px; color: var(--green-dark); font-weight: 900; }

.guides-section { background: var(--green-soft); }
.parallax-vision { min-height: 540px; padding: 80px 24px; display: grid; place-items: center; text-align: center; color: white; background-image: linear-gradient(rgba(10,72,23,.55), rgba(10,72,23,.68)), url('/images/green-apples.jpeg'); background-position: center; background-size: cover; background-attachment: fixed; }
.parallax-vision > div { max-width: 940px; padding: 36px 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 28px; background: rgba(11,61,22,.28); backdrop-filter: blur(6px); }
.parallax-vision .eyebrow { color: #d9ffd3; }
.parallax-vision h2 { margin: 16px 0 0; }
.interior-parallax {
  min-height: 500px;
  margin-top: 96px;
  padding: 72px 24px;
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  background-image: linear-gradient(rgba(8, 45, 20, .46), rgba(8, 45, 20, .64)), var(--parallax-image);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.interior-parallax > div {
  width: min(900px, 100%);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 28px;
  background: rgba(12, 50, 23, .32);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(5px);
}
.interior-parallax .eyebrow { color: #d9ffd3; }
.interior-parallax h2 { margin: 14px 0 0; font-size: clamp(2.4rem, 5vw, 5.4rem); }
.mascot-directory { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mascot-card { position: relative; min-height: 260px; border-radius: 26px; overflow: hidden; background: var(--page-soft); box-shadow: 0 14px 36px rgba(29,71,41,.08); }
.mascot-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s ease; }
.mascot-card:hover img { transform: scale(1.035); }
.mascot-card span { position: absolute; left: 18px; right: 18px; bottom: 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 14px; background: rgba(255,255,255,.92); }
.mascot-card strong { font-family: Georgia, serif; font-size: 1.1rem; }
.mascot-card small { color: var(--page-accent); font-weight: 900; }

.donation-callout { min-height: 640px; display: grid; grid-template-columns: 1.1fr .9fr; background: #6f0712; color: white; }
.donation-image { background: linear-gradient(90deg, transparent 70%, #6f0712 100%), url('/images/red-apple.jpeg') center/cover fixed; }
.donation-copy { padding: clamp(70px, 9vw, 140px) max(34px, 7vw); display: flex; flex-direction: column; justify-content: center; }
.donation-copy .eyebrow { color: #ffbd8b; }
.donation-copy h2 { margin: 18px 0 24px; }
.donation-copy p { color: #f6ccd0; max-width: 540px; }
.donation-copy .button { align-self: flex-start; margin-top: 22px; }

.page-hero { --page-accent: var(--green); --page-soft: var(--green-soft); position: relative; min-height: 620px; padding: clamp(70px, 8vw, 130px) max(24px, 8vw); display: grid; grid-template-columns: 1fr minmax(470px, .85fr); align-items: center; gap: clamp(50px, 8vw, 130px); background: var(--page-soft); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 440px; height: 440px; right: -220px; top: -210px; border: 75px solid rgba(217,37,53,.14); border-radius: 50%; }
.page-hero-copy { position: relative; z-index: 2; max-width: 830px; }
.page-hero .eyebrow { color: var(--page-accent); }
.page-hero h1 { margin: 18px 0 24px; font-size: clamp(3.4rem, 6vw, 6.4rem); }
.page-hero p { max-width: 680px; color: var(--muted); font-size: 1.16rem; }
.page-hero .mascot-media { position: relative; z-index: 2; width: min(500px, 100%); aspect-ratio: 1; justify-self: center; overflow: hidden; border: 14px solid rgba(255,255,255,.88); border-radius: 50%; transform: rotate(1.5deg); }
.page-hero .mascot-media video, .page-hero .mascot-media > img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; object-position: center; }
.page-hero .mascot-name { left: 50%; bottom: 7%; transform: translateX(-50%); }
.mascot-still-feature { margin-top: 76px; padding: 30px 42px; display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: clamp(30px, 5vw, 70px); border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: 0 16px 42px rgba(29,71,41,.08); }
.mascot-still-feature h2 { max-width: 760px; margin: 10px 0 0; font-size: clamp(2rem, 3.4vw, 3.8rem); }
.mascot-still-portrait { width: 210px; height: 210px; border: 7px solid var(--green); border-radius: 50%; overflow: hidden; background: white; }
.mascot-still-portrait img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.content-width { width: min(1240px, calc(100% - 40px)); margin-left: auto; margin-right: auto; }
.mission-vision-pair { padding: 120px 0 20px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.mission-vision-pair article { min-height: 340px; padding: 42px; border-radius: 28px; background: white; border: 1px solid var(--line); }
.mission-vision-pair article:first-child { background: var(--green-dark); color: white; }
.mission-vision-pair article:first-child .eyebrow { color: #bfe29b; }
.mission-vision-pair h2 { margin-top: 50px; font-size: clamp(2.1rem, 3.4vw, 4rem); }
.origin-story { margin-top: 28px; padding: clamp(42px, 6vw, 78px); display: grid; grid-template-columns: 1.25fr .75fr; gap: 42px 70px; border-radius: 30px; background: white; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(29,71,41,.08); }
.origin-copy h2 { max-width: 720px; margin: 16px 0 24px; }
.origin-copy p { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.origin-highlights { display: grid; gap: 16px; }
.origin-highlights article { padding: 26px; border-radius: 22px; background: var(--green-soft); }
.origin-highlights article:last-child { background: #fdebed; }
.origin-highlights strong, .origin-highlights span { display: block; }
.origin-highlights strong { color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.origin-highlights span { margin-top: 12px; color: var(--green-dark); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.2; }
.partner-reach { grid-column: 1 / -1; padding-top: 34px; border-top: 1px solid var(--line); }
.partner-pills { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.partner-pills span { padding: 9px 14px; border: 1px solid rgba(34,174,29,.24); border-radius: 999px; background: var(--green-soft); color: var(--green-dark); font-size: .82rem; font-weight: 800; }
.board-section { padding: 118px 0 132px; }
.board-section .section-heading { margin-bottom: 58px; }
.board-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.board-card { padding: 20px 20px 24px; text-align: center; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: 0 16px 42px rgba(29,71,41,.09); transition: transform .3s ease, box-shadow .3s ease; }
.board-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(29,71,41,.14); }
.board-portrait { aspect-ratio: 1; overflow: hidden; border: 8px solid var(--green); border-radius: 50%; background: var(--green-soft); box-shadow: inset 0 0 0 4px white; }
.board-portrait img { width: 100%; height: 100%; object-fit: cover; }
.board-card h3 { margin: 20px 0 0; font-size: clamp(1.35rem, 1.8vw, 1.75rem); }
.board-card span { display: inline-flex; min-height: 42px; margin-top: 10px; padding: 8px 15px; align-items: center; justify-content: center; border-radius: 999px; background: #fdebed; color: var(--red-dark); font-size: .78rem; font-weight: 900; letter-spacing: .06em; line-height: 1.25; text-transform: uppercase; }
.board-card-placeholder { border-style: dashed; }
.board-portrait-placeholder { display: grid; place-content: center; border-style: dashed; color: var(--green-dark); text-align: center; }
.board-portrait-placeholder strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; }
.board-portrait-placeholder p { margin: 2px 0 0; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.page-placeholder { margin-top: 70px; padding: clamp(40px, 7vw, 90px); border-radius: 30px; background: var(--green-soft); border: 1px dashed rgba(32,122,58,.34); }
.page-placeholder h2 { max-width: 850px; margin: 15px 0 22px; font-size: clamp(2rem, 3.4vw, 3.7rem); }
.page-placeholder p { max-width: 740px; color: var(--muted); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 50px; }
.event-preview { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 28px; background: white; border: 1px solid var(--line); border-radius: 24px; }
.event-month { display: grid; place-items: center; width: 74px; height: 74px; border-radius: 20px; background: var(--green); color: white; font-weight: 900; }
.event-preview h3 { margin: 0 0 7px; }
.event-preview p { margin: 0; color: var(--muted); }
.event-status { padding: 8px 12px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); font-size: .75rem; font-weight: 900; }
.story-grid, .giving-grid, .contact-grid { display: grid; gap: 22px; }
.story-grid { grid-template-columns: repeat(3, 1fr); }
.story-grid article, .giving-grid article, .contact-grid article { min-height: 280px; padding: 34px; border-radius: 24px; background: white; border: 1px solid var(--line); }
.story-grid span, .giving-grid span, .contact-grid span { color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.story-grid h3, .giving-grid h3, .contact-grid h3 { margin: 44px 0 14px; }
.story-grid p, .giving-grid p, .contact-grid p { color: var(--muted); }
.featured-story { margin-bottom: 24px; padding: clamp(38px, 6vw, 74px); border-radius: 30px; background: var(--green-dark); color: white; box-shadow: var(--shadow); }
.featured-story > span { color: #caffbf; font-size: .74rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.featured-story h2 { max-width: 900px; margin: 18px 0 26px; font-size: clamp(2.3rem, 4.2vw, 4.8rem); }
.featured-story p { max-width: 900px; color: #e1f3df; font-size: 1.06rem; }
.history-story-grid article { min-height: 300px; }
.poem-feature { margin-top: 76px; padding: clamp(24px, 4vw, 54px); display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); align-items: stretch; gap: clamp(20px, 3vw, 38px); overflow: hidden; border: 1px solid rgba(34,174,29,.22); border-radius: 32px; background-image: linear-gradient(rgba(8,45,20,.38), rgba(8,45,20,.62)), url('/images/stories-apples.jpeg'); background-position: center; background-size: cover; background-attachment: fixed; box-shadow: var(--shadow); }
.poem-intro { position: relative; overflow: hidden; padding: clamp(42px, 5vw, 72px); border-radius: 26px; background: linear-gradient(155deg, rgba(217,37,53,.95) 0%, rgba(169,18,34,.96) 100%); color: white; backdrop-filter: blur(5px); }
.poem-intro::after { content: ""; position: absolute; width: 220px; height: 220px; right: -110px; bottom: -95px; border: 7px solid rgba(255,255,255,.22); border-radius: 50%; }
.poem-intro .eyebrow { color: #ffe0e3; }
.poem-intro h2 { margin: 18px 0 24px; font-size: clamp(2.8rem, 4.7vw, 5.2rem); }
.poem-intro p { max-width: 420px; color: #ffe7e9; font-size: 1.06rem; }
.poem-paper { position: relative; padding: clamp(44px, 6vw, 82px); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.96) 0%, rgba(238,250,233,.94) 100%); backdrop-filter: blur(6px); }
.poem-mark { position: absolute; right: 28px; top: 6px; color: rgba(34,174,29,.12); font-family: Georgia, "Times New Roman", serif; font-size: 9rem; line-height: 1; }
.poem-body { position: relative; max-width: 620px; margin: 0 auto; color: var(--green-dark); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.72; }
.poem-body p { margin: 0; }
.poem-body p + p { margin-top: 28px; }
.giving-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid-single { grid-template-columns: 1fr; }
.giving-grid article:first-child { background: var(--red); color: white; border-color: var(--red); }
.giving-grid article:first-child span, .giving-grid article:first-child p { color: #ffdce0; }
.giving-grid strong { display: inline-block; margin-top: 20px; font-size: .8rem; }
.giving-grid .mail-gift { grid-column: 1 / -1; min-height: 220px; }
.giving-grid address { color: var(--muted); font-style: normal; font-size: 1.08rem; }
.tax-benefit-callout { margin-top: 32px; padding: clamp(32px, 5vw, 62px); display: grid; grid-template-columns: 200px minmax(0, 1fr); align-items: center; gap: clamp(34px, 5vw, 72px); border: 1px solid rgba(34,174,29,.24); border-radius: 30px; background: linear-gradient(135deg, #ffffff 0%, #f2fceb 68%, #fdebed 100%); box-shadow: var(--shadow); }
.tax-benefit-badge { width: 190px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border: 10px solid white; border-radius: 50%; background: var(--red); color: white; box-shadow: 0 18px 38px rgba(169,18,34,.24); transform: rotate(-3deg); }
.tax-benefit-badge span, .tax-benefit-badge strong { display: block; }
.tax-benefit-badge span { font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.tax-benefit-badge strong { margin-top: 2px; font-family: Georgia, "Times New Roman", serif; font-size: 3.5rem; line-height: 1; }
.tax-benefit-copy h2 { max-width: 850px; margin: 14px 0 22px; font-size: clamp(2.15rem, 3.6vw, 4.2rem); }
.tax-benefit-copy p { max-width: 890px; color: var(--muted); }
.tax-benefit-highlight { margin: 24px 0; padding: 20px 22px; border-left: 6px solid var(--green); border-radius: 0 16px 16px 0; background: white; color: var(--green-dark) !important; font-weight: 800; }
.tax-benefit-thanks { color: var(--red-dark) !important; font-weight: 800; }
.tax-benefit-copy .text-link { display: inline-block; margin-top: 4px; color: var(--green-dark); font-size: .88rem; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.tax-exempt-note { margin-top: 24px; padding: 28px 32px; border: 1px solid rgba(34,174,29,.26); border-left: 7px solid var(--green); border-radius: 20px; background: white; }
.tax-exempt-note p { max-width: 860px; margin: 12px 0 10px; color: var(--red-dark); font-weight: 800; }
.tax-exempt-note strong { color: var(--red); font-size: .9rem; letter-spacing: .06em; }
.contact-form-section { padding: 0 max(24px, 5vw) 120px; }
.contact-form { width: min(1120px, 100%); margin: 0 auto; padding: clamp(30px, 5vw, 58px); border-radius: 30px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-form-heading { max-width: 720px; margin-bottom: 36px; }
.contact-form-heading h2 { margin: 14px 0 16px; }
.contact-form-heading p, .form-note { color: var(--muted); }
.form-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.form-fields label { display: grid; gap: 8px; color: var(--green-dark); font-size: .85rem; font-weight: 900; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-fields input, .form-fields textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 14px; background: var(--cream); color: var(--ink); font: inherit; padding: 14px 16px; outline: none; }
.form-fields input:focus, .form-fields textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(34,174,29,.12); }
.form-field-wide { grid-column: 1 / -1; }
.form-submit-row { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.form-submit-row .button { border: 0; cursor: pointer; }
.form-note { margin: 0; font-size: .82rem; }
.form-note-success { color: var(--green-dark); font-weight: 900; }
.form-note-error { color: var(--red-dark); font-weight: 900; }
.contact-privacy-note { margin: 22px 0 0; padding: 14px 16px; border-left: 4px solid var(--green); background: var(--green-soft); color: var(--muted); font-size: .84rem; }
.contact-privacy-note a { color: var(--green-dark); font-weight: 900; text-decoration: underline; }
.legal-page { min-height: 60vh; padding-top: 130px; padding-bottom: 150px; }
.legal-page h1 { margin: 18px 0 30px; font-size: clamp(3rem, 6vw, 6rem); }
.legal-page p { max-width: 750px; color: var(--muted); font-size: 1.15rem; }
.privacy-page { background: var(--cream); }
.privacy-hero { position: relative; overflow: hidden; padding: clamp(90px, 10vw, 150px) 0; background: linear-gradient(135deg, #f8fff5 0%, #edf9e8 62%, #fdebed 100%); border-bottom: 1px solid var(--line); }
.privacy-hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -100px; bottom: -230px; border: 7px solid rgba(217,37,53,.36); border-radius: 50%; }
.privacy-hero h1 { max-width: 920px; margin: 18px 0 24px; font-size: clamp(3.4rem, 7vw, 7rem); }
.privacy-hero p { max-width: 820px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.privacy-hero strong { display: inline-block; margin-top: 16px; color: var(--green-dark); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.privacy-layout { padding-top: 88px; padding-bottom: 130px; display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.55fr); align-items: start; gap: clamp(54px, 8vw, 110px); }
.privacy-summary { position: sticky; top: 145px; padding: 32px; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: 0 16px 44px rgba(29,71,41,.08); }
.privacy-summary h2 { margin: 14px 0 22px; font-size: clamp(2rem, 3.1vw, 3rem); }
.privacy-summary ul { margin: 0; padding-left: 20px; color: var(--muted); }
.privacy-summary li + li { margin-top: 10px; }
.privacy-nav { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.privacy-nav a { display: block; padding: 7px 0; color: var(--green-dark); font-size: .84rem; font-weight: 800; }
.privacy-nav a:hover { color: var(--red); text-decoration: underline; }
.privacy-content > section { scroll-margin-top: 130px; padding: 0 0 58px; }
.privacy-content > section + section { padding-top: 58px; border-top: 1px solid var(--line); }
.privacy-content .policy-number { color: var(--red); font-size: .76rem; font-weight: 900; letter-spacing: .18em; }
.privacy-content h2 { margin: 12px 0 24px; font-size: clamp(2.2rem, 3.7vw, 4.1rem); }
.privacy-content h3 { margin: 32px 0 10px; font-size: clamp(1.35rem, 2vw, 1.8rem); }
.privacy-content p, .privacy-content li { color: var(--muted); font-size: 1.02rem; }
.privacy-content p a { color: var(--green-dark); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.privacy-content ul { padding-left: 22px; }
.privacy-content li + li { margin-top: 8px; }
.provider-policies { padding: 16px 18px; border-radius: 14px; background: var(--green-soft); }
.provider-policies a { color: var(--green-dark); font-weight: 900; text-decoration: underline; }
.privacy-contact { padding: 42px !important; border: 1px solid rgba(34,174,29,.25) !important; border-radius: 26px; background: var(--green-soft); }
.privacy-contact a { color: var(--green-dark); font-weight: 900; text-decoration: underline; }
.privacy-contact address { color: var(--ink); font-style: normal; font-weight: 700; line-height: 1.8; }
.terms-page .privacy-hero { background: linear-gradient(135deg, #f8fff5 0%, #eefae9 54%, #fff1e7 100%); }
.terms-page .privacy-summary { border-top: 6px solid var(--red); }

.site-footer { background: #e9f9e5; color: var(--ink); border-top: 8px solid var(--red); }
.footer-cta { width: min(1280px, calc(100% - 40px)); margin: 0 auto; padding: 78px 0 60px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; border-bottom: 1px solid rgba(20,117,25,.18); }
.footer-cta .eyebrow { color: var(--green-dark); }
.footer-cta h2 { margin: 14px 0 0; max-width: 680px; font-size: clamp(2rem, 3.4vw, 3.8rem); }
.footer-main { width: min(1280px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 54px; display: grid; grid-template-columns: 1.6fr repeat(3, minmax(120px, 1fr)) 265px; align-items: start; gap: 34px; }
.footer-brand { display: block; }
.footer-brand-copy > img { width: 160px; height: auto; }
.footer-brand p { max-width: 390px; margin: 22px 0 0; color: var(--muted); }
.footer-pip-area { position: relative; width: 265px; min-height: 350px; align-self: end; justify-self: end; display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; }
.footer-pip { width: 170px; height: auto; mix-blend-mode: multiply; filter: contrast(1.08) brightness(1.04) saturate(1.06); }
.footer-pip-bubble { position: relative; z-index: 2; width: 255px; margin-bottom: -2px; padding: 20px 22px; border: 3px solid var(--red); border-radius: 24px; background: white; color: var(--red-dark); box-shadow: 0 14px 34px rgba(169,18,34,.14); }
.footer-pip-bubble::after { content: ""; position: absolute; right: 45px; bottom: -13px; width: 23px; height: 23px; border-right: 3px solid var(--red); border-bottom: 3px solid var(--red); background: white; transform: rotate(45deg); }
.footer-pip-bubble strong, .footer-pip-bubble span, .footer-pip-bubble small { position: relative; z-index: 1; display: block; }
.footer-pip-bubble strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.13rem; line-height: 1.15; }
.footer-pip-bubble span { margin-top: 9px; font-weight: 900; letter-spacing: .04em; }
.footer-pip-bubble small { margin-top: 7px; color: #704249; font-size: .72rem; line-height: 1.4; }
.footer-main h3 { margin: 0 0 20px; color: var(--green-dark); font-family: inherit; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) a { display: block; margin: 10px 0; color: #35453a; }
.footer-main a:hover { color: var(--red); text-decoration: underline; }
.footer-note { margin-top: 24px; color: var(--red-dark); font-size: .78rem; font-weight: 800; }
.footer-mission { font-size: .9rem; }
.footer-mission span { display: block; }
.footer-bottom { padding: 20px max(20px, calc((100% - 1280px) / 2)); display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(20,117,25,.18); color: var(--muted); font-size: .75rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mascot-media video { display: none; }
  .mascot-poster { display: block; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .parallax-vision, .interior-parallax, .poem-feature, .donation-image { background-attachment: scroll; }
}

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .page-hero { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-main { grid-template-columns: 1.6fr repeat(2, 1fr); }
  .footer-legal { grid-column: 2; }
  .footer-pip-area { width: 255px; grid-column: 3; grid-row: 2; }
  .footer-pip { width: 155px; }
  .board-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  h1 { font-size: clamp(2.75rem, 13vw, 5rem); }
  .header-inner { width: min(100% - 28px, 1400px); min-height: 106px; }
  .brand small { display: none; }
  .home-hero { min-height: auto; padding-top: 44px; }
  .home-hero-art { min-height: 500px; }
  .quick-paths { grid-template-columns: 1fr; margin-top: 20px; }
  .quick-paths a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .vision-section { grid-template-columns: 1fr; }
  .impact-strip { margin-top: -68px; grid-template-columns: 1fr; }
  .action-grid, .story-grid { grid-template-columns: 1fr; }
  .poem-feature { grid-template-columns: 1fr; }
  .mascot-directory { grid-template-columns: repeat(2, 1fr); }
  .donation-callout { grid-template-columns: 1fr; }
  .donation-image { min-height: 440px; background: linear-gradient(0deg, #6f0712 0%, transparent 35%), url('/images/red-apple.jpeg') center/cover; }
  .page-hero { grid-template-columns: 1fr; padding-top: 70px; }
  .page-hero .mascot-media { max-width: 500px; }
  .mission-vision-pair, .giving-grid, .contact-grid, .split-heading { grid-template-columns: 1fr; }
  .tax-benefit-callout { grid-template-columns: 1fr; }
  .tax-benefit-badge { width: 160px; }
  .tax-benefit-badge strong { font-size: 3rem; }
  .origin-story { grid-template-columns: 1fr; }
  .partner-reach { grid-column: auto; }
  .giving-grid .mail-gift { grid-column: auto; }
  .event-preview { grid-template-columns: auto 1fr; }
  .event-status { grid-column: 2; justify-self: start; }
  .footer-cta { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-main .footer-brand { grid-column: 1 / -1; }
  .footer-legal { grid-column: auto; grid-row: auto; }
  .footer-pip-area { width: min(270px, 100%); min-height: 330px; grid-column: 1 / -1; grid-row: auto; align-items: flex-end; gap: 0; }
  .footer-pip-bubble { width: min(255px, 100%); }
  .footer-pip { width: 155px; }
  .parallax-vision, .interior-parallax, .donation-image { background-attachment: scroll; }
  .form-fields { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-summary { position: static; }
  .board-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .header-logo { width: 112px; }
  .brand strong { font-size: 1rem; }
  .brand-apple { width: 34px; height: 32px; }
  .home-hero { padding-left: 20px; padding-right: 20px; }
  .home-hero h1 { font-size: clamp(1.25rem, 5.8vw, 4.8rem); }
  .home-hero-art { min-height: 340px; }
  .pip-stage { border-width: 9px; }
  .pip-stage .mascot-name { bottom: 5%; }
  .mission-notes { display: grid; }
  .quick-paths, .vision-section, .content-width { width: calc(100% - 28px); }
  .promise-section, .guides-section, .page-section { padding-left: 18px; padding-right: 18px; }
  .mascot-directory { grid-template-columns: 1fr; }
  .mascot-card img { height: 210px; }
  .page-hero { padding-left: 18px; padding-right: 18px; }
  .page-hero h1 { font-size: clamp(2.9rem, 14vw, 4.2rem); }
  .mascot-still-feature { grid-template-columns: 1fr; padding: 26px; text-align: center; }
  .mascot-still-portrait { margin: 0 auto; }
  .action-card, .story-grid article, .giving-grid article, .contact-grid article { padding: 26px; }
  .poem-intro, .poem-paper { padding: 36px 26px; }
  .tax-benefit-callout { padding: 28px 24px; }
  .mission-vision-pair article { padding: 28px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-main .footer-brand { grid-column: auto; }
  .footer-pip-area { grid-column: auto; width: 100%; min-height: 310px; }
  .footer-pip-bubble { width: min(255px, 100%); padding: 17px 18px; }
  .footer-pip { width: 140px; }
  .footer-bottom { flex-direction: column; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }
  .board-section { padding: 88px 0 104px; }
  .board-grid { grid-template-columns: 1fr; gap: 20px; }
  .board-card { width: min(360px, 100%); margin: 0 auto; }
}
