:root {
  --navy: #061a33;
  --navy-2: #021124;
  --navy-3: #0a274a;
  --gold: #d7aa39;
  --gold-light: #f1d37a;
  --red: #e1162d;
  --red-dark: #b90f22;
  --white: #ffffff;
  --cream: #f8f5ef;
  --ink: #101827;
  --muted: #5b6472;
  --line: rgba(215, 170, 57, .35);
  --shadow: 0 16px 40px rgba(2, 17, 36, .14);
  --header-height: 92px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(2, 17, 36, .97);
  border-bottom: 1px solid rgba(215, 170, 57, .22);
  backdrop-filter: blur(14px);
}

.brand { display: block; flex: 0 0 auto; }
.brand img { width: clamp(205px, 25vw, 330px); height: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.3vw, 34px);
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
}
.primary-nav a { position: relative; padding: 10px 0; opacity: .94; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--gold-light); }
.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}
.primary-nav .donate-link {
  padding: 13px 23px;
  border-radius: 5px;
  background: var(--red);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.primary-nav .donate-link:hover,
.primary-nav .donate-link:focus-visible { background: var(--red-dark); color: var(--white); }
.primary-nav .donate-link::after { display: none; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(215, 170, 57, .45);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-light);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.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;
  min-height: clamp(520px, 62vw, 760px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background: url('../Assets/images/hero/home-hero.png') center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,17,36,.95) 0%, rgba(2,17,36,.78) 33%, rgba(2,17,36,.28) 63%, rgba(2,17,36,.45) 100%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(2,17,36,.78), transparent);
  z-index: -1;
}
.hero-content { color: var(--white); padding-block: 72px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.75rem, 8vw, 6.2rem);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 span { color: var(--gold-light); }
.hero h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 28px 0 0;
  background: var(--gold);
}
.hero-copy {
  max-width: 550px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(1rem, 1.65vw, 1.23rem);
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 5px;
  border: 2px solid transparent;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-red { background: var(--red); }
.btn-red:hover, .btn-red:focus-visible { background: var(--red-dark); }
.btn-outline { border-color: var(--gold); background: rgba(2,17,36,.55); }
.btn-outline:hover, .btn-outline:focus-visible { background: rgba(215,170,57,.16); }

.program-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding-block: 42px 54px;
}
.section-kicker {
  grid-column: 1 / -1;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: .08em;
}
.section-kicker::before, .section-kicker::after {
  content: "";
  display: inline-block;
  width: 54px;
  height: 2px;
  margin: 0 18px .35em;
  background: var(--gold);
}
.program-card {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px 24px;
  background: #fff;
  border: 1px solid rgba(6, 26, 51, .08);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(2,17,36,.09);
}
.icon-circle {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-light);
  margin-bottom: 14px;
}
.icon-circle svg { width: 34px; height: 34px; }
.program-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.05rem;
}
.program-card p { margin: 0; color: #303846; font-size: .95rem; }
.program-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy-3);
  font-weight: 900;
  font-size: .92rem;
}
.program-card a span { color: var(--gold); margin-left: 4px; }
.program-card a.red-link { color: var(--red); }

.goal-band {
  background: radial-gradient(circle at 50% -10%, #12375f 0, var(--navy) 42%, var(--navy-2) 100%);
  color: var(--white);
  padding-block: 42px 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.goal-band h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 34px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
.goal-band h2 span { width: 64px; height: 2px; background: var(--gold); }
.goal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.goal-item {
  text-align: center;
  padding: 4px 22px;
  border-left: 1px solid rgba(215,170,57,.3);
}
.goal-item:first-child { border-left: 0; }
.goal-item svg { width: 40px; height: 40px; color: var(--gold-light); margin-bottom: 10px; }
.goal-item strong {
  display: block;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.55rem, 2.7vw, 2.7rem);
  line-height: 1;
}
.goal-item p { margin: 8px 0 3px; font-weight: 800; }
.goal-item small { color: rgba(255,255,255,.82); font-size: .86rem; }

.movement {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 420px;
  overflow: hidden;
  background: var(--cream);
}
.movement-text {
  display: grid;
  align-items: center;
  padding: clamp(40px, 6vw, 88px) clamp(24px, 6vw, 76px);
  background: radial-gradient(circle at 90% 90%, rgba(215,170,57,.14), transparent 28%), var(--cream);
}
.movement-inner { max-width: 620px; }
.movement h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.movement h2::after { content: ""; display: block; width: 70px; height: 3px; background: var(--gold); margin-top: 20px; }
.movement p { max-width: 570px; margin: 0; color: #303846; font-size: 1.08rem; }
.script-line {
  margin-top: 30px !important;
  color: var(--gold) !important;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.7rem, 3vw, 2.6rem) !important;
  letter-spacing: .06em;
}
.movement-image {
  min-height: 420px;
  background: linear-gradient(90deg, rgba(2,17,36,.25), rgba(2,17,36,.05)), url('../Assets/images/content/case-classroom.png') center/cover no-repeat;
}
.action-card {
  position: absolute;
  right: min(5vw, 72px);
  bottom: 48px;
  width: min(315px, calc(100% - 42px));
  padding: 28px;
  background: rgba(2,17,36,.94);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.action-card svg { width: 38px; height: 38px; color: var(--gold-light); }
.action-card h3 { margin: 12px 0 8px; text-transform: uppercase; letter-spacing: .08em; font-size: 1.05rem; }
.action-card p { color: rgba(255,255,255,.9); font-size: .95rem; margin-bottom: 18px; }
.action-card .btn { width: 100%; min-height: 48px; }

.site-footer {
  background: var(--navy-2);
  color: var(--white);
  padding-block: 44px 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr 1.25fr;
  gap: 34px;
  align-items: start;
}
.footer-brand img { width: 260px; }
.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .08em;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 24px; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.86); }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--gold-light); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215,170,57,.65);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 800;
}
.site-footer p { color: rgba(255,255,255,.78); margin: 0 0 12px; }
.newsletter-form { display: flex; max-width: 360px; }
.newsletter-form input {
  min-width: 0;
  flex: 1;
  height: 44px;
  border: 0;
  border-radius: 4px 0 0 4px;
  padding: 0 14px;
}
.newsletter-form button {
  width: 52px;
  border: 0;
  border-radius: 0 4px 4px 0;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
}
.footer-bottom span { color: rgba(255,255,255,.35); padding-inline: 10px; }

