:root {
  --bg: #0b1210;
  --bg-elevated: #121c18;
  --bg-soft: #18241e;
  --fg: #f2efe6;
  --muted: #a7b3a8;
  --line: rgba(242, 239, 230, 0.12);
  --accent: #c6a45a;
  --accent-soft: #e4c97a;
  --forest: #2f5a45;
  --header-h: 4.5rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(47, 90, 69, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(198, 164, 90, 0.12), transparent 45%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #fff;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--fg);
  color: var(--bg);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 18, 16, 0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.site-header.is-open {
  background: #080e0c;
  backdrop-filter: none;
  border-bottom-color: var(--line);
}

.brand img {
  width: min(240px, 48vw);
  height: auto;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
  padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
}

.site-nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--accent-soft);
}

.nav-cta {
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(198, 164, 90, 0.55);
  color: var(--accent-soft) !important;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  background: #080e0c;
  backdrop-filter: none;
  border-bottom-color: var(--line);
}

body.nav-open {
  overflow: hidden;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 70;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.32rem auto;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    var(--hero-image) center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-zoom 18s var(--ease) forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 16, 0.35) 0%, rgba(11, 18, 16, 0.55) 40%, rgba(11, 18, 16, 0.94) 100%),
    linear-gradient(90deg, rgba(11, 18, 16, 0.55), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 48rem);
  margin: 0 auto 0 clamp(1rem, 4vw, 5rem);
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
}

.hero-logo {
  width: min(100%, 34rem);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  animation: rise 1s var(--ease) both;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  max-width: 14ch;
  color: var(--fg);
  animation: rise 1s var(--ease) 0.12s both;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 38rem;
  color: rgba(242, 239, 230, 0.82);
  animation: rise 1s var(--ease) 0.22s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
  animation: rise 1s var(--ease) 0.32s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

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

.btn-donate {
  background: #1f6f54;
  color: #f4f7f4;
  border-color: #2f8f6c;
}

.btn-donate:hover {
  background: #2a8a68;
  color: #fff;
}

.donate-strip {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  text-align: center;
}

.donate-strip p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  text-wrap: balance;
}

.nav-donate {
  color: var(--accent-soft) !important;
  opacity: 1 !important;
}

.btn-primary {
  background: var(--accent);
  color: #17140c;
}

.btn-primary:hover {
  background: var(--accent-soft);
  color: #17140c;
}

.btn-ghost {
  border-color: rgba(242, 239, 230, 0.35);
  color: var(--fg);
  background: rgba(11, 18, 16, 0.25);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

.btn-block {
  width: 100%;
}

.section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section.prose,
.section.facts,
.section.sos,
.section.band {
  display: block;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.section h2,
.gallery-intro h2,
.facts-intro h2,
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
}

.section-copy p {
  font-size: 1.05rem;
}

.section-figure {
  margin: 0;
  overflow: hidden;
}

.section-figure img,
.director-photo img,
.letter-photo img,
.gallery-grid img,
.transition-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.section-figure:hover img,
.gallery-grid figure:hover img,
.transition-grid figure:hover img {
  transform: scale(1.04);
}

blockquote {
  margin: 1.5rem 0 0;
  padding: 1rem 0 1rem 1.15rem;
  border-left: 2px solid var(--accent);
}

blockquote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 0.35rem;
}

blockquote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 201, 122, 0.45);
}

.text-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.band {
  width: 100%;
  max-width: none;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(24, 36, 30, 0.95), rgba(18, 28, 24, 0.98)),
    var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.band-inner {
  width: min(100% - 2rem, 48rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  text-align: center;
}

.pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.25rem 0 0;
  padding: 0;
}

.pillars li {
  padding: 1.25rem 0.75rem;
  border-top: 1px solid var(--line);
}

.pillars strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--accent-soft);
  margin-bottom: 0.35rem;
}

.pillars span {
  color: var(--muted);
  font-size: 0.95rem;
}

.ministry {
  grid-template-columns: 0.95fr 1.05fr;
}

.gallery {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 1rem 0 clamp(3.5rem, 8vw, 6rem);
}

.gallery-intro {
  margin-bottom: 1.75rem;
}

.gallery .video-frame {
  margin-bottom: 1.25rem;
}

.video-section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.video-section-intro {
  text-align: center;
  margin-bottom: 1.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.video-section-intro p:last-child {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.video-section > .video-frame {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}

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

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.video-card h3 {
  margin-top: 0.85rem;
  font-size: 1.2rem;
  color: var(--fg);
}

.video-card-wide {
  grid-column: 1 / -1;
}

.resources {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.resources-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

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

.partner-card {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.partner-card:hover {
  border-color: rgba(198, 164, 90, 0.55);
  transform: translateY(-2px);
  color: inherit;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 11rem;
  padding: 1.75rem;
  background: #0a0f0d;
  border-bottom: 1px solid var(--line);
}

.partner-logo img {
  width: auto;
  max-width: min(100%, 18rem);
  max-height: 7.5rem;
  object-fit: contain;
}

.partner-copy {
  padding: 1.5rem 1.5rem 1.75rem;
}

.partner-copy h3 {
  font-size: 1.65rem;
  color: var(--fg);
}

.partner-copy p {
  margin-bottom: 1rem;
}

.partner-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--accent-soft);
  border-bottom: 1px solid rgba(228, 201, 122, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.gallery-grid figure,
.transition-grid figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}

.director-teaser {
  align-items: stretch;
}

.director-photo {
  margin: 0;
  overflow: hidden;
  max-height: 34rem;
}

.cta-band {
  width: min(100% - 2rem, 52rem);
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(198, 164, 90, 0.16), transparent 60%),
    var(--bg-elevated);
  border: 1px solid var(--line);
}

.cta-band .hero-actions {
  justify-content: center;
}

.cta-inner p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.verse {
  margin-top: 1.75rem !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-soft) !important;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 42vh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2rem) clamp(1rem, 3vw, 2.5rem) 3rem;
  background: #0b1210;
}

