:root {
  --navy: #11273f;
  --navy-2: #193a5a;
  --ink: #17212a;
  --cream: #f7f1e5;
  --paper: #fffdf8;
  --yellow: #f6c844;
  --orange: #f06b46;
  --blue: #bfe4f2;
  --green: #b9d7bd;
  --rose: #f5c7bf;
  --line: #d8d2c7;
  --muted: #66717a;
  --white: #fff;
  --shadow: 0 18px 55px rgba(17, 39, 63, .14);
  --max: 1240px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

body.menu-open {
  overflow: hidden
}

img {
  display: block;
  max-width: 100%
}

a {
  color: inherit;
  text-decoration: none
}

button,
input,
select,
textarea {
  font: inherit
}

button {
  color: inherit
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
  letter-spacing: -.035em
}

h1 {
  font-size: clamp(3.8rem, 8.2vw, 8.5rem);
  margin-bottom: 28px
}

h2 {
  font-size: clamp(2.5rem, 5.4vw, 5.7rem);
  margin-bottom: 24px
}

h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  margin-bottom: 15px
}

p {
  margin-bottom: 1.1em
}

.container {
  width: min(calc(100% - 42px), var(--max));
  margin-inline: auto
}

.section {
  padding: 110px 0
}

.section-compact {
  padding: 72px 0
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--navy-2);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase
}

.kicker:before {
  content: "";
  width: 38px;
  height: 3px;
  background: var(--orange)
}

.dark .kicker {
  color: #d7e4ed
}

.dark .kicker:before {
  background: var(--yellow)
}

.intro {
  max-width: 730px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted)
}

.dark {
  background: var(--navy);
  color: #edf4f8
}

.dark h2,
.dark h3 {
  color: white
}

.dark .intro {
  color: #bfd0dc
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid var(--navy);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .2s ease;
  cursor: pointer
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--navy)
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy)
}

.btn-light {
  border-color: white;
  background: white;
  color: var(--navy)
}

.btn-light:hover,
.btn-light:focus-visible {
  box-shadow: 6px 6px 0 var(--yellow)
}

.btn-outline {
  background: transparent
}

.arrow {
  font-size: 1.15rem;
  line-height: 1
}

.skip-link {
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 9999;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: #fff;
  color: #000
}

.skip-link:focus {
  transform: none
}

.topbar {
  background: var(--yellow);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .03em
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px)
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain
}

.brand strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.05
}

.brand small {
  display: block;
  margin-top: 5px;
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted)
}

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase
}

.nav a:not(.btn) {
  padding: 11px 0;
  border-bottom: 3px solid transparent
}

.nav a:not(.btn):hover {
  border-color: var(--orange)
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 2px solid var(--navy);
  background: var(--yellow);
  cursor: pointer
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: .2s
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--line)
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  min-height: 710px
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 94px 68px 85px max(21px, calc((100vw - var(--max))/2));
  display: flex;
  flex-direction: column;
  justify-content: center
}

.hero-copy h1 span {
  display: block;
  color: var(--orange);
  font-style: italic
}

.hero-copy p {
  max-width: 680px;
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
  color: #4f5b63
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  font-size: .84rem;
  font-weight: 800;
  color: var(--navy-2)
}

.hero-note:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(240, 107, 70, .15)
}

.hero-visual {
  position: relative;
  min-height: 710px;
  background: var(--navy)
}

.hero-main {
  position: absolute;
  inset: 0 0 0 60px;
  width: calc(100% - 60px);
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04)
}

.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 39, 63, .03), rgba(17, 39, 63, .25))
}

.hero-label {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 54px;
  width: 255px;
  padding: 28px 26px;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow)
}

.hero-label strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1
}

.hero-label span {
  display: block;
  margin-top: 11px;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: 24px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  transform: rotate(8deg)
}

.fact-strip {
  background: var(--navy);
  color: white
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.fact {
  padding: 33px 44px;
  border-left: 1px solid rgba(255, 255, 255, .18)
}

.fact:last-child {
  border-right: 1px solid rgba(255, 255, 255, .18)
}

.fact strong {
  display: block;
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1
}

.fact span {
  display: block;
  margin-top: 8px;
  color: #c6d5df;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase
}

.manifesto {
  background: var(--paper)
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 84px;
  align-items: start
}

.manifesto-title {
  position: sticky;
  top: 140px
}

.manifesto-title h2 {
  max-width: 540px
}

.manifesto-title h2 em {
  color: var(--orange);
  font-weight: 400
}

.manifesto-copy {
  padding-top: 50px
}

.manifesto-copy>p {
  font-size: clamp(1.3rem, 2.5vw, 2.05rem);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.35;
  color: var(--navy)
}

.principles {
  margin-top: 55px;
  border-top: 1px solid var(--line)
}

.principle {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line)
}

.principle-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--orange)
}

.principle h3 {
  font-size: 1.45rem;
  margin-bottom: 8px
}

.principle p {
  color: var(--muted);
  margin: 0
}

