/* ══════════════════════════════════════
   CBA ORLANDO — SHARED STYLESHEET v5.0
   Comunidade Brasileira Adventista de Orlando
   Multi-page architecture — production build
   ══════════════════════════════════════ */

:root {
  --forest: #1B3A2D;
  --forest-light: #24503D;
  --forest-deep: #0F2219;
  --sage: #7A9E8E;
  --sage-light: #A8C5B6;
  --sage-pale: #D4E4DB;
  --copper: #C17C4E;
  --copper-light: #D9A67A;
  --copper-glow: #E8C9A8;
  --terracotta: #B5654A;
  --linen: #F6F2EC;
  --linen-dark: #EDE7DC;
  --warm-white: #FDFBF8;
  --parchment: #F0EAE0;
  --text-dark: #1A1F1C;
  --text-body: #3D4540;
  --text-muted: #6E7A73;
  --text-light: #95A09A;
  --shadow-sm: 0 2px 12px rgba(27,58,45,0.06);
  --shadow-md: 0 6px 24px rgba(27,58,45,0.08);
  --shadow-lg: 0 12px 48px rgba(27,58,45,0.12);
  --shadow-copper: 0 6px 24px rgba(193,124,78,0.2);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body); color: var(--text-body);
  background: var(--linen); line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 72px 0; }

h1,h2,h3,h4,h5 { font-family: var(--font-display); color: var(--forest); line-height: 1.15; }
h2.section-title { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 700; margin-bottom: 14px; letter-spacing: -0.025em; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; margin-bottom: 52px; }
.accent-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.accent-bar::before { content: ''; width: 40px; height: 3px; background: var(--copper); border-radius: 2px; }
.accent-bar span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); }

