/* ============================================================
   OASIS FAMILY CHURCH
   Mobile-first | GSAP-ready | CSS Custom Properties
   ============================================================ */

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

:root {
  --font-cormorant: 'Cormorant Garamond', Georgia, serif;
  --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
  --teal:        #1CB8CC;
  --teal-dark:   #0D9BB5;
  --teal-light:  #D4F3F8;
  --teal-bg:     #EFF9FC;
  --green:       #4BB87A;
  --green-dark:  #369C62;
  --navy:        #0F2D52;
  --navy-mid:    #1A4070;
  --navy-light:  #1E4F88;
  --white:       #FFFFFF;
  --ice:         #EFF9FC;
  --text-dark:   #1A2844;
  --text-body:   #475569;
  --text-muted:  #94A3B8;
  --border:      #E2EEF5;
  --shadow-sm:   0 2px 8px rgba(15,45,82,0.08);
  --shadow-md:   0 8px 32px rgba(15,45,82,0.14);
  --shadow-lg:   0 24px 64px rgba(15,45,82,0.2);
  --shadow-teal: 0 8px 32px rgba(28,184,204,0.3);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 9999px;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --t:           0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  --t-slow:      0.72s cubic-bezier(0.25,0.46,0.45,0.94);
  --header-h:    100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { font-family: var(--font-inter); font-size: 1rem; line-height: 1.65; color: var(--text-body); background: var(--white); overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--font-cormorant); line-height: 1.1; color: var(--text-dark); }
h1 { font-size: clamp(2.8rem,8vw,5.6rem); font-weight: 700; }
h2 { font-size: clamp(2.2rem,5vw,3.6rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem,2vw,1.35rem); font-weight: 600; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
  html { scroll-behavior: auto; }
}

.container { width:100%; max-width:1200px; margin:0 auto; padding:0 1.25rem; }
.section { padding: 5.5rem 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-inter); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: var(--radius-pill); margin-bottom: 1.25rem;
}
.eyebrow--teal        { background: var(--teal-bg); color: var(--teal-dark); }
.eyebrow--teal-light  { background: rgba(255,255,255,0.12); color: var(--teal-light); }
.eyebrow--white-muted { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }

.section-title { margin-bottom: 1.25rem; }
.section-title--white { color: #fff; }
.section-body { font-size: 1.0625rem; line-height: 1.78; margin-bottom: 1rem; }
.section-body--muted { color: rgba(255,255,255,0.65); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transition: opacity var(--t-slow), transform var(--t-slow);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-inter); font-weight: 600; font-size: 0.9375rem;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform 0.2s var(--ease);
  white-space: nowrap; -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 16px; height: 16px; transition: transform var(--t); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }
.btn-sm   { padding: 0.5rem 1.25rem; font-size: 0.875rem; min-height: 40px; }
.btn-md   { padding: 0.75rem 1.75rem; min-height: 48px; }
.btn-full { width: 100%; }

