/* ====================================================
   FAMILIES FOR EDUCATION — Main Stylesheet
   ==================================================== */

/* ====== CSS VARIABLES ====== */
:root {
  --navy:        #00234B;
  --navy-dark:   #001530;
  --navy-light:  #003a7a;
  --red:         #C8102E;
  --red-light:   #e63050;
  --gold:        #C5A028;
  --gold-light:  #e8a020;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --gray-light:  #F0F2F5;
  --text:        #2d3748;
  --text-light:  #718096;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg:   0 20px 60px rgba(0, 0, 0, 0.15);
  --t:           0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.accent      { color: var(--red); }
.gold-accent { color: var(--gold-light); }

.section-pad { padding: 6rem 0; }

/* ====== CONTAINER ====== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-gold {
  background: var(--gold-light);
  color: var(--navy-dark);
  border-color: var(--gold-light);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 160, 32, 0.4);
}

/* ====================================================
   HEADER
   ==================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.1rem 1.5rem;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}

#header.scrolled {
  background: var(--navy);
  padding: 0.7rem 1.5rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo  { width: 46px; height: auto; }
.brand-name  {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

#main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
#main-nav ul li a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--t);
}
#main-nav ul li a:hover { color: var(--white); }
#main-nav ul li a.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
}
#main-nav ul li a.nav-cta:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99; /* below header (100) so the nav menu always shows on top */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/hero.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 35, 75, 0.88) 0%,
    rgba(0, 35, 75, 0.65) 55%,
    rgba(200, 16, 46, 0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 7rem 1.5rem 4rem;
  max-width: 820px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-location {
  display: inline-block;
  margin-bottom: 1.35rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.hero-accent {
  color: #e8a020;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.4rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}

.stat { text-align: center; }

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
}

.stat-number,
.stat-prefix,
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.65);
  animation: bounce 2.2s ease-in-out infinite;
  transition: color var(--t);
}
.scroll-arrow svg   { width: 30px; height: 30px; }
.scroll-arrow:hover { color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ====================================================
   PILLARS
   ==================================================== */
.pillars {
  background: var(--off-white);
}

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

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t), border-bottom-color var(--t);
  border-bottom: 4px solid transparent;
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--red);
}

.pillar-icon     { margin-bottom: 1.25rem; width: 48px; height: 48px; color: var(--red); }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-card h3  { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; }
.pillar-card p   { color: var(--text-light); line-height: 1.75; font-size: 0.94rem; }
.pillar-card p + p { margin-top: 0.85rem; }

/* ====================================================
   STORY
   ==================================================== */
.story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.story-text .section-title { margin-bottom: 1.5rem; }
.story-text p               { color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.8; }
.story-subtitle {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0.75rem 0 0.6rem;
}

.story-media-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.story-caption {
  padding: 1rem 1.25rem 1.2rem;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ====================================================
   FOUNDING PRINCIPAL
   ==================================================== */
.principal {
  background: var(--off-white);
}

.principal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--red);
}

.principal-card p {
  color: var(--text-light);
  line-height: 1.85;
  max-width: 900px;
}

/* ====================================================
   PROGRESS SECTION
   ==================================================== */
.progress-section {
  background: var(--navy);
  color: var(--white);
}

.fundraising-block {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0 2rem;
}

.fundraising-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.fund-amount {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}
.fund-exceeded {
  color: #6ee86e;
}
.progress-bar-exceeded {
  background: linear-gradient(90deg, #4caf50, #6ee86e) !important;
}

.progress-bar-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  transition: width 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fundraising-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
}

.fundraising-support {
  margin-top: 1.25rem;
}

.fundraising-support p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 860px;
}

.fundraising-support p + p {
  margin-top: 0.55rem;
}

.fundraising-support .btn {
  margin-top: 1.25rem;
}

/* Milestones */
.milestones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.milestones-heading {
  margin: 2.5rem 0 1.25rem;
}

.milestones-heading h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.milestones-heading p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.milestone {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background var(--t);
}
.milestone:hover { background: rgba(255, 255, 255, 0.1); }

.milestone-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.milestone.completed .milestone-dot {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
}
.milestone.active .milestone-dot {
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
.milestone.upcoming .milestone-dot {
  background: rgba(255, 255, 255, 0.25);
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.25); }
  50%       { box-shadow: 0 0 0 9px rgba(232, 160, 32, 0.08); }
}

.milestone-content h4 {
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.milestone.upcoming .milestone-content h4 { color: rgba(255, 255, 255, 0.45); }
.milestone-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.milestone-content a {
  color: var(--gold-light);
  font-weight: 600;
}

.milestone-content a:hover {
  color: var(--white);
}

/* ====================================================
   UPDATES
   ==================================================== */
.updates {
  background: var(--off-white);
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 0.5rem;
}

.update-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--t), box-shadow var(--t);
}
.update-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.update-card-cta             { background: var(--navy); color: var(--white); }
.update-card-cta .update-tag { color: rgba(255, 255, 255, 0.55); }
.update-card-cta h3          { color: var(--white); }
.update-card-cta p           { color: rgba(255, 255, 255, 0.72); }

.update-tag {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.update-card h3 { font-size: 1.1rem; color: var(--navy); line-height: 1.35; }
.update-card p  { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; flex-grow: 1; }

.update-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  transition: color var(--t);
  display: inline-flex;
  align-items: center;
}
.update-link:hover { color: var(--red-light); }

