/*
 * Session LEAD — Main Stylesheet
 * Mobile-first responsive design
 * Breakpoints: 768px (tablet) · 1024px (desktop) · 1280px (wide)
 */

/* =====================================================
   1. VARIABLES & RESET
   ===================================================== */
:root {
  --accent:        #1e73be;
  --accent-hover:  #155d9c;
  --accent2:       #4a90d9;
  --accent2-hover: #3a7bc4;
  --heading:       #2c2c2c;
  --body:          #555555;
  --muted:         #888888;
  --border:        #e5e5e5;
  --bg-white:      #ffffff;
  --bg-light:      #f5f8fc;
  --bg-dark:       #2c2c2c;
  --bg-footer:     #2c3038;

  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Open Sans', sans-serif;

  --max-width:     1200px;
  --nav-height:    70px;
  --section-py:    4rem;
  --container-px:  1.25rem;

  --radius:        4px;
  --radius-lg:     10px;
  --transition:    0.25s ease;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.13);
}

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

/* =====================================================
   2. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: clamp(1.75rem, 5vw,  3.25rem); }
h2 { font-size: clamp(1.375rem, 3vw, 2.125rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.0625rem; }
p  { line-height: 1.8; color: var(--body); }
strong { color: var(--accent2); font-weight: 600; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent2);
  margin-bottom: 0.625rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.125rem;
  line-height: 1.2;
}
.section-lead {
  font-size: 1.0625rem;
  color: var(--body);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.section-lead--center { margin-left: auto; margin-right: auto; text-align: center; }
.divider {
  width: 52px; height: 4px;
  background: var(--accent2);
  border-radius: 2px;
  margin: 1.125rem 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* =====================================================
   3. LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section        { padding: var(--section-py) 0; }
.section--light { background: var(--bg-light); }
.section--dark  { background: var(--bg-dark); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark p { color: #fff; }
.text-center { text-align: center; }

/* =====================================================
   4. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
  line-height: 1.2;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--heading);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--heading);
  border-color: var(--heading);
}
.btn-outline-dark:hover {
  background: var(--heading);
  color: #fff;
}
.btn-accent2 {
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2);
}
.btn-accent2:hover {
  background: var(--accent2-hover);
  border-color: var(--accent2-hover);
  color: #fff;
}
.btn-sm  { padding: 0.625rem 1.25rem;  font-size: 0.6875rem; }
.btn-lg  { padding: 1.125rem 2.25rem;  font-size: 0.8125rem; }
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}
.btn-group--center { justify-content: center; }

/* =====================================================
   5. NAVIGATION
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-white);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo img { height: 46px; width: auto; }

/* Hamburger */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  z-index: 1010;
  flex-shrink: 0;
}
.toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.navbar-open .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-open .toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-open .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile collapse */
.navbar-collapse {
  position: absolute;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg-white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, box-shadow 0.25s ease;
  border-top: 1px solid transparent;
}
.navbar-open .navbar-collapse {
  max-height: 640px;
  box-shadow: var(--shadow-md);
  border-top-color: var(--border);
}

.navbar-nav { padding: 0.5rem 0; }
.navbar-nav li a {
  display: flex;
  align-items: center;
  padding: 0.875rem var(--container-px);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  transition: all var(--transition);
}
.navbar-nav li:last-child a { border-bottom: none; }
.navbar-nav li a:hover,
.navbar-nav li a.active   { color: var(--accent); padding-left: calc(var(--container-px) + 0.5rem); }

.navbar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem var(--container-px);
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}

.lang-switcher { display: flex; align-items: center; gap: 0.25rem; }
.lang-switcher a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-radius: var(--radius);
  transition: all var(--transition);
  padding: 0.375rem 0.5rem;
}
.lang-switcher a:hover,
.lang-switcher a.active { color: var(--accent); background: rgba(30,115,190,0.08); }
.lang-switcher .sep { color: var(--border); font-size: 0.75rem; }

