/* ══════════════════════════════════════════════
   MUNDO DE FE SANTO DOMINGO
   World-Class Stylesheet — Church of the Highlands inspired
   ══════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────── */
:root {
  --black:     #07090f;
  --dark:      #0c1220;
  --navy:      #0f1b35;
  --navy2:     #162444;
  --gold-dk:   #a07820;
  --gold:      #c8963c;
  --gold-md:   #e8b84b;
  --gold-lt:   #f5d78e;
  --cream:     #f7f4ef;
  --white:     #ffffff;
  --gray1:     #1e2535;
  --gray2:     #6b7280;
  --gray3:     #9ca3af;
  --gray4:     #e5e7eb;
  --r-sm:      8px;
  --r-md:      16px;
  --r-lg:      24px;
  --shadow:    0 20px 60px rgba(0,0,0,0.10);
  --shadow-dk: 0 20px 60px rgba(0,0,0,0.40);
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── Container ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── Scroll offset for fixed nav ────────────── */
section[id], div[id] {
  scroll-margin-top: calc(var(--bar-h) + 80px);
}

/* ── Smooth image loading ────────────────────── */
img {
  transition: opacity 0.3s ease;
}
img[loading="lazy"] { opacity: 0; }
img[loading="lazy"].loaded { opacity: 1; }

/* ── Typography ────────────────────────────── */
.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.label--gold { color: var(--gold-md); }

.heading-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600; line-height: 1.08;
  color: var(--dark); margin-bottom: 24px;
}
.heading-display em { font-style: italic; color: var(--gold); }
.heading-display--light { color: var(--white); }
.heading-display--light em { color: var(--gold-md); }

.body-large { font-size: 18px; font-weight: 400; line-height: 1.75; color: var(--gray2); margin-bottom: 16px; }
.body-text  { font-size: 15px; line-height: 1.8; color: var(--gray2); }
.body-text--light { color: rgba(255,255,255,0.65); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header--light .body-text { color: rgba(255,255,255,0.6); }
.section-header .body-text { max-width: 560px; margin: 0 auto; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.25s var(--ease); border: none; white-space: nowrap; cursor: pointer;
}
.btn-gold-fill {
  background: linear-gradient(135deg, var(--gold), var(--gold-md));
  color: var(--dark); box-shadow: 0 4px 24px rgba(200,150,60,0.35);
}
.btn-gold-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,150,60,0.5); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--gold-md); color: var(--gold-md); }
.btn-ghost-light {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2); padding: 13px 28px;
}
.btn-ghost-light:hover { border-color: var(--gold-md); color: var(--gold-md); }
.btn-dark-fill { background: var(--dark); color: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.btn-dark-fill:hover { background: var(--navy); transform: translateY(-2px); }
.btn-submit { width: 100%; justify-content: center; font-size: 13px; padding: 16px; }
.play-ring {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0;
}

/* ── Animations ────────────────────────────── */
.anim-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.anim-up.visible { opacity: 1; transform: translateY(0); }

/* ── Focus rings (accessibility) ─────────────── */
:focus-visible {
  outline: 2px solid var(--gold-md);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Selection color ─────────────────────────── */
::selection { background: rgba(200,150,60,0.25); color: var(--dark); }

/* ══════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════════════ */
.announce-bar {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-md));
  color: var(--dark); padding: 11px 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001; font-size: 13px; font-weight: 600;
  text-align: center;
}
.announce-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.announce-emoji { font-size: 16px; }
.announce-cta {
  background: rgba(0,0,0,0.15); color: var(--dark);
  padding: 4px 14px; border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
  transition: background 0.2s;
}
.announce-cta:hover { background: rgba(0,0,0,0.25); }
.announce-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--dark); opacity: 0.6;
  font-size: 16px; padding: 4px; transition: opacity 0.2s;
}
.announce-close:hover { opacity: 1; }

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
/* Body offset — JS updates --bar-h dynamically via updateBarHeight() */
:root { --bar-h: 44px; --nav-h: 68px; }
/* Non-hero pages would need this; hero undoes it */
.hero { margin-top: 0; }