.programs {
  background: var(--blue)
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px
}

.section-head>div:first-child {
  max-width: 770px
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px
}

.program-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border: 2px solid var(--navy);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: .2s ease
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 9px 9px 0 var(--navy)
}

.program-card:nth-child(1),
.program-card:nth-child(4) {
  grid-column: span 7
}

.program-card:nth-child(2),
.program-card:nth-child(3) {
  grid-column: span 5
}

.program-card:nth-child(5),
.program-card:nth-child(6) {
  grid-column: span 6
}

.program-card:nth-child(1) {
  background: var(--yellow)
}

.program-card:nth-child(2) {
  background: var(--paper)
}

.program-card:nth-child(3) {
  background: var(--rose)
}

.program-card:nth-child(4) {
  background: var(--green)
}

.program-card:nth-child(5) {
  background: var(--paper)
}

.program-card:nth-child(6) {
  background: var(--orange);
  color: #fff
}

.program-card:nth-child(6) h3,
.program-card:nth-child(6) .program-number {
  color: #fff
}

.program-number {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--navy-2)
}

.program-card h3 {
  max-width: 430px;
  font-size: clamp(2rem, 3.5vw, 3.65rem)
}

.program-card p {
  max-width: 500px;
  margin: 0;
  color: #3d4b55
}

.program-card:nth-child(6) p {
  color: #fff4ef
}

.program-icon {
  position: absolute;
  right: 26px;
  top: 24px;
  width: 52px;
  height: 52px;
  opacity: .9
}

.appeal {
  overflow: hidden;
  background: var(--navy);
  color: white
}

.appeal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px
}

.appeal-image {
  position: relative
}

.appeal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.appeal-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, var(--navy))
}

.appeal-copy {
  padding: 90px max(21px, calc((100vw - var(--max))/2)) 90px 75px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.appeal-copy h2 {
  color: white
}

.appeal-copy h2 em {
  color: var(--yellow);
  font-weight: 400
}

.appeal-copy p {
  color: #c6d5df;
  font-size: 1.1rem
}

.need-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 27px 0 34px;
  padding: 0;
  list-style: none
}

.need-list li {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase
}

.need-list li:before {
  content: "+";
  margin-right: 9px;
  color: var(--yellow)
}

.field-notes {
  background: var(--cream)
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 340px 260px;
  gap: 18px
}

.photo-card {
  position: relative;
  overflow: hidden;
  background: var(--navy)
}

.photo-card:first-child {
  grid-row: span 2
}

.photo-card:last-child {
  grid-column: span 2
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.photo-card:hover img {
  transform: scale(1.04)
}

.photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 55px 22px 20px;
  background: linear-gradient(transparent, rgba(17, 39, 63, .9));
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase
}

.ways {
  background: var(--paper)
}

.way-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--navy)
}

.way {
  position: relative;
  padding: 48px 38px 40px;
  min-height: 390px;
  border-right: 2px solid var(--navy)
}

.way:last-child {
  border-right: 0
}

.way:nth-child(1) {
  background: var(--yellow)
}

.way:nth-child(2) {
  background: var(--paper)
}

.way:nth-child(3) {
  background: var(--rose)
}

.way-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem
}

.way h3 {
  margin-top: 52px;
  font-size: 2.7rem
}

.way p {
  color: #4b5962
}

.way a {
  position: absolute;
  left: 38px;
  bottom: 34px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--navy)
}

/* Our contributions — video stories */
.contributions {
  background: var(--paper)
}

.contribution-heading {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 46px
}

.contribution-heading h2 {
  max-width: 720px;
  margin-bottom: 0
}

.contribution-heading h2 em {
  color: var(--orange);
  font-weight: 400
}

.contribution-heading .intro {
  margin: 0 0 7px;
  max-width: 610px
}

.contribution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px
}

.contribution-card {
  overflow: hidden;
  border: 2px solid var(--navy);
  background: var(--cream);
  transition: transform .2s ease, box-shadow .2s ease
}

.contribution-card:nth-child(2) {
  background: var(--blue)
}

.contribution-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 var(--navy)
}

.contribution-video {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  border-bottom: 2px solid var(--navy)
}

.contribution-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0
}

.contribution-body {
  padding: 28px 30px 31px
}

.contribution-tag {
  display: block;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase
}

.contribution-card:nth-child(2) .contribution-tag {
  color: var(--navy-2)
}

.contribution-body h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  margin-bottom: 12px
}

.contribution-body p {
  max-width: 580px;
  margin-bottom: 22px;
  color: #4f5b63
}

.contribution-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--navy);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase
}

.contribution-body a:hover,
.contribution-body a:focus-visible {
  color: var(--orange);
  border-color: var(--orange)
}


.accountability {
  background: var(--green)
}

.accountability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.accountability-list {
  border-top: 2px solid var(--navy)
}

.accountability-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 2px solid var(--navy)
}

.check {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 900
}

.accountability-item h3 {
  font-size: 1.25rem;
  margin-bottom: 7px
}

