/* ============================================================
   THE CHRISTIAN GATHERING PLACE  —  Main Stylesheet
   ============================================================ */

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

/* --- Variables --- */
:root {
  --navy:       #1a2c4e;
  --navy-dark:  #0e1c32;
  --gold:       #c9a84c;
  --gold-light: #e5c46a;
  --cream:      #f7f3ec;
  --cream-dark: #ede8df;
  --white:      #ffffff;
  --text:       #1e1e2e;
  --text-mid:   #4a4a5a;
  --text-light: #8a8a9a;
  --border:     #e0d8cc;
  --shadow:     0 2px 16px rgba(26,44,78,.10);
  --shadow-lg:  0 8px 40px rgba(26,44,78,.18);
  --r:          8px;
  --r-lg:       16px;
  --t:          .3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

/* --- Utilities --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }

.section-label {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  display: block;
}
.section-title { color: var(--navy); margin-bottom: 14px; }
.section-subtitle { color: var(--text-mid); font-size: 1.05rem; max-width: 600px; }

.divider { width: 56px; height: 3px; background: var(--gold); margin: 14px 0 28px; }
.divider.centered { margin-inline: auto; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--r);
  font-family: 'Inter', sans-serif; font-size: .93rem; font-weight: 600;
  letter-spacing: .03em; cursor: pointer; transition: var(--t);
  border: 2px solid transparent; text-align: center;
}
.btn-primary  { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover  { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover  { background: var(--white); color: var(--navy); }
.btn-navy     { background: var(--navy); color: var(--white); }
.btn-navy:hover     { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost    { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-ghost:hover    { background: var(--gold); color: var(--navy-dark); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: background var(--t), padding var(--t), box-shadow var(--t);
}
.nav.scrolled { background: var(--navy); padding: 10px 0; box-shadow: 0 2px 24px rgba(0,0,0,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-logo {
  display: flex; align-items: center; gap: 11px;
  color: var(--white); flex-shrink: 0;
}
.nav-logo-icon { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }
.nav-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.15;
}
.nav-logo-sub {
  display: block; font-family: 'Inter', sans-serif;
  font-size: .6rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.82);
  padding: 8px 13px; border-radius: var(--r); transition: var(--t);
  position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 3px; left: 13px; right: 13px;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-links .btn-cta {
  background: var(--gold); color: var(--navy-dark) !important;
  padding: 9px 18px !important; border-radius: var(--r) !important; font-weight: 700 !important;
  margin-left: 6px;
}
.nav-links .btn-cta::after { display: none !important; }
.nav-links .btn-cta:hover { background: var(--gold-light) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span { display: block; width: 23px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }

#nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 999; }

@media (max-width: 920px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: min(300px, 82vw); height: 100vh;
    background: var(--navy-dark); flex-direction: column; align-items: flex-start;
    padding: 88px 28px 40px; gap: 4px;
    transition: right var(--t); box-shadow: -4px 0 30px rgba(0,0,0,.35);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; padding: 11px 16px; width: 100%; }
  .nav-links a::after { display: none; }
  .nav-links .btn-cta { margin: 12px 0 0; width: 100%; text-align: center; display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/83625.jpg') center/cover no-repeat fixed;
  filter: brightness(.38);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 140px 24px 80px; max-width: 900px; margin: 0 auto;
}
.hero-badge {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,.5); padding: 8px 22px;
  border-radius: 100px; margin-bottom: 28px;
  animation: fadeInDown .8s ease .2s both;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; color: var(--white);
  line-height: 1.08; margin-bottom: 22px; animation: fadeInUp .8s ease .4s both;
}
.hero-title em { color: var(--gold); font-style: italic; display: block; }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.22rem); color: rgba(255,255,255,.82);
  margin-bottom: 44px; animation: fadeInUp .8s ease .6s both;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeInUp .8s ease .8s both; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  animation: bounce 2.2s ease-in-out infinite; color: rgba(255,255,255,.55);
}
.hero-scroll svg { width: 28px; height: 28px; }

/* ============================================================
   WELCOME STRIP
   ============================================================ */
.welcome-strip { background: var(--navy); padding: 16px 0; text-align: center; }
.welcome-strip p {
  font-size: .88rem; font-weight: 500; letter-spacing: .07em;
  color: rgba(255,255,255,.8);
}
.welcome-strip span { color: var(--gold); font-weight: 700; }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-section { background: var(--navy-dark); padding: 28px 0; }
.countdown-inner { text-align: center; }
.countdown-service-name {
  display: block; font-size: .72rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 10px;
}
.countdown-timer { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.countdown-unit { text-align: center; min-width: 64px; }
.countdown-unit strong {
  display: block; font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.countdown-unit span {
  font-size: .6rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.countdown-sep { font-family: 'Playfair Display', Georgia, serif; font-size: 1.8rem; color: var(--gold); opacity: .45; padding-bottom: 18px; }

/* ============================================================
   VERSE OF THE DAY
   ============================================================ */
.verse-section { background: var(--cream); padding: 80px 0; text-align: center; }
.verse-card {
  max-width: 760px; margin: 0 auto;
  background: var(--white); border-radius: var(--r-lg);
  padding: 56px 60px; box-shadow: var(--shadow-lg);
  position: relative; border-top: 4px solid var(--gold);
}
.verse-open-quote {
  position: absolute; top: 8px; left: 28px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 9rem; line-height: 1; color: var(--gold); opacity: .12;
  user-select: none; pointer-events: none;
}
.verse-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-style: italic;
  color: var(--navy); line-height: 1.75; margin-bottom: 24px; position: relative; z-index: 1;
}
.verse-ref {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}
.verse-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-light);
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px;
}
.verse-label::before, .verse-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border); max-width: 80px;
}
@media (max-width: 600px) { .verse-card { padding: 40px 24px; } .verse-open-quote { font-size: 5rem; } }

