/* Charity Art Inc — premium U.S. nonprofit system */
:root {
  --navy: #061929;
  --navy-2: #0c2b45;
  --ink: #121c26;
  --muted: #5a6876;
  --line: rgba(6, 25, 41, 0.1);
  --line-2: rgba(6, 25, 41, 0.18);
  --paper: #f5f7f9;
  --paper-2: #ebf0f4;
  --white: #ffffff;
  --teal: #0d6b76;
  --teal-2: #14909e;
  --coral: #d24728;
  --coral-2: #b3381d;
  --gold: #b08a2a;
  --sand: #efe8dc;
  --font-display: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
  --ribbon-h: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: rgba(210, 71, 40, 0.18);
  color: var(--navy);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  min-height: 100vh;
  font-size: 1.015rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-2);
}

:focus-visible {
  outline: 2px solid var(--teal-2);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 0.55em;
  letter-spacing: -0.03em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.container-narrow {
  width: min(720px, calc(100% - 3rem));
  margin-inline: auto;
}

/* Progress */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal-2));
  transform-origin: left;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 300;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Trust ribbon */
.trust-ribbon {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.045em;
}

.trust-ribbon .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 1.25rem;
  min-height: var(--ribbon-h);
}

.trust-ribbon strong {
  color: var(--white);
  font-weight: 600;
}

.trust-ribbon a {
  color: #9fd0d8;
  text-decoration: none;
  font-weight: 600;
}

.trust-ribbon a:hover {
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 249, 0.86);
  backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(6, 25, 41, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--navy);
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(176, 138, 42, 0.45);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.brand-text span {
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem 1.2rem;
}

.site-nav a {
  color: var(--navy-2);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--coral);
}

.nav-cta {
  margin-left: 0.35rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(210, 71, 40, 0.28);
}

.btn-primary:hover {
  background: var(--coral-2);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-2);
}

.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: #03101b;
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - var(--ribbon-h));
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(3, 14, 24, 0.88) 0%, rgba(3, 14, 24, 0.5) 45%, rgba(3, 14, 24, 0.25) 70%, rgba(3, 14, 24, 0.62) 100%),
    linear-gradient(180deg, rgba(3, 14, 24, 0.1) 0%, rgba(3, 14, 24, 0.82) 100%),
    url("../img/photos/hero-studio.jpg") center / cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 24s var(--ease) forwards;
  will-change: transform;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto 4.5rem;
  max-width: 780px;
  padding-top: 5rem;
  position: relative;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 0 0 1.2rem;
  color: var(--white);
  opacity: 0;
  animation: riseIn 1.05s var(--ease) 0.08s forwards;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 2.1vw, 1.4rem);
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 0.95rem;
  color: rgba(255, 255, 255, 0.94);
  max-width: 28ch;
  opacity: 0;
  animation: riseIn 1.05s var(--ease) 0.26s forwards;
}

.hero-lead {
  margin: 0 0 1.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  max-width: 40ch;
  opacity: 0;
  animation: riseIn 1.05s var(--ease) 0.4s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  opacity: 0;
  animation: riseIn 1.05s var(--ease) 0.54s forwards;
}

.scroll-hint {
  position: absolute;
  right: 0;
  bottom: -2.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.9s forwards;
}

.scroll-hint i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(rgba(255, 255, 255, 0.55), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Page hero */
.page-hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(6, 25, 41, 0.94) 0%, rgba(13, 107, 118, 0.78) 100%),
    url("../img/photos/community-mural.jpg") center / cover;
  color: var(--white);
}

.page-hero.hero-volunteer {
  background:
    linear-gradient(118deg, rgba(6, 25, 41, 0.94) 0%, rgba(13, 107, 118, 0.78) 100%),
    url("../img/photos/volunteer-together.jpg") center / cover;
}

.page-hero.hero-exhibit {
  background:
    linear-gradient(118deg, rgba(6, 25, 41, 0.94) 0%, rgba(13, 107, 118, 0.78) 100%),
    url("../img/photos/public-exhibit.jpg") center / cover;
}

.page-hero.hero-class {
  background:
    linear-gradient(118deg, rgba(6, 25, 41, 0.94) 0%, rgba(13, 107, 118, 0.78) 100%),
    url("../img/photos/art-class.jpg") center / cover;
}

.page-hero.hero-gathering {
  background:
    linear-gradient(118deg, rgba(6, 25, 41, 0.94) 0%, rgba(13, 107, 118, 0.78) 100%),
    url("../img/photos/community-gathering.jpg") center / cover;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6.5vw, 4.4rem);
  margin-bottom: 0.7rem;
  max-width: 12ch;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) forwards;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 44ch;
  font-size: 1.12rem;
  margin: 0;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.12s forwards;
}

