@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #FDF5EB;
  --cream-deep: #F2E8D9;
  --navy: #0D3349;
  --navy-deep: #071D2A;
  --orange: #E85D26;
  --gold: #C49A3C;
  --rule: #C8D4DA;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── UTILITIES ─── */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  font-weight: 500;
}

.rule-thin {
  height: 1px;
  background: var(--rule);
}

.rule-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.text-balance { text-wrap: balance; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled.light {
  background: rgba(253,245,235,0.92);
  backdrop-filter: blur(8px);
  border-color: rgba(13,51,73,0.1);
}

.site-header.scrolled.dark {
  background: rgba(7,29,42,0.92);
  backdrop-filter: blur(8px);
  border-color: rgba(253,245,235,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header-nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s;
  position: relative;
}

.header-nav a:hover,
.header-nav a.active { opacity: 1; }

.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.header-actions { display: flex; align-items: center; gap: 1rem; }

.btn-donate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-donate:hover { background: var(--orange); color: #fff; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  padding: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-nav a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
}

/* Dark header variant */
.header-dark .header-nav a,
.header-dark .btn-donate { color: var(--cream); }
.header-dark .btn-donate { border-color: var(--orange); color: var(--orange); }
.header-dark .menu-toggle { color: var(--cream); }
.header-dark .mobile-nav { background: var(--navy-deep); border-color: rgba(255,255,255,0.1); }
.header-dark .mobile-nav a { color: var(--cream); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #d44f1a; }

.btn-outline-cream {
  border: 1px solid rgba(253,245,235,0.35);
  color: var(--cream);
}
.btn-outline-cream:hover { border-color: var(--cream); }

.btn-outline-navy {
  border: 1px solid rgba(13,51,73,0.25);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--cream); }

.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: #b08930; }

.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--orange); }

.btn-arrow { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── SECTION LABEL ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label.center { justify-content: center; }
.section-label .num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.section-label .line {
  display: block;
  height: 1px;
  width: 40px;
  background: rgba(13,51,73,0.3);
}
.section-label.dark .line { background: rgba(253,245,235,0.3); }
.section-label .text {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  font-weight: 500;
  color: rgba(13,51,73,0.6);
}
.section-label.dark .text { color: rgba(253,245,235,0.6); }

/* ─── EDITORIAL QUOTE ─── */
.editorial-quote {
  padding: 8rem 0;
  text-align: center;
}
.editorial-quote.cream { background: var(--cream); }
.editorial-quote.navy { background: var(--navy-deep); color: var(--cream); }

.editorial-quote .open-quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 1.5rem;
}
.editorial-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-style: italic;
  font-weight: 400;
  max-width: 56rem;
  margin: 0 auto;
  text-wrap: balance;
}
.editorial-quote .attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.editorial-quote .attribution .line {
  display: block;
  height: 1px;
  width: 3rem;
  background: var(--orange);
}
.editorial-quote .attribution-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
}
.editorial-quote .attribution-role {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  color: rgba(13,51,73,0.6);
  margin-top: 0.25rem;
}
.editorial-quote.navy .attribution-role { color: rgba(253,245,235,0.6); }

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--cream);
  padding: 10rem 0 6rem;
}
.page-header-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: start;
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--navy);
  text-wrap: balance;
}
.page-header .intro {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(13,51,73,0.75);
  line-height: 1.6;
  margin-top: 2.5rem;
  max-width: 40rem;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 5rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 3rem;
}
.footer-logo { height: 36px; width: auto; object-fit: contain; margin-bottom: 2rem; }
.footer-desc {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(253,245,235,0.8);
  max-width: 28rem;
}
.footer-city {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(253,245,235,0.5);
  margin-top: 1.5rem;
}
.footer-nav-title {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: rgba(253,245,235,0.5);
  margin-bottom: 1.25rem;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a {
  font-size: 14px;
  color: rgba(253,245,235,0.75);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }
.footer-contact-email {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  transition: color 0.2s;
  display: block;
  margin-bottom: 2rem;
}
.footer-contact-email:hover { color: var(--orange); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(253,245,235,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-social svg { width: 16px; height: 16px; }
.footer-disclaimer {
  font-size: 11px;
  color: rgba(253,245,235,0.5);
  line-height: 1.6;
  margin-top: 2.5rem;
}
.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253,245,235,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(253,245,235,0.5);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom span { text-transform: uppercase; letter-spacing: 0.25em; }

/* ─── HERO (HOME + ETERNA) ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,29,42,0.8) 0%, rgba(7,29,42,0.55) 40%, rgba(7,29,42,1) 100%);
}
.hero-content {
  position: relative;
  width: 100%;
  padding: 10rem 0 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 9fr 3fr;
  gap: 2.5rem;
  align-items: flex-end;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.02;
}
.hero-cta-stack { display: flex; flex-direction: column; gap: 0.75rem; }

/* ─── HOME SECTIONS ─── */
.conviction {
  background: var(--cream);
  padding: 7rem 0 11rem;
}
.conviction-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 3rem;
}
.conviction-body {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.2;
  color: var(--navy);
  text-wrap: balance;
}
.conviction-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.conviction-pillar p:first-child { color: var(--orange); margin-bottom: 0.75rem; }
.conviction-pillar p:last-child {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: rgba(13,51,73,0.8);
  line-height: 1.6;
}

.programs-dark {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 7rem 0 10rem;
}
.programs-header {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 2.5rem;
  align-items: flex-end;
  margin-bottom: 5rem;
}
.programs-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}
.programs-header p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(253,245,235,0.75);
  line-height: 1.6;
}
.program-list { list-style: none; }
.program-item {
  border-bottom: 1px solid rgba(253,245,235,0.15);
}
.program-item a {
  display: grid;
  grid-template-columns: 1fr 5fr 5fr 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 3.5rem 0;
  transition: background 0.2s;
}
.program-item a:hover { background: rgba(253,245,235,0.03); }
.program-num {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(253,245,235,0.4);
}
.program-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: var(--cream);
  transition: color 0.2s;
  letter-spacing: -0.02em;
}
.program-item a:hover .program-name { color: var(--orange); }
.program-desc {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: rgba(253,245,235,0.7);
  line-height: 1.6;
}
.program-arrow {
  display: flex;
  justify-content: flex-end;
}
.program-arrow svg {
  width: 1.5rem; height: 1.5rem;
  color: rgba(253,245,235,0.5);
  transition: color 0.2s, transform 0.2s;
}
.program-item a:hover .program-arrow svg { color: var(--orange); transform: translate(3px,-3px); }

