/* ============================================================
   COVENANT PRESBYTERIAN CHURCH — DZORWULU
   Main Stylesheet
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --primary:        #1a3a8c;
  --primary-dark:   #0d2460;
  --primary-light:  #2d55c8;
  --secondary:      #c41e3a;
  --secondary-dark: #8b1427;
  --secondary-light:#e03252;
  --accent:         #2a7a35;
  --gold:           #c9a84c;
  --gold-light:     #e0c878;

  /* Neutrals */
  --white:          #ffffff;
  --off-white:      #f8f9fc;
  --light-bg:       #f0f4fc;
  --light-blue:     #e4ecf8;
  --border:         #d0d8e8;
  --border-light:   #e8edf5;

  /* Text */
  --dark:           #0d1525;
  --text:           #1e2235;
  --text-medium:    #4a4a60;
  --text-light:     #7a7a90;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(26,58,140,.07);
  --shadow-sm: 0 2px 8px rgba(26,58,140,.09);
  --shadow:    0 4px 16px rgba(26,58,140,.13);
  --shadow-md: 0 8px 32px rgba(26,58,140,.16);
  --shadow-lg: 0 16px 48px rgba(26,58,140,.20);
  --shadow-xl: 0 24px 64px rgba(26,58,140,.25);

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r:    12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Transitions */
  --t:      0.3s ease;
  --t-fast: 0.15s ease;
  --t-slow: 0.5s ease;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --nav-height: 80px;
  --container:  1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--t); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--dark);
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-medium); line-height: 1.75; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.section-pad-lg { padding: 112px 0; }

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.text-white   { color: var(--white) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-gold    { color: var(--gold) !important; }
.text-muted   { color: var(--text-light) !important; }

.bg-primary   { background-color: var(--primary); }
.bg-dark      { background-color: var(--dark); }
.bg-light     { background-color: var(--light-bg); }
.bg-white     { background-color: var(--white); }

.d-flex { display: flex; }
.d-grid { display: grid; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Section Headers */
.section-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
  border-left: 3px solid var(--secondary);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 600px;
  line-height: 1.75;
}

.section-subtitle.centered { margin: 0 auto; }

.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--gold));
  border-radius: var(--r-full);
  margin: 1rem 0 1.5rem;
}

.divider.centered { margin: 1rem auto 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,140,.35);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,30,58,.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}

.btn-sm { padding: .6rem 1.25rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--t);
}

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

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: var(--r-full);
  margin-bottom: .75rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: var(--dark);
  line-height: 1.35;
}

.card-text { font-size: .9rem; color: var(--text-medium); margin-bottom: 1rem; }
.card-meta {
  display: flex;
  gap: 1rem;
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.card-meta span { display: flex; align-items: center; gap: .35rem; }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .8rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
}
.badge-primary { background: var(--light-blue); color: var(--primary); }
.badge-secondary { background: #fce8eb; color: var(--secondary); }
.badge-success { background: #e6f4e8; color: var(--accent); }
.badge-gold { background: #fdf5e0; color: #9a7a20; }

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .45rem 0;
  text-align: center;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar a { color: var(--gold-light); font-weight: 600; }
.top-bar a:hover { color: var(--white); }
.top-bar-links { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-links a { display: flex; align-items: center; gap: .4rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: var(--nav-height);
  transition: var(--t);
}

.site-nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
  letter-spacing: .01em;
}
.nav-logo-sub {
  display: block;
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--r-sm);
  transition: var(--t);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: .85rem; right: .85rem;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: var(--t);
  border-radius: var(--r-full);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: .75rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
  z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: .6rem 1rem;
  font-size: .875rem;
  color: var(--text-medium);
  border-radius: var(--r-sm);
  transition: var(--t);
}
.nav-dropdown a:hover { background: var(--light-bg); color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: .75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--primary);
  border-radius: var(--r-full);
  transition: var(--t);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  transform: translateY(-110%);
  transition: transform var(--t-slow);
  z-index: 999;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

.mobile-nav.open { transform: translateY(0); }

.mobile-nav-link {
  display: block;
  padding: .85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  transition: var(--t);
}
.mobile-nav-link:hover { color: var(--primary); padding-left: 1.5rem; }
.mobile-nav-link:last-child { border-bottom: none; }

.mobile-nav-actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 12s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,36,96,.88) 0%,
    rgba(13,36,96,.75) 40%,
    rgba(26,58,140,.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 3rem 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-tag i { font-size: .65rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .75rem;
}

.hero-title span { color: var(--gold-light); }

.hero-location {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.hero-verse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  margin-bottom: .5rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.hero-verse-ref {
  font-size: .85rem;
  color: var(--gold-light);
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Service Times Bar in Hero */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
}

.service-time-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
}

.service-time-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.service-time-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  margin-bottom: .1rem;
}

.service-time-value {
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.5) 0%, transparent 100%);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   WELCOME STRIP
   ============================================================ */
