/* === S.O.N. ORGANIZATION — UNIFIED STYLESHEET === */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #012B78ff;
  --gold:   #F8DA40ff;
  --gold-hover:   #e6c832;
  --lt-blue:  #18B3ECff;
  --cream:  #f2f1fb;
  --warm:   #eef3fc;
  --text:   #1a1a1a;
  --muted:  #666666;
  --white:  #ffffff;

  /* 2026 redesign tokens (additive — used by the redesigned homepage).
     Existing pages don't reference these, so they're safe to add here. */
  --navy-deep: #021e54;            /* darker navy for gradients/overlays */
  --surface:   #f5f7fb;            /* soft warm gray section background */
  --cream-2:   #fbf9f2;            /* light cream section background */
  --ink:       #15233f;            /* near-navy body text, AA on white/cream */
  --line:      #e4e8f0;            /* hairline borders */
  --radius:    18px;               /* rounded corners */
  --radius-sm: 12px;
  --shadow-soft: 0 12px 34px rgba(1, 43, 120, .10);
  --shadow-card: 0 4px 18px rgba(1, 43, 120, .08);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-num:  'Bebas Neue', sans-serif;

  /* Elevated 2026 fluid type scale (used site-wide) */
  --h1: clamp(2.5rem, 5.4vw, 4.3rem);
  --h2: clamp(1.9rem, 3.6vw, 2.9rem);
  --h3: clamp(1.3rem, 2vw, 1.6rem);
  --h4: clamp(1.05rem, 1.5vw, 1.2rem);
  --lead: clamp(1.08rem, 1.6vw, 1.3rem);

  /* Spacing rhythm */
  --section-y: clamp(4rem, 8vw, 7rem);
  --gap: clamp(1.5rem, 3vw, 2.5rem);

  /* Easing */
  --ease: cubic-bezier(.16, .84, .44, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 2.5rem;
  background: var(--navy);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: .12em;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}
.nav-logo-img {
  position: relative;
  z-index: 1;
  height: 60px;
  width: 60px;
  object-fit: cover;
}
.nav-logo span { color: var(--white); margin-left: -.5rem; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .55rem 1.4rem;
  border-radius: 999px;
  font-weight: 700 !important;
  letter-spacing: .08em;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--gold-hover) !important; transform: translateY(-1px); }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  border-radius: 10px;
  transition: transform .25s ease, opacity .25s ease;
}
nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ─── NAV DROPDOWN ─── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a::after {
  content: ' ▾';
  font-size: 1em;
  opacity: .6;
}
.nav-dropdown-toggle { display: none; }
.nav-dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + .6rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border-top: 2px solid var(--gold);
  min-width: 170px;
  padding: .4rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, visibility .18s;
  z-index: 200;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown a {
  display: block;
  padding: .6rem 1.2rem;
  font-size: .92rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav-dropdown a:hover { color: var(--gold); }

/* ─── HERO (homepage & about-us) ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 4rem 5rem 6rem;
  position: relative;
  z-index: 2;
  width: 52%;
  flex-shrink: 0;
}

.hero-eyebrow {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.6rem;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.8rem;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 38%;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 55%),
              linear-gradient(to top, var(--navy) 0%, transparent 20%);
  z-index: 1;
}

.hero-img,
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-deco {
  position: absolute;
  bottom: 1rem;
  left: 6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 9vw, 10rem);
  color: rgba(255,255,255,0.04);
  letter-spacing: .04em;
  line-height: 1;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}

/* ─── PAGE HERO / BANNER (2026 — shared by all interior pages) ─── */
.page-hero {
  background: var(--navy-deep);
  padding: clamp(8rem, 12vw, 11rem) 6rem clamp(3.5rem, 6vw, 5.5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

/* Soft radial glow instead of the old stripe pattern */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 100% at 85% 0%, rgba(24,179,236,.16), transparent 55%),
    radial-gradient(90% 90% at 0% 100%, rgba(248,218,64,.10), transparent 60%);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.6rem;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: end;
  position: relative;
  z-index: 1;
}

.page-hero-inner--simple {
  grid-template-columns: 1fr;
}

/* Eyebrow — gold tick + tight tracking (matches home .eyebrow) */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.hero-label::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--gold);
  border-radius: 999px;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: var(--h1);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.page-hero h1 em,