@media (max-width: 1100px) {
  :root { --header-height: 78px; }
  .site-header { align-items: center; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: rgba(2,17,36,.99);
    border-bottom: 1px solid rgba(215,170,57,.25);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .primary-nav.is-open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .primary-nav a {
    padding: 17px 28px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .primary-nav a.active::after { left: 28px; right: auto; width: 42px; bottom: 8px; }
  .primary-nav .donate-link { margin: 12px 28px; text-align: center; }
  .program-cards { grid-template-columns: repeat(3, 1fr); }
  .goal-grid { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .goal-item:nth-child(4) { border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { padding-inline: 14px; }
  .brand img { width: 220px; }
  .hero { min-height: 660px; background-position: 58% center; }
  .hero::before { background: linear-gradient(90deg, rgba(2,17,36,.95), rgba(2,17,36,.72)); }
  .hero-content { padding-block: 52px; }
  .hero-actions { display: grid; gap: 12px; }
  .btn { width: 100%; }
  .program-cards { grid-template-columns: 1fr 1fr; gap: 14px; padding-block: 34px; }
  .section-kicker { font-size: 1.6rem; }
  .section-kicker::before, .section-kicker::after { width: 28px; margin-inline: 8px; }
  .program-card { min-height: 220px; padding: 22px 14px 18px; }
  .icon-circle { width: 58px; height: 58px; }
  .icon-circle svg { width: 28px; height: 28px; }
  .program-card h3 { font-size: .9rem; }
  .program-card p { font-size: .87rem; }
  .goal-band h2 span { width: 38px; }
  .goal-grid { grid-template-columns: 1fr; gap: 22px; }
  .goal-item { border-left: 0; border-top: 1px solid rgba(215,170,57,.25); padding-top: 24px; }
  .goal-item:first-child { border-top: 0; }
  .movement { grid-template-columns: 1fr; }
  .movement-image { min-height: 310px; order: -1; }
  .action-card { position: static; width: auto; margin: 0 14px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .newsletter-form { max-width: none; }
}

@media (max-width: 430px) {
  .brand img { width: 190px; }
  .site-header { min-height: 72px; }
  .hero { min-height: 620px; background-position: 52% center; }
  .hero h1 { font-size: clamp(2.4rem, 15vw, 4rem); }
  .program-cards { grid-template-columns: 1fr; }
  .program-card { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Mission page */
.page-hero {
  position: relative;
  min-height: clamp(460px, 52vw, 680px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(2,17,36,.97) 0%, rgba(2,17,36,.78) 34%, rgba(2,17,36,.24) 68%, rgba(2,17,36,.38) 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(2,17,36,.72), transparent);
}
.mission-hero { background-image: url('../Assets/images/hero/mission-hero.png'); }
.page-hero-content { color: var(--white); padding-block: 72px; }
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  line-height: .94;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 28px 0 0;
  background: var(--gold);
}
.page-hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
}
.declaration-section {
  padding-block: clamp(48px, 7vw, 92px);
  background:
    radial-gradient(circle at 15% 12%, rgba(215,170,57,.12), transparent 26%),
    linear-gradient(180deg, #fbf8f0 0%, #f4efe4 100%);
}
.declaration-layout {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}
.mission-aside {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  display: grid;
  gap: 18px;
}
.principle-card {
  padding: 24px 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(153, 108, 25, .22);
  border-left: 5px solid var(--gold);
  box-shadow: 0 12px 30px rgba(80, 54, 12, .08);
}
.principle-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 900;
  letter-spacing: .12em;
}
.principle-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.principle-card p { margin: 0; color: #394250; font-size: .95rem; }
.declaration-paper {
  position: relative;
  padding: clamp(34px, 5vw, 74px);
  color: #1d2430;
  background:
    linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.72)),
    repeating-linear-gradient(0deg, rgba(110,79,24,.035) 0 1px, transparent 1px 32px),
    #f7efd9;
  border: 1px solid rgba(103,75,28,.32);
  box-shadow: 0 28px 70px rgba(70,48,15,.17);
}
.declaration-paper::before,
.declaration-paper::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(153,108,25,.25);
}
.declaration-paper::after { inset: 25px; border-color: rgba(153,108,25,.14); }
.document-label {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #8c651e;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.declaration-paper h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.declaration-paper h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  margin-top: 18px;
  background: var(--gold);
}
.declaration-paper p {
  position: relative;
  z-index: 1;
  margin: 0 0 1.35em;
  color: #26303e;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.82;
}
.declaration-paper p.lead {
  color: var(--navy);
  font-size: clamp(1.17rem, 1.65vw, 1.45rem);
  line-height: 1.72;
}
.declaration-paper p.lead::first-letter {
  float: left;
  padding: .08em .12em 0 0;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.5em;
  line-height: .78;
}
.mission-cta {
  padding-block: clamp(44px, 6vw, 76px);
  background: var(--navy-2);
  color: var(--white);
}
.mission-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(215,170,57,.34);
  background: radial-gradient(circle at 15% 0%, rgba(215,170,57,.18), transparent 36%), var(--navy);
  box-shadow: var(--shadow);
}
.mission-cta h2 {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  text-transform: uppercase;
}
.mission-cta p:not(.eyebrow) { max-width: 720px; margin: 0; color: rgba(255,255,255,.86); }

@media (max-width: 900px) {
  .declaration-layout { grid-template-columns: 1fr; }
  .mission-aside { position: static; grid-template-columns: repeat(3, 1fr); }
  .mission-cta-box { display: grid; }
}
@media (max-width: 760px) {
  .page-hero { min-height: 620px; background-position: 62% center; }
  .page-hero::before { background: linear-gradient(90deg, rgba(2,17,36,.96), rgba(2,17,36,.72)); }
  .mission-aside { grid-template-columns: 1fr; }
  .declaration-paper { padding: 34px 24px; }
  .declaration-paper::before { inset: 12px; }
  .declaration-paper::after { inset: 18px; }
}
@media (max-width: 430px) {
  .page-hero h1 { font-size: clamp(2.25rem, 13vw, 3.6rem); }
  .declaration-paper p { font-size: 1rem; line-height: 1.72; }
  .declaration-paper p.lead::first-letter { font-size: 3.8em; }
}

/* Anti-Hate page */
.anti-hate-hero { background-image: url('../Assets/images/hero/anti-hate-hero.png'); background-position: center 42%; }
.anti-hate-hero::before {
  background: linear-gradient(90deg, rgba(2,17,36,.96) 0%, rgba(2,17,36,.84) 34%, rgba(2,17,36,.34) 68%, rgba(2,17,36,.55) 100%);
}
.anti-hate-hero h1 { max-width: 920px; }

.anti-intro {
  padding-block: clamp(52px, 7vw, 96px);
  background: #fff;
}
.anti-intro-grid {
  display: grid;
  grid-template-columns: minmax(250px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.anti-intro h2,
.section-heading h2,
.pressure-box h2,
.forum-panel h2,
.formation-box h2,
.anti-hate-cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.anti-intro h2::after,
.section-heading h2::after,
.pressure-box h2::after,
.forum-panel h2::after,
.formation-box h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 20px;
  background: var(--gold);
}
.anti-intro-copy {
  display: grid;
  gap: 18px;
  color: #2f3947;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
}
.anti-intro-copy p { margin: 0; }
.anti-intro-copy p:nth-child(2) {
  padding: 22px 24px;
  color: var(--navy);
  font-weight: 900;
  border-left: 5px solid var(--red);
  background: linear-gradient(90deg, rgba(225,22,45,.08), rgba(225,22,45,.02));
}

.case-method-section {
  padding-block: clamp(56px, 7vw, 100px);
  background:
    radial-gradient(circle at 80% 12%, rgba(215,170,57,.12), transparent 28%),
    linear-gradient(180deg, #f8f5ef 0%, #fff 100%);
}
.section-heading { max-width: 880px; margin-bottom: 38px; }
.center-heading { margin-inline: auto; text-align: center; }
.center-heading h2::after { margin-inline: auto; }
.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.center-heading p:not(.eyebrow) { margin-inline: auto; }
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.method-step {
  position: relative;
  min-height: 340px;
  padding: 28px 24px 26px;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 1px solid rgba(215,170,57,.32);
  box-shadow: 0 16px 38px rgba(2,17,36,.16);
}
.method-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(215,170,57,.2), transparent 38%);
  pointer-events: none;
}
.method-step span {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 900;
}
.method-step h3 {
  position: relative;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.05rem;
}
.method-step p {
  position: relative;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: .98rem;
}

.pressure-section {
  padding-block: clamp(54px, 7vw, 96px);
  background: var(--navy-2);
  color: var(--white);
}
.pressure-box {
  display: grid;
  grid-template-columns: minmax(260px, 520px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(215,170,57,.34);
  background: radial-gradient(circle at 0 0, rgba(215,170,57,.18), transparent 34%), var(--navy);
}
.pressure-box h2 { color: var(--white); }
.pressure-questions {
  display: grid;
  gap: 13px;
}
.pressure-questions p {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.94);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.hard-questions {
  padding-block: clamp(56px, 7vw, 100px);
  background: #fff;
}
.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.question-grid article {
  min-height: 205px;
  padding: 26px 24px;
  border: 1px solid rgba(6,26,51,.1);
  border-top: 5px solid var(--gold);
  background: #fff;
  box-shadow: 0 12px 28px rgba(2,17,36,.08);
}
.question-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1rem;
}
.question-grid p {
  margin: 0;
  color: #303846;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.07rem, 1.35vw, 1.23rem);
  line-height: 1.52;
}

.better-forum {
  padding-block: clamp(52px, 7vw, 96px);
  background: linear-gradient(180deg, #f8f5ef 0%, #fff 100%);
}
.forum-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
}
.forum-panel {
  padding: clamp(30px, 5vw, 56px);
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.forum-panel p {
  margin: 22px 0 0;
  font-size: 1.08rem;
}
.dark-panel {
  color: var(--white);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 1px solid rgba(215,170,57,.32);
}
.dark-panel h2 { color: var(--white); }
.dark-panel p { color: rgba(255,255,255,.86); }
.light-panel {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(6,26,51,.1);
  box-shadow: 0 16px 40px rgba(2,17,36,.1);
}

.formation-section {
  padding-block: clamp(56px, 7vw, 100px);
  background:
    radial-gradient(circle at 50% 110%, rgba(215,170,57,.16), transparent 28%),
    var(--cream);
}
.formation-box {
  max-width: 930px;
  padding: clamp(34px, 5vw, 68px);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(153,108,25,.22);
  box-shadow: 0 20px 50px rgba(80,54,12,.1);
}
.formation-box p:not(.eyebrow) {
  color: #303846;
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  margin: 24px 0 0;
}
.formation-box .formation-line {
  color: var(--navy) !important;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem) !important;
  line-height: 1.35;
}
.anti-hate-cta {
  padding-block: clamp(44px, 6vw, 76px);
  background: var(--navy-2);
  color: var(--white);
}
.anti-hate-cta h2 { color: var(--white); }

@media (max-width: 1100px) {
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .question-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .anti-intro-grid,
  .pressure-box,
  .forum-layout { grid-template-columns: 1fr; }
  .forum-panel { min-height: auto; }
}
@media (max-width: 760px) {
  .anti-hate-hero { background-position: 54% center; }
  .method-steps,
  .question-grid { grid-template-columns: 1fr; }
  .method-step { min-height: auto; }
  .pressure-box { padding: 26px 18px; }
  .question-grid article { min-height: auto; }
}


/* Antisemitism page */
.antisemitism-hero { background-image: url('../Assets/images/hero/antisemitism-hero.png'); background-position: center 45%; }
.antisemitism-hero::before {
  background: linear-gradient(90deg, rgba(2,17,36,.97) 0%, rgba(2,17,36,.84) 34%, rgba(2,17,36,.22) 68%, rgba(2,17,36,.52) 100%);
}
.antisemitism-hero h1 { max-width: 920px; }

.antisemitism-intro {
  padding-block: clamp(54px, 7vw, 98px);
  background:
    radial-gradient(circle at 16% 0%, rgba(215,170,57,.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
}
.antisemitism-intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}
.intro-statement h2,
.narrative-body h2,
.question-block h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.intro-statement h2 {
  font-size: clamp(2rem, 4.2vw, 3.9rem);
  line-height: 1.05;
}
.intro-statement h2::after,
.narrative-body h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  margin-top: 20px;
  background: var(--gold);
}
.framed-copy {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(153,108,25,.22);
  border-left: 6px solid var(--gold);
  box-shadow: 0 16px 44px rgba(80,54,12,.1);
}
.framed-copy p {
  margin: 0 0 1.1em;
  color: #303846;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.05rem, 1.35vw, 1.23rem);
  line-height: 1.76;
}
.framed-copy p:last-child { margin-bottom: 0; }

.antisemitism-nav-section {
  padding-block: 26px;
  background: var(--navy-2);
  border-block: 1px solid rgba(215,170,57,.28);
}
.antisemitism-nav-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.antisemitism-nav-grid a {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 16px 12px;
  color: var(--gold-light);
  border: 1px solid rgba(215,170,57,.28);
  background: rgba(255,255,255,.04);
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 900;
}
.antisemitism-nav-grid a span {
  color: rgba(255,255,255,.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.25;
}
.antisemitism-nav-grid a:hover,
.antisemitism-nav-grid a:focus-visible { background: rgba(215,170,57,.14); }

.longform-section {
  padding-block: clamp(54px, 7vw, 104px);
  background:
    radial-gradient(circle at 84% 3%, rgba(215,170,57,.11), transparent 26%),
    linear-gradient(180deg, #f8f5ef 0%, #fff 42%, #f8f5ef 100%);
}
.longform-shell {
  display: grid;
  gap: clamp(36px, 5vw, 72px);
}
.narrative-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(6,26,51,.09);
  box-shadow: 0 20px 54px rgba(2,17,36,.11);
}
.section-image {
  width: 100%;
  height: clamp(190px, 28vw, 320px);
  object-fit: cover;
  background: var(--navy);
}
.narrative-body {
  padding: clamp(30px, 5vw, 68px);
}
.section-number {
  margin: 0 0 10px !important;
  color: var(--gold) !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 1.08rem !important;
  font-weight: 900;
  letter-spacing: .18em;
}
.narrative-body h2 {
  font-size: clamp(1.9rem, 4vw, 3.65rem);
  line-height: 1.06;
  margin-bottom: 30px;
}
.narrative-body p,
.narrative-body li {
  color: #303846;
  font-size: clamp(1.02rem, 1.28vw, 1.15rem);
  line-height: 1.78;
}
.narrative-body p { margin: 0 0 1.15em; }
.narrative-body p:first-of-type:not(.section-number) {
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.18rem, 1.65vw, 1.42rem);
  line-height: 1.55;
}
.closing-line {
  color: var(--navy) !important;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(1.22rem, 1.7vw, 1.5rem) !important;
  line-height: 1.48 !important;
}
.pull-quote {
  margin: 30px 0;
  padding: 24px 28px;
  color: var(--white);
  background: radial-gradient(circle at 100% 0%, rgba(215,170,57,.22), transparent 38%), var(--navy);
  border-left: 6px solid var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.35;
}
.dual-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
.dual-line span {
  padding: 22px;
  color: var(--navy);
  background: linear-gradient(180deg, #fbf8f0 0%, #fff 100%);
  border-top: 5px solid var(--gold);
  box-shadow: 0 12px 28px rgba(2,17,36,.08);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.45vw, 1.28rem);
  line-height: 1.45;
}
.trap-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}
.trap-list li {
  padding: 18px 18px 18px 22px;
  border-left: 4px solid var(--red);
  background: rgba(225,22,45,.055);
}
.forms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.forms-grid div {
  padding: 20px 16px;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 1px solid rgba(215,170,57,.28);
}
.forms-grid strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.forms-grid span {
  display: block;
  color: rgba(255,255,255,.84);
  font-size: .92rem;
  line-height: 1.48;
}
.question-block {
  margin: 34px 0;
  padding: clamp(24px, 4vw, 42px);
  background: var(--navy-2);
  color: var(--white);
  border: 1px solid rgba(215,170,57,.34);
  box-shadow: 0 16px 38px rgba(2,17,36,.16);
}
.question-block h3 {
  color: var(--gold-light);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.25;
  margin-bottom: 22px;
}
.question-block ul { margin: 0; padding-left: 1.2em; }
.question-block li { color: rgba(255,255,255,.9); margin-bottom: 12px; }
.final-words {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.final-words span {
  padding: 12px 17px;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .88rem;
}
.final-card { border-bottom: 6px solid var(--gold); }

@media (max-width: 1100px) {
  .antisemitism-nav-grid { grid-template-columns: repeat(4, 1fr); }
  .forms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .antisemitism-intro-grid { grid-template-columns: 1fr; }
  .antisemitism-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .trap-list { grid-template-columns: 1fr; }
  .dual-line { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .antisemitism-hero { background-position: 54% center; }
  .narrative-body { padding: 28px 20px; }
  .section-image { height: 210px; }
  .forms-grid { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .antisemitism-nav-grid { grid-template-columns: 1fr; }
  .framed-copy { padding: 24px 18px; }
  .section-image { height: 180px; }
}

/* Faith Protection page */
.faith-protection-hero { background-image: url('../Assets/images/hero/faith-protection-hero.png'); background-position: center 48%; }
.faith-protection-hero::before {
  background: linear-gradient(90deg, rgba(2,17,36,.97) 0%, rgba(2,17,36,.83) 34%, rgba(2,17,36,.28) 68%, rgba(2,17,36,.48) 100%);
}
.faith-protection-hero h1 { max-width: 980px; }

.faith-opening {
  padding-block: clamp(54px, 7vw, 98px);
  background:
    radial-gradient(circle at 15% 0%, rgba(215,170,57,.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8f5ef 100%);
}
.faith-opening-grid {
  display: grid;
  grid-template-columns: minmax(260px, 450px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}
.faith-opening h2,
.faith-split-copy h2,
.faith-how-box h2,
.launch-box h2,
.faith-action-card h3,
.faith-final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4.1vw, 3.75rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.faith-opening h2::after,
.faith-split-copy h2::after,
.faith-how-box h2::after,
.launch-box h2::after,
.faith-action-card h3::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 20px;
  background: var(--gold);
}
.faith-opening-copy {
  display: grid;
  gap: 18px;
  color: #303846;
  font-size: clamp(1.05rem, 1.42vw, 1.2rem);
}
.faith-opening-copy p { margin: 0; }
.faith-opening-copy p:nth-child(3) {
  padding: 22px 24px;
  color: var(--navy);
  font-weight: 900;
  border-left: 5px solid var(--gold);
  background: linear-gradient(90deg, rgba(215,170,57,.13), rgba(215,170,57,.03));
}

.faith-why,
.faith-standard {
  padding-block: clamp(56px, 7vw, 104px);
  background: #fff;
}
.faith-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
}
.faith-split-reverse { grid-template-columns: .95fr 1.05fr; }
.faith-split-image {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(6,26,51,.09);
  box-shadow: 0 18px 48px rgba(2,17,36,.13);
  background: var(--navy);
}
.faith-split-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.faith-split-copy p:not(.eyebrow) {
  color: #303846;
  font-size: clamp(1.05rem, 1.35vw, 1.17rem);
  line-height: 1.78;
  margin: 22px 0 0;
}
.faith-conviction {
  margin-top: 28px;
  padding: 24px 28px;
  color: var(--white);
  background: radial-gradient(circle at 100% 0%, rgba(215,170,57,.22), transparent 38%), var(--navy);
  border-left: 6px solid var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  line-height: 1.4;
  box-shadow: 0 14px 34px rgba(2,17,36,.14);
}

.faith-services {
  padding-block: clamp(56px, 7vw, 104px);
  background:
    radial-gradient(circle at 82% 5%, rgba(215,170,57,.13), transparent 28%),
    linear-gradient(180deg, #f8f5ef 0%, #fff 100%);
}
.faith-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.faith-service-grid article {
  min-height: 260px;
  padding: 28px 24px 26px;
  background: #fff;
  border: 1px solid rgba(6,26,51,.09);
  border-top: 5px solid var(--gold);
  box-shadow: 0 13px 30px rgba(2,17,36,.08);
}
.faith-service-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 900;
}
.faith-service-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.05rem;
}
.faith-service-grid p {
  margin: 0;
  color: #303846;
  font-size: .98rem;
  line-height: 1.65;
}

.faith-how {
  padding-block: clamp(56px, 7vw, 104px);
  background: var(--navy-2);
  color: var(--white);
}
.faith-how-box {
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(215,170,57,.34);
  background: radial-gradient(circle at 0 0, rgba(215,170,57,.18), transparent 34%), var(--navy);
}
.faith-how-box h2 { color: var(--white); }
.faith-how-box p:not(.eyebrow) {
  color: rgba(255,255,255,.84);
  font-size: 1.07rem;
  line-height: 1.75;
  margin: 24px 0 0;
}
.faith-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.faith-process-grid article {
  padding: 20px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(215,170,57,.22);
}
.faith-process-grid strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.faith-process-grid span {
  color: rgba(255,255,255,.85);
  font-size: .94rem;
  line-height: 1.55;
}

.standard-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.standard-list span {
  display: block;
  padding: 17px 18px;
  color: var(--navy);
  background: linear-gradient(90deg, rgba(215,170,57,.14), rgba(215,170,57,.035));
  border-left: 5px solid var(--gold);
  font-weight: 800;
}

.faith-launch {
  padding-block: clamp(48px, 7vw, 88px);
  background: linear-gradient(180deg, #f8f5ef 0%, #fff 100%);
}
.launch-box {
  display: grid;
  grid-template-columns: minmax(260px, 460px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(30px, 5vw, 58px);
  background: #fff;
  border: 1px solid rgba(153,108,25,.22);
  box-shadow: 0 18px 48px rgba(80,54,12,.1);
}
.launch-box p:not(.eyebrow) {
  color: #303846;
  font-size: 1.07rem;
  line-height: 1.75;
  margin: 0 0 1.1em;
}
.launch-box p:last-child { margin-bottom: 0; }

.faith-actions {
  padding-block: clamp(56px, 7vw, 104px);
  background: #fff;
}
.faith-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.faith-action-card {
  padding: clamp(30px, 5vw, 54px);
  background: linear-gradient(180deg, #fbf8f0 0%, #fff 100%);
  border: 1px solid rgba(153,108,25,.22);
  box-shadow: 0 16px 40px rgba(2,17,36,.09);
}
.faith-action-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
}
.faith-action-card p {
  color: #303846;
  font-size: 1.05rem;
  line-height: 1.72;
  margin: 24px 0 0;
}
.faith-action-card ul {
  padding-left: 1.15em;
  margin: 24px 0 28px;
  color: #303846;
}
.faith-action-card li { margin-bottom: 9px; }
.donor-card {
  color: var(--white);
  background: radial-gradient(circle at 100% 0%, rgba(215,170,57,.22), transparent 38%), var(--navy);
  border-color: rgba(215,170,57,.35);
}
.donor-card h3 { color: var(--white); }
.donor-card p,
.donor-card ul { color: rgba(255,255,255,.86); }

.faith-final-cta {
  padding-block: clamp(44px, 6vw, 76px);
  background: var(--navy-2);
  color: var(--white);
}
.faith-final-cta h2 { color: var(--white); }

@media (max-width: 1100px) {
  .faith-service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .faith-opening-grid,
  .faith-split,
  .faith-split-reverse,
  .faith-how-box,
  .launch-box,
  .faith-action-grid { grid-template-columns: 1fr; }
  .faith-split-image,
  .faith-split-image img { min-height: 330px; }
}
@media (max-width: 760px) {
  .faith-protection-hero { background-position: 51% center; }
  .faith-service-grid,
  .faith-process-grid { grid-template-columns: 1fr; }
  .faith-service-grid article { min-height: auto; }
  .faith-how-box { padding: 26px 18px; }
  .faith-action-card { padding: 28px 20px; }
}
@media (max-width: 430px) {
  .faith-protection-hero h1 { font-size: clamp(2.15rem, 12.5vw, 3.45rem); }
  .faith-split-image,
  .faith-split-image img { min-height: 245px; }
}

/* Contact page */
.contact-hero { background-image: url('../Assets/images/hero/contact-hero.png'); background-position: center 44%; }
.contact-hero::before {
  background: linear-gradient(90deg, rgba(2,17,36,.97) 0%, rgba(2,17,36,.84) 36%, rgba(2,17,36,.24) 68%, rgba(2,17,36,.45) 100%);
}
.contact-hero h1 { max-width: 920px; }

.contact-section {
  padding-block: clamp(56px, 7vw, 108px);
  background:
    radial-gradient(circle at 12% 0%, rgba(215,170,57,.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8f5ef 100%);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
}
.contact-intro h2,
.contact-cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.contact-intro h2::after,
.contact-cta h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 20px;
  background: var(--gold);
}
.contact-intro p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #303846;
  font-size: clamp(1.04rem, 1.35vw, 1.17rem);
  line-height: 1.78;
}
.contact-highlights {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.contact-highlights div {
  padding: 18px 18px;
  background: rgba(255,255,255,.78);
  border-left: 5px solid var(--gold);
  box-shadow: 0 10px 28px rgba(2,17,36,.07);
}
.contact-highlights strong {
  display: block;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}
.contact-highlights span {
  display: block;
  color: #4a5260;
  font-size: .96rem;
  line-height: 1.55;
}
.contact-form-card {
  padding: clamp(26px, 4vw, 48px);
  background: #fff;
  border: 1px solid rgba(6,26,51,.09);
  border-top: 6px solid var(--gold);
  box-shadow: 0 20px 56px rgba(2,17,36,.12);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row { display: grid; gap: 8px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .88rem;
}
.form-row label span {
  color: var(--muted);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(6,26,51,.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-form textarea { resize: vertical; min-height: 170px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(215,170,57,.18);
}
.contact-submit { justify-self: start; margin-top: 8px; border: 0; cursor: pointer; }
.contact-cta {
  padding-block: clamp(44px, 6vw, 78px);
  background: var(--navy-2);
  color: var(--white);
}
.contact-cta-box {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(215,170,57,.34);
  background: radial-gradient(circle at 15% 0%, rgba(215,170,57,.18), transparent 36%), var(--navy);
}
.contact-cta h2 { color: var(--white); max-width: 790px; }
.contact-cta p:not(.eyebrow) { max-width: 760px; margin: 20px 0 0; color: rgba(255,255,255,.86); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-cta-box { display: grid; }
}
@media (max-width: 760px) {
  .contact-hero { background-position: 55% center; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form-card { padding: 26px 18px; }
}

/* Donate page */
.donate-hero { background-image: url('../Assets/images/hero/donate-hero.png'); background-position: center 45%; }
.donate-hero::before {
  background: linear-gradient(90deg, rgba(2,17,36,.97) 0%, rgba(2,17,36,.82) 34%, rgba(2,17,36,.24) 70%, rgba(2,17,36,.48) 100%);
}
.donate-hero h1 { max-width: 980px; }

.donate-opening {
  padding-block: clamp(54px, 7vw, 100px);
  background:
    radial-gradient(circle at 14% 0%, rgba(215,170,57,.13), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8f5ef 100%);
}
.donate-opening-grid {
  display: grid;
  grid-template-columns: minmax(260px, 450px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}
.donate-opening h2,
.zelle-copy h2,
.what-you-fund .section-heading h2,
.donate-program-copy h2,
.donor-impact-box h2,
.donate-final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.donate-opening h2::after,
.zelle-copy h2::after,
.donate-program-copy h2::after,
.donor-impact-box h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 20px;
  background: var(--gold);
}
.donate-opening-copy {
  display: grid;
  gap: 18px;
  color: #303846;
  font-size: clamp(1.05rem, 1.42vw, 1.2rem);
  line-height: 1.78;
}
.donate-opening-copy p { margin: 0; }
.donate-belief {
  padding: 22px 24px;
  color: var(--navy) !important;
  font-weight: 900;
  border-left: 5px solid var(--gold);
  background: linear-gradient(90deg, rgba(215,170,57,.13), rgba(215,170,57,.03));
}

.zelle-section {
  padding-block: clamp(48px, 7vw, 90px);
  background: var(--navy-2);
  color: var(--white);
}
.zelle-card {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, .9fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(215,170,57,.38);
  background: radial-gradient(circle at 0 0, rgba(215,170,57,.18), transparent 35%), var(--navy);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}
.zelle-copy h2 { color: var(--white); }
.zelle-copy p {
  max-width: 680px;
  color: rgba(255,255,255,.86);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 24px 0 0;
}
.zelle-email {
  display: inline-flex;
  margin-top: 18px;
  padding: 16px 20px;
  color: var(--navy-2);
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: .02em;
  overflow-wrap: anywhere;
}
.zelle-email:hover,
.zelle-email:focus-visible { background: var(--gold); }
.zelle-note { font-size: .96rem !important; color: rgba(255,255,255,.76) !important; }
.zelle-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(215,170,57,.35);
  background: rgba(255,255,255,.06);
}
.zelle-panel span {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.zelle-panel strong {
  display: block;
  color: var(--white);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.zelle-panel p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.82);
  line-height: 1.72;
}

.what-you-fund {
  padding-block: clamp(56px, 7vw, 104px);
  background: #fff;
}
.fund-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fund-grid article {
  min-height: 350px;
  padding: 30px 24px;
  background: #fff;
  border: 1px solid rgba(6,26,51,.09);
  border-top: 5px solid var(--gold);
  box-shadow: 0 14px 34px rgba(2,17,36,.08);
}
.fund-grid .icon-circle { margin: 0 0 18px; }
.fund-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.04rem;
}
.fund-grid p {
  margin: 0;
  color: #303846;
  line-height: 1.68;
}

.donate-program-section {
  padding-block: clamp(56px, 7vw, 104px);
  background: linear-gradient(180deg, #f8f5ef 0%, #fff 100%);
}
.donate-program-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.donate-program-image {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(2,17,36,.05), rgba(2,17,36,.18)),
    url('../Assets/images/hero/donate-hero.png') center/cover no-repeat;
  border: 1px solid rgba(6,26,51,.09);
  box-shadow: 0 18px 48px rgba(2,17,36,.13);
}
.donate-program-copy {
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
  border: 1px solid rgba(153,108,25,.22);
  box-shadow: 0 18px 48px rgba(80,54,12,.1);
}
.donate-program-copy p:not(.eyebrow) {
  color: #303846;
  font-size: clamp(1.05rem, 1.35vw, 1.17rem);
  line-height: 1.78;
  margin: 22px 0 0;
}
.dark-outline { color: var(--navy); background: transparent; }
.dark-outline:hover,
.dark-outline:focus-visible { background: rgba(215,170,57,.16); }

.donor-impact-section {
  padding-block: clamp(52px, 7vw, 96px);
  background: #fff;
}
.donor-impact-box {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 100% 0%, rgba(215,170,57,.14), transparent 34%),
    linear-gradient(180deg, #fbf8f0 0%, #fff 100%);
  border: 1px solid rgba(153,108,25,.22);
  box-shadow: 0 18px 48px rgba(80,54,12,.1);
}
.donor-impact-box p:not(.eyebrow) {
  color: #303846;
  font-size: 1.07rem;
  line-height: 1.76;
  margin: 22px 0 0;
}
.donor-impact-list {
  display: grid;
  gap: 13px;
}
.donor-impact-list span {
  display: block;
  padding: 18px 20px;
  color: var(--navy);
  background: #fff;
  border-left: 5px solid var(--gold);
  box-shadow: 0 10px 26px rgba(2,17,36,.07);
  font-weight: 900;
}

.donate-final-cta {
  padding-block: clamp(44px, 6vw, 76px);
  background: var(--navy-2);
  color: var(--white);
}
.donate-final-cta h2 { color: var(--white); }

@media (max-width: 1100px) {
  .fund-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .donate-opening-grid,
  .zelle-card,
  .donate-program-layout,
  .donor-impact-box { grid-template-columns: 1fr; }
  .donate-program-image { min-height: 360px; order: -1; }
}
@media (max-width: 760px) {
  .donate-hero { background-position: 56% center; }
  .zelle-card { padding: 26px 18px; }
  .fund-grid { grid-template-columns: 1fr; }
  .fund-grid article { min-height: auto; }
  .donate-program-copy { padding: 28px 20px; }
  .donate-program-image { min-height: 280px; }
}
@media (max-width: 430px) {
  .donate-hero h1 { font-size: clamp(2.1rem, 12.5vw, 3.4rem); }
  .zelle-email { width: 100%; justify-content: center; text-align: center; font-size: .95rem; }
}


/* Governance pages: Privacy Policy and Terms of Use */
.governance-hero {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(215,170,57,.24), transparent 28%),
    linear-gradient(135deg, rgba(2,17,36,.98) 0%, rgba(6,26,51,.96) 48%, rgba(10,39,74,.88) 100%);
}
.governance-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2,17,36,.96) 0%, rgba(2,17,36,.76) 54%, rgba(2,17,36,.45) 100%),
    url('../Assets/images/hero/mission-hero.png') center/cover no-repeat;
  opacity: .45;
}
.governance-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(2,17,36,.88), transparent);
}
.governance-hero-content { color: var(--white); padding-block: 64px; }
.governance-hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.55rem, 6.4vw, 5.35rem);
  line-height: .98;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.governance-hero h1 span { color: var(--gold-light); }