.welcome-strip {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 1.5rem 0;
}

.welcome-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.welcome-strip p {
  color: rgba(255,255,255,.85);
  margin: 0;
  font-size: .95rem;
}

.welcome-strip span { color: var(--gold-light); font-weight: 600; }

/* ============================================================
   UPCOMING EVENTS
   ============================================================ */
.events-slider-wrap { position: relative; overflow: hidden; }

.events-slider {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.event-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}

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

.event-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.event-card:hover .event-card-img img { transform: scale(1.05); }

.event-date-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--r);
  padding: .4rem .8rem;
  text-align: center;
  min-width: 52px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.event-date-badge .day { display: block; font-size: 1.5rem; line-height: 1; }
.event-date-badge .mon { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }

.event-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
  line-height: 1.35;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: 1rem;
  font-size: .82rem;
  color: var(--text-light);
}

.event-meta span { display: flex; align-items: center; gap: .4rem; }
.event-meta i { color: var(--primary); width: 14px; }

.event-card-body .btn { margin-top: auto; align-self: flex-start; }

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--t);
  cursor: pointer;
  font-size: .9rem;
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.slider-dots {
  display: flex;
  gap: .5rem;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--t);
}

.slider-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--r-full);
}

/* ============================================================
   SERMON OF THE WEEK
   ============================================================ */
.sermon-featured {
  background: var(--light-bg);
}

.sermon-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sermon-video-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
  background: var(--dark);
}

.sermon-video-wrap iframe,
.sermon-video-wrap video {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

.sermon-video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: absolute;
  inset: 0;
  cursor: pointer;
  transition: var(--t);
}

.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  padding-left: 4px;
  transition: var(--t);
  backdrop-filter: blur(8px);
}

.play-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.1);
}

.sermon-info { }

.sermon-series {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.sermon-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: .75rem;
  line-height: 1.2;
}

.sermon-speaker {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.sermon-speaker img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.sermon-speaker-info { line-height: 1.3; }
.sermon-speaker-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.sermon-speaker-title { font-size: .78rem; color: var(--text-light); }

.sermon-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.sermon-meta-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: var(--text-light);
}

.sermon-meta-item i { color: var(--primary); }

.sermon-description { font-size: .95rem; margin-bottom: 1.5rem; }

.sermon-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ============================================================
   MINISTRIES HIGHLIGHT
   ============================================================ */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ministry-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.ministry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ministry-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.ministry-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.ministry-card:hover .ministry-img img { transform: scale(1.06); }

.ministry-icon-overlay {
  position: absolute;
  bottom: -20px; left: 1.25rem;
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}

.ministry-body {
  padding: 2rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ministry-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: .5rem;
}

.ministry-desc { font-size: .875rem; color: var(--text-medium); flex: 1; margin-bottom: 1rem; }

/* ============================================================
   ANNOUNCEMENTS / NOTICE BOARD
   ============================================================ */
.announcements-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.announcements-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

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

.announcements-intro .section-tag {
  background: rgba(255,255,255,.15);
  color: var(--gold-light);
  border-left-color: var(--gold);
}

.announcements-intro .section-title { color: var(--white); }
.announcements-intro .section-subtitle { color: rgba(255,255,255,.75); }
.announcements-intro .divider { background: linear-gradient(90deg, var(--gold), transparent); }

.announcements-list { display: flex; flex-direction: column; gap: 1rem; }