/* Sections */
.section {
  padding: 6.5rem 0;
}

.section-compact {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(2.15rem, 4.2vw, 3.25rem);
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.eyebrow-light {
  color: #8fc8d1;
}

.chapter {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.chapter-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: rgba(176, 138, 42, 0.55);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.75rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-copy {
  order: 2;
}

.split-media {
  min-height: 480px;
  background:
    linear-gradient(160deg, rgba(6, 25, 41, 0.1), rgba(210, 71, 40, 0.08)),
    url("../img/photos/workshop-hands.jpg") center / cover;
  position: relative;
  overflow: hidden;
  box-shadow: 0 36px 70px rgba(6, 25, 41, 0.16);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.split-media.media-mural {
  background:
    linear-gradient(160deg, rgba(6, 25, 41, 0.12), rgba(210, 71, 40, 0.08)),
    url("../img/photos/community-mural.jpg") center / cover;
}

.split-media.media-studio {
  background:
    linear-gradient(160deg, rgba(6, 25, 41, 0.12), rgba(13, 107, 118, 0.1)),
    url("../img/photos/hero-studio.jpg") center / cover;
}

.split-media.media-volunteer {
  background:
    linear-gradient(160deg, rgba(6, 25, 41, 0.12), rgba(210, 71, 40, 0.08)),
    url("../img/photos/volunteer-together.jpg") center / cover;
}

.split-media.media-youth {
  background:
    linear-gradient(160deg, rgba(6, 25, 41, 0.12), rgba(13, 107, 118, 0.1)),
    url("../img/photos/youth-creating.jpg") center / cover;
}

.split-copy h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.1rem);
}

.split-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Proof strip */
.proof-strip {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding: 1.5rem 0;
}

.proof-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.proof-strip li {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.proof-strip li:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 0.25rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Marquee credentials */
. cred-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--sand);
  padding: 0.95rem 0;
}

.cred-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.cred-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
}

.cred-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.7;
}

/* Quote */
.quote-band {
  position: relative;
  padding: 6rem 0;
  background:
    linear-gradient(180deg, rgba(6, 25, 41, 0.94), rgba(12, 43, 69, 0.9)),
    url("../img/photos/gallery-color.jpg") center / cover;
  color: var(--white);
  overflow: hidden;
}

.quote-band blockquote {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--white);
}

.quote-band cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
}

/* Features */
.feature-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.4));
  border-block: 1px solid var(--line);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: feat;
}

.feature-list li::before {
  counter-increment: feat;
  content: counter(feat, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.05rem;
  letter-spacing: -0.03em;
}

.feature-list h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.feature-list p {
  color: var(--muted);
  margin: 0;
}

/* Pathway */
.pathway {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.pathway article {
  padding: 2rem 1.75rem 2rem 0;
  border-right: 1px solid var(--line);
  padding-right: 1.75rem;
  margin-right: 1.75rem;
}

.pathway article:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.pathway strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.7rem;
}

.pathway h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.pathway p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Gallery */
.gallery-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 0.75rem;
  min-height: 440px;
}

.gallery-rail figure,
.photo-mosaic figure,
.story-pair figure,
.filmstrip figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.gallery-rail figure:first-child {
  grid-row: span 2;
}

.gallery-rail img,
.photo-mosaic img,
.story-pair img,
.filmstrip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.gallery-rail figure:hover img,
.photo-mosaic figure:hover img,
.story-pair figure:hover img,
.filmstrip figure:hover img {
  transform: scale(1.045);
}

.gallery-rail figure:first-child img {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.gallery-rail figcaption,
.photo-mosaic figcaption,
.story-pair figcaption,
.filmstrip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.05rem 1rem;
  background: linear-gradient(transparent, rgba(3, 14, 24, 0.8));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 500;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 145px;
  gap: 0.7rem;
}

.photo-mosaic .span-7 {
  grid-column: span 7;
  grid-row: span 3;
}
.photo-mosaic .span-5,
.photo-mosaic .span-5b {
  grid-column: span 5;
  grid-row: span 2;
}
.photo-mosaic .span-4,
.photo-mosaic .span-4b,
.photo-mosaic .span-4c {
  grid-column: span 4;
  grid-row: span 2;
}

.story-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.story-pair figure {
  min-height: 300px;
}

.story-pair img {
  position: absolute;
  inset: 0;
}

/* Filmstrip */
.filmstrip-wrap {
  overflow: hidden;
  margin-top: 1rem;
}

.filmstrip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32vw);
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.filmstrip figure {
  scroll-snap-align: start;
  min-height: 320px;
}

/* Programs */
.program-stack {
  display: grid;
  border-top: 1px solid var(--line);
}

