/* ============================================
   THINK PGC — Global Styles
   Brand: Navy #0B1A3E | Gold #C9A227 | White #FFFFFF
   Think Tank Without Walls
   ============================================ */

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

:root {
  --navy: #0B1A3E;
  --navy-mid: #122048;
  --navy-light: #1C3068;
  --gold: #C9A227;
  --gold-light: #DDB84A;
  --gold-pale: rgba(201, 162, 39, 0.12);
  --white: #FFFFFF;
  --off-white: #F5F4EF;
  --light-gray: #E4E4DF;
  --text-dark: #0B1A3E;
  --text-mid: #4A4A5A;
  --text-light: #888899;
  --border-gold: rgba(201, 162, 39, 0.25);
  --shadow: 0 8px 32px rgba(11, 26, 62, 0.10);
  --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.18);
  --transition: all 0.3s ease;
  --container: 1200px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.white { color: var(--white); }

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 620px;
}
.section-subtitle.white { color: rgba(255,255,255,0.75); }

.gold-line {
  width: 56px;
  height: 2.5px;
  background: var(--gold);
  margin-bottom: 32px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 44px; width: auto; }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .think {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.nav-logo-text .pgc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta { padding: 10px 22px; font-size: 0.74rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 78px;
  left: 0; right: 0;
  background: var(--navy);
  padding: 20px 28px;
  z-index: 999;
  border-bottom: 1px solid rgba(201,162,39,0.1);
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,162,39,0.055) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-mission {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 42px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: heroScroll 2.2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: 160px 0 96px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(201,162,39,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  line-height: 1.82;
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  background: var(--off-white);
  padding: 90px 0;
}
.intro-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--navy);
  font-style: italic;
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--gold);
}

.intro-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.intro-text p:last-child { margin-bottom: 0; }

/* ============================================
   IMPACT STRIP (Numbers Bar)
   ============================================ */
.impact-strip {
  background: var(--navy);
  padding: 80px 0;
}
.impact-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.impact-stat {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid rgba(201,162,39,0.18);
  position: relative;
  background: rgba(255,255,255,0.02);
}
.impact-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.impact-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.impact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ============================================
   PROGRAMS SECTION (Homepage Preview)
   ============================================ */
.programs-section { padding: 100px 0; }

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.program-card {
  background: var(--navy);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.program-card:nth-child(even) { background: var(--navy-mid); }
.program-card:hover { background: var(--navy-light); }
.program-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.program-card:hover::after { transform: scaleX(1); }

.program-icon { font-size: 2rem; margin-bottom: 20px; display: block; }

.program-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.program-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ============================================
   IN ACTION / PHOTO GALLERY
   ============================================ */
.in-action-section {
  padding: 100px 0;
  background: var(--off-white);
}

.in-action-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.photo-gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gallery-row-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2px;
}

.gallery-row-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.gallery-row-bottom .gallery-main img {
  height: 400px;
}

.gallery-row-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.gallery-row-three .gallery-main img {
  height: 360px;
}

.gallery-row-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.gallery-row-wide .gallery-main img {
  height: 440px;
  object-position: center 30%;
}

/* Legacy single-row support */
.photo-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.photo-gallery.multi {
  grid-template-columns: 2fr 1fr;
}
.photo-gallery.multi-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.gallery-main img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-main:hover img {
  transform: scale(1.02);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,26,62,0.92) 0%, transparent 100%);
  padding: 48px 36px 32px;
}

.gallery-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.gallery-caption p {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 600px;
}

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gallery-side-item {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  flex: 1;
}

.gallery-side-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease;
}

.gallery-side-item:hover img { transform: scale(1.03); }

.gallery-side-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,26,62,0.88) 0%, transparent 100%);
  padding: 28px 20px 16px;
}

.gallery-side-caption span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   WHO WE SERVE
   ============================================ */
