/* ============================================================
   ÉGLISE, JÉSUS CHRIST, LE SEIGNEUR F.I.C.U. — Master Stylesheet
   ============================================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary:        #3B1F6A;
  --primary-dark:   #2A1550;
  --primary-light:  #5A3D8A;
  --accent-gold:    #D4A843;
  --accent-gold-light: #E8C97A;
  --secondary:      #FAF8F4;
  --text-dark:      #2D2D2D;
  --text-light:     #F5F5F5;
  --divider:        #E8E2D8;
  --footer-bg:      #1E1035;
  --white:          #FFFFFF;
  --overlay-dark:   rgba(30, 16, 53, 0.7);
  --overlay-light:  rgba(59, 31, 106, 0.15);

  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;

  --container-max: 1280px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--secondary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.3;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p  { margin-bottom: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent-gold);
  color: var(--primary-dark);
}
.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}
.btn-outline {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar a { color: var(--accent-gold-light); }
.top-bar a:hover { color: var(--accent-gold); }
.top-bar-icon { margin-right: 5px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--divider);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Logo + Name inline */
.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-brand img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}
.header-brand-text h1 {
  font-size: clamp(0.75rem, 1.2vw, 1.1rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  white-space: nowrap;
}
.header-brand-text .tagline {
  font-size: 0.7rem;
  color: var(--accent-gold);
  font-style: italic;
  white-space: nowrap;
}

/* Navigation — MUST be single line, no wrap */
.nav-links {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  gap: 0;
}
.nav-links li a {
  display: block;
  padding: 10px clamp(8px, 1vw, 18px);
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: var(--transition);
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 70%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,16,53,0.78) 0%, rgba(59,31,106,0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 40px 20px;
  max-width: 800px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-sub {
  min-height: 360px;
}

/* ============================================================
   SECTION SPACING & UTILITY
   ============================================================ */
.section { padding: 80px 0; }
.section-light { background: var(--white); }
.section-ivory { background: var(--secondary); }
.section-purple {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.section-purple h2,
.section-purple h3 { color: var(--accent-gold); }

.section-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #C49A2E 100%);
  color: var(--primary-dark);
  padding: 60px 0;
}
.section-gold h2 { color: var(--primary-dark); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  color: #666;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 16px auto;
  border-radius: 2px;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  color: var(--white);
  transition: var(--transition);
}
.card-glass:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 12px; }
.card p, .card-glass p { color: inherit; opacity: 0.85; line-height: 1.6; font-size: 0.95rem; }

.card-img {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  height: 220px;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }

/* ============================================================
   STAT COUNTERS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item {
  padding: 30px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.95rem;
  margin-top: 8px;
  opacity: 0.9;
}

/* ============================================================
   MISSION STRIP
   ============================================================ */
.mission-strip {
  text-align: center;
  padding: 60px 20px;
}
.mission-strip blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 8px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 3px; }
.gallery-strip img {
  height: 220px;
  min-width: 300px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}
.gallery-strip img:hover { transform: scale(1.03); }

/* ============================================================
   WELCOME / TWO-COL
   ============================================================ */
.welcome-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.welcome-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}
.welcome-text h2 { margin-bottom: 16px; }
.welcome-text p { color: #555; font-size: 1.02rem; }

/* ============================================================
   SERVICE TIMES CARDS
   ============================================================ */
.service-card {
  text-align: center;
  padding: 40px 28px;
}
.service-card .service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card .service-time {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-gold);
}

/* ============================================================
   BELIEFS GRID
   ============================================================ */