.program-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.program-num {
  font-family: var(--font-display);
  font-size: 2.35rem;
  color: var(--gold);
  line-height: 1;
}

.program-row h3 {
  margin-bottom: 0.4rem;
  font-size: 1.65rem;
}

.program-row p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.program-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
  padding-top: 0.4rem;
}

/* Leadership */
.leader-hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.25rem;
  align-items: center;
  padding: 2rem 0 2.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line-2);
}

.leader-photo {
  width: 240px;
  height: 280px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 50%),
    linear-gradient(160deg, var(--coral) 0%, var(--navy) 75%);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 3.8rem;
  letter-spacing: -0.04em;
  box-shadow: 0 28px 55px rgba(6, 25, 41, 0.18);
}

.leader-hero h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin-bottom: 0.25rem;
}

.leader-role {
  color: var(--coral);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.5rem;
}

.leader {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.leader-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.28), transparent 45%),
    linear-gradient(145deg, var(--teal), var(--navy));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.leader h3 {
  margin: 0 0 0.2rem;
  font-size: 1.32rem;
}

.leader p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Trust */
.trust-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: stretch;
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(20, 144, 158, 0.2), transparent 60%),
    linear-gradient(145deg, #061929, #0d3a48);
  color: rgba(255, 255, 255, 0.86);
  padding: clamp(2.1rem, 4vw, 3.4rem);
  position: relative;
  overflow: hidden;
}

.trust-panel::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -140px;
  background: url("../img/logo.png") center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.trust-panel h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.3vw, 2.9rem);
}

.trust-panel a:not(.btn) {
  color: #9fd0d8;
}

.trust-facts {
  list-style: none;
  margin: 0;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.trust-facts li {
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.15rem;
}

.trust-facts li:last-child {
  border-bottom: 0;
}

.trust-facts strong {
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.trust-facts span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-synthesis: none;
  letter-spacing: -0.01em;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.trust-facts.light {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  color: var(--ink);
  max-width: 760px;
}

.trust-facts.light strong {
  color: var(--muted);
}

.trust-facts.light span {
  color: var(--navy);
  font-weight: 600;
}

.trust-facts.light li {
  border-bottom-color: var(--line);
}

.donate-note {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}

.verify-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.verify-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
}

.verify-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.verify-links.dark a {
  border-color: var(--line-2);
  color: var(--navy);
  background: var(--white);
}

.verify-links.dark a:hover {
  border-color: var(--navy);
}

/* Donate */
.give-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.give-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(6, 25, 41, 0.07);
}

.amount-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1.35rem 0 1.5rem;
}

.amount-option {
  appearance: none;
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.05rem 0.5rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease);
}

.amount-option:hover,
.amount-option.is-selected {
  border-color: var(--coral);
  background: rgba(210, 71, 40, 0.06);
  color: var(--coral-2);
  transform: translateY(-1px);
}

.impact-line {
  min-height: 3.2em;
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  background: var(--sand);
  border-left: 3px solid var(--gold);
}

.give-aside {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
}

.give-aside h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.give-aside ul {
  margin: 0;
  padding-left: 1.1rem;
}

.give-aside li {
  margin-bottom: 0.6rem;
}

.give-aside a {
  color: #9fd0d8;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.75rem;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-details strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-details a,
.contact-details span {
  color: var(--navy);
  font-size: 1.08rem;
  text-decoration: none;
  font-weight: 600;
}

.contact-form {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  padding: 1.85rem;
  box-shadow: 0 24px 55px rgba(6, 25, 41, 0.06);
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid rgba(6, 25, 41, 0.14);
  background: var(--white);
  color: var(--ink);
  padding: 0.9rem 1rem;
  font: inherit;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid rgba(13, 107, 118, 0.28);
  border-color: var(--teal);
}

.form-status {
  display: none;
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(13, 107, 118, 0.1);
  border-left: 3px solid var(--teal);
  color: var(--navy);
  font-size: 0.95rem;
}

.form-status.is-visible {
  display: block;
}

/* CTA */
.cta-strip {
  padding: 5.5rem 0;
  background:
    linear-gradient(115deg, rgba(6, 25, 41, 0.94), rgba(13, 107, 118, 0.82)),
    url("../img/photos/community-gathering.jpg") center / cover;
  color: var(--white);
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  margin-bottom: 0.65rem;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin: 0 auto 1.55rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Sticky give */
.sticky-give {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0.75rem 0.7rem 1.15rem;
  background: rgba(6, 25, 41, 0.94);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(6, 25, 41, 0.35);
  backdrop-filter: blur(12px);
  transition: transform 0.45s var(--ease);
  max-width: calc(100% - 2rem);
}

.sticky-give.is-visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-give p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.sticky-give strong {
  color: var(--white);
}

.sticky-give .btn {
  padding: 0.7rem 1.05rem;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  background: #03101b;
  color: rgba(255, 255, 255, 0.7);
  padding: 3.75rem 0 1.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.35rem;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.75rem;
  justify-content: space-between;
  font-size: 0.84rem;
}

.footer-legal p {
  margin: 0;
  max-width: 72ch;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--white);
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  margin-top: 2.25rem;
  font-size: 1.95rem;
}

.prose h3 {
  font-size: 1.35rem;
  margin-top: 1.75rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.2rem;
}

/* News */
.news-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.news-feature {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 520px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.news-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.9s var(--ease), opacity 0.4s ease;
}

.news-feature:hover img {
  transform: scale(1.04);
  opacity: 0.8;
}

.news-feature .news-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.75rem;
  background: linear-gradient(transparent, rgba(3, 14, 24, 0.88));
}