.governance-hero h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 24px;
  background: var(--gold);
}
.governance-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}
.governance-section {
  padding-block: clamp(46px, 7vw, 88px);
  background:
    radial-gradient(circle at 12% 5%, rgba(215,170,57,.1), transparent 30%),
    linear-gradient(180deg, #fbf8f0 0%, #ffffff 54%, #f8f5ef 100%);
}
.governance-layout {
  display: grid;
  grid-template-columns: minmax(240px, 315px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}
.governance-nav {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 24px;
  background: var(--navy-2);
  color: var(--white);
  border: 1px solid rgba(215,170,57,.34);
  box-shadow: var(--shadow);
}
.governance-nav h2 {
  margin: 0 0 16px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .92rem;
}
.governance-nav ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.governance-nav a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,.84);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
}
.governance-nav a:hover,
.governance-nav a:focus-visible { color: var(--gold-light); }
.governance-card {
  padding: clamp(28px, 5vw, 64px);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(6,26,51,.1);
  box-shadow: 0 20px 55px rgba(2,17,36,.1);
}
.governance-card .effective-date {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  padding: 9px 13px;
  color: var(--navy);
  background: rgba(215,170,57,.16);
  border: 1px solid rgba(215,170,57,.3);
  font-weight: 900;
  font-size: .9rem;
}
.governance-card h2 {
  margin: 2.1em 0 .75em;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.governance-card h2:first-of-type { margin-top: .35em; }
.governance-card h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 12px;
  background: var(--gold);
}
.governance-card h3 {
  margin: 1.6em 0 .55em;
  color: var(--navy-3);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1rem;
}
.governance-card p,
.governance-card li {
  color: #2f3947;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}
.governance-card p { margin: 0 0 1.05em; }
.governance-card ul { margin: .3em 0 1.25em; padding-left: 1.25em; }
.governance-card li { margin-bottom: .62em; }
.governance-note {
  margin: 26px 0;
  padding: 22px 24px;
  background: linear-gradient(90deg, rgba(215,170,57,.16), rgba(215,170,57,.04));
  border-left: 5px solid var(--gold);
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.58;
}
.governance-contact-box {
  margin-top: 34px;
  padding: 26px;
  color: var(--white);
  background: radial-gradient(circle at 10% 0%, rgba(215,170,57,.18), transparent 36%), var(--navy);
  border: 1px solid rgba(215,170,57,.34);
}
.governance-contact-box h2 {
  color: var(--white);
  margin-top: 0;
}
.governance-contact-box p { color: rgba(255,255,255,.86); }
.governance-contact-box a { color: var(--gold-light); font-weight: 900; }

@media (max-width: 900px) {
  .governance-layout { grid-template-columns: 1fr; }
  .governance-nav { position: static; }
  .governance-nav ol { grid-template-columns: repeat(2, 1fr); column-gap: 18px; }
}
@media (max-width: 600px) {
  .governance-hero { min-height: 500px; }
  .governance-nav ol { grid-template-columns: 1fr; }
  .governance-card { padding: 26px 20px; }
}