.announcement-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--t);
  backdrop-filter: blur(6px);
}

.announcement-item:hover {
  background: rgba(255,255,255,.13);
  transform: translateX(4px);
}

.announcement-icon {
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.announcement-body { flex: 1; }
.announcement-title { font-weight: 600; color: var(--white); font-size: .95rem; margin-bottom: .25rem; }
.announcement-date { font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.announcement-text { font-size: .85rem; color: rgba(255,255,255,.75); margin: 0; line-height: 1.55; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .5rem;
}

.stat-number span { color: var(--secondary); }

.stat-label {
  font-size: .85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}

/* ============================================================
   LIVESTREAM SECTION
   ============================================================ */
.livestream-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.livestream-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/livestream-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .15;
}

.livestream-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(196,30,58,.15);
  border: 1px solid var(--secondary);
  color: #ff6b84;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.livestream-title { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .75rem; }
.livestream-subtitle { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 2rem; }
.livestream-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  border-top: 1px solid var(--border-light);
}

.newsletter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-text { max-width: 480px; }
.newsletter-text .section-title { font-size: 1.75rem; margin-bottom: .5rem; }

.newsletter-form {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  flex: 1;
  max-width: 460px;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: .85rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--r-full);
  font-size: .95rem;
  transition: var(--t);
  outline: none;
  background: var(--white);
}

.newsletter-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,140,.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-logo img { height: 56px; width: auto; }
.footer-logo-text { line-height: 1.25; }
.footer-logo-name { display: block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); }
.footer-logo-sub  { display: block; font-size: .75rem; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }

.footer-tagline {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: .92rem;
  border-left: 3px solid var(--gold);
  padding-left: .75rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--r);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--t);
}

