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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #1B3A6B;
  --primary-dark:   #0D2244;
  --primary-light:  #2a5298;
  --secondary:      #C9A84C;
  --secondary-dark: #A68B3A;
  --secondary-light:#E5C96A;
  --off-white:      #F8F6F2;
  --light:          #F0EDE8;
  --border:         #DDD8D0;
  --white:          #FFFFFF;
  --text:           #2A2A2A;
  --text-light:     #5A5A5A;
  --text-muted:     #8E8E8E;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.14);
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-h:       80px;
  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'Inter', system-ui, -apple-system, sans-serif;
}

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

/* ============================================================
   LAYOUT
   ============================================================ */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow{ max-width: 820px;  margin: 0 auto; padding: 0 32px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); line-height: 1.3; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem);  font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 34px; border-radius: 4px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; transition: var(--transition);
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--secondary); color: var(--primary-dark);
  border: 2px solid var(--secondary);
}
.btn-primary:hover {
  background: var(--secondary-dark); border-color: var(--secondary-dark); color: var(--white);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
}
.btn-outline:hover {
  background: var(--white); color: var(--primary);
  border-color: var(--white); transform: translateY(-1px);
}
.btn-dark {
  background: var(--primary); color: var(--white);
  border: 2px solid var(--primary);
}
.btn-dark:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent; color: var(--primary);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); background: var(--light); }

/* ============================================================
   SECTION STRUCTURE
   ============================================================ */
.section         { padding: 90px 0; }
.section--light  { background: var(--off-white); }
.section--dark   { background: var(--primary-dark); color: var(--white); }
.section--navy   { background: var(--primary); color: var(--white); }

.section-label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 12px;
}
.section--dark .section-label  { color: var(--secondary-light); }
.section--navy .section-label  { color: var(--secondary-light); }

.section-title   { color: var(--primary); margin-bottom: 16px; }
.section--dark .section-title { color: var(--white); }
.section--navy .section-title { color: var(--white); }

.section-divider {
  width: 48px; height: 3px; background: var(--secondary);
  margin: 0 0 24px; border-radius: 2px;
}
.section-divider--center { margin-inline: auto; }

.section-subtitle {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 640px; line-height: 1.85;
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.72); }
.section--navy .section-subtitle { color: rgba(255,255,255,0.72); }

.section-header            { margin-bottom: 56px; }
.section-header--center    { text-align: center; }
.section-header--center .section-divider  { margin-inline: auto; }
.section-header--center .section-subtitle { margin-inline: auto; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.header-brand {
  display: flex; align-items: center; gap: 13px;
  text-decoration: none; flex-shrink: 0;
}
.header-logo {
  width: 50px; height: 50px; object-fit: contain; border-radius: 4px;
}
.header-name {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
  color: var(--primary); line-height: 1.2; white-space: nowrap;
}
.header-name small {
  display: block; font-size: 0.7rem; font-weight: 400;
  color: var(--text-muted); letter-spacing: 0.05em;
  font-family: var(--font-sans); margin-top: 1px;
}

/* ============================================================
   PRIMARY NAVIGATION
   ============================================================ */
.primary-nav { flex: 1; display: flex; justify-content: flex-end; overflow: hidden; }
.nav-list {
  display: flex; align-items: center; gap: 2px;
  flex-wrap: nowrap; white-space: nowrap;
}
.nav-link {
  display: block; padding: 7px 11px; border-radius: 4px;
  font-size: 13px; font-weight: 500; color: var(--text-light);
  letter-spacing: 0.02em; white-space: nowrap; transition: var(--transition);
}
.nav-link:hover    { color: var(--primary); background: var(--light); }
.nav-link.active   { color: var(--primary); font-weight: 600; position: relative; }
.nav-link.active::after {
  content: ''; display: block; height: 2px; background: var(--secondary);
  margin-top: 2px; border-radius: 2px;
}

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--primary);
  border-radius: 2px; transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav dropdown */
.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  z-index: 999; box-shadow: var(--shadow-md);
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav .nav-link {
  display: block; padding: 14px 32px; border-radius: 0;
  font-size: 15px; border-bottom: 1px solid var(--light);
}
.mobile-nav .nav-link:last-child { border-bottom: none; }