.nav {
  position: fixed; top: var(--bar-h); left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), top 0.3s;
}
.nav--solid {
  background: rgba(7,9,15,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 14px 0; box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  /* Logo is black on white — invert to white for dark nav */
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.nav-logo-img:hover { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-md)) !important;
  color: var(--dark) !important; padding: 10px 18px; border-radius: 3px;
  display: flex !important; align-items: center; gap: 7px;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh; /* modern browsers — accounts for mobile chrome bars */
  min-height: 100vh;  /* fallback */
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
/* Real church photo sits underneath the dark overlay */
.hero-layer-photo {
  position: absolute; inset: 0;
  background-image: url('images/jhanna.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: blur(1px) brightness(0.35) saturate(0.6);
  transform: scale(1.04); /* prevent blur edge bleed */
}
.hero-layer-1 {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(4,6,13,0.82)  0%,
    rgba(10,22,40,0.72) 40%,
    rgba(18,6,58,0.65)  70%,
    rgba(8,10,24,0.80)  100%
  );
}
.hero-layer-2 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 60%, rgba(200,150,60,0.10) 0%, transparent 70%),
              radial-gradient(ellipse 70% 30% at 50% 100%, rgba(100,60,180,0.06) 0%, transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 140px 24px 100px; max-width: 900px;
}
.hero-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: heroFade 1s 0.1s var(--ease-out) forwards;
}

.hero-series-tag {
  display: none; margin-bottom: 20px;
  background: rgba(200,150,60,0.15); border: 1px solid rgba(200,150,60,0.3);
  color: var(--gold-md); font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 20px; border-radius: 20px;
  opacity: 0; animation: heroFade 1s 0.1s var(--ease-out) forwards;
}
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-md);
  margin-bottom: 28px; opacity: 0; animation: heroFade 1s 0.25s var(--ease-out) forwards;
}
.eyebrow-line { display: block; height: 1px; width: 48px; background: linear-gradient(90deg, transparent, var(--gold-md)); }
.eyebrow-line:last-child { background: linear-gradient(90deg, var(--gold-md), transparent); }
.hero-title {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 24px; opacity: 0; animation: heroFade 1s 0.45s var(--ease-out) forwards;
}
.hero-title-sm { font-family: 'Montserrat', sans-serif; font-size: clamp(1rem, 4vw, 1.5rem); font-weight: 900; letter-spacing: 0.5em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.hero-title-de { font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 12vw, 10rem); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.9); line-height: 0.85; }
.hero-title-fe {
  font-family: 'Montserrat', sans-serif; font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 0.85;
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 30%, var(--gold-md) 60%, var(--gold-lt) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic; font-weight: 300; color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em; margin-bottom: 28px;
  opacity: 0; animation: heroFade 1s 0.65s var(--ease-out) forwards;
}
.hero-verse-wrap {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 48px; opacity: 0; animation: heroFade 1s 0.8s var(--ease-out) forwards;
}
.hero-verse-line { flex: 1; max-width: 60px; height: 1px; background: rgba(255,255,255,0.15); }
.hero-verse { font-size: 12px; color: rgba(255,255,255,0.4); font-style: italic; }
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: heroFade 1s 1s var(--ease-out) forwards;
}
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
  opacity: 0; animation: heroFade 1s 1.4s var(--ease-out) forwards;
}
.scroll-track { width: 1px; height: 56px; background: rgba(255,255,255,0.12); overflow: hidden; }
.scroll-thumb { width: 1px; height: 28px; background: var(--gold-md); animation: scrollDown 2s 1.6s var(--ease) infinite; }
.hero-scroll-indicator span {
  font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); writing-mode: vertical-rl;
}
.hero-social {
  position: absolute; right: 32px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px; z-index: 2;
  opacity: 0; animation: heroFade 1s 1.2s var(--ease-out) forwards;
}
.hero-social a { color: rgba(255,255,255,0.35); font-size: 14px; transition: color 0.2s, transform 0.2s; }
.hero-social a:hover { color: var(--gold-md); transform: scale(1.2); }
@keyframes heroFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollDown { 0% { transform: translateY(-100%); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateY(200%); opacity: 0; } }

/* ══════════════════════════════════════════════
   STRIP
   ══════════════════════════════════════════════ */