.prose p { margin-bottom: 18px; font-size: 1.02rem; line-height: 1.8; color: var(--text-body); }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.prose h3 { font-size: 1.25rem; margin: 28px 0 12px; }
.prose ul, .prose ol { margin: 0 0 20px 28px; }
.prose li { margin-bottom: 8px; line-height: 1.8; color: var(--text-body); }
.prose a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--terracotta); }
.prose strong { color: var(--forest); font-weight: 600; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  padding: 14px 28px; border-radius: 60px; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.35s var(--ease); letter-spacing: 0.01em;
}
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: var(--shadow-copper); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { border-color: var(--copper-light); color: var(--copper-light); }
.btn-outline-forest { background: transparent; color: var(--forest); border: 2px solid var(--sage-pale); }
.btn-outline-forest:hover { border-color: var(--copper); color: var(--copper); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #20BD5A; transform: translateY(-2px); }
.btn-give { background: var(--copper); color: #fff; font-weight: 700; padding: 16px 36px; font-size: 1rem; }
.btn-give:hover { background: var(--terracotta); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(193,124,78,0.3); }
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }

/* ══ NAVIGATION ══ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.4s var(--ease); padding: 8px 0; }
.nav.scrolled, .nav.solid { background: rgba(253,251,248,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(27,58,45,0.06); padding: 0; }
.nav.scrolled .nav-logo-text, .nav.solid .nav-logo-text, .nav.scrolled .nav-logo-text small, .nav.solid .nav-logo-text small { color: var(--forest); }
.nav.scrolled .nav-links a, .nav.solid .nav-links a { color: var(--text-body); }
.nav.scrolled .nav-links a:hover, .nav.solid .nav-links a:hover { color: var(--copper); background: rgba(27,58,45,0.05); }
.nav.scrolled .hamburger span, .nav.solid .hamburger span { background: var(--forest); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 28px; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-mark { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: all 0.35s var(--ease); }
.nav-logo-mark img, .nav-logo-mark svg { width: 44px; height: 44px; }
.nav-logo:hover .nav-logo-mark { transform: rotate(-3deg); }
.nav-logo-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: #fff; line-height: 1.2; transition: color 0.4s var(--ease); }
.nav-logo-text small { display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; opacity: 0.6; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; transition: color 0.4s var(--ease); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.85rem; font-weight: 500; padding: 8px 14px; border-radius: 10px; transition: all 0.3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }
.nav.scrolled .nav-links a.active, .nav.solid .nav-links a.active { color: var(--copper); background: rgba(193,124,78,0.1); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-give { margin-left: 6px; background: var(--copper); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; padding: 9px 22px; border-radius: 60px; text-decoration: none; transition: all 0.35s var(--ease); cursor: pointer; border: none; }
.nav-give:hover { background: var(--terracotta); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 38px; height: 38px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s var(--ease); }

/* Mobile Menu */
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--warm-white); z-index: 999; padding: 24px 28px; flex-direction: column; gap: 4px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button.mob-link { color: var(--text-dark); text-decoration: none; font-size: 1.12rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: block; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; font-family: var(--font-body); text-align: left; width: 100%; }
.mobile-menu a:hover, .mobile-menu button.mob-link:hover { color: var(--copper); }
.mobile-menu details { border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-menu details summary { padding: 14px 0; font-weight: 500; font-size: 1.12rem; color: var(--text-dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.mobile-menu details summary::after { content: '⌄'; transition: transform .3s; }
.mobile-menu details[open] summary::after { transform: rotate(180deg); }
.mobile-menu details a { padding: 10px 16px; font-size: 0.98rem; border-bottom: none; color: var(--text-muted); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ⌄'; font-size: 0.7rem; opacity: 0.6; }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--warm-white); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.25s var(--ease); list-style: none; margin-top: 6px; border: 1px solid rgba(27,58,45,0.06); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { padding: 0; }
.dropdown-menu a { color: var(--text-body) !important; padding: 10px 14px !important; border-radius: 10px; display: block; font-size: 0.88rem; }
.dropdown-menu a:hover { background: var(--linen) !important; color: var(--copper) !important; }

/* ══ HERO (STANDARD) ══ */
.hero { position: relative; min-height: 75vh; display: flex; align-items: center; overflow: hidden; }
.hero.hero-full { min-height: 100vh; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 90% 70% at 65% 35%, rgba(193,124,78,0.12), transparent 60%), radial-gradient(ellipse 70% 90% at 15% 85%, rgba(27,58,45,0.4), transparent 50%), linear-gradient(155deg, var(--forest-deep) 0%, var(--forest) 35%, var(--forest-light) 70%, #2D6B50 100%); }
.hero-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: 0.18; }
.hero-deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-deco .circle1 { position: absolute; top: -10%; right: -5%; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.04); animation: float 20s ease-in-out infinite; }
.hero-deco .circle2 { position: absolute; bottom: -20%; left: -10%; width: 800px; height: 800px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.03); animation: float 25s ease-in-out infinite reverse; }
.hero-deco .glow { position: absolute; top: 20%; right: 10%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(193,124,78,0.15), transparent 70%); filter: blur(60px); animation: pulse-slow 8s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translate(0,0) rotate(0deg)} 33%{transform:translate(20px,-15px) rotate(2deg)} 66%{transform:translate(-10px,10px) rotate(-1deg)} }
@keyframes pulse-slow { 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.15)} }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 140px 28px 100px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; width: 100%; }
.hero-content.single { grid-template-columns: 1fr; max-width: 820px; text-align: center; padding: 160px 28px 100px; }
.hero-content.single .accent-bar { justify-content: center; }
.hero-content.single .hero-btns { justify-content: center; }
.hero-text { animation: heroIn 1s var(--ease) both; }
.hero-content.single .hero-text { animation-delay: 0.1s; }
@keyframes heroIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(193,124,78,0.15); border: 1px solid rgba(193,124,78,0.3); border-radius: 60px; padding: 9px 20px; font-size: 0.78rem; font-weight: 600; color: var(--copper-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 32px; }
.hero-tag .dot { width: 8px; height: 8px; background: var(--copper-light); border-radius: 50%; animation: blink 2.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 700; color: #fff; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--copper-light); font-weight: 500; }
.hero-desc { font-size: 1.08rem; color: rgba(255,255,255,0.7); max-width: 560px; margin-bottom: 24px; line-height: 1.75; font-weight: 300; }
.hero-content.single .hero-desc { margin-left: auto; margin-right: auto; }
.hero-proof-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-proof-strip span { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 60px; padding: 7px 16px; font-size: 0.76rem; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-micro { font-size: 0.76rem; color: rgba(255,255,255,0.35); margin-top: 16px; letter-spacing: 0.02em; }

/* ══ Newcomer Reassurance Bar ══ */
.newcomer-bar { background: var(--forest); text-align: center; padding: 18px 28px; }
.newcomer-bar p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.6; margin: 0; }
.newcomer-bar strong { color: #fff; }
.newcomer-bar a { color: var(--copper-light); text-decoration: none; font-weight: 600; margin-left: 4px; }
.newcomer-bar a:hover { text-decoration: underline; }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl); padding: 44px; backdrop-filter: blur(12px); animation: heroIn 1s var(--ease) 0.25s both; }
.hero-card h3 { color: var(--copper-light); font-size: 1.3rem; font-weight: 600; margin-bottom: 28px; }