.accountability-item p {
  margin: 0;
  color: #43524c
}

.faq {
  background: var(--paper)
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px
}

.faq-title {
  position: sticky;
  top: 140px;
  align-self: start
}

details {
  border-top: 2px solid var(--navy)
}

details:last-child {
  border-bottom: 2px solid var(--navy)
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy)
}

summary::-webkit-details-marker {
  display: none
}

summary:after {
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 1.6rem
}

details[open] summary:after {
  content: "−"
}

.faq-answer {
  padding: 0 55px 25px 0;
  color: var(--muted)
}

.contact {
  background: var(--orange);
  color: white
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: start
}

.contact h2 {
  color: white
}

.contact .kicker {
  color: white
}

.contact .kicker:before {
  background: var(--yellow)
}

.contact-links {
  display: grid;
  gap: 15px;
  margin-top: 35px
}

.contact-link {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .45)
}

.contact-link:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .45)
}

.contact-link span {
  display: block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8
}

.contact-link strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem
}

.contact-panel {
  padding: 40px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--navy)
}

.contact-panel h3 {
  font-size: 2rem
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px
}

.field-full {
  grid-column: 1/-1
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--navy);
  border-radius: 0;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink)
}

textarea {
  min-height: 120px;
  resize: vertical
}

.form-note {
  margin: 15px 0 0;
  font-size: .75rem;
  color: var(--muted)
}

.footer {
  padding: 66px 0 25px;
  background: var(--navy);
  color: #c8d5dd
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr .6fr .8fr;
  gap: 60px
}

.footer-brand img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  padding: 5px
}

.footer-brand p {
  max-width: 410px;
  margin-top: 22px
}

.footer h3 {
  color: white;
  font-family: Arial, sans-serif;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.footer li {
  margin: 9px 0
}

.footer a:hover {
  color: var(--yellow)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .17);
  font-size: .75rem
}

.footer-bottom a {
  text-decoration: underline
}


@media(max-width:900px) {
  .contribution-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px
  }

  .contribution-heading .intro {
    max-width: 760px
  }

  .contribution-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:560px) {
  .contribution-body {
    padding: 23px 21px 25px
  }

  .contribution-body h3 {
    font-size: 1.55rem
  }

  .contribution-card:hover {
    transform: none;
    box-shadow: none
  }
}

@media(max-width:1000px) {
  .nav {
    position: fixed;
    inset: 120px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
    background: var(--paper);
    border-bottom: 2px solid var(--navy);
    box-shadow: var(--shadow)
  }

  .nav.open {
    display: flex
  }

  .nav a {
    padding: 12px !important
  }

  .menu-toggle {
    display: block
  }

  .nav .btn {
    margin-top: 6px
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-copy {
    padding: 78px 28px
  }

  .hero-visual {
    min-height: 570px
  }

  .hero-main {
    left: 0;
    width: 100%
  }

  .hero-label {
    left: 24px
  }

  .facts {
    grid-template-columns: 1fr 1fr 1fr
  }

  .fact {
    padding: 27px 20px
  }

  .manifesto-grid,
  .accountability-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px
  }

  .manifesto-title,
  .faq-title {
    position: static
  }

  .manifesto-copy {
    padding-top: 0
  }

  .program-card:nth-child(n) {
    grid-column: span 6
  }

  .appeal-grid {
    grid-template-columns: 1fr
  }

  .appeal-image {
    min-height: 520px
  }

  .appeal-image:after {
    background: linear-gradient(180deg, transparent 65%, var(--navy))
  }

  .appeal-copy {
    padding: 65px 28px 85px
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 280px 280px
  }

  .photo-card:first-child {
    grid-column: span 2;
    grid-row: auto
  }

  .photo-card:last-child {
    grid-column: span 2
  }

  .way-grid {
    grid-template-columns: 1fr
  }

  .way {
    border-right: 0;
    border-bottom: 2px solid var(--navy)
  }

  .way:last-child {
    border-bottom: 0
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr
  }

  .footer-brand {
    grid-column: 1/-1
  }
}