/* =====================================================
   6. HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/events/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 15, 15, 0.72) 0%,
    rgba(15, 15, 15, 0.52) 55%,
    rgba(15, 15, 15, 0.68) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) var(--container-px) 3rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent2);
  border: 1px solid rgba(117,146,96,0.45);
  background: rgba(117,146,96,0.1);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 6vw, 4.25rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin-bottom: 1.375rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { color: var(--accent2); font-style: normal; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
}
.hero .btn-group { justify-content: center; }

/* =====================================================
   7. STATS BAND
   ===================================================== */
.stats-band {
  background: var(--bg-dark);
  padding: 3.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* =====================================================
   8. ABOUT / TWO-COLUMN SECTIONS
   ===================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.two-col__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.two-col__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.two-col__text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.two-col__text p:last-child { margin-bottom: 0; }

/* =====================================================
   9. MISSION PILLARS
   ===================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.pillar-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent2);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  width: 56px; height: 56px;
  background: rgba(117,146,96,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pillar-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  color: var(--heading);
}
.pillar-card p { font-size: 0.9375rem; line-height: 1.8; }

/* =====================================================
   10. CTA BANNERS
   ===================================================== */
.cta-band {
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band--dark { background: var(--bg-dark); }
.cta-band h2 {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.875rem;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   11. VIDEO SECTION
   ===================================================== */
.video-section { padding: var(--section-py) 0; }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* =====================================================
   12. SPEAKER CARDS
   ===================================================== */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}
.speaker-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.speaker-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.speaker-card.hidden { display: none; }

.speaker-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-light);
}
.speaker-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.speaker-card:hover .speaker-photo img { transform: scale(1.06); }

.speaker-info { padding: 1.125rem 1.25rem 1.375rem; }
.speaker-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--heading);
  margin-bottom: 0.3125rem;
}
.speaker-role {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.55;
}

/* =====================================================
   13. INTERVENANTS FILTER
   ===================================================== */
.filter-bar { padding: 1.75rem 0 0.5rem; }
.filter-group { margin-bottom: 1rem; }
.filter-group-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.625rem;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
  padding: 0.375rem 0.9375rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  color: var(--body);
  transition: all var(--transition);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.pill:hover       { border-color: var(--accent); color: var(--accent); }
.pill.is-active   { background: var(--accent); border-color: var(--accent); color: #fff; }
.no-results {
  display: none;
  text-align: center;
  padding: 3.5rem 1rem;
  color: var(--muted);
  font-style: italic;
  grid-column: 1 / -1;
}

/* =====================================================
   14. TEAM GRID
   ===================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 2rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--border);
  overflow: hidden;
  background: var(--bg-light);
  transition: border-color var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-avatar--initials {
  background: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
  border-color: transparent;
}
.team-card:hover .team-avatar { border-color: var(--accent); }
.team-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--heading);
  margin-bottom: 0.25rem;
}
.team-pole {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.team-job {
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
}

/* =====================================================
   15. PRESS
   ===================================================== */
.press-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}
.press-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.press-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.press-pub {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}
.press-pub .dot { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }
.press-pub .date { color: var(--muted); font-weight: 400; letter-spacing: 0; }
.press-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.press-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  transition: gap var(--transition);
}
.press-link:hover { gap: 0.625rem; }
.press-link::after { content: '→'; }

/* =====================================================
   16. SUPPORT PAGE
   ===================================================== */
.bank-box {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.875rem 2rem;
  margin-bottom: 2rem;
}
.bank-box .label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.25rem;
}
.bank-box .value {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--heading);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.875rem;
}
.donation-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.donation-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.donation-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.donation-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.625rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.donation-card h4::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.donation-card p { font-size: 0.9375rem; color: var(--body); line-height: 1.75; }

/* =====================================================
   17. CONTACT FORM
   ===================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--heading);
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--heading);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  min-height: 44px;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,115,190,0.12);
}
.form-textarea { min-height: 160px; resize: vertical; line-height: 1.65; }
.form-honey { display: none !important; visibility: hidden; }
.form-submit { width: 100%; }
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}
.alert-success { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }
.alert-error   { background: #fff5f5; border: 1px solid #feb2b2; color: #c53030; }

/* =====================================================
   18. EDITION PAGE ELEMENTS
   ===================================================== */
.page-hero {
  padding: calc(var(--nav-height) + 3.5rem) 0 3rem;
  background: var(--bg-light);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}