.page-hero-media {
  position: absolute;
  inset: -18% 0;
  z-index: 0;
  background: var(--page-hero) var(--page-hero-pos, center 62%) / cover no-repeat;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 18, 16, 0.4), rgba(11, 18, 16, 0.9));
}

.page-hero-compact {
  min-height: 36vh;
}

.page-hero--ministry {
  --page-hero-pos: center 78%;
  min-height: clamp(16rem, 42vh, 26rem);
}

.page-hero--director {
  /* Oak grove hero: keep canopy and horizon balanced */
  --page-hero-pos: center 45%;
  min-height: clamp(16rem, 40vh, 24rem);
}

.page-hero--resources {
  --page-hero-pos: center 42%;
  min-height: clamp(16rem, 42vh, 26rem);
}

.page-hero--contact {
  --page-hero-pos: center 45%;
  min-height: clamp(16rem, 40vh, 24rem);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 44rem);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--fg);
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-media {
    inset: 0;
    will-change: auto;
    transform: none !important;
  }
}

.prose-wide {
  width: min(100%, 44rem);
  margin: 0 auto;
}

.prose-wide h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.facts-intro,
.sos-copy {
  width: min(100%, 44rem);
  margin-bottom: 2rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.fact-grid article {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.fact-grid h3 {
  font-size: 1.45rem;
  color: var(--accent-soft);
}

.sos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.sos-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.sos-list span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
}

.transition {
  grid-template-columns: 1fr 1.1fr;
}

.transition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.letter {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem);
}

.letter-photo {
  margin: 0;
}

.letter-photo figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--fg);
}

.letter-photo figcaption span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.letter-kicker {
  color: var(--accent) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.letter-body p {
  font-size: 1.08rem;
  color: rgba(242, 239, 230, 0.86);
}

.letter-sign {
  margin-top: 1.75rem !important;
  font-family: var(--font-display);
  font-size: 1.35rem !important;
  color: var(--fg) !important;
}

.letter-sign span {
  color: var(--accent-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem);
}

.contact-copy p {
  font-size: 1.08rem;
}

.contact-card {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  align-self: start;
}

.contact-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.contact-card dl {
  margin: 0 0 1.5rem;
}

.contact-card dl div {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.contact-card dt {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.contact-card dd {
  margin: 0;
  color: var(--fg);
}

.contact-card .btn + .btn {
  margin-top: 0.65rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 3vw, 2.5rem) 2rem;
  background: #080e0c;
}

.footer-brand {
  max-width: 28rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: min(280px, 70vw);
  margin-bottom: 1rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-cols h2 {
  font-size: 1.15rem;
  color: var(--accent-soft);
  margin-bottom: 0.65rem;
}

.footer-cols p {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.footer-cols a {
  color: var(--fg);
  text-decoration: none;
}

.footer-cols a:hover {
  color: var(--accent-soft);
}

.footer-copy {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: rgba(167, 179, 168, 0.75);
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .section,
  .ministry,
  .transition,
  .letter,
  .contact-layout,
  .director-teaser {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card-wide {
    max-width: none;
  }

  .pillars,
  .fact-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 65;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: calc(var(--header-h) + 0.75rem) 1.25rem 2rem;
    background: #080e0c;
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.22s var(--ease),
      visibility 0.22s var(--ease),
      transform 0.22s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-open .site-nav,
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
    font-family: var(--font-display);
    padding: 0.9rem 0.15rem;
    border-bottom: 1px solid rgba(242, 239, 230, 0.14);
    opacity: 1;
    color: var(--fg);
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    text-align: center;
    border: 1px solid rgba(198, 164, 90, 0.55);
    padding: 0.85rem 1rem;
  }

  .site-header.is-open .nav-toggle-bar:first-of-type,
  body.nav-open .nav-toggle-bar:first-of-type {
    transform: translateY(5.5px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle-bar:last-of-type,
  body.nav-open .nav-toggle-bar:last-of-type {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .brand {
    position: relative;
    z-index: 70;
    max-width: calc(100% - 3.5rem);
  }

  .hero-inner {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .video-section,
  .gallery {
    text-align: center;
  }

  .video-section-intro,
  .gallery-intro {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .video-section > .video-frame,
  .gallery .video-frame {
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid {
    text-align: left;
  }

  .cta-band .hero-actions,
  .letter-body .hero-actions {
    justify-content: center;
  }
}

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

  .hero-media,
  .reveal,
  .hero-logo,
  .hero h1,
  .hero-lead,
  .hero-actions {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