@media(max-width:680px) {
  .container {
    width: min(calc(100% - 28px), var(--max))
  }

  .section {
    padding: 78px 0
  }

  .topbar-inner {
    justify-content: center;
    text-align: center
  }

  .topbar-inner span:last-child {
    display: none
  }

  .brand {
    min-width: 0
  }

  .brand strong {
    font-size: .88rem
  }

  .brand small {
    font-size: .54rem
  }

  .brand img {
    width: 48px;
    height: 48px
  }

  .nav-wrap {
    min-height: 72px
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.3rem)
  }

  h2 {
    font-size: clamp(2.7rem, 14vw, 4.2rem)
  }

  .hero-copy {
    padding: 62px 20px 67px
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-visual {
    min-height: 460px
  }

  .hero-label {
    left: 15px;
    bottom: 18px;
    width: 220px
  }

  .hero-badge {
    width: 91px;
    height: 91px;
    right: 12px;
    top: 15px;
    font-size: .59rem
  }

  .facts {
    grid-template-columns: 1fr
  }

  .fact {
    border-left: 0;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    text-align: center
  }

  .fact:last-child {
    border-bottom: 0
  }

  .section-head {
    display: block
  }

  .section-head .btn {
    margin-top: 15px
  }

  .program-grid {
    display: block
  }

  .program-card:nth-child(n) {
    min-height: 300px;
    margin-bottom: 16px;
    padding: 28px
  }

  .program-card h3 {
    font-size: 2.5rem
  }

  .program-icon {
    width: 42px;
    height: 42px
  }

  .need-list {
    grid-template-columns: 1fr
  }

  .photo-grid {
    display: block
  }

  .photo-card {
    height: 270px;
    margin-bottom: 14px
  }

  .photo-card:first-child {
    height: 420px
  }

  .way {
    padding: 38px 27px;
    min-height: 350px
  }

  .way a {
    left: 27px
  }

  .principle {
    grid-template-columns: 50px 1fr
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .field-full {
    grid-column: auto
  }

  .contact-panel {
    padding: 28px;
    box-shadow: 7px 7px 0 var(--navy)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    transition: none !important
  }
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px
}


/* === Multi-page editorial system === */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--line)
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr);
  min-height: 610px
}

.page-hero-copy {
  padding: 88px 64px 82px max(21px, calc((100vw - var(--max))/2));
  display: flex;
  flex-direction: column;
  justify-content: center
}

.page-hero-copy h1 {
  font-size: clamp(3.7rem, 7vw, 7.1rem);
  max-width: 840px;
  margin-bottom: 26px
}

.page-hero-copy h1 em {
  color: var(--orange);
  font-weight: 400
}

.page-hero-copy p {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  color: #53616a
}

.page-hero-copy .hero-actions {
  margin-top: 25px
}

.page-hero-media {
  position: relative;
  min-height: 610px;
  background: var(--navy);
  overflow: hidden
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: saturate(.92) contrast(1.05)
}

.page-hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 39, 63, .04), rgba(17, 39, 63, .35))
}

.page-stamp {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 48px;
  max-width: 310px;
  padding: 25px 28px;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow)
}

.page-stamp strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.05
}

.page-stamp span {
  display: block;
  margin-top: 8px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase
}

.page-band {
  background: var(--navy);
  color: white
}

.page-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.page-band-item {
  padding: 30px 35px;
  border-left: 1px solid rgba(255, 255, 255, .17)
}

.page-band-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, .17)
}

.page-band-item strong {
  display: block;
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1
}

.page-band-item span {
  display: block;
  margin-top: 8px;
  color: #c6d5df;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

.editorial-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px
}

.editorial-aside {
  position: sticky;
  top: 135px;
  align-self: start
}

.editorial-aside h2 em {
  font-weight: 400;
  color: var(--orange)
}

.lead-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.55vw, 2.25rem);
  line-height: 1.35;
  color: var(--navy)
}

.body-copy {
  color: var(--muted);
  font-size: 1.03rem
}

.body-copy strong {
  color: var(--navy)
}

.quote-panel {
  margin: 42px 0 0;
  padding: 32px 34px;
  border-left: 8px solid var(--yellow);
  background: var(--navy);
  color: white
}

.quote-panel p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.35;
  margin: 0
}

.quote-panel small {
  display: block;
  margin-top: 15px;
  color: #bfd0dc;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.value-card {
  min-height: 300px;
  padding: 32px;
  border: 2px solid var(--navy);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.value-card:nth-child(2) {
  background: var(--yellow)
}

.value-card:nth-child(3) {
  background: var(--rose)
}

.value-num {
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase
}

.value-card h3 {
  font-size: 2rem;
  margin: 0 0 10px
}

.value-card p {
  color: #4f5b63;
  margin: 0
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 2px solid var(--navy)
}

.focus-item {
  padding: 31px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  background: var(--paper)
}

.focus-item:nth-child(2n) {
  border-right: 0
}

.focus-item:nth-last-child(-n+2) {
  border-bottom: 0
}

.focus-item span {
  display: block;
  color: var(--orange);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 17px
}

.focus-item h3 {
  font-size: 1.75rem
}

.focus-item p {
  margin: 0;
  color: var(--muted)
}

.mission-panel {
  background: var(--yellow);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy)
}

.mission-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.mission-side {
  padding: 72px max(24px, calc((100vw - var(--max))/2)) 72px 0
}

.mission-side:first-child {
  padding-left: max(24px, calc((100vw - var(--max))/2));
  padding-right: 70px;
  border-right: 2px solid var(--navy)
}

.mission-side h3 {
  font-size: 2.5rem
}

.mission-side p {
  font-size: 1.06rem;
  max-width: 610px
}

.program-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.program-detail {
  position: relative;
  min-height: 315px;
  padding: 34px;
  border: 2px solid var(--navy);
  background: var(--paper);
  display: flex;
  flex-direction: column
}

