/* ==========================================
   1. LOCAL VARIABLE FONTS SETUP
   ========================================== */

/* Heading Font: Playfair Display */
@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* Body Font: Outfit */
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/Outfit-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================
--gold: #C9952A;
  --gold-light: #E8B84B;
  --gold-dark: #A07820;
  --navy: #1A2B4A;
  --navy-light: #243660;
  --navy-dark: #0F1A2E;
  --cream: #001D39;
  --cream-dark: #F0EAE0;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.2s ease;

   2. CSS VARIABLES
   ========================================== */
:root {
  --gold: #FCA311;
  --gold-light: #E8B84B;
  --gold-dark: #A07820;
  --navy: #1A2B4A;
  --navy2: #f9f9fa;  
  --navy3: #999999;
  --navy-light: #243660;
  --navy-dark: #0F1A2E;
  --cream: #0A1931;
  --cream-dark: #F0EAE0;
  --cream-dark2: #001D39;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #4d4d4d;
  --gray-800: #E5E5E5;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.2s ease;
  
  /* UPDATED FONT VARIABLES */
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-800);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; }

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

/* ===== Layout ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.container.narrow { max-width: 800px; }
.center { text-align: center; }
.max-2xl { max-width: 672px; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.section { padding: 5rem 0; }
.section-cream { background: var(--cream); }
.section-cream-dark { background: var(--cream-dark2); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }

.two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* ===== Typography ===== */
.eyebrow { color: var(--gold); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 0.5rem; }
.section-title { font-size: 1.875rem; color: var(--navy3); margin-bottom: 0; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-title.text-white { color: var(--navy3); }
.section-subtitle { font-size: 1.125rem; color: var(--gray-500); max-width: 672px; margin: 1rem auto 0; }
.section-subtitle.text-gray-400 { color: var(--gray-400); }
.body-text { color: var(--cream-dark); line-height: 1.75; margin-top: 1.5rem; margin-bottom: 1rem; }
.body-text.center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

.divider { width: 64px; height: 4px; background: var(--gold); margin: 1rem auto; border-radius: 999px; }
.divider.left { margin-left: 0; }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-dark); box-shadow: var(--shadow-md); transform: scale(0.98); }
.btn-primary.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.75rem; }
.btn-primary.btn-block { width: 100%; text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 0.875rem;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: scale(0.98); }

.btn-gold-sm {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
  cursor: pointer;
}
.btn-gold-sm:hover { background: var(--gold-dark); }

/* ===== Topbar ===== */
.topbar { background: var(--navy-dark); color: var(--white); font-size: 0.75rem; }
.topbar-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  padding: 0.5rem 16px;
}
@media (min-width: 640px) {
  .topbar-inner { flex-direction: row; justify-content: space-between; padding: 0.5rem 16px; }
}
.topbar-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.25rem; transition: var(--transition); }
.topbar-item:hover { color: var(--gold-light); }
.topbar-item .icon { font-size: 0.75rem; }
.topbar-right { display: flex; align-items: center; gap: 0.75rem; }
.social-icon {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem;
  transition: var(--transition); color: var(--white);
}
.social-icon:hover { background: var(--gold); }

/* ===== Navbar ===== */
.navbar { background: var(--navy); position: sticky; top: 0; z-index: 50; transition: var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.25rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.logo:hover .logo-mark { background: var(--gold-dark); }
.logo-text { line-height: 1.1; }
.logo-title { display: block; color: var(--white); font-weight: 700; font-size: 0.875rem; letter-spacing: 0.02em; }
.logo-sub { display: block; color: var(--gold); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--white); padding: 0.25rem 0; border-bottom: 2px solid transparent; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
@media (min-width: 768px) { .hamburger { display: none; } }
.bar { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: block; background: var(--navy-light); max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease; border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .mobile-nav { display: none; } }
.mobile-nav.open { max-height: 600px; }
.mobile-nav a {
  display: block; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1); transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); background: rgba(255,255,255,0.05); }
.mobile-nav .btn-primary { margin: 0.75rem 1rem; text-align: center; }

/* ===== Hero (Home) ===== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; color: var(--white); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-image: url('assets/images/MLK4.jpg');
}
.hero-overlay { position: absolute; inset: 0; background: rgba(26,43,74,0.55); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 1rem; max-width: 900px; }
.hero-eyebrow { color: var(--gold); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1rem; }
.hero-title { font-size: 2.25rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .hero-title { font-size: 3.5rem; } }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.85); margin-bottom: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .hero-desc { font-size: 1.25rem; } }
.hero-verse { font-style: italic; color: var(--gold-light); font-size: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .hero-verse { font-size: 1.125rem; } }
.hero-verse span { font-style: normal; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; justify-content: center; } }

/* ===== Welcome strip ===== */
.welcome-strip { background: var(--gold); padding: 1.5rem 1rem; text-align: center; }
.welcome-strip p { color: var(--white); font-weight: 600; font-size: 1rem; }
@media (min-width: 768px) { .welcome-strip p { font-size: 1.125rem; } }

