@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&family=Instrument+Sans:wght@500;600;700&display=swap');

:root {
  --bg: #05070e;
  --bg-deep: #080d1a;
  --panel: rgba(10, 14, 24, 0.8);
  --panel-strong: rgba(7, 10, 18, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(209, 168, 68, 0.28);
  --gold: #d1a844;
  --gold-soft: #f0d17d;
  --gold-deep: #8e6b1d;
  --text: #f7f3eb;
  --muted: rgba(247, 243, 235, 0.72);
  --low: rgba(247, 243, 235, 0.45);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --content: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'Instrument Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(209, 168, 68, 0.12), transparent 28%),
    radial-gradient(circle at left center, rgba(23, 37, 74, 0.32), transparent 34%),
    linear-gradient(180deg, #05070e 0%, #060915 38%, #05070e 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.body-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

[id] {
  scroll-margin-top: 96px;
}

.section-inner {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.chapter {
  position: relative;
  padding: 6.5rem 0;
}

.chapter + .chapter {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.chapter-intro {
  max-width: 760px;
  margin-bottom: 2.75rem;
}

.chapter-intro.centered {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-label,
.eyebrow,
.hero-card-kicker,
.program-kicker,
.story-note-label,
.contact-point-label,
.proof-index,
.impact-label,
.timeline-date {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-label,
.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
}

.section-title,
.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.section-title {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.section-lead,
.hero-summary,
.story-copy p,
.program-body p,
.proof-body p,
.film-copy .section-lead,
.contact-copy .section-lead {
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.35rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 70%, #b58427 100%);
  color: #141107;
  box-shadow: 0 18px 34px rgba(209, 168, 68, 0.18);
}

.btn-gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 0 24px rgba(209, 168, 68, 0.4);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-block {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

.reveal-delay-4 {
  transition-delay: 360ms;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem min(2rem, 4vw);
  background: rgba(5, 7, 14, 0.2);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.nav.scrolled {
  background: rgba(7, 10, 18, 0.88);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.nav-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-logo-img {
  width: 5.2rem;
  height: 5.2rem;
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.5));
}

.nav-name {
  font-family: var(--font-label);
  font-size: 0.94rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.82);
  transition: color 220ms var(--ease);
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.nav-accent {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(209, 168, 68, 0.8);
  border-radius: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 220ms var(--ease);
}

.hamburger:hover {
  opacity: 0.8;
}

.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.hamburger span {
  width: 1.75rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(5, 7, 14, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-label);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 220ms var(--ease);
}

.mobile-menu a:hover {
  color: var(--gold-soft);
}

.mobile-menu a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 7rem 0 4rem;
  overflow: clip;
}

.hero-media-layer,
.hero-scrim,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-media-layer {
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  display: block;
}

.hero-photo-current {
  right: -4rem;
  bottom: 0;
  width: min(58vw, 880px);
  height: 100%;
  object-fit: cover;
  object-position: 52% 16%;
  opacity: 0.84;
  mask-image: linear-gradient(90deg, transparent 0%, black 16%, black 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 16%, black 100%);
}

.hero-photo-younger {
  left: 33%;
  top: 6%;
  width: min(23vw, 332px);
  height: 70%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.62;
  filter: grayscale(0.08) sepia(0.06) contrast(1.08) brightness(1.08);
  mix-blend-mode: screen;
  mask-image:
    radial-gradient(82% 88% at 52% 44%, black 0 62%, transparent 100%),
    linear-gradient(180deg, transparent 0%, black 12%, black 92%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(82% 88% at 52% 44%, black 0 62%, transparent 100%),
    linear-gradient(180deg, transparent 0%, black 12%, black 92%, transparent 100%);
}

.hero-video {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.12;
  mix-blend-mode: screen;
}

.hero-scrim {
  z-index: 1;
  background:
    radial-gradient(circle at 37% 24%, rgba(247, 243, 235, 0.1), transparent 17%),
    radial-gradient(circle at 72% 24%, rgba(209, 168, 68, 0.14), transparent 22%),
    radial-gradient(circle at 58% 40%, rgba(247, 243, 235, 0.07), transparent 18%),
    linear-gradient(90deg, rgba(5, 7, 14, 0.95) 0%, rgba(5, 7, 14, 0.8) 30%, rgba(5, 7, 14, 0.28) 58%, rgba(5, 7, 14, 0.15) 82%, rgba(5, 7, 14, 0.1) 100%),
    linear-gradient(180deg, rgba(5, 7, 14, 0.18) 0%, rgba(5, 7, 14, 0.55) 54%, rgba(5, 7, 14, 0.92) 100%);
}

.hero-pattern {
  z-index: 2;
  background:
    radial-gradient(circle at 18% 18%, rgba(19, 33, 70, 0.24), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0) 36%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 3;
  min-height: calc(100svh - 11rem);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  max-width: 44rem;
  min-width: 0;
  padding-top: 2rem;
  align-self: center;
}

.hero-title {
  font-size: clamp(4.2rem, 8vw, 7.9rem);
}

.hero-title-primary,
.hero-title-secondary {
  display: block;
}

.hero-title-secondary {
  color: var(--gold);
}

.hero-summary {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-inline-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-inline-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-inline-proof span::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--gold);
}

.hero-give-card {
  align-self: center;
  justify-self: stretch;
  width: min(100%, 23.5rem);
  padding: 1.45rem;
  border: 1px solid rgba(209, 168, 68, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.82) 0%, rgba(8, 11, 20, 0.72) 100%);
  backdrop-filter: blur(18px) saturate(112%);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.hero-card-logo {
  width: 11rem;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.55));
}

.hero-card-kicker,
.program-kicker {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  margin-bottom: 0.7rem;
}

.hero-give-card h2,
.program-card h3,
.proof-card h3,
.timeline-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.hero-give-card p {
  color: var(--muted);
  margin: 0.9rem 0 1.25rem;
}

.hero-card-list,
.proof-list,
.film-points {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.hero-card-list li,
.proof-list li,
.film-points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-card-list li::before,
.proof-list li::before,
.film-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
}

.impact-bar {
  position: relative;
  z-index: 1;
  margin-top: -2rem;
  padding-bottom: 1rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.impact-stat {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(7, 10, 18, 0.84);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.impact-value {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
}

.impact-label {
  display: block;
  color: var(--low);
  font-size: 0.72rem;
}

.chapter-story {
  padding-top: 5.5rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2.25rem;
  align-items: center;
}

.story-media {
  position: relative;
  padding-bottom: 3.25rem;
}

.story-main-frame,
.program-media,
.proof-media,
.film-frame,
.gallery-item,
.contact-form,
.story-note,
.contact-point,
.voice-card,
.timeline-item,
.proof-card,
.program-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel);
}

.story-main-frame {
  box-shadow: var(--shadow);
}

.story-main-frame img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center 22%;
}

.story-crest-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: min(72%, 360px);
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(7, 10, 18, 0.92);
  border: 1px solid rgba(209, 168, 68, 0.22);
}

.story-crest-card img {
  width: 3.2rem;
}

.story-crest-label {
  margin: 0 0 0.15rem;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.story-crest-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.story-copy p {
  margin: 0 0 1rem;
}

.memorial-quote {
  margin: 1.8rem 0;
  padding: 1.4rem 1.35rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: rgba(209, 168, 68, 0.06);
}

.memorial-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--text);
}

.memorial-quote footer {
  margin-top: 0.85rem;
  color: var(--low);
  font-size: 0.9rem;
}

.story-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.story-note {
  padding: 1rem;
}

.story-note strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 0.98rem;
}

.chapter-proof {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.proof-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.proof-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.proof-card-image:first-child .proof-media img {
  object-position: center 34%;
}

.proof-card-image:nth-child(2) .proof-media img {
  object-position: center 50%;
}

.proof-body {
  padding: 1.35rem;
}

.proof-index {
  display: inline-block;
  color: var(--gold);
  font-size: 0.74rem;
  margin-bottom: 0.9rem;
}

.proof-card h3 {
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
}

.proof-card-text {
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(209, 168, 68, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(8, 11, 20, 0.96) 0%, rgba(8, 11, 20, 0.88) 100%);
}

.trust-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.trust-ribbon span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--low);
  font-size: 0.9rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.program-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.program-card:first-child .program-media img {
  object-position: center 58%;
}

.program-card:nth-child(2) .program-media img {
  object-position: center 18%;
}

.program-body {
  position: relative;
  padding: 1.35rem;
  flex: 1;
}

.program-card h3 {
  margin-bottom: 0.85rem;
}

.program-meta {
  margin-top: 1.2rem;
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.program-card-water {
  position: relative;
  justify-content: center;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(209, 168, 68, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(10, 14, 24, 0.94) 0%, rgba(6, 9, 17, 0.94) 100%);
}

.program-water-mark {
  position: absolute;
  right: 1rem;
  top: 0.7rem;
  font-family: var(--font-display);
  font-size: 5.2rem;
  line-height: 1;
  color: rgba(209, 168, 68, 0.1);
}

.chapter-film {
  background: linear-gradient(180deg, rgba(209, 168, 68, 0.04), rgba(255, 255, 255, 0));
}

.film-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.film-frame {
  box-shadow: var(--shadow);
}

.film-frame video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 52%;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-item {
  padding: 1.25rem;
}

.timeline-item h3 {
  font-size: 1.5rem;
  margin: 0.45rem 0 0.7rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.timeline-date {
  color: var(--gold);
  font-size: 0.72rem;
}

.timeline-item-featured {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(209, 168, 68, 0.08), rgba(255, 255, 255, 0.02));
}

.chapter-voices {
  background: rgba(255, 255, 255, 0.015);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.voice-card {
  position: relative;
  padding: 1.25rem;
  padding-top: 2rem;
}

.voice-card::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  font-family: var(--font-display);
}

.voice-card p {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.voice-card span {
  display: block;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.gallery-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 1rem;
}

.gallery-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 280px;
  margin-bottom: 3rem;
}

.gallery-archive-block {
  margin-bottom: 2rem;
}

.gallery-archive-label {
  margin-bottom: 1.5rem;
}

.gallery-grid-archive {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 220ms var(--ease);
}

.gallery-item:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease);
}