.program-detail:nth-child(4n+2),
.program-detail:nth-child(4n+3) {
  background: var(--cream)
}

.program-detail .program-tag {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange)
}

.program-detail h3 {
  font-size: 2rem;
  margin: 26px 0 12px
}

.program-detail p {
  color: var(--muted)
}

.program-detail .program-arrow {
  margin-top: auto;
  font-size: 1.6rem;
  color: var(--orange)
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--navy)
}

.support-item {
  padding: 27px;
  border-right: 2px solid var(--navy);
  background: var(--blue)
}

.support-item:last-child {
  border-right: 0
}

.support-item strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem
}

.support-item span {
  display: block;
  margin-top: 8px;
  color: #44545c;
  font-size: .82rem
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px
}

.process-step {
  position: relative;
  padding-top: 28px;
  border-top: 4px solid var(--yellow)
}

.process-step span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  color: var(--yellow);
  line-height: 1
}

.process-step h3 {
  margin-top: 18px;
  color: white
}

.process-step p {
  color: #bfd0dc
}

.gallery-intro {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 85px;
  align-items: end
}

.gallery-intro p {
  font-size: 1.12rem;
  color: var(--muted)
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 92px;
  gap: 15px
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--navy);
  background: var(--cream);
  cursor: pointer
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, filter .3s ease
}

.gallery-tile:hover img {
  transform: scale(1.035);
  filter: contrast(1.05)
}

.gallery-tile:after {
  content: "View";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: var(--yellow);
  color: var(--navy);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: .2s
}

.gallery-tile:hover:after,
.gallery-tile:focus-visible:after {
  opacity: 1;
  transform: none
}

.gallery-tile:nth-child(1) {
  grid-column: span 7;
  grid-row: span 5
}

.gallery-tile:nth-child(2) {
  grid-column: span 5;
  grid-row: span 3
}

.gallery-tile:nth-child(3) {
  grid-column: span 5;
  grid-row: span 4
}

.gallery-tile:nth-child(4) {
  grid-column: span 4;
  grid-row: span 3
}

.gallery-tile:nth-child(5) {
  grid-column: span 3;
  grid-row: span 3
}

.gallery-tile:nth-child(6) {
  grid-column: span 5;
  grid-row: span 4
}

.gallery-tile:nth-child(7) {
  grid-column: span 7;
  grid-row: span 4
}

.gallery-tile:nth-child(8) {
  grid-column: span 4;
  grid-row: span 3
}

.gallery-tile:nth-child(9) {
  grid-column: span 4;
  grid-row: span 3
}

.gallery-tile:nth-child(10) {
  grid-column: span 4;
  grid-row: span 3
}

.gallery-tile:nth-child(11) {
  grid-column: span 12;
  grid-row: span 4
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(8, 20, 33, .94)
}

.lightbox.open {
  display: grid
}

.lightbox-inner {
  position: relative;
  max-width: min(1100px, 95vw);
  max-height: 88vh
}

.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  border: 6px solid white;
  box-shadow: var(--shadow)
}

.lightbox-close {
  position: absolute;
  right: -14px;
  top: -14px;
  width: 48px;
  height: 48px;
  border: 2px solid var(--navy);
  background: var(--yellow);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer
}

.lightbox-caption {
  margin-top: 10px;
  color: white;
  text-align: center;
  font-size: .86rem
}

.donation-hero {
  background: var(--yellow)
}

.donation-hero .page-hero-copy p {
  color: #344553
}

.donation-hero .page-hero-media:after {
  background: linear-gradient(180deg, rgba(17, 39, 63, .05), rgba(17, 39, 63, .48))
}

.donation-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: start
}

.donation-card {
  border: 2px solid var(--navy);
  background: white;
  box-shadow: 12px 12px 0 var(--navy);
  padding: 42px
}

.donation-card h2 {
  font-size: 3.1rem
}

.donation-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 26px 0 22px;
  border: 2px solid var(--navy)
}

.donation-tab {
  padding: 13px;
  background: white;
  border: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer
}

.donation-tab.active {
  background: var(--navy);
  color: white
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 18px
}

.amount-btn {
  min-height: 56px;
  border: 2px solid var(--navy);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer
}

.amount-btn.active {
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--navy)
}

.custom-amount {
  position: relative
}

.custom-amount span {
  position: absolute;
  left: 15px;
  top: 13px;
  font-weight: 900
}

.custom-amount input {
  padding-left: 32px
}

.donation-card .btn {
  width: 100%;
  margin-top: 18px
}

.secure-note {
  display: flex;
  gap: 10px;
  margin-top: 17px;
  color: var(--muted);
  font-size: .79rem
}

.secure-note strong {
  color: var(--navy)
}

.integration-note {
  margin-top: 15px;
  padding: 13px;
  background: var(--blue);
  font-size: .75rem;
  color: #344553
}

.trust-stack {
  display: grid;
  gap: 16px
}