.eterna-feature {
  background: var(--navy);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.eterna-img-wrap {
  position: relative;
  overflow: hidden;
}
.eterna-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.eterna-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,29,42,0.6), rgba(7,29,42,0.2), rgba(13,51,73,0.8));
}
.eterna-copy {
  padding: 6rem 3rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eterna-logo { height: 6rem; width: auto; object-fit: contain; margin-bottom: 2.5rem; }
.eterna-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  line-height: 1.08;
  text-wrap: balance;
}
.eterna-copy p {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(253,245,235,0.8);
  line-height: 1.6;
  max-width: 36rem;
}
.eterna-btns { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; max-width: 28rem; }

.cta-strip {
  background: var(--cream);
  padding: 6rem 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 2.5rem;
  align-items: center;
}
.cta-grid h2 {
  margin-top: 1.5rem;
  font-size: clamp(1.75rem, 3.5vw, 3.75rem);
  color: var(--navy);
  line-height: 1.1;
}
.cta-links { display: flex; flex-direction: column; gap: 0; }
.cta-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(13,51,73,0.2);
  padding: 1.25rem 0;
  transition: border-color 0.2s;
}
.cta-link:hover { border-color: var(--orange); }
.cta-link span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  transition: color 0.2s;
}
.cta-link:hover span { color: var(--orange); }
.cta-link svg { width: 1.25rem; height: 1.25rem; color: rgba(13,51,73,0.6); transition: color 0.2s; }
.cta-link:hover svg { color: var(--orange); }

/* ─── ABOUT PAGE ─── */
.mission-section {
  background: var(--cream-deep);
  padding: 7rem 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mission-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.mission-text h2 {
  margin-top: 1.5rem;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
}
.mission-text .rule-gold { margin: 2.5rem 0; }
.mission-text p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: rgba(13,51,73,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.leadership-section {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 7rem 0;
}
.leadership-section h2 {
  margin-top: 1.5rem;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.05;
  max-width: 48rem;
}
.leadership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: rgba(253,245,235,0.15);
}
.leadership-card {
  background: var(--navy-deep);
  padding: 2.5rem 3rem;
  transition: background 0.2s;
}
.leadership-card:hover { background: var(--navy); }
.leadership-card .role {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.leadership-card .name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--cream);
}

