/* Emmanuel Network — Design System */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7b1a;
  --navy: #0d1b3e;
  --navy-light: #1a2d5a;
  --navy-muted: #2a3f6e;
  --crimson: #8b1a2b;
  --emerald: #1a5c3a;
  --royal-blue: #1e3a8a;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-100: #f1f0ed;
  --gray-200: #e2e0db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --shadow-sm: 0 1px 3px rgba(13, 27, 62, 0.08);
  --shadow-md: 0 4px 20px rgba(13, 27, 62, 0.12);
  --shadow-lg: 0 12px 40px rgba(13, 27, 62, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.logo-link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-text .tagline {
  font-size: 0.7rem;
  color: var(--navy-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 0.15rem; flex-wrap: wrap; justify-content: flex-end; }

.main-nav a {
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-dark);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.6rem 1.25rem !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.35);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 45%, #1e3a6e 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(30, 58, 138, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
    linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
    linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
    linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold));
  background-size: 80px 140px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: var(--gold-light);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-verse {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  width: min(380px, 80vw);
  aspect-ratio: 1;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--crimson), var(--emerald), var(--royal-blue), var(--gold));
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--navy);
}

.hero-logo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
  object-fit: cover;
  object-position: center 30%;
}

/* ── Quick Links ── */
.quick-links {
  margin-top: -4rem;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.quick-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.quick-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.quick-card:hover::before { transform: scaleX(1); }

.quick-card-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.5rem;
}

.quick-card:nth-child(1) .quick-card-icon { background: rgba(201, 162, 39, 0.15); }
.quick-card:nth-child(2) .quick-card-icon { background: rgba(26, 92, 58, 0.15); }
.quick-card:nth-child(3) .quick-card-icon { background: rgba(139, 26, 43, 0.12); }
.quick-card:nth-child(4) .quick-card-icon { background: rgba(30, 58, 138, 0.12); }

.quick-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.quick-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Section Common ── */
section { padding: 5rem 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* ── About / CEO ── */
.about-section { background: var(--white); }

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

.about-image {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-image-frame img {
  width: 70%;
  border-radius: 50%;
}

.about-image-frame--photo {
  padding: 0;
  background: var(--navy);
}

.about-image-frame--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0;
  display: block;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.about-content .ceo-title {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.25rem;
  color: var(--gray-700);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.about-feature strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.about-feature span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ── Stats ── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

/* ── Testimonials ── */
.testimonials-section { background: var(--off-white); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ── Programmes ── */
.programmes-section { background: var(--white); }

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

.programme-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.programme-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.programme-card:nth-child(1) .programme-image { background: linear-gradient(135deg, var(--navy), var(--royal-blue)); }
.programme-card:nth-child(2) .programme-image { background: linear-gradient(135deg, var(--emerald), #2d7a4f); }
.programme-card:nth-child(3) .programme-image { background: linear-gradient(135deg, var(--crimson), #a82840); }
.programme-card:nth-child(4) .programme-image { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.programme-card:nth-child(5) .programme-image { background: linear-gradient(135deg, #4a1a6b, #7c3aed); }
.programme-card:nth-child(6) .programme-image { background: linear-gradient(135deg, #1a4a5c, #0891b2); }

.programme-body {
  padding: 1.5rem;
}

.programme-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.programme-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.programme-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
}

/* ── Live Stream ── */
.live-section {
  background: linear-gradient(135deg, var(--crimson) 0%, #6b1422 100%);
  color: var(--white);
  text-align: center;
}

.live-section .section-header h2 { color: var(--white); }
.live-section .section-header p { color: rgba(255,255,255,0.8); }
.live-section .section-label { color: var(--gold-light); }

.live-embed {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(201, 162, 39, 0.3);
  overflow: hidden;
}

.live-placeholder {
  text-align: center;
  padding: 2rem;
}

.live-placeholder .live-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,0,0,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.live-dot::before {
  content: '';
  width: 10px; height: 10px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ── CTA / Support ── */
.support-section {
  background: var(--off-white);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.support-info h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-list { margin-top: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-item span, .contact-item a {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.contact-item a:hover { color: var(--gold-dark); }

.support-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.support-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--off-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  width: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-link--facebook:hover {
  background: #1877f2;
  color: #fff;
  transform: translateY(-2px);
}

.social-link--youtube:hover {
  background: #ff0000;
  color: #fff;
  transform: translateY(-2px);
}

.social-link--whatsapp:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.breadcrumb a:hover { color: var(--gold-light); }

.page-content { padding: 4rem 0; }

.content-block {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.content-block h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.content-block p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

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

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ── Board Members ── */
.board-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.board-section--alt {
  background: var(--navy);
  color: var(--white);
}

.board-section--alt .section-header h2,
.board-section--alt .section-header p {
  color: var(--white);
}

.board-section--alt .section-label {
  color: var(--gold);
}

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

.board-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(24px);
}

.board-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.board-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.board-card--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.2);
}

.board-card--featured .board-info {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.board-card--featured .board-info h3 {
  color: var(--white);
}

.board-card--featured .board-role {
  color: var(--gold);
}

.board-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  position: relative;
}

.board-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.15), transparent 40%);
  pointer-events: none;
}

.board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform 0.5s ease;
}

.board-card:hover .board-photo img {
  transform: scale(1.04);
}

.board-info {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--gold);
  background: var(--white);
}

.board-info h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.board-role {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.board-error {
  text-align: center;
  color: var(--gray-500);
  grid-column: 1 / -1;
}

/* Board slider (homepage) — 3 members visible, auto-rotates every few seconds */
.board-slider {
  margin-top: 2.5rem;
  position: relative;
}

.board-slider-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.board-slider-track {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.board-slide {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: 0.25rem;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.board-slide.is-active {
  display: grid;
  opacity: 1;
}

.board-slider .board-card {
  opacity: 1;
  transform: none;
}

.board-slider .board-card:hover {
  transform: translateY(-6px);
}

.board-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.board-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.board-slider-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.05);
}

.board-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.board-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--gray-300);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.board-slider-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

.board-slider-dot:hover {
  background: var(--gold-dark);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.support-form,
#contactForm,
#prayerForm,
#donationForm,
#rsvpForm,
#wallForm,
#loginForm,
#registerForm {
  position: relative;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc, .hero-verse { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo-wrap { width: 220px; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .support-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid, .programmes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav a { width: 100%; text-align: center; padding: 0.875rem; }

  .quick-links { margin-top: -2rem; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid, .programmes-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .board-slide { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