/* ====================================================
   EVENTS
   ==================================================== */
.events {
  background: var(--white);
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-left: 6px solid var(--red);
  box-shadow: var(--shadow);
  margin-top: 2rem;
  transition: transform var(--t), box-shadow var(--t);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-card-with-img {
  display: block;
  padding: 0;
  overflow: hidden;
}
.event-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.event-card-body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
}

.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}
.event-month {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.event-day {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.2rem;
}

.event-tag {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.event-details h3   { font-size: 1.4rem; color: var(--navy); margin-bottom: 0.75rem; }
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.event-details p    { font-size: 0.93rem; color: var(--text-light); line-height: 1.72; max-width: 600px; }
.event-btn          { white-space: nowrap; flex-shrink: 0; }

/* ====================================================
   COMMUNITY / GET INVOLVED
   ==================================================== */
.community {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.community-label { color: rgba(255, 255, 255, 0.6); }
.community-title { color: var(--white); }

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

.involvement-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: background var(--t), transform var(--t);
}
.involvement-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-5px);
}

.inv-icon              { margin-bottom: 1rem; width: 44px; height: 44px; color: var(--gold-light); margin-left: auto; margin-right: auto; }
.inv-icon svg          { width: 100%; height: 100%; }
.involvement-card h3   { font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem; }
.involvement-card p    { font-size: 0.87rem; color: rgba(255, 255, 255, 0.62); line-height: 1.65; }

.contact-block     { margin-top: 1rem; }
.contact-block p   { color: rgba(255, 255, 255, 0.68); margin-bottom: 1.25rem; font-size: 1.05rem; }
.contact-actions   { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ====================================================
   FOOTER
   ==================================================== */
/* ====================================================
   PAST EVENTS
   ==================================================== */
.past-events {
  background: var(--off-white);
}

.no-events {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.no-events a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.past-event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--navy);
  transition: transform var(--t), box-shadow var(--t);
}

.past-event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.past-event-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.past-event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.past-event-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
}
.footer-logo { width: 38px; height: auto; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.footer-links a          { font-size: 0.87rem; color: rgba(255, 255, 255, 0.55); transition: color var(--t); }
.footer-links a:hover    { color: var(--white); }

.footer-contact          { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; font-size: 0.83rem; }
.footer-contact a        { color: rgba(255, 255, 255, 0.65); transition: color var(--t); }
.footer-contact a:hover  { color: var(--white); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--gold-light);
  text-align: center;
  margin-top: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

/* ====================================================
   ANIMATIONS
   ==================================================== */

/* Hero — CSS keyframe on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up           { opacity: 0; animation: fadeUp 0.75s ease forwards; }
.animate-fade-up.delay-1   { animation-delay: 0.15s; }
.animate-fade-up.delay-2   { animation-delay: 0.32s; }
.animate-fade-up.delay-3   { animation-delay: 0.5s; }
.animate-fade-up.delay-4   { animation-delay: 0.68s; }

/* Scroll reveals — Intersection Observer */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.delay-1  { transition-delay: 0.1s; }
.reveal.delay-2  { transition-delay: 0.2s; }
.reveal.delay-3  { transition-delay: 0.3s; }
.reveal.delay-4  { transition-delay: 0.4s; }

.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ====================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ==================================================== */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }

  .story-grid  { grid-template-columns: 1fr; gap: 3.5rem; }
  .story-media-card { max-width: 520px; margin: 0 auto; }

  .updates-grid { grid-template-columns: repeat(2, 1fr); }

  .involvement-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top  { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { text-align: center; }
  .footer-links   { justify-content: center; }
  .footer-brand   { justify-content: center; }
}

/* ====================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ==================================================== */
@media (max-width: 768px) {
  /* Header */
  #main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--navy);
    padding: 5rem 2rem 2rem;
    z-index: 200;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }
  #main-nav.open { right: 0; }

  #main-nav ul   { flex-direction: column; gap: 0; }
  #main-nav ul li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #main-nav ul li a.nav-cta {
    margin-top: 1.5rem;
    text-align: center;
    border: none;
    border-radius: 6px;
    padding: 0.85rem 1rem;
  }

  .hamburger { display: flex; }

  /* Hero */
  .hero-bg     { background-attachment: scroll; }
  .hero-content { padding: 5.5rem 1.25rem 3rem; }
  .hero-stats  { gap: 1.5rem; padding: 1.25rem 1.75rem; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-location {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Pillars */
  .pillar-grid { grid-template-columns: 1fr; }

  /* Events */
  .event-card  { grid-template-columns: 1fr; gap: 1.5rem; }
  .event-card-body { grid-template-columns: 1fr; gap: 1.5rem; }
  .event-img { height: 200px; }
  .event-date-block {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    width: fit-content;
    padding: 0.65rem 1.25rem;
  }
  .event-day { font-size: 1.6rem; margin-top: 0; }

  /* Updates */
  .updates-grid { grid-template-columns: 1fr; }

  /* Community */
  .involvement-grid { grid-template-columns: repeat(2, 1fr); }

  /* Spacing */
  .section-pad { padding: 4.5rem 0; }
}

/* ====================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ==================================================== */
@media (max-width: 480px) {
  .involvement-grid { grid-template-columns: 1fr; }

  .hero-stats { flex-direction: column; gap: 1.25rem; }

  .stat-number, .stat-prefix, .stat-suffix { font-size: 2rem; }

  .brand-name { display: none; }
}