.gallery-grid-featured .gallery-item-large .gallery-photo {
  object-position: center 34%;
}

.gallery-grid-featured .gallery-item:nth-child(2) .gallery-photo {
  object-position: center 18%;
}

.gallery-grid-featured .gallery-item:nth-child(6) .gallery-photo {
  object-position: center 22%;
}

.gallery-item:hover .gallery-photo {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 14, 0.95));
  color: var(--text);
  font-size: 0.93rem;
}

.gallery-grid-archive .gallery-item figcaption {
  padding: 0.75rem;
  font-size: 0.82rem;
}

.gallery-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.3rem;
}

.gallery-footer p {
  margin: 0;
  color: var(--low);
}

.chapter-contact {
  padding-bottom: 5.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 1.5rem;
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-point {
  padding: 1rem;
}

.contact-point a {
  color: var(--gold-soft);
  transition: color 220ms var(--ease);
}

.contact-point a:hover {
  color: var(--gold);
}

.contact-form {
  padding: 1.4rem;
}

.form-field + .form-field {
  margin-top: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(209, 168, 68, 0.18);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--low);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  gap: 1.4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 4.6rem;
  flex: 0 0 auto;
}

.footer-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.footer-copy,
.footer-meta {
  margin: 0;
  color: var(--low);
}