/* ===== Stats grid ===== */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.stat-num { font-size: 1.875rem; font-weight: 700; color: var(--navy); font-family: var(--font-serif); }
.stat-label { font-size: 0.875rem; color: var(--gray-500); margin-top: 0.25rem; }

/* ===== Events preview ===== */
.events-preview-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1rem; }
@media (min-width: 640px) { .events-preview-grid { grid-template-columns: 1fr 1fr 1fr; } }
.event-card-mini {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100); display: flex; gap: 1rem; padding: 1.25rem; align-items: flex-start;
  transition: var(--transition);
}
.event-card-mini:hover { box-shadow: var(--shadow-md); }
.event-date {
  background: var(--navy); color: var(--white); border-radius: var(--radius-sm); padding: 0.75rem;
  text-align: center; min-width: 56px;
}
.event-day { display: block; font-size: 0.7rem; font-weight: 700; color: var(--gold); }
.event-num { display: block; font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.event-month { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.8); }

.badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: 999px; display: inline-block; margin-bottom: 0.5rem; }
.badge-blue { background: #eff6ff; color: #1d4ed8; }
.badge-green { background: #f0fdf4; color: #15803d; }
.badge-amber { background: #fffbeb; color: #b45309; }
.badge-gold { background: var(--gold); color: var(--white); }

.event-title-sm { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.event-time { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.25rem; }

/* ===== Resources preview ===== */
.resources-preview-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1rem; }
@media (min-width: 640px) { .resources-preview-grid { grid-template-columns: 1fr 1fr 1fr; } }
.resource-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition); height: 100%;
}
.resource-card:hover { box-shadow: var(--shadow-md); }
.resource-icon {
  width: 56px; height: 56px; background: rgba(201,149,42,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.75rem;
}
.resource-card h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.5rem; }
.resource-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ===== Scripture banner ===== */
.scripture-banner { position: relative; padding: 4rem 0; background: var(--navy); color: var(--white); overflow: hidden; }
.scripture-bg {
  position: absolute; inset: 0; opacity: 0.1; background-size: cover; background-position: center;
  background-image: url('https://images.pexels.com/photos/372326/pexels-photo-372326.jpeg?auto=compress&cs=tinysrgb&w=1600');
}
.scripture-cross { font-size: 2.25rem; color: var(--gold); margin-bottom: 1.5rem; text-align: center; }
.scripture-text { font-size: 1.5rem; font-weight: 700; line-height: 1.3; max-width: 800px; margin: 0 auto; }
@media (min-width: 768px) { .scripture-text { font-size: 2.25rem; } }
.scripture-ref { color: var(--gold-light); font-size: 1.125rem; margin-top: 1rem; }

/* ===== CTA ===== */
.cta-icon { font-size: 2.25rem; color: var(--gold); margin-bottom: 1rem; }

/* ===== Page Hero ===== */
.page-hero { position: relative; background: var(--navy); color: var(--white); padding: 6rem 0; text-align: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; }
.page-hero-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; padding: 0 1rem; }
.page-hero-title { font-size: 2.25rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .page-hero-title { font-size: 3rem; } }
.page-hero-sub { color: rgba(255,255,255,0.8); font-size: 1.125rem; margin-top: 1.5rem; }

/* ===== Rounded image ===== */
.rounded-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); width: 100%; object-fit: cover; height: 18rem; }
@media (min-width: 768px) { .rounded-img { height: 20rem; } }

/* ===== Timeline ===== */
.timeline { position: relative; border-left: 4px solid var(--gold); margin-left: 1rem; margin-top: 2rem; }
@media (min-width: 768px) { .timeline { margin-left: 3rem; } }
.timeline-item { margin-bottom: 2rem; margin-left: 1.5rem; position: relative; }
@media (min-width: 768px) { .timeline-item { margin-left: 2rem; } }
.timeline-dot {
  position: absolute; left: -38px; top: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem; font-weight: 700; box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .timeline-dot { left: -46px; } }