.trust-card {
  padding: 29px;
  border: 2px solid var(--navy);
  background: var(--paper)
}

.trust-card.accent {
  background: var(--rose)
}

.trust-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  color: var(--navy)
}

.trust-card span {
  display: block;
  margin-top: 8px;
  color: #4f5b63
}

.ein {
  font-family: monospace;
  font-size: 1.15rem !important;
  letter-spacing: .04em
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.gift-card {
  min-height: 250px;
  background: var(--paper);
  border: 2px solid var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.gift-card:nth-child(2) {
  background: var(--blue)
}

.gift-card:nth-child(3) {
  background: var(--green)
}

.gift-card:nth-child(4) {
  background: var(--rose)
}

.gift-card:nth-child(5) {
  background: var(--cream)
}

.gift-card:nth-child(6) {
  background: var(--yellow)
}

.gift-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 2px solid var(--navy)
}

.gift-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease
}

.gift-card:hover .gift-media img {
  transform: scale(1.04)
}

.gift-body {
  padding: 24px 29px 29px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.gift-card span {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase
}

.gift-card h3 {
  margin: 18px 0 12px;
  font-size: 1.8rem
}

.gift-card p {
  margin: 0;
  color: #4f5b63
}

.cta-slab {
  background: var(--orange);
  color: white
}

.cta-slab-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: center
}

.cta-slab h2 {
  color: white;
  margin: 0
}

.cta-slab p {
  color: #fff4ef;
  max-width: 650px;
  margin: 20px 0 0
}

.cta-slab-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch
}

.nav a.active:not(.btn) {
  border-color: var(--orange);
  color: var(--navy)
}

@media(max-width:1000px) {
  .page-hero-grid {
    grid-template-columns: 1fr
  }

  .page-hero-copy {
    padding: 76px 28px
  }

  .page-hero-media {
    min-height: 500px
  }

  .editorial-grid,
  .gallery-intro,
  .donation-layout,
  .cta-slab-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .editorial-aside {
    position: static
  }

  .value-grid,
  .process-grid,
  .gift-grid {
    grid-template-columns: 1fr 1fr
  }

  .program-list {
    grid-template-columns: 1fr
  }

  .support-strip {
    grid-template-columns: 1fr 1fr
  }

  .support-item:nth-child(2) {
    border-right: 0
  }

  .support-item:nth-child(-n+2) {
    border-bottom: 2px solid var(--navy)
  }

  .mission-panel-grid {
    grid-template-columns: 1fr
  }

  .mission-side,
  .mission-side:first-child {
    padding: 55px 28px;
    border-right: 0
  }

  .mission-side:first-child {
    border-bottom: 2px solid var(--navy)
  }

  .gallery-wall {
    grid-auto-rows: 80px
  }

  .gallery-tile:nth-child(n) {
    grid-column: span 6
  }

  .gallery-tile:nth-child(1),
  .gallery-tile:nth-child(11) {
    grid-column: span 12
  }
}

@media(max-width:680px) {
  .page-hero-copy {
    padding: 60px 20px
  }

  .page-hero-copy h1 {
    font-size: clamp(3.15rem, 17vw, 5rem)
  }

  .page-hero-media {
    min-height: 410px
  }

  .page-stamp {
    left: 15px;
    bottom: 18px;
    max-width: 250px
  }

  .page-band-grid,
  .value-grid,
  .process-grid,
  .gift-grid {
    grid-template-columns: 1fr
  }

  .page-band-item {
    border-left: 0;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
    text-align: center
  }

  .page-band-item:last-child {
    border-bottom: 0
  }

  .focus-grid {
    grid-template-columns: 1fr
  }

  .focus-item:nth-child(n) {
    border-right: 0;
    border-bottom: 2px solid var(--navy)
  }

  .focus-item:last-child {
    border-bottom: 0
  }

  .support-strip {
    grid-template-columns: 1fr
  }

  .support-item:nth-child(n) {
    border-right: 0;
    border-bottom: 2px solid var(--navy)
  }

  .support-item:last-child {
    border-bottom: 0
  }

  .gallery-wall {
    display: block
  }

  .gallery-tile {
    height: 270px;
    margin-bottom: 13px
  }

  .gallery-tile:first-child,
  .gallery-tile:last-child {
    height: 360px
  }

  .donation-card {
    padding: 27px;
    box-shadow: 7px 7px 0 var(--navy)
  }

  .amount-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta-slab-actions {
    width: 100%
  }
}

/* =========================================================
   Typography, image, and donation refinements
   Balanced for the updated photography and multipage layout.
   ========================================================= */

/* Calmer editorial type scale */
h1 {
  font-size: clamp(3.1rem, 6.2vw, 6.25rem);
  line-height: .98
}

h2 {
  font-size: clamp(2.15rem, 3.9vw, 4.15rem);
  line-height: 1.02
}

h3 {
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  line-height: 1.08
}

.section {
  padding: 92px 0
}

.section-compact {
  padding: 62px 0
}

.intro {
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.65
}

