/* =============================================
   UNIQUE FOUNDATION — Main Stylesheet
   Colour Palette:
     Forest Green  : #1B5E20
     Mid Green     : #2E7D32
     Accent Green  : #43A047
     Gold          : #F9A825
     Light Gold    : #FDD835
     Warm White    : #FAFAF7
     Off White     : #F4F1EB
     Dark Text     : #1A1A1A
     Mid Text      : #3D3D3D
     Muted Text    : #6B7280
     Border        : #DDD8CC
   ============================================= */

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

:root {
  --green-dark:   #1B5E20;
  --green-mid:    #2E7D32;
  --green-accent: #43A047;
  --gold:         #F9A825;
  --gold-light:   #FDD835;
  --warm-white:   #FAFAF7;
  --off-white:    #F4F1EB;
  --dark:         #1A1A1A;
  --mid:          #3D3D3D;
  --muted:        #6B7280;
  --border:       #DDD8CC;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.13);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --nav-h:        72px;
  --transition:   all 0.28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Merriweather', 'Georgia', serif;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--mid); font-size: 1rem; line-height: 1.8; }

/* ---- UTILITY ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 5%; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--off-white); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: rgba(67,160,71,0.1);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-divider {
  width: 52px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(249,168,37,0.35); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.65);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-green {
  background: var(--green-mid);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(27,94,32,0.3); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-brand img {
  height: 46px;
  width: auto;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-text .name {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
}
.nav-brand-text .tagline {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  background: rgba(27,94,32,0.07);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta {
  background: var(--green-mid);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }
.nav-cta.active { background: var(--green-dark) !important; color: var(--white) !important; outline: 2px solid var(--gold); outline-offset: 2px; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-burger:hover { background: var(--off-white); }
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 1rem 5%;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav.open {
  display: flex;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mid);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--green-dark); background: rgba(27,94,32,0.06); }

/* Page offset for fixed nav */
.page-content { padding-top: var(--nav-h); }

/* ---- HERO ---- */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: linear-gradient(150deg, #162b18 0%, var(--green-dark) 48%, #1c4a22 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 77% 50%, rgba(205,95,18,0.28) 0%, rgba(195,85,12,0.10) 38%, transparent 60%),
    radial-gradient(ellipse at 77% 50%, rgba(249,168,37,0.14) 0%, transparent 52%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero-text { flex: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(253,216,53,0.15);
  border: 1px solid rgba(253,216,53,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-text h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-text h1 em { font-style: normal; color: var(--gold-light); }
.hero-text p { color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.85; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap img {
  width: clamp(160px, 18vw, 240px);
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ---- IMPACT BAR ---- */
.impact-bar {
  background: var(--gold);
  padding: 1.5rem 0;
}
.impact-bar .container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.impact-stat { text-align: center; }
.impact-stat .number {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.impact-stat .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(27,94,32,0.75);
}

/* ---- PILLAR CARDS ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(67,160,71,0.3);
}
.pillar-card-img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pillar-card:hover .pillar-card-img { transform: scale(1.04); }

.pillar-card-body { padding: 1.75rem; }
.pillar-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.pillar-card-body h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--dark); }
.pillar-card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.pillar-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
}
.tag-edu  { background: rgba(27,94,32,0.08);  color: var(--green-dark); }
.tag-env  { background: rgba(67,160,71,0.1);   color: #2a6e2e; }
.tag-hlth { background: rgba(220,50,50,0.08);  color: #b32020; }

/* ---- ABOUT SPLIT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(27,94,32,0.35);
  min-width: 130px;
}
.about-badge .big { display: block; font-family: 'Merriweather', serif; font-size: 1.8rem; font-weight: 700; }
.about-badge .small { font-size: 0.7rem; font-weight: 600; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.07em; }

.about-content p { margin-bottom: 1.1rem; }
.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.detail-item dt {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.detail-item dd { font-size: 0.9rem; font-weight: 500; color: var(--dark); }

/* ---- PROGRAMS ---- */
.programs-list { display: flex; flex-direction: column; gap: 0; }

.program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
}
.program-row.reverse { direction: rtl; }
.program-row.reverse > * { direction: ltr; }

.program-img-wrap { overflow: hidden; }
.program-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.program-row:hover .program-img-wrap img { transform: scale(1.04); }

.program-body {
  background: var(--white);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.program-row:nth-child(even) .program-body { background: var(--off-white); }

.program-icon { font-size: 2.8rem; margin-bottom: 0.85rem; }
.program-tag-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.pill-edu    { background: rgba(27,94,32,0.1);  color: var(--green-dark); }
.pill-env    { background: rgba(56,142,60,0.1); color: #2e7d2e; }
.pill-hlth   { background: rgba(198,40,40,0.1); color: #c62828; }
.pill-custom { background: rgba(0,0,0,0.06);    color: #555; }

.program-body h3 { font-size: 1.5rem; margin-bottom: 0.85rem; }
.program-body p { color: var(--muted); line-height: 1.8; margin-bottom: 0.75rem; }

/* ---- GALLERY ---- */
.gallery-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--green-accent); color: var(--green-dark); }
.filter-btn.active { background: var(--green-mid); color: var(--white); border-color: var(--green-mid); }

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,94,32,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox-backdrop.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  background: none;
  border: none;
  font-family: inherit;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  background: rgba(0,0,0,0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: rgba(67,160,71,0.3); }
.contact-icon-wrap {
  width: 46px;
  height: 46px;
  background: rgba(27,94,32,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-card dt {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-card dd { font-size: 0.92rem; font-weight: 500; color: var(--dark); }
.contact-card dd a { color: var(--green-mid); }
.contact-card dd a:hover { text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
  color: var(--dark);
}
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(46,125,50,0.12); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.75rem; color: var(--muted); margin-top: 0.85rem; }

/* ---- FOOTER ---- */
footer {
  background: #0d2b11;
  color: rgba(255,255,255,0.65);
}
.footer-main {
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand img { height: 52px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold); color: #fff; }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact-list li a { color: rgba(255,255,255,0.55); }
.footer-contact-list li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold-light); }
/* Subtle admin link — intentionally invisible to casual visitors */
.footer-admin-link {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.12);
  text-decoration: none;
  transition: color 0.3s;
  user-select: none;
}
.footer-admin-link:hover { color: rgba(255,255,255,0.45); }
.footer-reg {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { font-size: 0.6rem; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero .container { flex-direction: column; text-align: center; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-wrap img { width: 130px; }
  .hero-actions { justify-content: center; }
  .hero-text p { margin: 0 auto 2rem; max-width: 480px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 10px; }

  .program-row, .program-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .program-body { padding: 2.25rem; }
  .program-img-wrap { height: 260px; }

  .gallery-masonry { columns: 2; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .impact-bar .container { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .about-details { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
}