.page-hero h1 .accent {
  font-style: normal;
  color: var(--gold);
}

.page-hero-sub {
  font-family: var(--font-body);
  font-size: var(--lead);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 560px;
}

/* Memorial card */
.memorial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,160,32,0.3);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  text-align: center;
  align-self: center;
}

.memorial-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3a6e, #0a1628);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.12);
  margin: 0 auto 1.2rem;
  border: 3px solid var(--gold);
  overflow: hidden;
}

.memorial-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 1%;
  transform: scale(1.1);
}

.memorial-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}
.memorial-dates {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.memorial-nick {
  font-size: .82rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ─── MISSION STRIP ─── */
.mission-strip {
  background: var(--gold);
  padding: 2.4rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mission-strip p {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}

.mission-strip-logo {
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SECTION BASE ─── */
section { padding: var(--section-y) 6rem; }

/* Modern eyebrow label — gold tick + tight tracking (matches home .eyebrow) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--gold);
  border-radius: 999px;
}
.section-title {
  font-family: var(--font-head);
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.015em;
  color: var(--navy);
  margin-bottom: 1.4rem;
}

/* ─── WHAT WE DO ─── */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.what-text p {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--warm);
  border: 1px solid rgba(192,98,26,0.15);
  padding: .5rem 1.2rem;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--lt-blue);
  margin-bottom: 1.5rem;
}

.workshops-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
}

.workshop-tag {
  background: var(--warm);
  border: 1px solid rgba(192,98,26,0.2);
  color: var(--lt-blue);
  padding: .45rem 1rem;
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ─── PHOTO COLLAGE ─── */
.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: .8rem;
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

.photo-collage .photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) contrast(1.05);
  transform: scale(1.15);
}
.photo-collage .photo-card:nth-child(2){
  transform: scale(1.0);
  object-position: center 2%;
}
/* ─── PILLARS ─── */
.pillars { background: var(--navy); }
.pillars .section-label { color: var(--gold); }
.pillars .section-title, .values .section-title { color: var(--white); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,160,32,0.2);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: background .25s, transform .2s;
  cursor: default;
}
.pillar-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
.pillar-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .65rem;
}
.pillar-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ─── PULL QUOTE BAND ─── */
.pull-quote-band {
  background: var(--warm);
  padding: 4rem 6rem;
  text-align: center;
}

.pull-quote-band blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  border: none;
  padding: 0;
}

.pull-quote-band .quote-attr {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 1.2rem;
  letter-spacing: .04em;
}

/* ─── IMPACT NUMBERS (homepage) ─── */
.impact { background: var(--warm); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.impact-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.impact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.impact-number {
  font-family: var(--font-num);
  font-size: 5rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .4rem;
}
.impact-number span { color: var(--lt-blue); }
.impact-number span { color: var(--gold); }

.impact-label {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}

/* ─── FOUNDER STORY (homepage) ─── */
.founder {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.founder-img-wrap {
  position: relative;
}

.founder-img-wrap::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  background: var(--gold);
  border-radius: 10px;
  z-index: 0;
}

.founder-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a3a6e, #0d1f3c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.12);
  overflow: hidden;
}

.founder-content { padding-top: 1rem; }
.founder-quote {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  border-left: 4px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 1.8rem;
}

.founder-content p {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.founder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: var(--navy);
  margin-top: 1.5rem;
}
.founder-title-text { font-size: .82rem; color: var(--muted); font-weight: 500; letter-spacing: .05em; }

/* ─── VALUES (homepage) ─── */
.values { background: var(--navy); padding: 5rem 6rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 3rem;
}
.value-item {
  background: var(--navy);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background .2s;
}
.value-item:hover { background: rgba(255,255,255,0.04); }
.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(232,160,32,0.2);
  display: block;
}
.value-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}