/* Hero carousel */
.hero-carousel { position: absolute; inset: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s var(--ease); }
.hero-slide.active { opacity: 0.22; }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dots button { width: 30px; height: 4px; background: rgba(255,255,255,0.3); border: none; border-radius: 2px; cursor: pointer; transition: background 0.3s; padding: 0; }
.hero-dots button.active { background: var(--copper-light); }

.times-list { list-style: none; }
.times-list li { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.times-list li:last-child { border-bottom: none; }
.t-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(193,124,78,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.15rem; }
.t-label { font-weight: 600; color: #fff; font-size: 0.95rem; }
.t-time { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.hero-addr { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.hero-addr a { color: var(--copper-light); text-decoration: none; font-weight: 500; }

/* ══ Page banner (shorter hero variant) ══ */
.page-banner { position: relative; min-height: 56vh; padding: 160px 28px 80px; display: flex; align-items: center; overflow: hidden; }
.page-banner .bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 65% 35%, rgba(193,124,78,0.12), transparent 60%), linear-gradient(155deg, var(--forest-deep), var(--forest) 60%, var(--forest-light)); }
.page-banner .bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; }
.page-banner-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center; }
.page-banner h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); color: #fff; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px; }
.page-banner h1 em { color: var(--copper-light); font-style: italic; font-weight: 500; }
.page-banner p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 600px; margin: 0 auto 28px; line-height: 1.7; }
.page-banner .breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.page-banner .breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.page-banner .breadcrumb a:hover { color: var(--copper-light); }
.page-banner .breadcrumb span.sep { color: rgba(255,255,255,0.3); }