.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: var(--shadow-teal); transform: translateY(-1px); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-hero-primary { background: var(--teal); color: #fff; border-color: var(--teal); padding: 0.875rem 2rem; font-size: 1rem; min-height: 52px; }
.btn-hero-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: var(--shadow-teal); transform: translateY(-2px) scale(1.02); }
.btn-hero-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); padding: 0.875rem 2rem; font-size: 1rem; min-height: 52px; backdrop-filter: blur(8px); }
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-ministry-primary { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(8px); padding: 0.75rem 1.75rem; min-height: 48px; }
.btn-ministry-primary:hover { background: rgba(255,255,255,0.25); border-color: #fff; }
.btn-ministry-green { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(8px); padding: 0.75rem 1.75rem; min-height: 48px; }
.btn-ministry-green:hover { background: rgba(255,255,255,0.25); border-color: #fff; }

.btn-cta-primary { background: #fff; color: var(--teal-dark); border-color: #fff; padding: 1rem 2.5rem; font-size: 1.0625rem; min-height: 56px; }
.btn-cta-primary:hover { background: var(--ice); box-shadow: 0 8px 32px rgba(255,255,255,0.3); transform: translateY(-2px) scale(1.02); }
.btn-cta-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); padding: 1rem 2.5rem; font-size: 1.0625rem; min-height: 56px; backdrop-filter: blur(8px); }
.btn-cta-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--teal), var(--green)); z-index: 9999; transition: width 0.1s linear; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--header-h); transition: background var(--t), box-shadow var(--t); }
.site-header.scrolled { background: rgba(255,255,255,0.97); box-shadow: var(--shadow-sm); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; padding-top: 0.5rem; }
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-full { height: 90px; width: auto; }
.logo-mark { height: 48px; width: auto; display: none; }
.main-nav { display: none; align-items: center; gap: 0.25rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; padding: 0.5rem 0.75rem; border-radius: var(--radius-pill); transition: color var(--t), background var(--t); color: rgba(255,255,255,0.88); }
.site-header.scrolled .nav-link { color: var(--text-dark); }
.site-header:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,0.12); color: #fff; }
.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active { color: var(--teal); background: var(--teal-bg); }
.site-header:not(.scrolled) .main-nav .btn-primary { background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.site-header:not(.scrolled) .main-nav .btn-primary:hover { background: rgba(255,255,255,0.3); }

.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: rgba(255,255,255,0.9); transition: var(--t); }
.site-header.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.nav-overlay { position: fixed; inset: 0; background: rgba(15,45,82,0.6); backdrop-filter: blur(4px); z-index: 950; opacity: 0; pointer-events: none; transition: opacity var(--t); }
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px,90vw); background: var(--white); z-index: 1000; transform: translateX(100%); transition: transform var(--t-slow); display: flex; flex-direction: column; padding: 1.5rem; overflow-y: auto; }
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; }
.drawer-logo { height: 44px; }
.drawer-close { font-size: 1.75rem; color: var(--text-dark); line-height: 1; padding: 4px 8px; border-radius: 8px; }
.drawer-close:hover { background: var(--teal-bg); color: var(--teal-dark); }
.nav-drawer-links { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.drawer-link { font-size: 1.0625rem; font-weight: 500; color: var(--text-dark); padding: 0.75rem 1rem; border-radius: var(--radius); transition: background var(--t), color var(--t); }
.drawer-link:hover { background: var(--teal-bg); color: var(--teal-dark); }
.drawer-cta { margin-top: 2rem; }

/* ===== HERO - Split screen ===== */
.hero {
  position: relative;
  background: linear-gradient(145deg, #071A36 0%, var(--navy) 45%, #0B2444 100%);
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Abstract background */
.hero-canvas { position: absolute; inset: 0; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero-blob-1 { width: 640px; height: 640px; background: rgba(28,184,204,0.18); top: -140px; left: -180px; animation: blobPulse 7s ease-in-out infinite alternate; }
.hero-blob-2 { width: 480px; height: 480px; background: rgba(75,184,122,0.10); bottom: -120px; left: 30%; animation: blobPulse 9s ease-in-out infinite alternate-reverse; }
.hero-blob-3 { width: 360px; height: 360px; background: rgba(28,184,204,0.08); top: 10%; right: 5%; animation: blobPulse 6s ease-in-out infinite alternate; }
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* Decorative vertical line */
.hero-deco-line { display: none; position: absolute; left: 2.5rem; top: 25%; width: 1px; height: 8rem; background: linear-gradient(to bottom, transparent, rgba(28,184,204,0.8), transparent); animation: slideDown 2s var(--ease) 0.5s both; }

/* Split container */
.hero-split {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 8rem;
  width: 100%;
}

/* Left text panel */
.hero-left { max-width: 640px; }

/* Badge */
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-pill); padding: 0.4rem 1.1rem; margin-bottom: 1.75rem; font-family: var(--font-inter); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); opacity: 0; transform: translateX(-20px); animation: slideInLeft 1s var(--ease) 0.3s both; }
.badge-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: badgePulse 2s ease-out infinite; flex-shrink: 0; }