/* Home hero */
.hero-copy h1 {
  font-size: clamp(3.3rem, 6vw, 6.1rem);
  max-width: 820px
}

.hero-copy p {
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.65
}

.hero-main {
  object-position: center 42%
}

.hero-label strong {
  font-size: 1.7rem
}

/* General content hierarchy */
.manifesto-copy>p {
  font-size: clamp(1.2rem, 1.9vw, 1.7rem)
}

.program-card h3 {
  font-size: clamp(1.85rem, 2.7vw, 2.9rem)
}

.way h3 {
  font-size: 2.2rem
}

.contact-panel h3 {
  font-size: 1.75rem
}

/* Interior page hero */
.page-hero-grid {
  min-height: 560px
}

.page-hero-copy {
  padding-top: 76px;
  padding-bottom: 72px
}

.page-hero-copy h1 {
  font-size: clamp(3.15rem, 5.35vw, 5.55rem);
  max-width: 760px;
  line-height: .99
}

.page-hero-copy p {
  font-size: clamp(1.03rem, 1.3vw, 1.18rem);
  line-height: 1.65
}

.page-hero-media {
  min-height: 560px
}

.page-hero-media img {
  object-position: center 42%
}

.page-stamp strong {
  font-size: 1.55rem
}

/* Interior content */
.lead-copy {
  font-size: clamp(1.3rem, 1.9vw, 1.8rem)
}

.quote-panel p {
  font-size: 1.35rem
}

.value-card h3 {
  font-size: 1.75rem
}

.focus-item h3 {
  font-size: 1.55rem
}

.mission-side h3 {
  font-size: 2.05rem
}

.program-detail h3 {
  font-size: 1.75rem
}

.process-step span {
  font-size: 3.3rem
}

.support-item strong {
  font-size: 1.3rem
}

.page-band-item strong {
  font-size: 1.4rem
}

/* Donation page / Donorbox */
.donation-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 58px
}

.donation-card {
  padding: 34px
}

.donation-card h2 {
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.05
}

.donorbox-intro {
  max-width: 650px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
  margin-bottom: 22px
}

.donorbox-shell {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line)
}

.donorbox-shell iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
  background: #fff
}

.trust-card strong {
  font-size: 1.55rem
}

.gift-card h3 {
  font-size: 1.6rem;
  line-height: 1.08
}

.gift-body {
  padding: 21px 25px 25px
}

.gift-media img {
  object-position: center
}

/* Updated photography: consistent crop without stretching */
.photo-card img,
.gallery-tile img,
.page-hero-media img,
.hero-main {
  object-fit: cover
}

.photo-card img {
  object-position: center 40%
}

.gallery-tile img {
  object-position: center
}

/* Keep long editorial headings readable */
.cta-slab h2,
.editorial-aside h2,
.faq-title h2 {
  max-width: 760px
}

@media(max-width:1000px) {
  h1 {
    font-size: clamp(3rem, 8vw, 4.9rem)
  }

  h2 {
    font-size: clamp(2.1rem, 6vw, 3.65rem)
  }

  .section {
    padding: 78px 0
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 8vw, 5rem)
  }

  .page-hero-copy h1 {
    font-size: clamp(3rem, 7.8vw, 4.75rem)
  }

  .page-hero-grid,
  .page-hero-media {
    min-height: 480px
  }

  .donation-layout {
    gap: 42px
  }

  .donation-card {
    padding: 30px
  }

  .program-card h3 {
    font-size: clamp(1.8rem, 4vw, 2.55rem)
  }

  .way h3 {
    font-size: 2rem
  }
}

@media(max-width:680px) {
  .container {
    width: min(calc(100% - 32px), var(--max))
  }

  .section {
    padding: 64px 0
  }

  .section-compact {
    padding: 50px 0
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.75rem)
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3rem)
  }

  h3 {
    font-size: clamp(1.35rem, 6vw, 1.75rem)
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 12.5vw, 3.9rem)
  }

  .hero-copy p {
    font-size: 1rem
  }

  .page-hero-copy {
    padding: 52px 20px
  }

  .page-hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.8rem)
  }

  .page-hero-copy p {
    font-size: 1rem
  }

  .page-hero-grid,
  .page-hero-media {
    min-height: 390px
  }

  .page-stamp strong {
    font-size: 1.35rem
  }

  .manifesto-copy>p {
    font-size: 1.25rem
  }

  .lead-copy {
    font-size: 1.3rem
  }

  .program-card h3 {
    font-size: 2rem
  }

  .program-detail h3,
  .value-card h3,
  .focus-item h3 {
    font-size: 1.55rem
  }

  .mission-side h3 {
    font-size: 1.8rem
  }

  .way h3 {
    font-size: 1.8rem;
    margin-top: 38px
  }

  .donation-card {
    padding: 22px;
    box-shadow: 6px 6px 0 var(--navy)
  }

  .donation-card h2 {
    font-size: 2rem
  }

  .donorbox-shell {
    margin-inline: -4px;
    width: calc(100% + 8px)
  }

  .gift-card h3 {
    font-size: 1.5rem
  }

  .gift-body {
    padding: 20px 22px 23px
  }

  .quote-panel {
    padding: 26px 24px
  }

  .quote-panel p {
    font-size: 1.2rem
  }

  .process-step span {
    font-size: 2.8rem
  }

  .contact-panel h3 {
    font-size: 1.55rem
  }
}