.social-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px); }
.social-btn.whatsapp:hover { background: #25d366; border-color: #25d366; }
.social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-btn.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-btn.instagram:hover { background: #e4405f; border-color: #e4405f; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--white); padding-left: .3rem; }
.footer-links a i { font-size: .65rem; color: var(--secondary); }

.footer-contact { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-item { display: flex; gap: .85rem; align-items: flex-start; }
.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.footer-contact-text { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.footer-contact-text strong { display: block; color: rgba(255,255,255,.85); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .15rem; }

.footer-service-times { display: flex; flex-direction: column; gap: .7rem; }
.service-row { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; padding: .5rem .75rem; background: rgba(255,255,255,.05); border-radius: var(--r-sm); }
.service-row .day { color: rgba(255,255,255,.65); }
.service-row .time { color: var(--gold-light); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-title { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.page-hero-subtitle { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 580px; margin: 0 auto 1.5rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { font-size: .6rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-main { border-radius: var(--r-lg); box-shadow: var(--shadow-xl); width: 100%; height: 450px; object-fit: cover; }
.about-image-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 200px; height: 200px;
  border-radius: var(--r-md);
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-years-badge {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-years-badge .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-years-badge .lbl { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }

.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.vm-card {
  background: var(--light-bg);
  border-radius: var(--r-md);
  padding: 2rem;
  border-top: 4px solid var(--primary);
  transition: var(--t);
}
.vm-card:last-child { border-top-color: var(--secondary); }
.vm-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.vm-card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.vm-card p { font-size: .9rem; margin: 0; }

/* Leadership */
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.leader-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--t);
  border: 1px solid var(--border-light);
}

.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.leader-img {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--light-blue);
  box-shadow: var(--shadow-sm);
}

.leader-name { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .25rem; }
.leader-title { font-size: .82rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.leader-bio { font-size: .875rem; color: var(--text-medium); }

/* Beliefs */
.beliefs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.belief-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  transition: var(--t);
}
.belief-item:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.belief-icon { width: 44px; height: 44px; border-radius: var(--r); background: var(--light-blue); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.belief-text h4 { font-size: 1rem; margin-bottom: .35rem; }
.belief-text p { font-size: .875rem; margin: 0; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* ============================================================
   MINISTRIES PAGE
   ============================================================ */
.ministry-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.ministry-full-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: var(--t);
}
.ministry-full-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.ministry-full-img { height: 240px; overflow: hidden; position: relative; }
.ministry-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ministry-full-card:hover .ministry-full-img img { transform: scale(1.05); }

.ministry-full-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: .35rem .85rem;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ministry-full-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.ministry-full-name { font-size: 1.3rem; margin-bottom: .5rem; }
.ministry-full-lead { font-size: .82rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; display: flex; align-items: center; gap: .35rem; }
.ministry-full-desc { font-size: .9rem; flex: 1; margin-bottom: 1.25rem; }
.ministry-full-meetings { font-size: .82rem; color: var(--text-light); display: flex; align-items: center; gap: .35rem; margin-bottom: 1rem; }

/* ============================================================
   SERMONS PAGE
   ============================================================ */
.sermon-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: var(--r-md);
}

.filter-label { font-size: .85rem; font-weight: 600; color: var(--text); white-space: nowrap; }

.filter-select {
  padding: .6rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--r-full);
  font-size: .875rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--t);
  cursor: pointer;
}
.filter-select:focus { border-color: var(--primary); }

.search-input-wrap { flex: 1; min-width: 200px; position: relative; }
.search-input-wrap i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-light); }
.search-input-wrap input {
  width: 100%;
  padding: .65rem 1rem .65rem 2.75rem;
  border: 2px solid var(--border);
  border-radius: var(--r-full);
  font-size: .875rem;
  outline: none;
  transition: var(--t);
  background: var(--white);
}
.search-input-wrap input:focus { border-color: var(--primary); }

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

.sermon-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.sermon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

.sermon-card-thumb {
  position: relative;
  height: 175px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.sermon-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sermon-card:hover .sermon-card-thumb img { transform: scale(1.06); }

.sermon-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,36,96,.3);
  opacity: 0;
  transition: var(--t);
}
.sermon-card:hover .sermon-play-overlay { opacity: 1; }
.sermon-play-overlay i { font-size: 2.5rem; color: var(--white); filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }

.sermon-card-type {
  position: absolute;
  top: .75rem; right: .75rem;
  background: rgba(0,0,0,.5);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: .3rem;
  backdrop-filter: blur(4px);
}

.sermon-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.sermon-card-series { font-size: .75rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }
.sermon-card-title { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.35; flex: 1; }
.sermon-card-speaker { font-size: .82rem; color: var(--text-light); margin-bottom: .4rem; display: flex; align-items: center; gap: .3rem; }
.sermon-card-date { font-size: .78rem; color: var(--text-light); display: flex; align-items: center; gap: .3rem; margin-bottom: 1rem; }

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.events-list { display: flex; flex-direction: column; gap: 1.25rem; }

.event-list-item {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 1.25rem;
  overflow: hidden;
  transition: var(--t);
}
.event-list-item:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateX(4px); }

.event-list-date {
  flex-shrink: 0;
  width: 80px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: var(--white);
}
.event-list-date .day { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; line-height: 1; }
.event-list-date .mon { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .8; margin-top: .25rem; }

.event-list-img { width: 140px; height: 100%; object-fit: cover; flex-shrink: 0; }

.event-list-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.event-list-category { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--secondary); margin-bottom: .35rem; }
.event-list-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .4rem; color: var(--dark); }
.event-list-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: .82rem; color: var(--text-light); margin-bottom: .75rem; }
.event-list-meta span { display: flex; align-items: center; gap: .35rem; }
.event-list-meta i { color: var(--primary); }
.event-list-desc { font-size: .875rem; color: var(--text-medium); margin: 0; }

/* Calendar Note */
.calendar-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.form-required { color: var(--secondary); }

.form-control {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--r);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--t);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,140,.1); }
.form-control.error { border-color: var(--secondary); }
textarea.form-control { min-height: 130px; resize: vertical; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--border-light);
  transition: var(--t);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.contact-info-icon { width: 44px; height: 44px; border-radius: var(--r); background: var(--light-blue); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.contact-info-body {}
.contact-info-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: .2rem; }
.contact-info-value { font-size: .92rem; color: var(--text); font-weight: 500; }
.contact-info-value a { color: var(--primary); }
.contact-info-value a:hover { color: var(--primary-light); text-decoration: underline; }