/* ============================================================
   HERO SECTION (Homepage)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--primary-dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(13,34,68,0.90) 0%,
    rgba(27,58,107,0.78) 55%,
    rgba(13,34,68,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 130px 0 90px; max-width: 780px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.45);
  border-radius: 2px; color: var(--secondary-light);
  font-size: 11px; font-weight: 600; letter-spacing: 0.20em;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-title {
  color: var(--white); margin-bottom: 24px; letter-spacing: -0.01em;
}
.hero-title em { color: var(--secondary-light); font-style: normal; }
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.78);
  max-width: 600px; line-height: 1.85; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; z-index: 1;
  animation: heroBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 22px; height: 22px; }
@keyframes heroBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--primary); padding: 44px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; text-align: center;
}
.stat-number {
  font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700;
  color: var(--secondary); line-height: 1; display: block;
}
.stat-label {
  font-size: 12px; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.10em; margin-top: 10px; display: block;
}

/* ============================================================
   MISSION / VISION CARDS (homepage)
   ============================================================ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card {
  background: var(--white); border-radius: 8px;
  border: 1px solid var(--border); padding: 48px 44px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.mv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--secondary);
}
.mv-card--vision::before { background: var(--primary-light); }
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mv-card-icon  { font-size: 2.6rem; margin-bottom: 20px; }
.mv-card-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 10px;
}
.mv-card--vision .mv-card-label { color: var(--primary-light); }
.mv-card-title { font-size: 1.55rem; color: var(--primary); margin-bottom: 20px; }
.mv-card-text  { color: var(--text-light); line-height: 1.85; font-size: 1.02rem; }
.mv-card-link  {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--secondary);
}
.mv-card--vision .mv-card-link { color: var(--primary); }
.mv-card-link svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.mv-card-link:hover svg { transform: translateX(5px); }

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.program-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
}
.program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.program-card-image { width: 100%; height: 210px; object-fit: cover; }
.program-card-body  { padding: 30px; }
.program-card-icon  { font-size: 1.7rem; margin-bottom: 12px; }
.program-card-title { font-size: 1.15rem; color: var(--primary); margin-bottom: 12px; }
.program-card-text  { color: var(--text-light); font-size: 0.93rem; line-height: 1.75; }
.program-card-link  {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--secondary);
}
.program-card-link svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.program-card-link:hover svg { transform: translateX(4px); }

/* Programs list (programs.php full page) */
.programs-list { display: flex; flex-direction: column; gap: 32px; }
.program-item {
  display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: center;
  background: var(--white); border-radius: 8px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.program-item:hover { box-shadow: var(--shadow-md); }
.program-item.reverse { direction: rtl; }
.program-item.reverse > * { direction: ltr; }
.program-item-img  { width: 100%; height: 260px; object-fit: cover; flex-shrink: 0; }
.program-item-body { padding: 36px 40px 36px 0; }
.program-item.reverse .program-item-body { padding: 36px 0 36px 40px; }
.program-item-category {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 8px;
}
.program-item-title { color: var(--primary); margin-bottom: 14px; }
.program-item-text  { color: var(--text-light); line-height: 1.8; }

/* ============================================================
   CONTENT BLOCKS (alternating image / text)
   ============================================================ */
.content-block { padding: 80px 0; }
.content-block + .content-block { padding-top: 0; }
.content-block-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.content-block-grid.reverse { direction: rtl; }
.content-block-grid.reverse > * { direction: ltr; }
.content-block-image {
  border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.content-block-image img { width: 100%; height: 480px; object-fit: cover; }
.content-block-text .section-label { color: var(--secondary); }

/* Accent quote / pullquote */
.pullquote {
  border-left: 4px solid var(--secondary); padding: 20px 28px;
  background: var(--off-white); border-radius: 0 8px 8px 0; margin: 28px 0;
}
.pullquote p {
  font-family: var(--font-serif); font-size: 1.15rem;
  color: var(--primary); font-style: italic; line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 96px 0; text-align: center;
}
.cta-section .section-title    { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255,255,255,0.78); margin-inline: auto; }
.cta-section .section-divider  { background: var(--secondary); margin-inline: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ============================================================
   SERVICE TIMES
   ============================================================ */
.service-times-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.service-card {
  background: var(--white); border-radius: 8px; padding: 38px 32px;
  border: 1px solid var(--border); text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-day   {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 8px;
}
.service-name  {
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--primary); margin-bottom: 10px;
}
.service-time  { font-size: 1.6rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 8px; }
.service-loc   { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   LEADERSHIP / TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.team-card {
  text-align: center; background: var(--white);
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-image { width: 100%; height: 250px; object-fit: cover; object-position: top; }
.team-body  { padding: 22px 18px 28px; }
.team-name  { font-size: 1.05rem; color: var(--primary); margin-bottom: 4px; }
.team-role  {
  font-size: 11px; color: var(--secondary); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 12px;
}
.team-bio   { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   EVENTS
   ============================================================ */
.events-list { display: flex; flex-direction: column; gap: 20px; }
.event-item {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--white); border-radius: 8px;
  border: 1px solid var(--border); padding: 26px 30px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.event-item:hover { box-shadow: var(--shadow-md); border-color: rgba(27,58,107,0.25); }
.event-date-box {
  flex-shrink: 0; width: 72px; text-align: center;
  background: var(--primary); border-radius: 6px; padding: 12px 8px; color: var(--white);
}
.event-month {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--secondary-light); margin-bottom: 2px;
}
.event-day {
  font-size: 2.2rem; font-weight: 700; line-height: 1;
  font-family: var(--font-serif);
}
.event-year { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.event-details  { flex: 1; }
.event-title    { font-size: 1.12rem; color: var(--primary); margin-bottom: 6px; }
.event-meta {
  display: flex; gap: 20px; font-size: 0.84rem; color: var(--text-muted); margin-bottom: 10px;
  flex-wrap: wrap;
}
.event-meta span { display: flex; align-items: center; gap: 5px; }
.event-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 32px;
}
.contact-icon {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--primary); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--secondary);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-info-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.contact-info-value { color: var(--primary); font-size: 1rem; font-weight: 500; }
.contact-info-value a { color: inherit; }
.contact-info-value a:hover { color: var(--secondary); }

/* Map embed placeholder */
.map-embed {
  border-radius: 8px; overflow: hidden; margin-top: 32px;
  border: 1px solid var(--border); aspect-ratio: 16/8;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Contact form */
.contact-form-card {
  background: var(--white); border-radius: 8px;
  border: 1px solid var(--border); padding: 44px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 7px; letter-spacing: 0.02em;
}
.form-control {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 4px; font-size: 15px; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,58,107,0.09); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 150px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 130px 0 68px;
}
.page-hero-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--secondary-light); margin-bottom: 14px;
}
.page-hero-title {
  color: var(--white); font-size: clamp(2rem,4vw,3rem);
  margin-bottom: 18px; letter-spacing: -0.01em;
}
.page-hero-subtitle {
  color: rgba(255,255,255,0.75); font-size: 1.1rem;
  max-width: 600px; line-height: 1.80;
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-bottom: 18px; letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--secondary-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.28); }