/* =========================================================
   Gallery viewer + Donorbox responsive fixes
   ========================================================= */

/* Full-screen gallery carousel */
.lightbox {
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  overflow: auto;
  overscroll-behavior: contain;
}

.lightbox.open {
  display: grid
}

.lightbox-inner {
  position: relative;
  width: min(1180px, 100%);
  max-width: 100%;
  max-height: calc(100vh - 40px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-stage {
  width: 100%;
  max-height: calc(100vh - 105px);
  overflow: auto;
  overscroll-behavior: contain;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  scrollbar-gutter: stable both-edges;
}

.lightbox-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: none;
  border: 6px solid white;
  box-shadow: var(--shadow);
}

.lightbox-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  color: white;
}

.lightbox-caption {
  margin: 0;
  text-align: left
}

.lightbox-counter {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  white-space: nowrap
}

.lightbox-nav {
  width: 58px;
  height: 58px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform .2s ease, background .2s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: scale(1.07);
  background: white
}

.lightbox-close {
  right: 10px;
  top: 10px;
  z-index: 4
}

/* Donorbox must be allowed to shrink with the viewport. */
.donation-layout {
  grid-template-columns: minmax(0, 620px) minmax(260px, 1fr);
  align-items: start
}

.donation-card,
.donorbox-card,
.trust-stack {
  min-width: 0
}

.donorbox-card {
  width: 100%;
  max-width: 100%
}

.donorbox-shell {
  width: 100%;
  max-width: 520px;
  min-width: 0;
  margin-inline: auto;
  overflow: hidden;
  border: 0;
  background: #fff;
}

.donorbox-shell iframe {
  display: block;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 950px;
  margin: 0 auto;
  border: 0;
}

@media(max-width:900px) {
  .donation-layout {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .donorbox-card {
    max-width: 680px;
    margin-inline: auto
  }

  .trust-stack {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .trust-card {
    padding: 23px
  }
}

@media(max-width:720px) {
  .lightbox {
    grid-template-columns: 1fr;
    padding: 12px 12px 82px
  }

  .lightbox-inner {
    max-height: calc(100vh - 94px)
  }

  .lightbox-stage {
    max-height: calc(100vh - 150px)
  }

  .lightbox-nav {
    position: fixed;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 2rem
  }

  .lightbox-prev {
    left: calc(50% - 67px)
  }

  .lightbox-next {
    right: calc(50% - 67px)
  }

  .lightbox-close {
    position: fixed;
    right: 14px;
    top: 14px
  }

  .lightbox-meta {
    padding-inline: 4px
  }

  .trust-stack {
    grid-template-columns: 1fr
  }
}

@media(max-width:560px) {
  #give.section {
    padding-top: 50px
  }

  #give .container {
    width: min(calc(100% - 20px), var(--max))
  }

  .donation-card {
    padding: 18px 10px 20px;
    box-shadow: 4px 4px 0 var(--navy);
  }

  .donation-card .kicker,
  .donation-card h2,
  .donorbox-intro,
  .secure-note {
    margin-left: 6px;
    margin-right: 6px
  }

  .donorbox-shell {
    width: 100%;
    max-width: none;
    margin: 0
  }

  .donorbox-shell iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 1000px
  }

  .secure-note {
    font-size: .76rem;
    line-height: 1.45
  }

  .trust-card {
    padding: 20px
  }
}

/* Who We Are: published objectives */
.objective-list {
  counter-reset: path-objective;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 2px solid var(--navy);
  background: var(--paper)
}

.objective-list li {
  counter-increment: path-objective;
  position: relative;
  min-height: 150px;
  padding: 28px 30px 28px 88px;
  border-bottom: 2px solid var(--navy);
  border-right: 2px solid var(--navy)
}

.objective-list li:nth-child(2n) {
  border-right: 0
}

.objective-list li:nth-last-child(-n+2) {
  border-bottom: 0
}

.objective-list li:before {
  content: counter(path-objective, decimal-leading-zero);
  position: absolute;
  left: 28px;
  top: 27px;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700
}

.objective-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.15
}

.objective-list span {
  display: block;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.55
}

@media(max-width:760px) {
  .objective-list {
    grid-template-columns: 1fr
  }

  .objective-list li,
  .objective-list li:nth-child(2n),
  .objective-list li:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 2px solid var(--navy)
  }

  .objective-list li:last-child {
    border-bottom: 0
  }

  .objective-list li {
    min-height: 0;
    padding: 24px 22px 24px 72px
  }

  .objective-list li:before {
    left: 22px;
    top: 23px
  }
}