.serve-section {
  background: var(--off-white);
  padding: 100px 0;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.serve-card {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.serve-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.serve-icon { font-size: 2.4rem; margin-bottom: 18px; }

.serve-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.serve-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================
   PARTNERS STRIP
   ============================================ */
.partners-strip {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.partners-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 36px;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}

.partner-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: 0.55;
  transition: var(--transition);
  text-transform: uppercase;
}

.partner-name:hover { opacity: 1; color: var(--gold); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--navy);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'THINK';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22vw;
  font-weight: 700;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.03em;
}

.cta-section .container { position: relative; z-index: 2; }

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060f24;
  padding: 72px 0 28px;
  border-top: 1px solid rgba(201,162,39,0.12);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 28px;
}

.footer-brand .think {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.footer-brand .tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  margin-bottom: 18px;
}
.footer-mission {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  max-width: 320px;
}

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy, .footer-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { padding: 100px 0; }
.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 40px;
}

.about-values { background: var(--off-white); padding: 100px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  padding: 40px 30px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.value-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.78;
}

.leadership-section { padding: 100px 0; }

.leader-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 900px;
}

.leader-photo {
  width: 260px;
  height: 320px;
  background: var(--navy);
  border: 1.5px solid rgba(201,162,39,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  gap: 10px;
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.leader-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.leader-bio p {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.88;
  margin-bottom: 16px;
}

/* ============================================
   PROGRAMS PAGE
   ============================================ */
.programs-full { padding: 90px 0; }

.program-full-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 60px;
  padding-bottom: 60px;
}
.program-full-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.program-sidebar {
  background: var(--navy);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.program-sidebar .program-icon { font-size: 2.2rem; margin-bottom: 16px; }
.program-sidebar .program-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.program-body {
  padding: 48px 48px;
  background: var(--off-white);
}

.program-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.program-body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}
.program-body ul { margin-top: 20px; }
.program-body li {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
}
.program-body li:last-child { border-bottom: none; }
.program-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   IMPACT PAGE
   ============================================ */
.impact-intro { padding: 100px 0; }
.impact-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.big-stat { text-align: center; }
.big-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.big-stat-number span { color: var(--gold); }
.big-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 14px;
}

.impact-reach { background: var(--off-white); padding: 100px 0; }
.reach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.reach-item { padding: 50px 44px; background: var(--white); }
.reach-item:nth-child(odd) { background: var(--navy); }
.reach-item:nth-child(odd) .reach-title { color: var(--gold); }
.reach-item:nth-child(odd) .reach-desc { color: rgba(255,255,255,0.65); }

.reach-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.reach-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.82;
}

.measure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.measure-card {
  padding: 40px 30px;
  border-top: 3px solid var(--gold);
  background: var(--off-white);
}
.measure-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.measure-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.78;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 100px 0; }
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
  padding: 13px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.08);
}
.form-textarea { min-height: 140px; resize: vertical; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-item-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.contact-item-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.donate-box {
  background: var(--navy);
  padding: 40px;
  margin-top: 44px;
  border-left: 3px solid var(--gold);
}
.donate-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.donate-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.91rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.78;
  margin-bottom: 22px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .intro-strip .container,
  .about-story .container,
  .impact-intro .container,
  .contact-section .container { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .measure-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .in-action-header { grid-template-columns: 1fr; gap: 24px; }
  .gallery-main img { height: 280px; }
  .gallery-row-top { grid-template-columns: 1fr; }
  .gallery-row-bottom .gallery-main img { height: 260px; }
  .gallery-row-three { grid-template-columns: 1fr; }
  .gallery-row-three .gallery-main img { height: 280px; }
  .gallery-row-wide { grid-template-columns: 1fr; }
  .gallery-row-wide .gallery-main img { height: 280px; }
  .photo-gallery.multi { grid-template-columns: 1fr; }
  .photo-gallery.multi-3 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .programs-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-photo { width: 100%; height: 240px; }
  .values-grid { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
  .program-full-card { grid-template-columns: 1fr; }
  .program-body { padding: 36px 28px; }
  .measure-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .programs-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .serve-grid { grid-template-columns: 1fr; }
  .impact-strip .container { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