/* ══ Cards + grids ══ */
.card { background: var(--warm-white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid rgba(27,58,45,0.06); transition: all 0.4s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3, .card h4 { color: var(--forest); }
.card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.welcome { background: var(--warm-white); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.faq-list { list-style: none; margin-top: 24px; }
.faq-list li { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.faq-list li:last-child { border-bottom: none; }
.faq-icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--sage-pale), var(--parchment)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.25rem; }
.faq-text strong { display: block; color: var(--forest); font-size: 0.95rem; margin-bottom: 5px; font-family: var(--font-display); font-weight: 600; }
.faq-text span { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.connect-card { background: var(--linen); border-radius: var(--radius-xl); padding: 48px; border: 1px solid rgba(0,0,0,0.04); }
.connect-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.connect-card > p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { font-size: 0.82rem; font-weight: 600; color: var(--forest); margin-bottom: 4px; display: block; }
.form input, .form select, .form textarea { font-family: var(--font-body); padding: 14px 18px; border: 1.5px solid rgba(27,58,45,0.1); border-radius: 12px; font-size: 0.9rem; background: var(--warm-white); transition: all 0.3s var(--ease); color: var(--text-dark); width: 100%; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(193,124,78,0.12); }
.form textarea { resize: vertical; min-height: 120px; }
.form select { cursor: pointer; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ══ Path / Steps ══ */
.path { background: var(--linen); }
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.step { background: var(--warm-white); border-radius: 18px; padding: 20px 16px; border: 1px solid rgba(27,58,45,0.06); transition: all 0.35s var(--ease); }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(193,124,78,0.3); }
.step .num { width: 34px; height: 34px; border-radius: 12px; background: var(--forest); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 10px; font-size: 0.85rem; }
.step strong { display: block; font-size: .95rem; color: var(--forest); font-family: var(--font-display); margin-bottom: 6px; }
.step span { font-size: .82rem; color: var(--text-muted); line-height: 1.55; display: block; }

/* ══ Pastors ══ */
.pastors { background: var(--warm-white); }
.pastors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pastor-card { background: var(--linen); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease); text-align: center; }
.pastor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pastor-photo { aspect-ratio: 1/1; background: linear-gradient(135deg, var(--sage-pale) 0%, var(--linen-dark) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.pastor-avatar { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--sage-pale), var(--parchment)); font-size: 3.5rem; }
.pastor-photo::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, var(--linen), transparent); pointer-events: none; }
.pastor-info { padding: 24px 28px 32px; margin-top: -20px; position: relative; z-index: 1; }
.pastor-info h4 { font-size: 1.2rem; margin-bottom: 4px; }
.pastor-role { font-size: 0.82rem; color: var(--copper); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.pastor-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ══ Streaming / live ══ */
.streaming { background: var(--forest-deep); position: relative; overflow: hidden; }
.streaming::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(193,124,78,0.06), transparent 60%), radial-gradient(ellipse at 10% 80%, rgba(36,80,61,0.4), transparent 50%); }
.streaming .container { position: relative; z-index: 1; }
.streaming h2 { color: #fff; }
.streaming .section-subtitle { color: rgba(255,255,255,0.55); }
.streaming .accent-bar span { color: var(--copper-light); }
.stream-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; }
.side-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 22px; transition: all 0.3s var(--ease); display: flex; flex-direction: column; gap: 16px; }
.side-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(193,124,78,0.3); }
.side-card h4 { color: var(--copper-light); font-size: 1rem; margin-bottom: 0; }
.side-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; }

/* ══ Sermons ══ */
.sermons { background: var(--warm-white); }
.sermon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sermon-card { background: var(--linen); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.4s var(--ease); border: 1px solid transparent; cursor: pointer; text-decoration: none; display: block; color: inherit; }
.sermon-card:hover { border-color: var(--copper); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.sermon-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 50%, var(--sage) 100%); display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.sermon-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,34,25,0.7) 0%, rgba(15,34,25,0.1) 60%, transparent 100%); }
.sermon-series { position: absolute; top: 14px; left: 14px; background: var(--copper); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 5px 12px; border-radius: 60px; letter-spacing: 0.04em; text-transform: uppercase; z-index: 2; }
.play-btn { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; transition: all 0.35s var(--ease); position: relative; z-index: 2; }
.sermon-card:hover .play-btn { background: var(--copper); transform: scale(1.1); }
.play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.sermon-body { padding: 22px 24px; }
.sermon-body h4 { font-size: 1.1rem; margin-bottom: 8px; }
.sermon-meta { display: flex; gap: 14px; font-size: 0.8rem; color: var(--text-muted); }