.strip { background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.05); }
.strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none;
}
.strip-inner::-webkit-scrollbar { display: none; }
.strip-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 28px; flex: 1; min-width: 200px;
  transition: background 0.2s;
}
.strip-item:hover { background: rgba(255,255,255,0.03); }
.strip-item > i { font-size: 16px; color: var(--gold); flex-shrink: 0; }
.strip-item > div { display: flex; flex-direction: column; gap: 2px; }
.strip-item strong { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }
.strip-item span { font-size: 14px; color: rgba(255,255,255,0.55); }
.strip-sep { width: 1px; background: rgba(255,255,255,0.07); margin: 14px 0; flex-shrink: 0; }
.strip-item--cta { background: rgba(200,150,60,0.06); }
.strip-item--social > i { color: #e1306c; }

/* ══════════════════════════════════════════════
   NEW HERE / SOY NUEVO
   ══════════════════════════════════════════════ */
.new-here { padding: 96px 0; background: var(--cream); }
.new-here-header { text-align: center; margin-bottom: 56px; }
.new-here-header .body-large { max-width: 580px; margin: 0 auto; }
.new-here-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px;
}
.nh-card {
  background: var(--white); border-radius: var(--r-lg); padding: 36px 28px;
  border: 1px solid rgba(11,22,40,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.nh-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.nh-icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(200,150,60,0.12), rgba(232,184,75,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold); margin-bottom: 20px;
}
.nh-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.nh-card p { font-size: 14px; color: var(--gray2); line-height: 1.7; }
.new-here-cta { text-align: center; }

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
.about { padding: 80px 0; background: var(--white); }
.about-split {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.about-visual { position: relative; height: 520px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 72%; height: 78%;
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-dk);
}
.about-img-inner {
  width: 100%; height: 100%;
  background-image: url('images/otoniel.jpg');
  background-size: cover;
  background-position: center 22%;
  position: relative;
}
.about-img-inner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,18,32,0.45) 100%);
}
.about-img-secondary {
  position: absolute; bottom: 0; right: 0; width: 58%; height: 50%;
  border-radius: var(--r-md);
  background-image: url('images/jhanna.jpg');
  background-size: cover;
  background-position: center 12%;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}
.about-badge {
  position: absolute; top: 50%; right: -20px; transform: translateY(-50%);
  background: var(--dark); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-dk); z-index: 2;
}
.badge-num { display: inline; font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 700; color: var(--gold-md); line-height: 1; }
.badge-plus { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--gold); }
.badge-label { display: block; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 4px; }
.about-quote-card {
  position: absolute; bottom: 40px; left: -24px;
  background: var(--white); border-radius: var(--r-sm); padding: 20px 24px;
  box-shadow: var(--shadow); border-left: 3px solid var(--gold); max-width: 240px; z-index: 2;
}
.about-quote-card i { color: var(--gold); font-size: 14px; margin-bottom: 8px; }
.about-quote-card p { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: var(--dark); line-height: 1.5; }
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  margin: 40px 0; padding: 32px 0;
  border-top: 1px solid var(--gray4); border-bottom: 1px solid var(--gray4);
}
.stat { text-align: center; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-plus { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; color: var(--gold); }
.stat p { font-size: 12px; color: var(--gray2); margin-top: 6px; font-family: 'Montserrat', sans-serif; letter-spacing: 0.05em; text-transform: uppercase; }

/* ══════════════════════════════════════════════
   MISSION
   ══════════════════════════════════════════════ */
.mission { position: relative; padding: 120px 32px; text-align: center; overflow: hidden; }
.mission-bg { position: absolute; inset: 0; background: linear-gradient(160deg, var(--black) 0%, #0d1a38 50%, #12063a 100%); }
.mission .container { position: relative; z-index: 1; }
.mission-quote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 300; color: var(--white); line-height: 1.18;
  margin: 0 auto; max-width: 860px;
}
.mission-quote em { font-style: italic; color: var(--gold-md); }

/* ══════════════════════════════════════════════
   NEXT STEPS / PRÓXIMOS PASOS
   ══════════════════════════════════════════════ */
.next-steps { padding: 80px 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--gray4); border-radius: var(--r-lg); overflow: hidden; }
.step-card {
  background: var(--white); padding: 48px 36px;
  transition: background 0.3s; position: relative;
}
.step-card:hover { background: #fafafa; }
.step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 700;
  line-height: 1; margin-bottom: 4px; display: block; opacity: 0.9;
}
.step-bar { width: 32px; height: 3px; border-radius: 2px; margin-bottom: 24px; }
.step-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--gray2); line-height: 1.7; margin-bottom: 24px; }
.step-cta {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.step-cta:hover { gap: 10px; }

/* ══════════════════════════════════════════════
   PASTORS
   ══════════════════════════════════════════════ */
.pastors { padding: 80px 0; background: var(--cream); }
.pastors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pastor-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid rgba(11,22,40,0.06);
}
.pastor-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(0,0,0,0.14); }
.pastor-photo {
  /* Tall enough to show upper body for landscape shots */
  height: 460px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0f1b35, #1a2a5e, #0a1020);
  display: flex; align-items: center; justify-content: center;
}
.pastor-card--alt .pastor-photo { background: linear-gradient(160deg, #2a0a3a, #4a1a5e, #1a0a28); }
.pastor-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%; /* show faces for landscape shots */
  display: block;
  transition: transform 0.7s ease;
}
/* Per-pastor fine-tuning */
.pastor-card:first-child .pastor-img  { object-position: 40% 22%; } /* Otoniel — face left of center */
.pastor-card--alt .pastor-img         { object-position: 48% 14%; } /* Jhanna — face upper-center */
.pastor-card:hover .pastor-img { transform: scale(1.04); }
.pastor-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, rgba(12,18,32,0.55) 0%, transparent 100%);
  pointer-events: none; z-index: 1;
}
.pastor-initials-fallback {
  width: 120px; height: 120px; border-radius: 50%;
  border: 2px solid rgba(200,150,60,0.3);
  display: none; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300;
  color: var(--gold-md); background: rgba(200,150,60,0.06); letter-spacing: 0.05em;
}
.pastor-img[style*="display:none"] ~ .pastor-initials-fallback,
.pastor-img[style*="display: none"] ~ .pastor-initials-fallback { display: flex; }