.footer-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links-wrap a {
  color: var(--muted);
}

.footer-links-wrap a:hover {
  color: var(--gold-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  padding: 2rem;
  background: rgba(5, 7, 14, 0.92);
  backdrop-filter: blur(18px);
}

.lightbox.open {
  display: grid;
  place-items: center;
}

.lightbox-image {
  width: min(92vw, 1100px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.lightbox-caption {
  margin: 1rem 0 0;
  color: var(--muted);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #141107;
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .hero-shell,
  .story-layout,
  .film-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    align-items: start;
    gap: 1.25rem;
  }

  .hero-photo-current {
    right: -5rem;
    width: min(68vw, 780px);
    height: 100%;
    object-position: 54% 18%;
  }

  .hero-photo-younger {
    left: 31%;
    top: 6%;
    width: min(24vw, 278px);
    height: 66%;
    object-position: center 29%;
    opacity: 0.6;
  }

  .hero-video {
    opacity: 0.11;
  }

  .hero-copy {
    padding-top: 2rem;
    max-width: 100%;
  }

  .hero-give-card {
    justify-self: stretch;
    width: min(100%, 24rem);
  }

  .impact-grid,
  .program-grid,
  .proof-grid,
  .timeline-grid,
  .voices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-grid-featured .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-grid-archive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .story-notes,
  .contact-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  [id] {
    scroll-margin-top: 82px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-name {
    display: none;
  }

  .chapter {
    padding: 5rem 0;
  }

  .hero {
    min-height: auto;
    padding: calc(5.75rem + 14.75rem) 0 3rem;
  }

  .nav-logo-img {
    width: 4.4rem;
    height: 4.4rem;
  }

  .hero-shell {
    gap: 1rem;
  }

  .hero-photo-current {
    top: 5.35rem;
    right: -4%;
    bottom: auto;
    width: min(74vw, 312px);
    height: min(45svh, 18.75rem);
    object-position: 55% 14%;
    opacity: 0.84;
  }

  .hero-photo-younger {
    top: 5.15rem;
    left: 3.5%;
    width: min(42vw, 154px);
    height: min(35svh, 13.65rem);
    object-position: center 31%;
    opacity: 0.82;
  }

  .hero-video {
    opacity: 0.09;
    object-position: center top;
  }

  .hero-scrim {
    background:
      radial-gradient(circle at 24% 15%, rgba(247, 243, 235, 0.14), transparent 18%),
      radial-gradient(circle at 72% 16%, rgba(209, 168, 68, 0.15), transparent 24%),
      linear-gradient(180deg, rgba(5, 7, 14, 0.08) 0%, rgba(5, 7, 14, 0.18) 18%, rgba(5, 7, 14, 0.74) 44%, rgba(5, 7, 14, 0.94) 100%),
      linear-gradient(90deg, rgba(5, 7, 14, 0.72) 0%, rgba(5, 7, 14, 0.16) 100%);
  }

  .hero-pattern {
    background:
      radial-gradient(circle at 80% 8%, rgba(247, 243, 235, 0.06), transparent 16%),
      radial-gradient(circle at 18% 6%, rgba(19, 33, 70, 0.24), transparent 18%);
  }

  .hero-title {
    font-size: clamp(2.65rem, 12vw, 4.35rem);
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-summary {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .hero-inline-proof {
    gap: 0.7rem;
  }

  .hero-inline-proof span {
    width: auto;
    justify-content: flex-start;
  }

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

  .impact-grid,
  .program-grid,
  .proof-grid,
  .timeline-grid,
  .voices-grid,
  .story-notes,
  .contact-points {
    grid-template-columns: 1fr;
  }

  .impact-bar {
    margin-top: 0;
    padding-top: 0.5rem;
  }

  .trust-ribbon span,
  .gallery-footer .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .impact-stat,
  .story-note,
  .proof-body,
  .program-body,
  .voice-card,
  .timeline-item,
  .contact-point,
  .contact-form,
  .hero-give-card {
    padding: 1rem;
  }

  .story-layout {
    gap: 1.5rem;
  }

  .story-media {
    display: grid;
    gap: 0.9rem;
    padding-bottom: 0;
  }

  .story-crest-card {
    position: static;
    max-width: none;
  }

  .hero-give-card {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero-card-logo {
    width: 8.75rem;
  }

  .hero-give-card h2,
  .program-card h3,
  .proof-card h3,
  .timeline-item h3 {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .memorial-quote {
    padding: 1.15rem;
  }

  .memorial-quote p {
    font-size: 1.1rem;
  }

  .contact-point p,
  .contact-point a {
    overflow-wrap: anywhere;
  }

  .program-water-mark {
    font-size: 3.4rem;
    top: 1rem;
  }

  .gallery-grid-featured,
  .gallery-grid-archive {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.reveal {
    opacity: 1;
    transform: none;
  }

  .gallery-grid-featured .gallery-item-large {
    grid-column: auto;
    grid-row: span 1;
  }

  .gallery-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .section-inner {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .hero {
    padding-top: calc(5.25rem + 13rem);
  }

  .hero-give-card,
  .contact-form {
    padding: 1.1rem;
  }

  .hero-photo-current {
    width: min(78vw, 300px);
    height: min(40svh, 16.35rem);
  }

  .hero-photo-younger {
    left: 4%;
    width: min(43vw, 136px);
    height: min(31svh, 12rem);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-inline-proof span {
    width: 100%;
  }

  .section-title {
    font-size: 2.35rem;
  }

  .voice-card p {
    font-size: 1.2rem;
  }

  .story-main-frame img {
    aspect-ratio: 4 / 5;
  }

  .gallery-grid-featured,
  .gallery-grid-archive {
    grid-auto-rows: 220px;
  }

  .lightbox-image {
    width: 100%;
  }
}