/* ─── PROGRAMS PAGE ─── */
.program-section {
  padding: 6rem 0 8rem;
}
.program-section:nth-child(even) { background: var(--cream-deep); }
.program-section:nth-child(odd) { background: var(--cream); }
.program-section-grid {
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  gap: 3rem;
  align-items: flex-end;
}
.program-section .big-num {
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(232,93,38,0.3);
  font-style: italic;
  line-height: 1;
}
.program-section h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  color: var(--navy);
  line-height: 1.05;
}
.program-section .tag { color: var(--orange); margin-bottom: 1.5rem; }
.program-section .desc {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(13,51,73,0.75);
  line-height: 1.6;
}
.program-learn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 3px;
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.program-learn-link:hover { color: var(--orange); border-color: var(--orange); gap: 1rem; }
.program-learn-link svg { width: 16px; height: 16px; }

/* ─── ETERNA PAGE ─── */
.fke-banner {
  background: var(--cream);
  padding: 5rem 0;
}
.fke-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.fke-line { display: block; height: 1px; width: 8rem; background: var(--gold); }
.fke-inner p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-style: italic;
  color: var(--navy);
  white-space: nowrap;
}
.fke-dot { color: var(--gold); margin: 0 0.75rem; }

.why-section {
  background: var(--cream);
  padding: 7rem 0 10rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  margin-top: 3rem;
}
.why-grid h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--navy);
  line-height: 1.05;
}
.why-grid .body {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-grid .body p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(13,51,73,0.8);
  line-height: 1.7;
  max-width: 40rem;
}
.why-quote {
  border-left: 1px solid rgba(196,154,60,0.4);
  padding-left: 3rem;
  display: flex;
  align-items: center;
}
.why-quote .oc { font-family: var(--font-serif); font-size: 4rem; color: var(--gold); line-height: 1; }
.why-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--navy);
  line-height: 1.25;
}
.why-quote figcaption {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(13,51,73,0.6);
  margin-top: 2rem;
}

.school-designed {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 7rem 0 10rem;
}
.school-designed h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 2rem 0 3.5rem;
  line-height: 1.05;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(253,245,235,0.15);
}
.pillar-card {
  background: var(--navy-deep);
  padding: 3rem;
  transition: background 0.2s;
}
.pillar-card:hover { background: var(--navy); }
.pillar-card .num { color: var(--gold); margin-bottom: 1.5rem; }
.pillar-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.pillar-card p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: rgba(253,245,235,0.75);
  line-height: 1.6;
}

.founding-families {
  background: var(--cream);
  padding: 8rem 0 12rem;
  text-align: center;
}
.founding-families h2 {
  margin-top: 2.5rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--navy);
  line-height: 1.05;
}
.founding-families p {
  margin-top: 2.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(13,51,73,0.75);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.who-section {
  background: var(--cream-deep);
  padding: 7rem 0 10rem;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
}
.who-col { display: flex; flex-direction: column; gap: 3rem; }
.who-item .tag { color: var(--orange); margin-bottom: 0.75rem; }
.who-item h3 { font-size: 1.875rem; color: var(--navy); margin-bottom: 0.75rem; }
.who-item p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: rgba(13,51,73,0.75);
  line-height: 1.7;
}
.who-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 3px;
  transition: gap 0.2s;
}
.who-link:hover { gap: 0.75rem; }
.who-link svg { width: 16px; height: 16px; }

.support-section {
  position: relative;
  background: var(--navy-deep);
  color: var(--cream);
  padding: 7rem 0 10rem;
  overflow: hidden;
}
.support-bg {
  position: absolute;
  right: 0; top: 0;
  height: 100%; width: 33%;
  object-fit: cover;
  opacity: 0.15;
}
.support-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-deep), var(--navy-deep) 60%, transparent);
}
.support-grid {
  position: relative;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: flex-end;
}
.support-grid h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  text-wrap: balance;
}
.support-grid .desc {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(253,245,235,0.8);
  max-width: 36rem;
  line-height: 1.6;
}
.launch-box {
  border: 1px solid rgba(253,245,235,0.2);
  padding: 2.5rem;
  background: rgba(13,51,73,0.3);
}
.launch-goal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.launch-goal-header .label { color: var(--gold); }
.launch-goal-header .amount { font-family: var(--font-serif); font-size: 0.875rem; color: rgba(253,245,235,0.7); }
.progress-bar { height: 4px; background: rgba(253,245,235,0.15); overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); width: 59%; }
.progress-note {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(253,245,235,0.7);
}
.launch-btns { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.choose-role {
  background: var(--cream);
  padding: 0 0 8rem;
}
.choose-role .section-label { margin-bottom: 3rem; }
.role-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(13,51,73,0.15);
  border: 1px solid rgba(13,51,73,0.15);
}
.role-card {
  background: var(--cream);
  padding: 4rem 5rem;
  transition: background 0.2s;
  display: block;
}
.role-card:hover { background: var(--cream-deep); }
.role-card .tag { margin-bottom: 1.5rem; }
.role-card h3 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.role-card p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: rgba(13,51,73,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.role-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 3px;
  transition: gap 0.2s;
}
.role-cta:hover { gap: 1.25rem; }
.role-cta svg { width: 16px; height: 16px; }
.role-cta.orange { color: var(--orange); border-color: var(--orange); }
.role-cta.gold { color: var(--gold); border-color: var(--gold); }