/* Name overlay at bottom of photo */
.pastor-photo-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px 24px;
  background: linear-gradient(to top, rgba(8,12,24,0.88) 0%, transparent 100%);
  z-index: 2;
  display: flex; flex-direction: column; gap: 3px;
  transform: translateY(4px);
  transition: transform 0.35s var(--ease);
}
.pastor-card:hover .pastor-photo-name { transform: translateY(0); }
.pastor-photo-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-md);
}
.pastor-photo-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; color: var(--white);
  line-height: 1.1;
}
.pastor-info { padding: 36px 40px 40px; }
.pastor-role { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pastor-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--dark); margin-bottom: 16px; }
.pastor-divider { width: 40px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-md)); border-radius: 1px; margin-bottom: 20px; }
.pastor-info p { font-size: 15px; line-height: 1.8; color: var(--gray2); }

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
.services { position: relative; padding: 80px 0; }
.services-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #07090f, #0c1428 50%, #100830 100%); }
.services .container { position: relative; z-index: 1; }
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.service-main {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 52px 48px; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.service-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-md));
}
.service-main:hover { border-color: rgba(200,150,60,0.3); }
.service-main-icon {
  width: 64px; height: 64px; border-radius: var(--r-sm);
  background: rgba(200,150,60,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--gold-md); margin-bottom: 28px;
}
.service-day { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-md); margin-bottom: 8px; }
.service-main h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.service-time-big { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 20px; }
.service-time-big span { font-size: 28px; color: var(--gold-md); }
.service-main > p:not(.service-day) { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px; }
.services-secondary { display: flex; flex-direction: column; gap: 16px; }
.service-card-sm {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md); padding: 24px 28px;
  display: flex; gap: 20px; align-items: flex-start; position: relative;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.service-card-sm:hover { background: rgba(255,255,255,0.07); border-color: rgba(200,150,60,0.25); transform: translateX(4px); }