.belief-card {
  text-align: center;
  padding: 40px 24px;
}
.belief-card .belief-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  color: var(--accent-gold);
}
.belief-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.belief-card .scripture-ref {
  font-style: italic;
  color: var(--accent-gold);
  font-size: 0.88rem;
  margin-top: 12px;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.value-item {
  padding: 36px 20px;
}
.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #C49A2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  color: var(--white);
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leader-card {
  text-align: center;
  padding: 30px 20px;
}
.leader-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  margin: 0 auto 16px;
}
.leader-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.leader-card .leader-role {
  color: var(--accent-gold);
  font-size: 0.88rem;
  font-weight: 500;
}
.leader-card p { margin-top: 12px; font-size: 0.9rem; color: #666; }

/* ============================================================
   TRANSPARENCY BLOCK
   ============================================================ */
.transparency-block {
  background: var(--secondary);
  border-left: 4px solid var(--accent-gold);
  padding: 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 40px;
}
.transparency-block h3 { margin-bottom: 10px; }

/* ============================================================
   MINISTRY SCHEDULE TABLE
   ============================================================ */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.schedule-table thead {
  background: var(--primary);
  color: var(--white);
}
.schedule-table th,
.schedule-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--divider);
}
.schedule-table tbody tr { background: var(--white); transition: var(--transition); }
.schedule-table tbody tr:hover { background: rgba(59, 31, 106, 0.04); }
.schedule-table tbody tr:nth-child(even) { background: var(--secondary); }
.schedule-table tbody tr:nth-child(even):hover { background: rgba(59, 31, 106, 0.06); }

/* ============================================================
   MINI CALENDAR
   ============================================================ */
.mini-calendar {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  max-width: 420px;
  margin: 30px auto;
}
.cal-header {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}
.cal-grid .cal-day-name {
  padding: 10px;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--primary);
  background: var(--secondary);
}
.cal-grid .cal-day {
  padding: 10px;
  font-size: 0.88rem;
  border: 1px solid var(--divider);
  transition: var(--transition);
}
.cal-grid .cal-day.empty { background: transparent; border-color: transparent; }
.cal-grid .cal-day.highlight {
  background: var(--accent-gold);
  color: var(--white);
  font-weight: 700;
  border-radius: 4px;
}
.cal-grid .cal-day.today {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: 4px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* Inquiry form grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form-full { grid-column: 1 / -1; }

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.contact-card {
  text-align: center;
  padding: 40px 24px;
}
.contact-card-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 14px;
}
.contact-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.contact-card p { font-size: 0.95rem; color: #555; }
.contact-card a { color: var(--primary); font-weight: 500; }
.contact-card a:hover { color: var(--accent-gold); }

/* ============================================================
   GOOGLE MAP EMBED
   ============================================================ */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-card { padding: 0; overflow: hidden; }
.event-date-badge {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 16px;
}
.event-date-badge .month {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
}
.event-date-badge .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.event-body { padding: 24px; }
.event-body h3 { font-size: 1.08rem; margin-bottom: 8px; }
.event-meta {
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
  font-weight: 500;
}
.event-body p { font-size: 0.92rem; color: #555; }

/* ============================================================
   OUTREACH PROGRAM CARDS
   ============================================================ */
.program-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 30px;
  margin-bottom: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--accent-gold);
}
.program-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.program-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}
.program-content h3 { margin-bottom: 8px; }
.program-content p { font-size: 0.95rem; color: #555; margin-bottom: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  text-align: center;
  padding: 50px 20px;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.3;
}
.footer-tagline {
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-contact-item span:first-child { color: var(--accent-gold); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-service-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}
.footer-service-item span:last-child {
  color: var(--accent-gold);
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin-bottom: 4px; }

/* ============================================================
   ANIMATION — FADE IN ON SCROLL
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PAGE-SPECIFIC: ABOUT — STORY IMAGE
   ============================================================ */
.story-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

/* ============================================================
   YOUTH SECTION
   ============================================================ */
.youth-program {
  padding: 40px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}
.youth-program h3 { margin-bottom: 14px; }
.youth-program ul { margin-top: 12px; }
.youth-program ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
}
.youth-program ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .values-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
    border-top: 2px solid var(--accent-gold);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li a {
    padding: 12px 30px;
    font-size: 1rem;
    white-space: normal;
  }
  .header-main { position: relative; }

  .hero { min-height: 400px; }
  .hero-sub { min-height: 280px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .section { padding: 50px 0; }

  .top-bar .container { flex-direction: column; text-align: center; }
  .top-bar-left, .top-bar-right { justify-content: center; }

  .program-card { flex-direction: column; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }

  .header-brand img { width: 42px; height: 42px; }
  .header-brand-text h1 { font-size: 0.7rem; }

  .hero { min-height: 320px; }
  .hero-content h1 { font-size: 1.6rem; }
}