/* ══ Events ══ */
.events { background: var(--linen); }
.events-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.event-list { display: flex; flex-direction: column; gap: 16px; }
.event-card { display: flex; gap: 20px; background: var(--warm-white); border-radius: var(--radius); padding: 24px; border: 1.5px solid transparent; transition: all 0.35s var(--ease); }
.event-card:hover { border-color: var(--copper); box-shadow: var(--shadow-sm); }
.ev-date { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 64px; background: var(--forest); border-radius: 14px; padding: 12px 8px; color: #fff; flex-shrink: 0; }
.ev-date .month { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--copper-light); }
.ev-date .day { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; line-height: 1; }
.ev-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.ev-info .ev-time { font-size: 0.8rem; color: var(--copper); font-weight: 600; margin-bottom: 6px; }
.ev-info p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.5; }
.events-cta { background: var(--forest); border-radius: var(--radius-xl); padding: 48px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.events-cta h3 { color: #fff; font-size: 1.7rem; margin-bottom: 16px; }
.events-cta p { color: rgba(255,255,255,0.65); margin-bottom: 36px; line-height: 1.7; }
.events-cta .btns { display: flex; flex-direction: column; gap: 12px; }

/* ══ Giving ══ */
.giving { background: linear-gradient(140deg, var(--forest) 0%, var(--forest-light) 50%, #2D6B50 100%); position: relative; overflow: hidden; text-align: center; }
.giving::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 25% 75%, rgba(193,124,78,0.1), transparent 50%), radial-gradient(circle at 75% 25%, rgba(193,124,78,0.08), transparent 50%); }
.giving .container { position: relative; z-index: 1; }
.giving h2 { color: #fff; }
.giving .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 52px; }
.giving .accent-bar { justify-content: center; }
.giving .accent-bar span { color: var(--copper-light); }
.giving-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 44px; }
.g-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all 0.35s var(--ease); }
.g-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(193,124,78,0.3); }
.g-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(193,124,78,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.5rem; }
.g-card h4 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.g-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }
.g-card p a { color: var(--copper-light); }