.service-sm-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(200,150,60,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold-md); flex-shrink: 0;
}
.service-sm-icon--red { background: rgba(239,68,68,0.12); color: #f87171; }
.service-day-sm { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-md); margin-bottom: 4px; }
.service-card-sm h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.service-card-sm p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.service-card-sm--live { border-color: rgba(239,68,68,0.2); }
.live-badge {
  position: absolute; top: 16px; right: 16px;
  background: #ef4444; color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.15em;
  padding: 3px 9px; border-radius: 3px; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ══════════════════════════════════════════════
   SERMONS
   ══════════════════════════════════════════════ */
.sermons { position: relative; padding: 80px 0; }
.sermons-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #06080f, #0b1425 40%, #0f0620 100%); }
.sermons .container { position: relative; z-index: 1; }
.series-badge-wrap { margin-top: 16px; }
.series-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,60,0.12); border: 1px solid rgba(200,150,60,0.25);
  color: var(--gold-md); padding: 7px 18px; border-radius: 20px;
  font-size: 13px; font-style: italic;
}
.series-badge i { font-size: 12px; }
.series-badge em { font-style: italic; color: var(--gold-lt); }
.sermons-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.sermon-thumb {
  height: 280px; border-radius: var(--r-md); position: relative; overflow: hidden;
  margin-bottom: 24px; cursor: pointer;
}
.sermon-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center; transition: background 0.3s;
}
.sermon-thumb:hover .sermon-overlay { background: rgba(0,0,0,0.2); }
.sermon-play {
  width: 70px; height: 70px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6); background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white); padding-left: 4px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.sermon-thumb:hover .sermon-play { transform: scale(1.1); border-color: var(--gold-md); background: rgba(200,150,60,0.15); }
.sermon-tag {
  position: absolute; top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-md));
  color: var(--dark); font-family: 'Montserrat', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 3px;
}
.sermon-info .sermon-date { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--gold-md); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.sermon-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.sermon-speaker { font-size: 13px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 6px; }
.sermons-list { display: flex; flex-direction: column; gap: 12px; }
.sermon-item {
  display: flex; gap: 16px; align-items: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-sm); padding: 14px 16px;
  transition: background 0.25s, border-color 0.25s;
}
.sermon-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(200,150,60,0.25); }
.sermon-item-thumb {
  width: 80px; height: 60px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.sermon-play-sm {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--white); padding-left: 2px;
}
.sermon-item-info { flex: 1; min-width: 0; }
.sermon-item-info .sermon-date { font-size: 10px; margin-bottom: 4px; }
.sermon-item-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ══════════════════════════════════════════════
   EVENTS
   ══════════════════════════════════════════════ */
.events { padding: 80px 0; background: var(--white); }
.events-grid { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  display: grid; grid-template-columns: 100px 1fr;
  background: var(--cream); border-radius: var(--r-md);
  border: 1px solid rgba(11,22,40,0.07); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.event-date {
  background: var(--dark); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px; padding: 24px 16px;
}
.event-day { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700; color: var(--white); line-height: 1; }
.event-month { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--gold-md); text-transform: uppercase; }
.event-body { padding: 28px 36px; display: flex; flex-direction: column; justify-content: center; }
.event-tag {
  display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 20px; margin-bottom: 10px; width: fit-content;
}
.event-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.event-time { font-size: 13px; color: var(--gray3); display: flex; align-items: center; gap: 6px; margin-bottom: 8px; font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 0.05em; }
.event-body p:not(.event-time) { font-size: 14px; color: var(--gray2); line-height: 1.6; margin-bottom: 14px; }
.event-cta {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 6px; width: fit-content;
  transition: gap 0.2s;
}
.event-cta:hover { gap: 10px; }

/* ══════════════════════════════════════════════
   SERVE
   ══════════════════════════════════════════════ */