.info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.info-card p { font-size: 1rem; color: var(--heading); font-weight: 500; }

.day-schedule { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.schedule-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.schedule-item:last-child { border-bottom: none; }
.schedule-bullet {
  flex-shrink: 0;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.4rem;
}
.schedule-text h4 { font-size: 0.9375rem; font-weight: 700; color: var(--heading); margin-bottom: 0.2rem; }
.schedule-text p  { font-size: 0.875rem; color: var(--body); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table thead th {
  background: var(--bg-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 1.25rem;
  text-align: left;
}
.pricing-table tbody td {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
  color: var(--body);
}
.pricing-table tbody tr:nth-child(even) td { background: var(--bg-light); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table .price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.0625rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.gallery-item {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

/* =====================================================
   19. COMING SOON STUB
   ===================================================== */
.coming-soon-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) var(--container-px) 3rem;
  background: var(--bg-light);
}
.coming-soon-inner { max-width: 460px; }
.coming-soon-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.coming-soon-inner h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--heading);
}
.coming-soon-inner p {
  font-size: 1.0625rem;
  color: var(--body);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* =====================================================
   20. SITE FOOTER
   ===================================================== */
.site-footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.7);
  padding: 3.75rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 50px; width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 280px;
}
.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.125rem;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--accent); }
.footer-contact-detail {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.375rem;
  line-height: 1.6;
}
.footer-contact-detail a { color: var(--accent); }
.social-links { display: flex; gap: 0.625rem; margin-top: 1.25rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}
.social-link:hover { background: var(--accent2); transform: translateY(-2px); }
.social-link svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* =====================================================
   21. UTILITIES
   ===================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }

/* =====================================================
   22. RESPONSIVE — TABLET 768px+
   ===================================================== */
@media (min-width: 768px) {
  :root { --section-py: 5rem; --container-px: 2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .stats-grid .stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.15); }
  .stats-grid .stat-item:nth-child(3) { border-left: none; }

  .two-col { grid-template-columns: 1fr 1fr; }

  .pillars-grid { grid-template-columns: repeat(3, 1fr); }

  .info-cards { grid-template-columns: repeat(3, 1fr); }

  .donation-cards { grid-template-columns: 1fr 1fr; }

  .press-list { grid-template-columns: 1fr 1fr; }

  .form-grid { grid-template-columns: 1fr 1.6fr; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }

  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* =====================================================
   23. RESPONSIVE — DESKTOP 1024px+
   ===================================================== */
@media (min-width: 1024px) {
  :root { --container-px: 2.5rem; }

  /* Full horizontal navbar */
  .navbar-toggle   { display: none; }
  .navbar-collapse {
    position: static;
    max-height: none !important;
    overflow: visible;
    border: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 1.25rem;
    justify-content: space-between;
    background: transparent;
  }
  .navbar-nav { display: flex; align-items: center; padding: 0; }
  .navbar-nav li a {
    padding: 0.5rem 0.75rem;
    font-size: 0.6875rem;
    border-bottom: 2px solid transparent;
    min-height: unset;
    transition: color var(--transition), border-color var(--transition);
  }
  .navbar-nav li a:hover,
  .navbar-nav li a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    padding-left: 0.75rem;
    background: none;
  }
  .navbar-actions {
    flex-direction: row;
    padding: 0;
    gap: 1rem;
    border-top: none;
    background: transparent;
    align-items: center;
  }

  /* Parallax on desktop only */
  .hero-bg { background-attachment: fixed; }

  /* 4-column stats on desktop */
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stats-grid .stat-item:nth-child(3) { border-left: 1px solid rgba(255,255,255,0.15); }

  .donation-cards { grid-template-columns: repeat(3, 1fr); }

  .press-list { grid-template-columns: 1fr 1fr; } /* keep 2-col for readability */
}

/* =====================================================
   24. RESPONSIVE — WIDE 1280px+
   ===================================================== */
@media (min-width: 1280px) {
  :root { --container-px: 3rem; }
  .navbar-nav li a { padding: 0.5rem 0.875rem; font-size: 0.75rem; }
}

/* =====================================================
   25. PRINT
   ===================================================== */
@media print {
  .site-header, .site-footer, .btn, .filter-bar { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; }
}