/* Typewriter title */
.hero-title { font-size: clamp(3.2rem,8vw,6rem); font-weight: 700; color: #fff; line-height: 1.04; margin-bottom: 1.5rem; min-height: 2.2em; font-family: var(--font-cormorant); }
.hero-line2 { display: block; font-style: italic; background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 60%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0; transition: opacity 0.5s ease; }
.hero-line2.visible { opacity: 1; }
.hero-cursor { display: inline-block; width: 3px; height: 0.8em; background: var(--teal); vertical-align: middle; margin-left: 2px; animation: blink 0.7s step-end infinite; }
.hero-cursor.hidden { display: none; }

.hero-subtitle { font-size: clamp(1rem,2vw,1.15rem); color: rgba(255,255,255,0.72); max-width: 500px; line-height: 1.75; margin-bottom: 2.25rem; opacity: 0; animation: fadeUp 1s var(--ease) both; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.875rem; opacity: 0; animation: fadeUp 1s var(--ease) both; }

/* Right photo card - hidden on mobile */
.hero-right { display: none; position: relative; }
.hero-media-card {
  border-radius: 1.75rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(28,184,204,0.15);
  animation: fadeUp 1.2s var(--ease) 0.6s both;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,45,82,0.5) 0%, transparent 55%),
              linear-gradient(to right, rgba(7,26,54,0.4) 0%, transparent 40%);
}
.hero-media-stat {
  position: absolute; bottom: -1.25rem; left: -2.5rem;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg); padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 0.2rem;
  animation: fadeUp 1.2s var(--ease) 1s both;
}
.hero-stat-num { font-family: var(--font-cormorant); font-size: 2.25rem; font-weight: 700; color: var(--navy); line-height: 1; }
.hero-stat-label { font-family: var(--font-inter); font-size: 0.72rem; color: var(--text-body); white-space: nowrap; }