.serve { position: relative; padding: 120px 0; }
.serve-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #0a0d14, #0f1b35 60%, #12063a 100%); }
.serve .container { position: relative; z-index: 1; }
.serve-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.serve-copy .body-text { margin-bottom: 36px; }
.serve-areas {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.serve-area {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 24px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.serve-area:hover { background: rgba(200,150,60,0.08); border-color: rgba(200,150,60,0.3); transform: translateY(-4px); }
.serve-area i { font-size: 24px; color: var(--gold-md); }
.serve-area span { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════
   SCRIPTURE
   ══════════════════════════════════════════════ */
.scripture-break { position: relative; padding: 100px 32px; text-align: center; overflow: hidden; }
.scripture-bg { position: absolute; inset: 0; background: var(--cream); }
.scripture-break .container { position: relative; z-index: 1; }
.scripture-cross { font-size: 28px; color: var(--gold); display: block; margin: 0 auto 28px; }
.scripture-break blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300; font-style: italic; color: var(--dark);
  line-height: 1.4; max-width: 800px; margin: 0 auto 24px;
}
.scripture-break cite { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ══════════════════════════════════════════════
   GIVE
   ══════════════════════════════════════════════ */
.give { padding: 80px 0; background: var(--white); }
.give-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.give-verse {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic;
  color: var(--gold-dk); margin: 24px 0 32px; padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.give-methods { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.give-method {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 32px; background: var(--cream); border-radius: var(--r-md);
  border: 1px solid rgba(11,22,40,0.06);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.give-method:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateX(4px); }
.give-method-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm); flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,150,60,0.12), rgba(232,184,75,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold);
}
.give-method h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.give-method p { font-size: 13px; color: var(--gray2); }

/* ══════════════════════════════════════════════
   MINISTRIES
   ══════════════════════════════════════════════ */
.ministries { padding: 80px 0; background: var(--cream); }
.ministries-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end; margin-bottom: 48px;
}
.ministries-serve-cta { padding-bottom: 8px; }
.ministries-serve-cta .body-text { margin-bottom: 24px; }
.ministries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--gray4); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--gray4);
}
.min-card {
  background: var(--white); padding: 40px 32px;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.min-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent, var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.min-card:hover::before { transform: scaleX(1); }
.min-card:hover { background: #fafafa; }
.min-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.min-icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: rgba(200, 150, 60, 0.12); /* fallback */
  background: color-mix(in srgb, var(--accent, var(--gold)) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent, var(--gold)); transition: transform 0.3s;
}
.min-card:hover .min-icon { transform: scale(1.1); }
.min-arrow { font-size: 16px; color: var(--gray4); transition: color 0.3s, transform 0.3s; }
.min-card:hover .min-arrow { color: var(--accent, var(--gold)); transform: translate(3px,-3px); }
.min-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.min-card p { font-size: 14px; color: var(--gray2); line-height: 1.7; }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact { padding: 80px 0; background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin: 36px 0; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon-wrap {
  width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--gold); flex-shrink: 0;
}
.contact-row strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray3); margin-bottom: 2px; }
.contact-row p { font-size: 15px; color: var(--dark); font-weight: 500; }
.contact-social-row { display: flex; gap: 10px; }
.social-btn {
  width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--dark);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background 0.25s, transform 0.25s;
}
.social-btn:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }
/* Planning Center embedded form card */
.contact-right { }
.pc-form-card {
  background: var(--cream); border-radius: var(--r-lg);
  border: 1px solid rgba(11,22,40,0.07);
  box-shadow: var(--shadow);
}
.pc-form-header {
  padding: 36px 40px 24px;
  border-bottom: 1px solid rgba(11,22,40,0.06);
}
.pc-form-header h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
}
.pc-form-header p { font-size: 14px; color: var(--gray2); }
.pc-form-wrap {
  background: var(--white); position: relative;
}
.pc-form-wrap iframe {
  display: block; width: 100%; border: none;
  min-height: 900px; height: 1000px;
  transition: height 0.3s ease;
}
.pc-form-footer {
  padding: 14px 40px; background: var(--cream);
  border-top: 1px solid rgba(11,22,40,0.06);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gray2); display: flex; align-items: center; gap: 8px;
}
.pc-form-footer i { color: var(--gold); font-size: 12px; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer { background: var(--black); }
.footer-top { padding: 80px 0 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { margin-bottom: 18px; }
.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  /* Invert black logo to white for dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.footer-pastors { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-network { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-network strong { color: var(--gold-md); }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-col li i { color: var(--gold-dk); font-size: 12px; }
.footer-col li a { transition: color 0.2s; }
.footer-col li a:hover { color: var(--gold-md); }
.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background 0.25s, color 0.25s;
}
.footer-social a:hover { background: var(--gold); color: var(--dark); }
.footer-location { font-size: 13px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 6px; }
.footer-location i { color: var(--gold-dk); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ── Step card number glow on hover ─────────── */
.step-card:hover .step-num { opacity: 1; }
.step-card:hover { background: #f9f9f9; }

/* ── Event cards — accent left border on hover ── */
.event-card { border-left: 3px solid transparent; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s; }
.event-card:hover { border-left-color: var(--gold); }

/* ── Give section — verse stronger ─────────── */
.give-verse { font-size: 17px; line-height: 1.6; }

/* ── Section dividers — subtle rhythm breaks ─ */
.new-here   { border-top: 1px solid var(--gray4); }
.pastors    { border-top: 1px solid var(--gray4); }
.events     { border-top: 1px solid var(--gray4); }
.give       { border-top: 1px solid var(--gray4); }
.ministries { border-top: 1px solid var(--gray4); }
.contact    { border-top: 1px solid var(--gray4); }

/* ── Stronger button focus for accessibility ─ */
.btn:focus-visible {
  outline: 2px solid var(--gold-md);
  outline-offset: 3px;
}

/* ── Nav link active state via JS ──────────── */
.nav-links a.active { color: var(--gold-md) !important; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-split { gap: 60px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .serve-layout { gap: 48px; }
  .give-layout { gap: 48px; }
  .contact-layout { gap: 48px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,9,15,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 20px; gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 16px; border-radius: var(--r-sm); }
  .nav-links a:hover { background: rgba(255,255,255,0.05); }
  .nav-cta { text-align: center; margin-top: 6px; justify-content: center; }
  .hero-social { display: none; }
  .strip-item { min-width: 180px; padding: 18px 20px; }
  .new-here-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-visual { height: 380px; max-width: 500px; margin: 0 auto; }
  .pastors-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .services-layout { grid-template-columns: 1fr; }
  .sermons-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .serve-layout { grid-template-columns: 1fr; }
  .give-layout { grid-template-columns: 1fr; }
  .ministries-grid { grid-template-columns: 1fr 1fr; }
  .ministries-top { grid-template-columns: 1fr; gap: 24px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .about-split { padding: 0 20px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-logo { width: 100px; margin-bottom: 20px; }
  .nav-logo-img { height: 38px; }
  .announce-bar { font-size: 12px; padding: 10px 40px 10px 16px; }
  .new-here-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .ministries-grid { grid-template-columns: 1fr; }
  .serve-areas { grid-template-columns: 1fr 1fr; }
  .event-card { grid-template-columns: 80px 1fr; }
  .event-day { font-size: 32px; }
  .event-body { padding: 20px; }
  .contact-right { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-quote-card { left: 0; }
  .about-badge { right: 0; }
}

/* ══════════════════════════════════════════════
   FLOATING ACTION BUTTONS (WhatsApp + Back to Top)
   ══════════════════════════════════════════════ */
.fab-stack {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 999; align-items: center;
}
.fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.3s, visibility 0.3s;
  text-decoration: none;
}
.fab:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.fab-whatsapp {
  background: #25d366; color: var(--white); font-size: 24px;
}
.fab-whatsapp:hover { background: #1fba59; color: var(--white); }
.fab-top {
  background: var(--dark); color: rgba(255,255,255,0.7);
  font-size: 16px;
  opacity: 0; visibility: hidden; pointer-events: none;
}
.fab-top.fab--visible { opacity: 1; visibility: visible; pointer-events: auto; }
.fab-top:hover { color: var(--gold-md); }
@media (max-width: 640px) {
  .fab-stack { bottom: 20px; right: 16px; }
  .fab { width: 46px; height: 46px; font-size: 18px; }
}

/* ══════════════════════════════════════════════
   LOGO TEXT FALLBACKS (shown when logo.png is missing)
   ══════════════════════════════════════════════ */
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 13px;
  letter-spacing: 0.15em; color: var(--white);
  text-transform: uppercase; display: flex; align-items: baseline; gap: 5px;
}
.nav-logo-text em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300; font-size: 19px;
  letter-spacing: 0; color: var(--gold-md); text-transform: none;
}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: rgba(255,255,255,0.85);
  line-height: 1.3; margin-bottom: 12px;
}
.footer-logo-text em {
  font-style: italic; color: var(--gold-md);
}
.footer-logo-text small {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════
   GIVE METHOD — text wrapper
   ══════════════════════════════════════════════ */
.give-method-text { flex: 1; }
.give-method-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.give-method-text p { font-size: 13px; color: var(--gray2); }