/* ─── GET INVOLVED PAGE ─── */
.involve-cards {
  background: var(--cream-deep);
  padding: 6rem 0;
}
.involve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(13,51,73,0.15);
  border: 1px solid rgba(13,51,73,0.15);
}
.involve-card {
  background: var(--cream);
  padding: 3rem 4rem;
  display: block;
  transition: background 0.2s;
}
.involve-card:hover { background: var(--cream-deep); }
.involve-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.involve-card:hover h2 { color: var(--orange); }
.involve-card p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: rgba(13,51,73,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.involve-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 3px;
  transition: gap 0.2s;
}
.involve-cta:hover { gap: 0.875rem; }
.involve-cta svg { width: 16px; height: 16px; }

/* ─── DONATE PAGE ─── */
.donate-section {
  background: var(--cream-deep);
  padding: 6rem 0;
}
.donate-box {
  max-width: 48rem;
  margin: 0 auto;
  border: 1px solid rgba(13,51,73,0.15);
  background: var(--cream);
  padding: 4rem;
}
.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.amount-btn {
  border: 1px solid rgba(13,51,73,0.2);
  padding: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.amount-btn:hover,
.amount-btn.active { background: var(--navy); color: var(--cream); }
.custom-label { display: block; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.custom-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(13,51,73,0.2);
  background: transparent;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}
.custom-input::placeholder { color: rgba(13,51,73,0.4); }
.custom-input:focus { border-color: var(--orange); }
.donate-submit {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.donate-submit:hover { background: #d44f1a; }
.donate-submit svg { width: 16px; height: 16px; }
.donate-note {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(13,51,73,0.6);
  text-align: center;
}

/* ─── CONTACT PAGE ─── */
.contact-section {
  background: var(--cream-deep);
  padding: 6rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
}
.contact-info .tag { color: var(--orange); margin-bottom: 1.5rem; }
.contact-email {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--navy);
  display: block;
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--orange); }
.contact-office .tag { color: var(--orange); margin-bottom: 0.75rem; }
.contact-office p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: rgba(13,51,73,0.8);
  line-height: 1.7;
}
.contact-form {
  background: var(--cream);
  border: 1px solid rgba(13,51,73,0.15);
  padding: 3.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-field label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(13,51,73,0.6);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(13,51,73,0.2);
  background: transparent;
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--orange); }
.form-textarea { resize: none; }
.form-submit {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--orange); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-cta-stack { max-width: 20rem; }
  .conviction-grid { grid-template-columns: 1fr; }
  .conviction-pillars { grid-template-columns: repeat(3, 1fr); }
  .programs-header { grid-template-columns: 1fr; }
  .program-item a { grid-template-columns: 1fr 4fr 5fr 0.5fr; gap: 1rem; }
  .eterna-feature { grid-template-columns: 1fr; }
  .eterna-img-wrap { min-height: 400px; position: relative; }
  .eterna-copy { padding: 4rem 2rem; }
  .cta-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .leadership-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .program-section-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .role-cards { grid-template-columns: 1fr; }
  .involve-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-header-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
  .fke-line { width: 3rem; }
}

@media (max-width: 768px) {
  .header-nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .program-item a { grid-template-columns: 1fr; gap: 0.5rem; padding: 2rem 0; }
  .program-num { display: none; }
  .program-arrow { display: none; }
  .conviction-pillars { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .program-section-grid { grid-template-columns: 1fr; }
  .program-section .big-num { display: none; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .role-card { padding: 2.5rem 2rem; }
  .involve-card { padding: 2rem 1.5rem; }
  .fke-inner { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .fke-line { display: none; }
  .fke-inner p { font-size: 1.5rem; white-space: normal; text-align: center; }
  .leadership-cards { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .donate-box { padding: 2rem; }
  .contact-form { padding: 2rem; }
  .programs-header { grid-template-columns: 1fr; }
  .eterna-img-wrap { min-height: 300px; }
}

/* ── LOGO FIX: Square CI logo ── */
.header-logo img {
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
}
.footer-logo {
  height: 64px !important;
  width: auto !important;
  object-fit: contain !important;
}
/* Eterna logo in hero - make bigger */
.eterna-logo {
  height: 9rem !important;
  width: auto !important;
}