/* ─── VOLUNTEER CTA (about-us) / CTA BANNER (shared) ─── */
.cta-banner, .volunteer-cta {
  background: var(--gold);
  padding: 5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border-radius: var(--radius);
}

.cta-banner h2, .volunteer-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--navy);
  line-height: 1.15;
  max-width: 600px;
}

.volunteer-cta p {
  font-size: 1.3rem;
  color: rgba(13,31,60,0.7);
  max-width: 600px;
  line-height: 1.65;
  margin-top: .8rem;
}

/* ─── PARTNERS ─── */
.partners { text-align: center; }
.partners .section-label { margin: 0 auto 1rem; }
.partners .section-title { text-align: center; margin-bottom: .8rem; }
.partners-sub { color: var(--muted); font-size: .96rem; margin-bottom: 3rem; }

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

.partner-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: box-shadow .2s, transform .15s;
  border-top: 3px solid transparent;
}
.partner-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-top-color: var(--gold);
}

.partner-card--logo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
}

.partner-card img {
  max-width: 180px;
  max-height: 90px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .3s;
}
.partner-card:hover img {
  filter: grayscale(0%);
}

/* ─── LOGO STRIP (about-us partners) ─── */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-strip img {
  max-width: 240px;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: .85;
  transition: filter .3s, opacity .3s;
}

.logo-strip img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}
.partner-mission {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  text-align: left;
}
.partner-mission strong { font-weight: 600; }


/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: .9rem 2.2rem;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: .9rem 2.2rem;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(232,160,32,0.08); }

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2.6rem;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.btn-navy:hover { background: #162f5e; transform: translateY(-2px); }

.btn-gold {
  display: block;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: .8rem 1.2rem;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold-hover); }

.btn-outline-navy {
  display: block;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  text-align: center;
  padding: .8rem 1.2rem;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  margin-top: .7rem;
  transition: background .2s;
}
.btn-outline-navy:hover { background: rgba(13,31,60,0.06); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4rem 6rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .8rem;
}

.footer-tagline {
  font-family: var(--font-head);
  font-weight: 500;
  font-style: italic;
  font-size: .95rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-mission { font-size: 1rem; line-height: 1.75; max-width: 340px; }

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 1rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 1rem;
  margin-bottom: .5rem;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}