/* ============================================================
   SERVICE TIMES
   ============================================================ */
.services-section { background: var(--navy); padding: 60px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; border-radius: var(--r); overflow: hidden;
  background: rgba(255,255,255,.08);
}
.service-item { background: var(--navy); padding: 40px 28px; text-align: center; transition: background var(--t); }
.service-item:hover { background: #1f3560; }
.service-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(201,168,76,.14); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--gold);
}
.service-icon svg { width: 24px; height: 24px; }
.service-day { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.service-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
.service-time { font-size: 1.55rem; font-weight: 300; color: rgba(255,255,255,.82); }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LIVE BROADCAST
   ============================================================ */
.broadcast-section { background: var(--white); padding: 80px 0; }
.broadcast-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: center; }
.broadcast-embed {
  position: relative; aspect-ratio: 16/9;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.broadcast-embed iframe { width: 100%; height: 100%; border: none; }
.broadcast-thumb {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .6;
}
.broadcast-play-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; color: var(--white);
}
.broadcast-play-overlay svg { width: 72px; height: 72px; opacity: .9; filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)); }
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #dc2626; color: var(--white); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px;
  border-radius: 100px;
}
.live-dot { width: 8px; height: 8px; background: var(--white); border-radius: 50%; animation: livePulse 1.4s ease-in-out infinite; }
.broadcast-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 768px) { .broadcast-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   EVENTS (HOME PREVIEW)
   ============================================================ */
.events-section { background: var(--cream); padding: 80px 0; }
.events-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.event-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); display: flex;
  transition: transform var(--t), box-shadow var(--t);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-date-badge {
  width: 76px; flex-shrink: 0; background: var(--navy); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 10px; text-align: center;
}
.event-date-badge .month { font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.event-date-badge .day  { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 700; line-height: 1; margin: 3px 0; }
.event-date-badge .year { font-size: .62rem; color: rgba(255,255,255,.5); }
.event-body { padding: 22px; flex: 1; }
.event-category { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.event-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.event-meta { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.event-meta svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--white); padding: 80px 0; }
.gallery-header { text-align: center; margin-bottom: 44px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid .gallery-item:first-child { grid-column: span 2; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer; }
.gallery-item:first-child { aspect-ratio: 16/9; }
.gallery-item:not(:first-child) { aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(26,44,78,0);
  display: flex; align-items: center; justify-content: center; transition: background var(--t);
}
.gallery-item:hover .gallery-overlay { background: rgba(26,44,78,.48); }
.gallery-overlay svg { color: var(--white); width: 44px; height: 44px; opacity: 0; transition: opacity var(--t); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; }
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; }
}

/* ============================================================
   SCRIPTURE BANNER
   ============================================================ */
.scripture-banner { background: var(--navy); padding: 80px 0; text-align: center; }
.scripture-banner blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem); font-style: italic;
  color: var(--white); max-width: 820px; margin: 0 auto 22px; line-height: 1.55;
}
.scripture-banner cite {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); font-style: normal;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { background: var(--cream); padding: 80px 0; text-align: center; }
.newsletter-inner { max-width: 540px; margin: 0 auto; }
.newsletter-form { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 13px 18px;
  border: 2px solid var(--border); border-radius: var(--r);
  font-family: 'Inter', sans-serif; font-size: .93rem;
  background: var(--white); color: var(--text); outline: none;
  transition: border-color var(--t);
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.75; margin: 16px 0 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); transition: var(--t);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-social svg { width: 17px; height: 17px; }
.footer-heading { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.58); transition: color var(--t); }
.footer-links a:hover { color: var(--gold); }
.footer-links li span { font-size: .88rem; color: rgba(255,255,255,.58); }
.footer-contact-item { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: .87rem; color: rgba(255,255,255,.58); line-height: 1.55; }
.footer-bottom { padding: 20px 0; text-align: center; border-top: 1px solid rgba(255,255,255,.06); margin-top: 0; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom span { color: var(--gold); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: var(--navy); padding: 160px 0 72px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('../images/83623.jpg') center/cover; opacity: .1; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .breadcrumb { font-size: .84rem; color: rgba(255,255,255,.55); }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
@media (max-width: 768px) { .about-story-inner { grid-template-columns: 1fr; } }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mission-card { background: var(--white); border-radius: var(--r-lg); padding: 44px 38px; box-shadow: var(--shadow); border-top: 4px solid var(--gold); }
.mission-card svg { width: 44px; height: 44px; color: var(--gold); margin-bottom: 18px; }
.mission-card h3 { color: var(--navy); margin-bottom: 10px; }
.mission-card p { color: var(--text-mid); font-size: .95rem; }
@media (max-width: 600px) { .mission-grid { grid-template-columns: 1fr; } }

.belief-list { max-width: 780px; }
.belief-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.belief-item:last-child { border-bottom: none; }
.belief-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif; font-size: .88rem; font-weight: 700; flex-shrink: 0; margin-top: 3px;
}
.belief-item h4 { color: var(--navy); margin-bottom: 5px; font-size: 1.05rem; }
.belief-item p { color: var(--text-mid); font-size: .92rem; }

.leadership-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.leader-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); text-align: center; }
.leader-avatar {
  width: 100%; aspect-ratio: 1/1; background: linear-gradient(135deg, var(--navy), #2a4a7a);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.leader-avatar svg { width: 80px; height: 80px; opacity: .5; }
.leader-info { padding: 24px 20px; }
.leader-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.leader-role { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   SERMONS PAGE
   ============================================================ */
.sermon-featured-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 44px; align-items: start; }
.sermon-video { aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--navy); }
.sermon-video iframe { width: 100%; height: 100%; border: none; }
.sermon-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.sermon-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.5);
  padding: 4px 12px; border-radius: 100px;
}
.sermon-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.sermon-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t); }
.sermon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sermon-thumb { position: relative; aspect-ratio: 16/9; background: var(--navy); overflow: hidden; }
.sermon-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.sermon-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(26,44,78,.4); transition: background var(--t);
}
.sermon-play svg { width: 54px; height: 54px; color: var(--white); opacity: .9; }
.sermon-card:hover .sermon-play { background: rgba(26,44,78,.62); }
.sermon-card-body { padding: 22px; }
.sermon-card-date { font-size: .72rem; font-weight: 600; letter-spacing: .06em; color: var(--gold); margin-bottom: 7px; }
.sermon-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 7px; line-height: 1.35; }
.sermon-card-speaker { font-size: .83rem; color: var(--text-light); }
@media (max-width: 768px) { .sermon-featured-inner { grid-template-columns: 1fr; } }

/* ============================================================
   EVENTS FULL PAGE
   ============================================================ */
.event-full-card {
  background: var(--white); border-radius: var(--r-lg); padding: 36px;
  box-shadow: var(--shadow); display: grid; grid-template-columns: 90px 1fr;
  gap: 28px; align-items: start; transition: box-shadow var(--t); margin-bottom: 22px;
}
.event-full-card:hover { box-shadow: var(--shadow-lg); }
.event-date-block { background: var(--navy); border-radius: var(--r); padding: 18px 10px; text-align: center; color: var(--white); }
.event-date-block .month { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.event-date-block .day  { font-family: 'Playfair Display', Georgia, serif; font-size: 2.3rem; font-weight: 700; line-height: 1; display: block; }
.event-date-block .year { font-size: .62rem; color: rgba(255,255,255,.5); }
.event-detail-meta { display: flex; flex-wrap: wrap; gap: 14px; margin: 10px 0 14px; }
.event-detail-meta span { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.event-detail-meta svg { width: 14px; height: 14px; color: var(--gold); }
@media (max-width: 600px) { .event-full-card { grid-template-columns: 1fr; } }

/* ============================================================
   FORMS  (Prayer + Contact)
   ============================================================ */
.form-card { background: var(--white); border-radius: var(--r-lg); padding: 44px 40px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: var(--r);
  font-family: 'Inter', sans-serif; font-size: .93rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.14); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; cursor: pointer; }
.form-check input { width: 17px; height: 17px; accent-color: var(--gold); flex-shrink: 0; }
.form-check span { font-size: .87rem; color: var(--text-mid); }
.form-success {
  display: none; background: #f0fdf4; border: 1px solid #86efac;
  border-radius: var(--r); padding: 22px; text-align: center;
  color: #166534; font-size: .93rem;
}
.form-success svg { width: 40px; height: 40px; color: #22c55e; margin: 0 auto 12px; }

.prayer-wall { background: var(--cream); border-radius: var(--r-lg); padding: 30px; }
.prayer-wall h3 { color: var(--navy); margin-bottom: 22px; font-size: 1.25rem; }
.prayer-item { background: var(--white); border-radius: var(--r); padding: 18px 20px; margin-bottom: 14px; border-left: 3px solid var(--gold); box-shadow: var(--shadow); }
.prayer-item p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 7px; }
.prayer-item-meta { font-size: .74rem; color: var(--text-light); }

.contact-info-card { background: var(--navy); border-radius: var(--r-lg); padding: 38px; color: var(--white); }
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--r); }
.lightbox-close {
  position: absolute; top: 20px; right: 26px;
  background: none; border: none; color: rgba(255,255,255,.75); font-size: 2.8rem;
  cursor: pointer; line-height: 1; transition: color var(--t);
}
.lightbox-close:hover { color: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp   { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: none; } }
@keyframes fadeInDown { from { opacity:0; transform: translateY(-24px); } to { opacity:1; transform: none; } }
@keyframes bounce     { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }
@keyframes livePulse  { 0%,100% { transform: scale(1); opacity:1; } 50% { transform: scale(1.5); opacity:.5; } }

@media (max-width: 768px) { .section { padding: 56px 0; } }
@media (max-width: 480px) { .section { padding: 44px 0; } }

/* ============================================================
   PRAYER / CONTACT  PAGE GRID CLASSES
   (replacing inline styles so breakpoints can apply)
   ============================================================ */
.prayer-inner  { display: grid; grid-template-columns: 1fr 1fr;   gap: 56px; align-items: start; }
.contact-inner { display: grid; grid-template-columns: 3fr 2fr;   gap: 56px; align-items: start; }

@media (max-width: 768px) {
  .prayer-inner  { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE OVERRIDES
   ============================================================ */

/* ── Fix iOS Safari parallax (background-attachment:fixed is broken there) ── */
@media (max-width: 1024px) {
  .hero-bg { background-attachment: scroll; }
}

/* ── Hero ── */
@media (max-width: 640px) {
  .hero-content { padding-top: 120px; padding-bottom: 56px; }
  .hero-tagline br { display: none; }
}
@media (max-width: 440px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .hero-badge { font-size: .66rem; letter-spacing: .14em; }
}

/* ── Welcome strip ── */
@media (max-width: 640px) {
  .welcome-strip p { font-size: .76rem; letter-spacing: .02em; line-height: 1.75; padding: 0 12px; }
}

/* ── Countdown ── */
@media (max-width: 480px) {
  .countdown-section { padding: 22px 0; }
  .countdown-unit strong { font-size: 1.65rem; }
  .countdown-unit { min-width: 44px; }
  .countdown-sep { font-size: 1.3rem; }
}

/* ── Verse ── */
@media (max-width: 480px) {
  .verse-section { padding: 48px 0; }
  .verse-open-quote { font-size: 4rem; }
}

/* ── Page hero ── */
@media (max-width: 768px) { .page-hero { padding: 128px 0 52px; } }
@media (max-width: 480px) { .page-hero { padding: 108px 0 40px; } }

/* ── Services (already 1-col at 600px; tighten padding) ── */
@media (max-width: 480px) {
  .service-item { padding: 28px 20px; }
  .service-time { font-size: 1.3rem; }
}

/* ── Broadcast ── */
@media (max-width: 480px) {
  .broadcast-buttons { flex-direction: column; }
  .broadcast-buttons .btn { justify-content: center; }
}

/* ── Events header ── */
@media (max-width: 520px) {
  .events-header { flex-direction: column; align-items: flex-start; }
}

/* ── Gallery ── */
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-grid .gallery-item:first-child { grid-column: span 1; }
  .gallery-item:first-child,
  .gallery-item:not(:first-child) { aspect-ratio: 16/9; }
}

/* ── Scripture banner ── */
@media (max-width: 480px) {
  .scripture-banner { padding: 52px 0; }
}

/* ── Newsletter ── */
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: 0; }
  .newsletter-form .btn { justify-content: center; }
}

/* ── Footer ── */
@media (max-width: 640px) {
  .footer { padding-top: 48px; }
  .footer-grid { gap: 28px; }
}

/* ── Cards / forms ── */
@media (max-width: 480px) {
  .form-card     { padding: 28px 18px; }
  .mission-card  { padding: 30px 22px; }
  .contact-info-card { padding: 26px 20px; }
  .event-full-card { padding: 22px 18px; gap: 18px; }
  .prayer-wall   { padding: 22px 18px; }
}

/* ── Belief list ── */
@media (max-width: 480px) {
  .belief-item { gap: 12px; padding: 18px 0; }
}

/* ── Sermon featured info block ── */
@media (max-width: 480px) {
  .sermon-card-body { padding: 16px; }
}

/* ── Prevent horizontal scroll on all pages ── */
html, body { overflow-x: hidden; }
.container  { padding-inline: max(16px, 4vw); }