.timeline-year { color: var(--gold); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; }
.timeline-title { font-size: 1.125rem; color: var(--navy); margin: 0.25rem 0 0.5rem; }
.timeline-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ===== Founder quote ===== */
.section-navy-bg { position: absolute; inset: 0; opacity: 0.1; background-size: cover; background-position: center; }
.section-navy > .container { position: relative; z-index: 10; }
.founder-quote {
  font-size: 1.125rem; color: rgba(255,255,255,0.85); font-style: italic; line-height: 1.75;
  border-left: 4px solid var(--gold); padding-left: 1.25rem; margin-top: 1.5rem;
}
.person { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.person-avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.125rem;
}
.person-avatar.navy { background: var(--navy); }
.person-name { font-weight: 700; color: var(--white); }
.person-role { color: var(--gold); font-size: 0.875rem; }
.section-cream-dark .person-name { color: var(--white); }

/* ===== Plans grid ===== */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1rem; }
@media (min-width: 640px) { .plans-grid { grid-template-columns: 1fr 1fr 1fr; } }
.plan-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition); height: 100%;
}
.plan-card:hover { box-shadow: var(--shadow-md); }
.plan-icon { width: 48px; height: 48px; background: rgba(201,149,42,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1rem; }
.plan-card h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.5rem; }
.plan-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.gallery-item { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ===== Weekly events ===== */
.weekly-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .weekly-grid { grid-template-columns: 1fr 1fr; } }
.weekly-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100); display: flex; gap: 1.25rem; padding: 1.5rem; transition: var(--transition);
}
.weekly-card:hover { box-shadow: var(--shadow-md); }
.weekly-date { background: var(--navy); color: var(--white); border-radius: var(--radius-sm); padding: 1rem; text-align: center; min-width: 64px; }
.weekly-day { display: block; font-size: 0.7rem; font-weight: 700; color: var(--gold); text-transform: uppercase; }
.weekly-icon { display: block; font-size: 1.25rem; margin: 0.25rem 0; }
.weekly-time { display: block; font-size: 0.75rem; }
.weekly-title { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.weekly-loc { font-size: 0.75rem; color: var(--gold); margin-bottom: 0.5rem; }
.weekly-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ===== Monthly events ===== */
.monthly-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .monthly-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .monthly-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.monthly-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition); height: 100%;
}
.monthly-card:hover { box-shadow: var(--shadow-md); }
.monthly-icon { width: 48px; height: 48px; background: rgba(201,149,42,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; font-size: 1.375rem; }
.monthly-when { font-size: 0.7rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem; }
.monthly-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.monthly-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ===== Special events ===== */
.special-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
@media (min-width: 640px) { .special-grid { grid-template-columns: 1fr 1fr 1fr; } }
.special-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition); }
.special-card:hover { box-shadow: var(--shadow-md); }
.special-img { height: 192px; background-size: cover; background-position: center; position: relative; transition: transform 0.5s ease; }
.special-card:hover .special-img { transform: scale(1.03); }
.special-img .badge { position: absolute; top: 0.75rem; left: 0.75rem; margin: 0; }
.special-body { padding: 1.25rem; }
.special-date { font-size: 0.75rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.special-body h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.5rem; }
.special-body p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1rem; }
.special-link { color: var(--gold); font-weight: 600; font-size: 0.875rem; transition: var(--transition); }
.special-link:hover { gap: 0.5rem; }