.footer-social { display: flex; gap: .9rem; }
.footer-social a {
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  transition: color .2s, transform .2s;
}
.footer-social a:hover { color: var(--gold); transform: translateY(-2px); }
.footer-social svg { width: 22px; height: 22px; fill: currentColor; }
.footer-social i { font-size: 1.3rem; line-height: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slowzoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.hero-eyebrow { animation: fadeUp .6s ease both; }
.hero-title   { animation: fadeUp .6s ease .15s both; }
.hero-sub     { animation: fadeUp .6s ease .3s both; }
.hero-buttons { animation: fadeUp .6s ease .45s both; }
.page-hero-inner { animation: fadeUp .7s ease both; }

/* ─── RESPONSIVE: MID (901px – 1305px) ─── */
@media (max-width: 1305px) {
  section { padding: 5rem 3.5rem; }
  .hero-left { padding: 9rem 3rem 5rem 4rem; }
  .page-hero { padding: 9rem 3.5rem 4rem; }
  nav { padding: 1.2rem 2.5rem; }
  .what-grid { gap: 2.5rem; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .cta-banner, .volunteer-cta { flex-direction: column; text-align: center; padding: 4rem 3rem; }
}

/* ─── RESPONSIVE: HAMBURGER (≤ 1275px) ─── */
@media (max-width: 1275px) {
  nav { padding: 1rem 1.5rem; flex-wrap: wrap; align-items: center; }
  .nav-logo-img-wrap { display: none; }
  .nav-logo { order: 1; }
  .nav-hamburger { display: flex; margin-left: auto; order: 2; }
  .nav-links {
    order: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    align-items: stretch;
    gap: 0;
    padding: 0;
    transition: max-height .35s ease;
  }
  nav.nav-open .nav-links { max-height: 700px; }
  .nav-links > li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-links > li:first-child { border-top: 1px solid rgba(255,255,255,.1); }
  .nav-links a { display: block; width: 100%; padding: .9rem 1.5rem; font-size: 1.1rem; text-align: left; }
  .nav-cta { border-radius: 0; background: transparent; color: var(--gold); }
  /* Dropdown: link navigates, chevron button toggles */
  .nav-has-dropdown { margin-bottom: 0; display: flex; flex-wrap: wrap; align-items: center; }
  .nav-has-dropdown > a { flex: 1; width: auto; }
  .nav-has-dropdown > a::after { display: none; }
  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    padding: .9rem 0;
    background: none;
    border: none;
    color: rgba(255,255,255,.7);
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform .25s;
  }
  .nav-has-dropdown.is-open .nav-dropdown-toggle { transform: rotate(180deg); }
  .nav-dropdown {
    flex-basis: 100%;
    width: 100%;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(0,0,0,.2);
    border: none;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-has-dropdown.is-open .nav-dropdown { max-height: 200px; }
  .nav-dropdown li { border-top: 1px solid rgba(255,255,255,.07); }
  .nav-dropdown a { font-size: 1.1rem; padding: .75rem 1.5rem .75rem 2.5rem; color: rgba(255,255,255,.7); }
}

@media (max-width: 900px) {
  /* Sections */
  section { padding: 4rem 1.8rem; }

  /* Hero (homepage) */
  .hero { min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 1.8rem 4rem; width: 100%; }

  /* Page hero (shared) */
  .page-hero { padding: 8rem 1.8rem 3.5rem; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Grids — index */
  .what-grid { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Photo collage — simplify to 2-col single row, drop placeholder */
  .photo-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px;
  }
  .photo-collage .photo-card:first-child { grid-row: span 1; }
  .photo-collage .photo-card:last-child { display: none; }

  /* Logo strip — wrap & shrink */
  .logo-strip { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
  .logo-strip img { max-width: 130px; }

  /* Pull quote band (shared) */
  .pull-quote-band { padding: 3rem 1.8rem; }

  /* Partners grid */
  .partners-grid { grid-template-columns: 1fr 1fr; }

  /* Strips & banners */
  .mission-strip { padding: 1.4rem 1.8rem; }
  .cta-banner, .volunteer-cta { flex-direction: column; text-align: center; padding: 3.5rem 1.8rem; }

  /* Footer */
  footer { padding: 3rem 1.8rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
#cookie-banner p { margin: 0; font-size: 0.9rem; line-height: 1.5; }
#cookie-banner a { color: var(--gold); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn-accept, .cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  border-radius: 999px;
  font-size: 0.9rem;
}
.cookie-btn-accept { background: var(--gold); color: var(--navy); border: none; font-weight: 500; }
.cookie-btn-decline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 1.25rem 1.5rem; }
}

/* ─── ACCESSIBILITY GUARDRAILS (2026 redesign, site-wide & additive) ─── */
:focus-visible {
  outline: 3px solid var(--lt-blue);
  outline-offset: 2px;
  border-radius: 10px;
}
/* On the dark navy nav, use gold rings so they stay visible */
nav a:focus-visible,
nav button:focus-visible {
  outline-color: var(--gold);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--navy);
  padding: .75rem 1.25rem;
  font-weight: 700;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  left: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── FOOTER NEWSLETTER (used by redesigned footer partial) ─── */
.footer-newsletter { margin-top: 1.4rem; }
.footer-newsletter h4 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .18em;
  margin-bottom: .5rem;
  font-family: var(--font-head, 'Poppins', sans-serif);
}
.footer-newsletter p {
  font-size: .92rem;
  opacity: .85;
  margin-bottom: .85rem;
  line-height: 1.5;
}
.footer-newsletter form {
  display: flex;
  gap: .5rem;
  max-width: 420px;
  flex-wrap: wrap;
}
.footer-newsletter input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: .7rem .9rem;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
}
.footer-newsletter input[type="email"]::placeholder { color: rgba(255,255,255,.55); }
.footer-newsletter button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: .7rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-head, 'Poppins', sans-serif);
  transition: background .2s, transform .15s;
}
.footer-newsletter button:hover { background: var(--gold-hover); transform: translateY(-1px); }
.footer-newsletter .nl-note { font-size: .78rem; opacity: .6; margin-top: .5rem; }