.map-embed {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
  background: var(--border-light);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* Prayer Request */
.prayer-section { background: var(--light-bg); }
.prayer-card { background: var(--white); border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--shadow-md); max-width: 700px; margin: 0 auto; }

/* ============================================================
   QUOTE / SCRIPTURE SECTION
   ============================================================ */
.scripture-quote {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.scripture-quote::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-size: 18rem;
  color: rgba(255,255,255,.04);
  font-family: var(--font-display);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 1rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.quote-ref { color: var(--gold-light); font-size: .9rem; font-weight: 600; letter-spacing: .08em; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--t);
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--accent); }
.toast.error   { border-left: 4px solid var(--secondary); }
.toast i { font-size: 1.1rem; }
.toast.success i { color: #4ade80; }
.toast.error i   { color: var(--secondary); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--t);
  z-index: 998;
  cursor: pointer;
  border: none;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================================
   MINISTRY / GROUP DETAIL PAGES
   ============================================================ */

/* Coloured hero for detail pages */
.detail-hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
}
.detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 10s ease;
}
.detail-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.detail-hero-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 3px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 auto 1.25rem;
  backdrop-filter: blur(6px);
}
.detail-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.detail-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.detail-hero-desc {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
}
.detail-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.detail-hero-meta-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.detail-hero-meta-item i { color: var(--gold-light); font-size: .9rem; }

/* About section (detail pages) */
.detail-about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.detail-about-chips {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.75rem;
}
.detail-about-chip {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--light);
  border-radius: var(--r-md);
  padding: .65rem 1rem;
  border: 1px solid var(--border-light);
}
.detail-about-chip-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.detail-about-chip-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: .2rem;
}
.detail-about-chip-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
}
.detail-about-visual {
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.detail-about-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.detail-about-visual::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -30px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.detail-about-visual-icon {
  font-size: 3.5rem;
  opacity: .55;
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.detail-about-visual-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .4rem;
  position: relative; z-index: 1;
}
.detail-about-visual-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border-radius: 50px;
  padding: .25rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.detail-about-visual-divider {
  width: 40px; height: 2px;
  background: rgba(255,255,255,.35);
  margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
}
.detail-about-visual-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  margin-bottom: .75rem;
  position: relative; z-index: 1;
}
.detail-about-visual-ref {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  letter-spacing: .04em;
  position: relative; z-index: 1;
}

/* Mission / Vision cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mv-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 5px solid;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: currentColor;
  opacity: .04;
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.mv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .6rem;
}
.mv-card p { font-size: .95rem; line-height: 1.75; margin: 0; color: var(--text-medium); }

/* Core Values */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.core-value-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--t);
}
.core-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.core-value-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .5rem;
  opacity: .15;
}
.core-value-card h4 { font-size: 1rem; margin-bottom: .4rem; color: var(--dark); }
.core-value-card p  { font-size: .85rem; margin: 0; color: var(--text-medium); }

/* Annual Theme */
.theme-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}
.theme-section::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 3%;
  font-family: var(--font-display);
  font-size: 18rem;
  color: rgba(255,255,255,.06);
  line-height: 1;
  pointer-events: none;
}
.theme-content { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.theme-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}
.theme-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 600;
}
.theme-scripture-ref {
  font-size: .95rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .05em;
}

/* Rehearsal Schedule */
.rehearsal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.rehearsal-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--t);
}
.rehearsal-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.rehearsal-icon {
  width: 46px; height: 46px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.rehearsal-day { font-weight: 700; color: var(--dark); margin-bottom: .2rem; font-size: .95rem; }
.rehearsal-time { font-size: .85rem; color: var(--text-medium); }

/* Detail Gallery */
.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.detail-gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--light-bg);
}
.detail-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.detail-gallery-item:hover img { transform: scale(1.07); }
.detail-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t);
  color: var(--white);
  font-size: 1.5rem;
}
.detail-gallery-item:hover .detail-gallery-overlay { opacity: 1; }