/* Info card */
.hero-info-card { position: absolute; bottom: 2rem; left: 1.25rem; display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.08); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); padding: 0.875rem 1.25rem; opacity: 0; animation: fadeUp 1s var(--ease) both; }
.hero-info-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(28,184,204,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-info-icon svg { width: 20px; height: 20px; color: #fff; }
.hero-info-label { font-family: var(--font-inter); font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.hero-info-value { font-family: var(--font-inter); font-size: 0.875rem; color: #fff; font-weight: 500; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 2.5rem; right: 1.5rem; z-index: 10; display: none; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-label { font-family: var(--font-inter); font-size: 0.65rem; color: rgba(255,255,255,0.35); letter-spacing: 0.2em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-line-wrap { width: 1px; height: 56px; background: rgba(255,255,255,0.12); border-radius: 1px; overflow: hidden; }
.scroll-line-inner { width: 100%; height: 40%; background: var(--teal); border-radius: 1px; animation: scrollLine 2s ease-in-out infinite; }

/* About */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
.about-copy .btn { margin-top: 1rem; }
.about-media { position: relative; padding-bottom: 2rem; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s var(--ease); }
.about-img-main:hover img { transform: scale(1.04); }
.about-quote-card { position: absolute; bottom: 0; left: -1rem; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.25rem 1.5rem; max-width: 210px; animation: floatCard 4s ease-in-out infinite; }
.quote-card-mark { font-family: var(--font-cormorant); font-size: 3.5rem; color: var(--teal); line-height: 1; margin-bottom: 0.25rem; }
.about-quote-card blockquote { font-family: var(--font-cormorant); font-size: 0.95rem; font-style: italic; color: var(--text-dark); line-height: 1.4; }
.about-quote-card cite { display: block; font-family: var(--font-inter); font-size: 0.7rem; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; font-style: normal; }
.about-ring { position: absolute; top: -1.5rem; right: -1rem; width: 110px; height: 110px; border: 2px dashed rgba(28,184,204,0.25); border-radius: 50%; animation: rotateSlow 18s linear infinite; }

/* Services */
.services-section { background: var(--navy); position: relative; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.blob-1 { width: 480px; height: 480px; background: var(--teal); top: -100px; left: -100px; opacity: 0.12; }
.blob-2 { width: 400px; height: 400px; background: var(--navy-light); bottom: -80px; right: -80px; opacity: 0.2; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; }
.services-connector-line { display: none; }
.service-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 2rem 1.75rem; text-align: center; position: relative; z-index: 1; transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t); transition-delay: var(--stagger,0ms); }
.service-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(28,184,204,0.4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(28,184,204,0.15); }
.service-number { font-family: var(--font-inter); font-size: 0.75rem; font-weight: 700; color: var(--teal); letter-spacing: 0.12em; margin-bottom: 1.25rem; }
.service-icon { width: 52px; height: 52px; background: rgba(28,184,204,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; transition: background var(--t); }
.service-card:hover .service-icon { background: rgba(28,184,204,0.25); }
.service-icon svg { width: 24px; height: 24px; color: var(--teal); }
.service-card h3 { color: #fff; font-size: clamp(1.3rem,2.5vw,1.6rem); margin-bottom: 0.5rem; }
.service-time { font-family: var(--font-inter); font-size: 1rem; font-weight: 600; color: var(--teal); margin-bottom: 0.25rem; }
.service-loc { font-family: var(--font-inter); font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.services-cta { text-align: center; margin-top: 4.5rem; }

/* Vision */
.vision-section { background: var(--navy); position: relative; overflow: hidden; }
.vision-bg-img { position: absolute; inset: 0; }
.vision-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.05; }
.blob-teal { width: 600px; height: 600px; background: var(--teal); top: 0; right: -100px; opacity: 0.08; filter: blur(120px); position: absolute; pointer-events: none; border-radius: 50%; }
.blob-navy { width: 500px; height: 500px; background: var(--navy-light); bottom: 0; left: -100px; opacity: 0.1; filter: blur(120px); position: absolute; pointer-events: none; border-radius: 50%; }
.vision-eyebrow { text-align: center; position: relative; z-index: 1; margin-bottom: 1rem; }
.vision-quote-block { position: relative; z-index: 1; background: rgba(255,255,255,0.05); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 3rem 2rem; text-align: center; margin-bottom: 3rem; }
.vision-quote-mark { font-family: var(--font-cormorant); font-size: 7rem; color: rgba(28,184,204,0.35); line-height: 1; margin-bottom: 0.5rem; user-select: none; }
.vision-quote-text { font-family: var(--font-cormorant); font-style: italic; font-size: clamp(1.5rem,4vw,2.5rem); color: #fff; line-height: 1.35; margin-bottom: 1.25rem; }
.vision-cite { font-family: var(--font-inter); font-size: 0.72rem; color: var(--teal-light); text-transform: uppercase; letter-spacing: 0.16em; font-style: normal; }
.vision-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; z-index: 1; }
.vision-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 2rem; }
.vision-card-label { font-family: var(--font-inter); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); margin-bottom: 1rem; }
.vision-card-body { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.75; }
.value-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.value-pill { font-family: var(--font-inter); font-size: 0.8rem; font-weight: 500; background: rgba(28,184,204,0.15); border: 1px solid rgba(28,184,204,0.3); color: var(--teal-light); border-radius: var(--radius-pill); padding: 0.35rem 0.9rem; transition: background var(--t), border-color var(--t), color var(--t); }
.value-pill:hover { background: rgba(28,184,204,0.3); border-color: var(--teal); color: #fff; }

/* Pastors */
.pastors-section { background: var(--white); }
.pastors-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.pastor-card { display: flex; flex-direction: column; gap: 1.5rem; }
.pastor-img-wrap { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3/4; position: relative; }
.pastor-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s var(--ease); }
.pastor-card:hover .pastor-img-wrap img { transform: scale(1.04); }
.pastor-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,45,82,0.45) 0%, transparent 55%); }
.pastor-info { padding: 0 0.5rem; }
.pastor-title-tag { font-family: var(--font-inter); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal); margin-bottom: 0.5rem; }
.pastor-info h3 { margin-bottom: 0.75rem; }
.pastor-info p { font-size: 0.9375rem; color: var(--text-body); line-height: 1.7; }