/* ══ Groups ══ */
.groups { background: var(--warm-white); }
.groups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.group-card { background: var(--linen); border-radius: var(--radius-lg); padding: 36px 28px; transition: all 0.4s var(--ease); position: relative; overflow: hidden; }
.group-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: var(--sage-pale); transition: background 0.35s var(--ease); }
.group-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.group-card:hover::before { background: var(--copper); }
.group-emoji { font-size: 2.2rem; margin-bottom: 18px; }
.group-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.group-sched { font-size: 0.82rem; color: var(--copper); font-weight: 600; margin-bottom: 10px; }
.group-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ══ About ══ */
.about { background: var(--linen); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3.2; background: linear-gradient(135deg, var(--forest-light), var(--forest-deep)); }
.about-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(15,34,25,0.95), rgba(15,34,25,0.6) 60%, transparent); padding: 40px 32px 32px; z-index: 1; }
.about-overlay p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.65; }
.about-overlay strong { color: var(--copper-light); }
.about-stats { display: flex; gap: 32px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); }
.a-stat { text-align: center; flex: 1; }
.a-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--copper-light); line-height: 1; }
.a-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.about-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ══ FAQ accordion ══ */
.doctrinal-faq { background: var(--warm-white); }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: var(--linen); border-radius: 18px; border: 1px solid rgba(27,58,45,0.06); overflow: hidden; }
.acc-btn { width: 100%; text-align: left; padding: 20px 24px; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-body); }
.acc-btn strong { font-size: 0.98rem; color: var(--forest); font-family: var(--font-display); font-weight: 600; }
.acc-btn .chev { transition: transform .25s var(--ease); color: var(--text-muted); font-size: 1.2rem; }
.acc-item.open .acc-btn .chev { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-panel .inner { padding: 0 24px 22px; color: var(--text-muted); font-size: .94rem; line-height: 1.75; }

/* ══ Map ══ */
.map-section { background: var(--linen); padding: 0 0 100px; }
.map-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.map-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--forest); }
.map-info { padding: 52px 44px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.map-info h3 { color: #fff; font-size: 1.6rem; margin-bottom: 24px; }
.map-details { list-style: none; }
.map-details li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.map-details li:last-child { border-bottom: none; }
.map-details .icon { font-size: 1.1rem; flex-shrink: 0; width: 22px; text-align: center; }
.map-details strong { color: #fff; display: block; margin-bottom: 2px; }
.map-details a { color: var(--copper-light); text-decoration: none; }
.map-details a:hover { text-decoration: underline; }
.map-embed { aspect-ratio: auto; min-height: 400px; }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══ Footer ══ */
.footer { background: var(--forest-deep); color: rgba(255,255,255,0.65); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer h3 { color: #fff; font-size: 1.15rem; margin-bottom: 20px; }
.footer-desc { font-size: 0.88rem; line-height: 1.65; margin-bottom: 24px; max-width: 320px; color: rgba(255,255,255,0.55); }
.socials { display: flex; gap: 10px; }
.social-btn { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1.1rem; transition: all 0.3s var(--ease); cursor: pointer; border: none; }
.social-btn:hover { background: var(--copper); color: #fff; transform: translateY(-2px); }
.f-links { list-style: none; }
.f-links li { padding: 7px 0; }
.f-links a, .f-links button.f-link-btn { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; background: none; border: none; cursor: pointer; font-family: var(--font-body); padding: 0; }
.f-links a:hover, .f-links button.f-link-btn:hover { color: var(--copper-light); }
.footer-contact-line { padding: 7px 0; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-contact-line a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-line a:hover { color: var(--copper-light); }
.footer-authority { padding: 32px 0 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; }
.footer-authority a { color: rgba(255,255,255,0.35); font-size: 0.78rem; text-decoration: none; transition: color 0.3s; }
.footer-authority a:hover { color: rgba(255,255,255,0.8); }
.footer-authority span.sep { color: rgba(255,255,255,0.15); }
.footer-bottom { padding: 28px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--copper-light); }
.footer-newsletter input { flex: 1; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.07); color: #fff; font-size: .82rem; font-family: inherit; min-width: 0; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button { padding: 10px 18px; background: var(--copper); color: #fff; border: none; border-radius: 8px; font-size: .82rem; font-weight: 600; cursor: pointer; font-family: inherit; }
.footer-newsletter button:hover { background: var(--terracotta); }
.footer-newsletter form { display: flex; gap: 6px; margin-top: 6px; }

/* ══ WhatsApp FAB ══ */
.wa-fab { position: fixed; bottom: 28px; right: 28px; z-index: 998; width: 62px; height: 62px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.4); color: #fff; text-decoration: none; font-size: 1.6rem; transition: all 0.35s var(--ease); cursor: pointer; border: none; }
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.55); }
.wa-fab .tip { position: absolute; right: 72px; background: #fff; color: var(--text-dark); padding: 10px 16px; border-radius: 10px; font-size: 0.8rem; font-weight: 600; white-space: nowrap; box-shadow: var(--shadow-md); opacity: 0; transform: translateX(10px); transition: all 0.3s var(--ease); pointer-events: none; }
.wa-fab:hover .tip { opacity: 1; transform: translateX(0); }

/* ══ Reveal animations ══ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ══ Gallery ══ */
.gallery-mosaic { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-mosaic .g-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.gallery-mosaic .g-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.55s ease; }
.gallery-mosaic .g-item:hover img { transform: scale(1.06); }
.gallery-mosaic .g-item.wide { grid-column: 1/-1; }
.gallery-mosaic .g-item.wide img { height: 340px; }
.gallery-mosaic .g-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px; background: linear-gradient(to top, rgba(15,34,25,.75), transparent); color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .04em; opacity: 0; transition: opacity .4s ease; }
.gallery-mosaic .g-item:hover .g-label { opacity: 1; }

.welcome-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 64px; border-radius: var(--radius-xl); overflow: hidden; }
.welcome-strip img { width: 100%; height: 180px; object-fit: cover; display: block; }

/* ══ Accessibility ══ */
:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; border-radius: 4px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ══ Skip link ══ */
.skip-link { position: absolute; top: -100px; left: 0; background: var(--copper); color: #fff; padding: 10px 20px; z-index: 9999; border-radius: 0 0 12px 0; font-weight: 600; transition: top .3s; text-decoration: none; }
.skip-link:focus { top: 0; }

/* ══ Print ══ */
@media print {
  .nav, .wa-fab, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .page-banner { min-height: auto; padding: 40px 0; }
}

/* ══ Responsive ══ */
@media (max-width: 1024px) {
  .hero-content, .welcome-grid, .events-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .stream-grid { grid-template-columns: 1fr; }
  .map-inner { grid-template-columns: 1fr; }
  .map-embed { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sermon-grid, .groups-grid, .giving-cards, .grid-3 { grid-template-columns: 1fr 1fr; }
  .pastors-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-proof-strip { gap: 6px; }
  .hero-proof-strip span { font-size: 0.7rem; padding: 5px 12px; }
  .hero-micro { font-size: 0.7rem; }
  .pastor-card[style*="grid-column"] { grid-template-columns: 1fr !important; }
  .section-pad { padding: 72px 0; }
  .hero-content { padding: 120px 28px 60px; gap: 40px; }
  .page-banner { padding: 130px 28px 60px; min-height: 40vh; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .sermon-grid, .groups-grid, .giving-cards, .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; }
  .pastors-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero-card { padding: 32px; }
  .map-info { padding: 36px 28px; }
  .welcome-strip { grid-template-columns: repeat(2,1fr); }
  .welcome-strip img { height: 120px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic .g-item img { height: 180px; }
  .gallery-mosaic .g-item.wide img { height: 220px; }
  .connect-card { padding: 32px 24px; }
  .nav-give { padding: 8px 16px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .welcome-strip { grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 40px; }
  .events-cta { padding: 32px 24px; }
  .wa-fab { bottom: 80px; right: 20px; width: 56px; height: 56px; font-size: 1.4rem; }
}

/* ══ Cookie Consent ══ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 997; background: var(--forest-deep); color: rgba(255,255,255,0.8); padding: 18px 28px; display: none; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 0.85rem; line-height: 1.6; box-shadow: 0 -4px 24px rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.06); }
.cookie-banner.show { display: flex; }
.cookie-banner a { color: var(--copper-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner .btn-cookie { background: var(--copper); color: #fff; padding: 9px 22px; border-radius: 60px; border: none; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.cookie-banner .btn-cookie:hover { background: var(--terracotta); }
.cookie-banner .btn-decline { background: transparent; color: rgba(255,255,255,0.5); padding: 9px 16px; border-radius: 60px; border: 1px solid rgba(255,255,255,0.15); font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all 0.3s; }
.cookie-banner .btn-decline:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }

/* ══ Back to Top ══ */
.back-top { position: fixed; bottom: 28px; left: 28px; z-index: 996; width: 44px; height: 44px; background: var(--forest); color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.35s var(--ease); font-size: 1.1rem; }
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--copper); transform: translateY(-2px); box-shadow: var(--shadow-copper); }

/* ══ Mobile Sticky CTA Bar ══ */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 996; background: var(--forest-deep); border-top: 1px solid rgba(255,255,255,0.08); padding: 10px 16px; gap: 8px; align-items: center; justify-content: center; }
  .mobile-cta-bar a { flex: 1; text-align: center; padding: 12px 8px; border-radius: 10px; font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; text-decoration: none; transition: all 0.3s var(--ease); }
  .mobile-cta-bar .mcta-visit { background: var(--copper); color: #fff; }
  .mobile-cta-bar .mcta-wa { background: #25D366; color: #fff; }
  .mobile-cta-bar .mcta-sms { background: var(--copper); color: #fff; }
  .mobile-cta-bar .mcta-call { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
  .mobile-cta-bar .mcta-visit:hover,
  .mobile-cta-bar .mcta-sms:hover { background: var(--terracotta); }
  .wa-fab { bottom: 72px; }
  .back-top { bottom: 72px; left: 16px; }
  .cookie-banner { padding-bottom: 70px; }
  body { padding-bottom: 56px; }
}