/* ============================================================
   GLOBAL ROUNDING — soften every card / photo / media / input
   across ALL pages in one place. Loaded last so it wins over the
   page-specific stylesheets. Keeps brand colors untouched.
   ============================================================ */

/* Cards & content panels → large radius */
.mv-card,
.approach-item, .service-card,
.board-card,
.board-member-card,
.bio-modal-inner,
.report-card,
.contact-info-card,
.sidebar-card,
.strategy-quote,
.memorial-tribute,
.vision-visual,
.ty-quote {
  border-radius: var(--radius);
  overflow: hidden;
}

/* Photos, image frames & decorative gold backers → matching radius */
.about-photo, .about-photo-wrap::before,
.belief-photo,
.spotlight-photo, .spotlight-photo::before, .spotlight-photo img,
.board-photo, .board-member-photo,
.full-bleed-photo,
.story-photo,
.ty-icon, .ty-icon-wrap::before {
  border-radius: var(--radius);
}

/* Media embeds (video / map) → matching radius */
.approach-video, .service-video,
.map-band, .map-band iframe {
  border-radius: var(--radius);
  overflow: hidden;
}

/* Form fields → soft small radius (full pills look wrong on inputs) */
.form-group input,
.form-group select,
.form-group textarea {
  border-radius: var(--radius-sm);
}

/* Gold page CTAs (founder story) → match the homepage rounded band */
.closing-cta { border-radius: var(--radius); }

/* Founder-story pull quote → soften the squared right corners */
blockquote { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ============================================================
   2026 ELEVATION LAYER — site-wide helpers promoted out of the
   `.home` scope so every page can share the same modern system.
   Loaded last in main.css. Page-specific CSS files still load
   after main.css, so each page's own Playfair/stripe rules are
   retired in their own files.
   ============================================================ */

/* ---- Eyebrow (gold tick) ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--gold);
  border-radius: 999px;
}

/* ---- Centered section header ---- */
.section-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow { color: var(--navy); }
.section-head h2 {
  font-family: var(--font-head);
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--navy);
}
.section-head p { color: var(--muted); margin-top: .9rem; font-size: var(--lead); }
.section-head--left { margin-left: 0; margin-right: 0; text-align: left; }
.section-head--left .eyebrow { justify-content: flex-start; }

/* ---- Button system (site-wide, modern rounded) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s, color .2s, border-color .2s;
}
.btn.btn-gold,
.btn-gold-2026 { background: var(--gold); color: var(--navy); border-color: transparent; }
.btn.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn.btn-navy { background: var(--navy); color: var(--white); }
.btn.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn.btn-ghost:hover { border-color: var(--gold); background: rgba(248,218,64,.12); }
.btn.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-text {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-text svg { transition: transform .2s; }
.btn-text:hover svg { transform: translateX(4px); }

/* ---- Scroll-reveal motion (gated by prefers-reduced-motion below) ----
   Hidden state only applies once JS has confirmed it can animate (html.js),
   so the page is never left with invisible content if scripts don't run. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal="left"]  { transform: translateX(-40px); }
.js [data-reveal="right"] { transform: translateX(40px); }
.js [data-reveal].reveal-in {
  opacity: 1;
  transform: none;
}
/* Stagger children when a container is marked data-reveal-group */
[data-reveal-group] > [data-reveal] { transition-delay: calc(var(--reveal-i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---- Scrolled-nav shadow (set by tiny site script) ---- */
nav.is-scrolled { box-shadow: 0 6px 24px rgba(1,43,120,.18); }