/* ============================================================
   VALUE PILLARS / FEATURE ICONS
   ============================================================ */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.pillar-card {
  text-align: center; padding: 44px 32px; background: var(--white);
  border-radius: 8px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar-icon {
  width: 68px; height: 68px; margin: 0 auto 22px;
  background: var(--off-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.pillar-title { font-size: 1.2rem; color: var(--primary); margin-bottom: 14px; }
.pillar-text  { color: var(--text-light); font-size: 0.93rem; line-height: 1.75; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer { background: var(--primary-dark); }
.footer-top  { padding: 64px 0 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
}
.footer-brand-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.footer-logo    { width: 48px; height: 48px; object-fit: contain; border-radius: 4px; }
.footer-org-name {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 700; color: var(--white); line-height: 1.2;
}
.footer-org-sub {
  font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px;
}
.footer-about {
  color: rgba(255,255,255,0.58); font-size: 0.92rem;
  line-height: 1.80; margin-bottom: 24px;
}
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.58); font-size: 0.88rem; margin-bottom: 12px;
}
.footer-contact-row svg {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
  fill: var(--secondary); opacity: 0.85;
}
.footer-heading {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.58); font-size: 0.91rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary-light); }
.footer-service-times {
  color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.9; margin-top: 4px;
}
.footer-bottom {
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between;
}
.footer-copy { color: rgba(255,255,255,0.38); font-size: 0.84rem; }
.footer-reg  { color: rgba(255,255,255,0.28); font-size: 0.78rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-gold   { color: var(--secondary); }
.text-primary{ color: var(--primary); }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }

/* Accessibility */
.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;
}
:focus-visible {
  outline: 3px solid var(--secondary); outline-offset: 3px;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 24px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid  { grid-template-columns: repeat(3,1fr); }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
  .program-item { grid-template-columns: 280px 1fr; }
}

@media (max-width: 900px) {
  .section { padding: 68px 0; }
  .mv-grid { grid-template-columns: 1fr; }
  .content-block-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-block-grid.reverse { direction: ltr; }
  .content-block-image img { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-times-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .program-item { grid-template-columns: 1fr; }
  .program-item-img { height: 220px; }
  .program-item-body { padding: 32px; }
  .program-item.reverse { direction: ltr; }
  .program-item.reverse .program-item-body { padding: 32px; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .nav-toggle  { display: flex; }
  .programs-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-actions { flex-direction: column; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr; }
  .service-times-grid { grid-template-columns: 1fr; }
  .event-item { flex-direction: column; gap: 16px; }
  .mv-card { padding: 36px 28px; }
}