/* Beliefs */
.beliefs-section { background: var(--navy); position: relative; overflow: hidden; }
.blob-belief-1 { width: 500px; height: 500px; background: var(--teal); top: -80px; right: -120px; opacity: 0.08; filter: blur(100px); position: absolute; pointer-events: none; border-radius: 50%; }
.blob-belief-2 { width: 400px; height: 400px; background: var(--green); bottom: -80px; left: -80px; opacity: 0.08; filter: blur(100px); position: absolute; pointer-events: none; border-radius: 50%; }
.beliefs-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; position: relative; z-index: 1; }
.belief-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; transition: background var(--t), border-color var(--t), transform var(--t); transition-delay: var(--stagger,0ms); }
.belief-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(28,184,204,0.35); transform: translateY(-3px); }
.belief-icon { width: 48px; height: 48px; background: rgba(28,184,204,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: background var(--t); }
.belief-card:hover .belief-icon { background: rgba(28,184,204,0.25); }
.belief-icon svg { width: 22px; height: 22px; color: var(--teal); }
.belief-card h4 { color: #fff; margin-bottom: 0.5rem; }
.belief-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* Ministries - split feature layout */
.ministries-section { background: var(--ice); }
.ministry-features-stack { display: flex; flex-direction: column; gap: 1.75rem; }

.ministry-feature {
  display: grid; grid-template-columns: 1fr;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ministry-feature-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.ministry-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.ministry-feature:hover .ministry-feature-img img { transform: scale(1.04); }
.ministry-feature-img-overlay { position: absolute; inset: 0; }
.ministry-feature-img-overlay--teal { background: linear-gradient(to right, rgba(10,26,54,0.6) 0%, transparent 60%), linear-gradient(to top, rgba(10,26,54,0.5) 0%, transparent 50%); }
.ministry-feature-img-overlay--green { background: linear-gradient(to left, rgba(10,26,54,0.6) 0%, transparent 60%), linear-gradient(to top, rgba(10,26,54,0.5) 0%, transparent 50%); }

.ministry-feature-body { padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.ministry-feature-body--teal { background: linear-gradient(145deg, var(--navy) 0%, #0b3a58 100%); }
.ministry-feature-body--green { background: linear-gradient(145deg, #0a2e1c 0%, #0e3d28 100%); }

.ministry-badge { display: inline-flex; align-items: center; font-family: var(--font-inter); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; padding: 0.3rem 0.9rem; border-radius: var(--radius-pill); width: fit-content; background: rgba(28,184,204,0.18); color: var(--teal-light); border: 1px solid rgba(28,184,204,0.35); }
.ministry-badge--green { background: rgba(75,184,122,0.18); color: #86efba; border: 1px solid rgba(75,184,122,0.35); }

.ministry-icon-lg { width: 64px; height: 64px; border-radius: 16px; background: rgba(28,184,204,0.18); display: flex; align-items: center; justify-content: center; }
.ministry-icon-lg svg { width: 30px; height: 30px; color: var(--teal-light); }
.ministry-icon-lg--green { background: rgba(75,184,122,0.18); }
.ministry-icon-lg--green svg { color: #86efba; }

.ministry-feature-title { font-size: clamp(2rem,5vw,2.8rem); color: #fff; line-height: 1.05; }
.ministry-feature-desc { font-size: 0.9375rem; color: rgba(255,255,255,0.72); line-height: 1.8; }

.ministry-feature-list { display: flex; flex-direction: column; gap: 0.6rem; }
.ministry-feature-list li { font-family: var(--font-inter); font-size: 0.85rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 0.75rem; }
.ministry-feature-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.ministry-feature-list--teal li::before { background: var(--teal); }
.ministry-feature-list--green li::before { background: var(--green); }

.ministry-feature-cta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 0.5rem; }
.ministry-feature-url { font-family: var(--font-inter); font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.btn-feature-teal { background: var(--teal); color: #fff; border-color: var(--teal); padding: 0.875rem 2rem; min-height: 52px; font-size: 0.9375rem; }
.btn-feature-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: var(--shadow-teal); transform: translateY(-2px); }
.btn-feature-green { background: var(--green); color: #fff; border-color: var(--green); padding: 0.875rem 2rem; min-height: 52px; font-size: 0.9375rem; }
.btn-feature-green:hover { background: var(--green-dark); border-color: var(--green-dark); box-shadow: 0 8px 32px rgba(75,184,122,0.3); transform: translateY(-2px); }

/* Gallery */
.gallery-section { background: var(--ice); }
.gallery-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.gallery-sub { font-family: var(--font-inter); font-size: 0.9rem; color: var(--text-muted); }
.gallery-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; gap: 0.75rem; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; opacity: 0; transform: scale(0.96); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.4s var(--ease); transition-delay: var(--gd,0ms); }
.gallery-item.revealed { opacity: 1; transform: scale(1); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover { box-shadow: var(--shadow-lg); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,45,82,0.75) 0%, transparent 50%); opacity: 0; transition: opacity var(--t); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-label { position: absolute; bottom: 0.75rem; left: 0.75rem; font-family: var(--font-inter); font-size: 0.75rem; font-weight: 600; color: #fff; background: rgba(28,184,204,0.85); backdrop-filter: blur(4px); padding: 0.25rem 0.75rem; border-radius: var(--radius-pill); transform: translateY(6px); opacity: 0; transition: transform var(--t), opacity var(--t); }
.gallery-item:hover .gallery-label { transform: translateY(0); opacity: 1; }

.lightbox { position: fixed; inset: 0; background: rgba(10,20,40,0.96); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner { max-width: 90vw; max-height: 90vh; display: flex; align-items: center; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.25rem; color: #fff; font-size: 2rem; line-height: 1; padding: 0.5rem; border-radius: 50%; transition: background var(--t); }
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 3rem; line-height: 1; padding: 0.5rem 0.75rem; border-radius: var(--radius); transition: background var(--t); }
.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.12); }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #073d2c 100%); position: relative; overflow: hidden; padding: 7rem 0; text-align: center; }
.cta-blob { position: absolute; border-radius: 50%; filter: blur(100px); animation: blobPulse 4s ease-in-out infinite alternate; }
.cta-blob-1 { width: 500px; height: 500px; background: rgba(28,184,204,0.12); top: -150px; left: -100px; }
.cta-blob-2 { width: 400px; height: 400px; background: rgba(75,184,122,0.1); bottom: -120px; right: -80px; animation-delay: 2s; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(2.2rem,5vw,3.5rem); color: #fff; line-height: 1.15; margin-bottom: 1.25rem; }
.cta-title em { font-style: italic; background: linear-gradient(90deg, var(--teal-light), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-body { font-size: 1.0625rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Contact */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--teal-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--teal-dark); }
.contact-detail-label { font-family: var(--font-inter); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-detail-value { font-size: 0.9375rem; color: var(--text-dark); line-height: 1.5; }
.contact-link { color: var(--teal-dark); transition: color var(--t); }
.contact-link:hover { color: var(--teal); }
.contact-map { border-radius: var(--radius-xl); overflow: hidden; margin-top: 1.5rem; height: 220px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-form-wrap { display: flex; flex-direction: column; gap: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem 1.5rem; box-shadow: var(--shadow-md); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-family: var(--font-inter); font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }
.form-label span { color: var(--teal); }
.form-input { padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.9375rem; color: var(--text-dark); background: #fff; transition: border-color var(--t), box-shadow var(--t); outline: none; }
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(28,184,204,0.15); }
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; background-size: 18px; padding-right: 2.5rem; }
.form-status { font-size: 0.875rem; padding: 0.75rem 1rem; border-radius: var(--radius); display: none; }
.form-status.success { display: block; background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.form-status.error { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
.contact-socials { display: flex; gap: 0.875rem; }
.social-link { width: 44px; height: 44px; border-radius: var(--radius); background: var(--teal-bg); display: flex; align-items: center; justify-content: center; transition: background var(--t), transform var(--t); }
.social-link svg { width: 20px; height: 20px; color: var(--teal-dark); transition: color var(--t); }
.social-link:hover { background: var(--teal); transform: translateY(-2px); }
.social-link:hover svg { color: #fff; }

/* Footer */
.site-footer { background: var(--navy); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 340px; }
.footer-logo { height: 52px; width: auto; margin-bottom: 1.25rem; }
.footer-tagline { font-family: var(--font-cormorant); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; transition: background var(--t), transform var(--t); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer-social:hover { background: var(--teal); transform: translateY(-2px); }
.footer-social:hover svg { color: #fff; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-heading { font-family: var(--font-inter); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 0.25rem; }
.footer-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer-link:hover { color: var(--teal-light); }
.footer-contact-info { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; flex-direction: column; gap: 0.25rem; font-family: var(--font-inter); font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* Back to top */
.back-to-top { position: fixed; bottom: 1.75rem; right: 1.25rem; z-index: 800; width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(28,184,204,0.4); opacity: 0; transform: translateY(16px); transition: opacity var(--t), transform var(--t), background var(--t); pointer-events: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--teal-dark); }
.back-to-top svg { width: 20px; height: 20px; }

/* Keyframes */
@keyframes kenBurns { from { transform: scale(1.08); } to { transform: scale(1.0); } }
@keyframes slideDown { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-24px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes blink { 0%,100%{opacity:1;}50%{opacity:0;} }
@keyframes badgePulse { 0%,100%{box-shadow:0 0 0 0 rgba(28,184,204,0.5);}70%{box-shadow:0 0 0 8px transparent;} }
@keyframes scrollLine { 0%{transform:translateY(-100%);}100%{transform:translateY(300%);} }
@keyframes floatCard { 0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);} }
@keyframes rotateSlow { from{transform:rotate(0deg);}to{transform:rotate(360deg);} }
@keyframes spin { to{transform:rotate(360deg);} }
@keyframes blobPulse { from{transform:scale(1);opacity:0.08;}to{transform:scale(1.15);opacity:0.14;} }

@media (min-width: 640px) {
  .about-quote-card { left: -2rem; max-width: 220px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-auto-rows: 220px; gap: 1rem; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .contact-map { height: 260px; }
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .hamburger { display: none; }
  .hero-deco-line { display: block; }
  .scroll-indicator { display: flex; }
  .hero-split { grid-template-columns: 54% 46%; gap: 3.5rem; padding-top: 2rem; padding-bottom: 6rem; }
  .hero-right { display: block; }
  .hero-left { max-width: none; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
  .about-quote-card { left: -2.5rem; bottom: -1rem; }
  .services-grid { grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
  .services-connector-line { display: block; position: absolute; top: 3.75rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem); height: 1px; background: rgba(255,255,255,0.08); z-index: 0; }
  .service-card { padding: 2rem 1.5rem; }
  .vision-quote-block { padding: 4rem 3.5rem; }
  .vision-row { grid-template-columns: 1fr 1fr; }
  .pastors-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .beliefs-grid { grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .ministry-feature { grid-template-columns: 45% 55%; min-height: 480px; }
  .ministry-feature--reverse { grid-template-columns: 55% 45%; }
  .ministry-feature--reverse .ministry-feature-img { order: 2; }
  .ministry-feature--reverse .ministry-feature-body { order: 1; }
  .ministry-feature-img { aspect-ratio: auto; }
  .ministry-feature-body { padding: 3.5rem 3rem; justify-content: center; }
  .gallery-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .gallery-sub { max-width: 300px; text-align: right; }
  .gallery-mosaic { grid-template-columns: repeat(3,1fr); grid-auto-rows: 240px; gap: 1rem; }
  .gallery-item--wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .contact-map { height: 300px; }
  .contact-form { padding: 2.5rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 4rem; }
}

@media (min-width: 1280px) {
  .gallery-mosaic { grid-auto-rows: 260px; }
}