/* ===== Past events ===== */
.past-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.past-item {
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1); transition: var(--transition);
}
.past-item:hover { border-color: rgba(201,149,42,0.4); }
@media (min-width: 640px) { .past-item { flex-direction: row; align-items: center; } }
.past-year { background: var(--gold); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 999px; width: fit-content; }
.past-body { flex: 1; }
.past-body h3 { color: var(--white); font-size: 1rem; }
.past-body p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 0.25rem; }
.past-attendees { text-align: right; }
.past-num { color: var(--gold); font-weight: 700; font-size: 1.125rem; display: block; }
.past-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* ===== Books ===== */
.books-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .books-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .books-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.book-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition); display: flex; flex-direction: column; height: 100%; }
.book-card:hover { box-shadow: var(--shadow-md); }
.book-cover { height: 192px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; }
.book-spine { width: 96px; background: var(--navy); border-radius: 4px; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; height: 144px; position: relative; padding: 0.5rem; }
.book-spine-text { color: var(--white); font-size: 0.5rem; font-weight: 700; text-align: center; line-height: 1.2; position: absolute; bottom: 0.5rem; left: 0; right: 0; padding: 0 0.25rem; }
.book-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.book-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.book-author { font-size: 0.75rem; color: var(--gold); margin-bottom: 0.5rem; }
.book-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.book-footer { display: flex; align-items: center; justify-content: space-between; }
.book-price { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.books-note { text-align: center; color: var(--gray-400); font-size: 0.875rem; font-style: italic; margin-top: 2rem; }

/* ===== Downloads ===== */
.downloads-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .downloads-grid { grid-template-columns: 1fr 1fr; } }
.download-item {
  display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.05); border-radius: var(--radius);
  padding: 1rem 1.25rem; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); cursor: pointer;
}
.download-item:hover { border-color: rgba(201,149,42,0.4); }
.download-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,149,42,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.download-item:hover .download-icon { background: var(--gold); color: var(--white); }
.download-body { flex: 1; min-width: 0; }
.download-body h4 { font-size: 0.875rem; font-weight: 600; color: var(--white); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.download-body p { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.125rem; }
.download-arrow { color: var(--gray-500); font-size: 0.875rem; flex-shrink: 0; transition: var(--transition); }
.download-item:hover .download-arrow { color: var(--gold); }
.downloads-note { text-align: center; color: var(--gray-500); font-size: 0.875rem; font-style: italic; margin-top: 1.5rem; }

/* ===== Quotes ===== */
.quotes-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .quotes-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .quotes-grid { grid-template-columns: 1fr 1fr 1fr; } }
.quote-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 2rem; position: relative; overflow: hidden; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.quote-card::before { content: '"'; position: absolute; top: 0; left: 1rem; font-size: 5rem; font-family: var(--font-serif); color: rgba(201,149,42,0.3); line-height: 1; pointer-events: none; }
.quote-text { position: relative; z-index: 10; color: rgba(255,255,255,0.85); font-style: italic; line-height: 1.75; padding-top: 1.5rem; }
.quote-ref { color: var(--gold); font-weight: 700; font-size: 0.875rem; margin-top: 1rem; z-index: 10; }

/* ===== Contact channels ===== */
.channels-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .channels-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .channels-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.channel-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition); height: 100%; }
.channel-card:hover { box-shadow: var(--shadow-md); }
.channel-icon { width: 56px; height: 56px; background: rgba(201,149,42,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.375rem; }
.channel-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.channel-value { font-size: 0.875rem; color: var(--gray-600); display: block; margin-bottom: 0.25rem; transition: var(--transition); }
a.channel-value:hover { color: var(--gold); }
.channel-sub { font-size: 0.75rem; color: var(--gray-400); }

/* ===== Social ===== */
.social-label { font-size: 0.7rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.social-row { display: flex; justify-content: center; gap: 1rem; }
.social-btn { width: 48px; height: 48px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.social-btn:hover { background: var(--gold); }

/* ===== Form ===== */
.form-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
@media (min-width: 768px) { .form-card { padding: 2.5rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.25rem; }
.req { color: #ef4444; }
.form-input {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.875rem; background: var(--white); transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,149,42,0.2); }
.form-input.error { border-color: #ef4444; }
.form-textarea { resize: none; }
.form-error { color: #ef4444; font-size: 0.75rem; margin-top: 0.25rem; display: flex; align-items: center; gap: 0.25rem; }
.form-disclaimer { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 1rem; }

/* ===== Form success ===== */
.form-success { text-align: center; padding: 4rem 2rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: #d1fae5; color: #10b981; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-500); margin-bottom: 1.5rem; }

/* ===== Map placeholder ===== */
.map-placeholder { height: 256px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; border-top: 1px solid var(--gray-200); }
.map-inner { text-align: center; color: var(--gray-400); }
.map-icon { font-size: 2rem; color: var(--gold); opacity: 0.5; margin-bottom: 0.5rem; }
.map-title { font-size: 0.875rem; font-weight: 600; }
.map-addr { font-size: 0.75rem; }

/* ===== Footer ===== */
.footer { background: var(--navy-dark); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 3rem 16px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; }
.footer-name { font-weight: 700; font-size: 0.875rem; }
.footer-tag { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.15em; }
.footer-desc { color: var(--gray-400); font-size: 0.875rem; line-height: 1.7; }
.footer-heading { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--gray-400); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { color: var(--gray-400); font-size: 0.875rem; margin-bottom: 0.75rem; }
.footer-social { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; transition: var(--transition); }
.footer-social-btn:hover { background: var(--gold); }
.footer-verse { font-size: 0.75rem; color: var(--gray-400); font-style: italic; border-left: 2px solid var(--gold); padding-left: 0.75rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem; text-align: center; font-size: 0.75rem; color: var(--gray-500); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Spinner ===== */
.spinner { width: 16px; height: 16px; border: 2px solid var(--white); border-top-color: transparent; border-radius: 50%; animation: spin 0.6s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }