/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --deep-navy: #0d1b3e;
  --navy: #1a2d5a;
  --purple: #4a1a6e;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #7a7a9a;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-hover: 0 16px 60px rgba(0,0,0,0.2);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 27, 62, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(13, 27, 62, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 2px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #a8893a) !important;
  color: var(--deep-navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('church-worship.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 62, 0.7) 0%,
    rgba(74, 26, 110, 0.4) 50%,
    rgba(13, 27, 62, 0.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { color: white; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-service-time {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero-service-icon { font-size: 1.5rem; }
.hero-service-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-weight: 600;
}
.hero-service-value {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #a8893a);
  color: var(--deep-navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Hero Video Panel */
.hero-video-panel { position: relative; }
.hero-video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 2px solid rgba(201,168,76,0.3);
  background: #000;
}
.hero-video-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), transparent, var(--purple));
  border-radius: 22px;
  z-index: -1;
}
.hero-video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}
.hero-video-label {
  position: absolute;
  top: -14px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold), #a8893a);
  color: var(--deep-navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { opacity: 0.5; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION STYLES ===== */
section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--deep-navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
}
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ===== OFFERS SECTION ===== */
.offers {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.offers::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.offer-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.offer-card-accent {
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.offer-card-accent.purple { background: linear-gradient(90deg, var(--purple), #7b2fa8); }
.offer-card-accent.navy { background: linear-gradient(90deg, var(--navy), #2a4d8a); }
.offer-card-body { padding: 32px; }
.offer-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.offer-icon.gold { background: rgba(201,168,76,0.12); }
.offer-icon.purple { background: rgba(74,26,110,0.1); }
.offer-icon.navy { background: rgba(26,45,90,0.1); }
.offer-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.offer-tag.purple { color: var(--purple); background: rgba(74,26,110,0.08); }
.offer-tag.navy { color: var(--navy); background: rgba(26,45,90,0.08); }
.offer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1.3;
  margin-bottom: 12px;
}
.offer-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 100px;
  transition: all 0.3s;
  width: 100%;
  justify-content: center;
}
.offer-cta.gold {
  background: linear-gradient(135deg, var(--gold), #a8893a);
  color: var(--deep-navy);
  box-shadow: 0 4px 15px rgba(201,168,76,0.25);
}
.offer-cta.gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.offer-cta.purple {
  background: linear-gradient(135deg, var(--purple), #6b2a9e);
  color: white;
  box-shadow: 0 4px 15px rgba(74,26,110,0.25);
}
.offer-cta.purple:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(74,26,110,0.4); }
.offer-cta.navy {
  background: linear-gradient(135deg, var(--navy), #2a4d8a);
  color: white;
  box-shadow: 0 4px 15px rgba(26,45,90,0.25);
}
.offer-cta.navy:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,45,90,0.4); }
.offer-free-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ===== ABOUT SECTION ===== */
.about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 480px;
  box-shadow: var(--shadow);
}
.about-image-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,168,76,0.2);
}
.about-image-card-stat {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--deep-navy);
  line-height: 1;
}
.about-image-card-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 4px;
}
.about-text .section-subtitle { margin-bottom: 24px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-value { display: flex; align-items: flex-start; gap: 12px; }
.about-value-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.about-value-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 2px; }
.about-value-text p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; }
.about-cta-row { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* ===== SERMONS SECTION ===== */
.sermons {
  background: var(--deep-navy);
  position: relative;
  overflow: hidden;
}
.sermons::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('church-hands.jpg') center/cover no-repeat;
  opacity: 0.05;
}
.sermons .section-title { color: white; }
.sermons .section-label { color: var(--gold-light); }
.sermons .section-subtitle { color: rgba(255,255,255,0.65); }
.sermons-featured {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
.sermons-featured-grid { display: grid; grid-template-columns: 1.2fr 1fr; }
.sermons-featured-video { position: relative; }
.sermons-featured-video iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.sermons-featured-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.sermons-featured-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.sermons-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 16px;
}
.sermons-featured-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }
.sermons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.sermon-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.sermon-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.sermon-card-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: rgba(255,255,255,0.05); }
.sermon-card-body { padding: 20px; }
.sermon-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: white; line-height: 1.4; margin-bottom: 8px; }
.sermon-card-date { font-size: 0.78rem; color: var(--gold-light); font-weight: 500; }
.sermons-cta-row { text-align: center; }
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.3s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--deep-navy); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.3); }

/* ===== EVENTS SECTION ===== */
.events { background: var(--off-white); }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.event-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s;
  border-left: 4px solid transparent;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-left-color: var(--gold); }
.event-date-box {
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: white;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  min-width: 64px;
  flex-shrink: 0;
}
.event-date-month { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.event-date-day { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.event-info h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 6px; }
.event-info p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.event-meta span { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.events-cta-row { text-align: center; margin-top: 48px; }
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: all 0.3s;
}
.btn-outline-navy:hover { background: var(--navy); color: white; transform: translateY(-2px); }

/* ===== DIRECTIONS SECTION ===== */
.directions { background: white; }
.directions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.directions-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 20px; }
.directions-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.directions-detail-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.directions-detail-text h4 { font-size: 0.875rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 2px; }
.directions-detail-text p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.5; }
.directions-map { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.directions-map iframe { width: 100%; height: 400px; border: none; display: block; }

/* ===== FOOTER ===== */
footer {
  background: var(--deep-navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 40px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo-text { font-size: 1.4rem; display: block; margin-bottom: 4px; }
.footer-brand .nav-logo-sub { font-size: 0.7rem; }
.footer-brand-desc { font-size: 0.875rem; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,0.55); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--deep-navy); }

/* ===== 90 DAYS POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.82);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}
.popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: var(--deep-navy);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  padding: 48px 44px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s ease;
  text-align: center;
}
.popup-overlay.visible .popup-box {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.popup-close:hover { background: rgba(255,255,255,0.15); color: white; }
.popup-bible-icon {
  font-size: 3rem;
  margin-bottom: 8px;
  display: block;
}
.popup-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 8px;
}
.popup-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.popup-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 12px;
}
.popup-launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.popup-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #a8893a);
  color: var(--deep-navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  margin-bottom: 12px;
}
.popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.popup-dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}
.popup-dismiss:hover { color: rgba(255,255,255,0.6); }
.popup-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}
.popup-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.popup-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-video-panel { max-width: 600px; }
  .offers-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .sermons-featured-grid { grid-template-columns: 1fr; }
  .sermons-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,27,62,0.98);
    padding: 20px;
    gap: 4px;
    backdrop-filter: blur(12px);
  }
  .nav-hamburger { display: flex; }
  section { padding: 70px 20px; }
  .hero-content { padding: 100px 20px 60px; }
  .sermons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .popup-box { padding: 36px 24px; }
  .popup-stats { gap: 18px; }
}