.news-feature h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  margin-bottom: 0.45rem;
}

.news-feature p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 36ch;
}

.news-side {
  display: grid;
  gap: 1rem;
}

.news-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.news-card {
  display: grid;
  grid-template-rows: 160px auto;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(6, 25, 41, 0.1);
}

.news-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.news-card .news-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.news-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.news-meta time {
  color: var(--muted);
  font-weight: 600;
}

.news-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}

.news-list a {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1.35rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease;
}

.news-list a:hover h3 {
  color: var(--coral-2);
}

.news-list img {
  width: 180px;
  height: 120px;
  object-fit: cover;
}

.news-list h3 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.news-list p {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
}

.news-list .news-link {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.86rem;
  white-space: nowrap;
}

.article-hero {
  padding: 4.5rem 0 0;
}

.article-hero .container-narrow {
  width: min(760px, calc(100% - 3rem));
}

.article-hero .news-meta {
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.article-hero .deck {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 42ch;
  margin: 0;
}

.article-cover {
  width: min(var(--max), calc(100% - 3rem));
  margin: 2.25rem auto 0;
  overflow: hidden;
  max-height: 480px;
}

.article-cover img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.article-body {
  padding: 3rem 0 4.5rem;
}

.article-body .prose {
  margin-inline: auto;
}

.article-body .prose p:first-of-type {
  font-size: 1.12rem;
  color: var(--ink);
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.article-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.article-nav a:hover {
  color: var(--coral-2);
}

@media (max-width: 980px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-feature {
    min-height: 420px;
  }

  .news-side {
    grid-template-columns: 1fr 1fr;
  }

  .news-teaser {
    grid-template-columns: 1fr;
  }

  .news-list a {
    grid-template-columns: 120px 1fr;
  }

  .news-list .news-link {
    display: none;
  }

  .news-list img {
    width: 120px;
    height: 90px;
  }

  .article-cover img {
    height: 300px;
  }
}

@media (max-width: 700px) {
  .news-side {
    grid-template-columns: 1fr;
  }

  .news-list a {
    grid-template-columns: 1fr;
  }

  .news-list img {
    width: 100%;
    height: 180px;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .split,
  .split.reverse,
  .feature-list,
  .trust-panel,
  .contact-grid,
  .give-grid,
  .leaders,
  .proof-strip ul,
  .footer-grid,
  .gallery-rail,
  .pathway,
  .chapter {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .gallery-rail figure:first-child {
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-rail figure:first-child img {
    position: static;
    min-height: 280px;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .photo-mosaic .span-7,
  .photo-mosaic .span-5,
  .photo-mosaic .span-5b,
  .photo-mosaic .span-4,
  .photo-mosaic .span-4b,
  .photo-mosaic .span-4c {
    grid-column: span 1;
    grid-row: span 1;
  }

  .photo-mosaic .span-7 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .story-pair {
    grid-template-columns: 1fr;
  }

  .proof-strip li,
  .pathway article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 1rem 0;
  }

  .program-row {
    grid-template-columns: 70px 1fr;
  }

  .program-link {
    grid-column: 2;
  }

  .leader-hero {
    grid-template-columns: 1fr;
  }

  .leader-photo {
    width: 160px;
    height: 190px;
    font-size: 2.6rem;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.15rem;
    max-height: calc(100svh - var(--header-h));
    overflow: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin: 0.85rem 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero-content {
    margin-bottom: 3.25rem;
  }

  .trust-ribbon .container {
    justify-content: center;
    text-align: center;
  }

  .amount-picker {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-give {
    flex-direction: column;
    text-align: center;
    padding: 0.9rem;
    gap: 0.65rem;
  }

  .sticky-give .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero-brand,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .scroll-hint,
  .page-hero h1,
  .page-hero p {
    opacity: 1;
    transform: none;
  }

  .cred-track {
    animation: none;
  }
}