/* Empty gallery placeholder */
.gallery-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--light-bg);
  border-radius: var(--r-lg);
  border: 2px dashed var(--border);
}
.gallery-empty i { font-size: 2.5rem; opacity: .25; display: block; margin-bottom: 1rem; }
.gallery-empty p { margin: 0; color: var(--text-light); font-size: .9rem; }

/* Detail Events */
.detail-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-md);
  object-fit: contain;
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.6);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: var(--r-full);
  font-size: .85rem;
  white-space: nowrap;
}

/* ============================================================
   MINISTRY FEATURE CARDS (Ministries Page Redesign)
   ============================================================ */
.ministry-feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--t);
  border: 1px solid var(--border-light);
}

.ministry-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.ministry-feature-header {
  padding: 2.5rem 1.75rem 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ministry-feature-header::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -20px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}

.ministry-feature-header::after {
  content: '';
  position: absolute;
  top: -30px; left: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.ministry-feature-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 3px solid rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.25rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
}

.ministry-feature-badge {
  display: inline-block;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  position: relative;
  z-index: 1;
}

.ministry-feature-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: -1.5rem;
  position: relative;
}

.ministry-feature-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--dark);
  margin-bottom: .85rem;
  line-height: 1.25;
}

.ministry-feature-meta {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.ministry-feature-meta span {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: var(--text-medium);
}

.ministry-feature-meta i { color: var(--primary); width: 14px; flex-shrink: 0; }

.ministry-feature-desc {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-medium);
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Music intro strip */
.music-intro-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.music-intro-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-medium);
  font-weight: 500;
}

.music-intro-item i {
  font-size: 1.1rem;
  color: var(--primary);
}

/* ============================================================
   GROUPS PAGE
   ============================================================ */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.group-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--t);
  border: 1px solid var(--border-light);
  position: relative;
}

.group-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.group-card-accent {
  height: 5px;
  width: 100%;
}

.group-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.5rem .75rem;
}

.group-card-icon {
  width: 58px; height: 58px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.group-card-title-wrap { flex: 1; padding-top: .2rem; }

.group-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: .25rem;
  line-height: 1.25;
}

.group-card-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: var(--r-full);
}

.group-card-body { padding: 0 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }

.group-card-meta {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .9rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--border-light);
}

.group-card-meta span {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: var(--text-medium);
}

.group-card-meta i { color: var(--primary); width: 12px; flex-shrink: 0; }

.group-card-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--text-medium);
  flex: 1;
  margin-bottom: 1.25rem;
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; margin: 2rem auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-menu,
  .nav-actions .btn:not(.btn-sm) { display: none; }
  .nav-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .sermon-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-accent { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .announcements-layout { grid-template-columns: 1fr; gap: 2rem; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .groups-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .core-values-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-events-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .section-pad { padding: 56px 0; }
  .section-pad-lg { padding: 72px 0; }

  .top-bar .container { flex-direction: column; gap: .3rem; text-align: center; }
  .top-bar-links { justify-content: center; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-services { flex-direction: column; gap: 1rem; }

  .events-slider .event-card { flex: 0 0 calc(85% - .5rem); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .ministries-grid { grid-template-columns: 1fr; }

  .sermons-grid,
  .events-grid { grid-template-columns: 1fr; }

  .ministry-full-grid { grid-template-columns: 1fr; }
  .groups-grid { grid-template-columns: 1fr; }
  .core-values-grid { grid-template-columns: 1fr; }
  .detail-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-events-grid { grid-template-columns: 1fr; }
  .detail-hero-meta { gap: 1rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .detail-about-layout { grid-template-columns: 1fr; gap: 2rem; }

  .beliefs-grid { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .newsletter-wrap { flex-direction: column; }
  .newsletter-form { width: 100%; max-width: 100%; flex-direction: column; }
  .newsletter-form input { width: 100%; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .event-list-item { flex-direction: column; }
  .event-list-img { width: 100%; height: 180px; }
  .event-list-date { width: 100%; flex-direction: row; justify-content: flex-start; gap: .75rem; padding: .75rem 1.25rem; }
  .event-list-date .day { font-size: 1.5rem; }

  .about-years-badge { top: 1rem; left: 1rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .site-nav, .top-bar, .back-to-top, .toast { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
}
