/* ==============================================
   Lighthouse 805 — Coastal Church Design
   "A Jesus-centered church in Ventura for the
    whole family."
   
   Palette: fog, sand, driftwood, ocean teal, navy
   Fonts:   Cabinet Grotesk (heads) + Satoshi (body)
   ============================================== */

:root {
  --fog: #f5f2ed;
  --fog-dark: #e8e2d8;
  --sand: #e5d9c8;
  --sand-dark: #d4c4ae;
  --driftwood: #8b7e74;
  --driftwood-light: #a99b90;
  --teal: #3a7b8a;
  --teal-dark: #2d6270;
  --teal-light: #6ba3b0;
  --navy: #2c3e4f;
  --navy-dark: #1e2c39;
  --navy-light: #405b70;
  --coral: #d48470;
  --coral-light: #e5a694;
  --white: #ffffff;
  --ink: #1e1c1b;
  --gray: #6b6560;
  --gray-light: #9e948e;
  --radius: 12px;
  --radius-sm: 6px;
  --max-w: 1120px;
  --max-w-narrow: 780px;
  --shadow-sm: 0 2px 8px rgba(30, 28, 27, 0.05);
  --shadow: 0 8px 28px rgba(30, 28, 27, 0.07);
  --shadow-lg: 0 20px 50px rgba(30, 28, 27, 0.1);
  --t: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--fog);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }

/* ========== TYPOGRAPHY ========== */

h1, h2, h3, h4 {
  font-family: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.6vw, 1.2rem); }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}

/* ========== HEADER ========== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}

.site-header.scrolled {
  background: rgba(245, 242, 237, 0.94);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 1px 4px rgba(30, 28, 27, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px; height: 36px;
  flex-shrink: 0;
  transition: transform var(--t);
  line-height: 0;
}
.logo-mark .logo-svg { width: 100%; height: 100%; display: block; object-fit: contain; }

.logo:hover .logo-mark { transform: scale(1.05); }

.logo-text {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  transition: color var(--t);
}

.scrolled .logo-text { color: var(--ink); }
.logo-text span { color: var(--coral); }
.scrolled .logo-text span { color: var(--teal); }

.nav { display: flex; align-items: center; gap: 2px; }

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--t);
}

.scrolled .nav a { color: var(--ink); }

.nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.scrolled .nav a:hover {
  color: var(--teal);
  background: rgba(58,123,138,0.06);
}

.nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.scrolled .nav a.active {
  color: var(--teal-dark);
  background: rgba(58,123,138,0.08);
}

.nav .btn-nav {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  margin-left: 10px;
  border-radius: 50px;
  font-weight: 600;
}

.nav .btn-nav:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(58,123,138,0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}

.scrolled .menu-toggle span { background: var(--ink); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(30,44,57,0.75) 0%,
    rgba(30,44,57,0.35) 50%,
    rgba(58,123,138,0.12) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 130px 24px 80px;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-inner h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 16px;
}

.hero-inner h1 .hl {
  color: var(--teal-light);
}

.hero-inner .sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 600px;
}

.hero-meta span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta strong {
  color: var(--white);
  font-weight: 600;
}

.hero-family {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  font-style: italic;
}

/* ========== BUTTONS ========== */

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,123,138,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44,62,79,0.25);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}

.btn-coral:hover {
  background: #c4735e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,132,112,0.3);
}

/* ========== SECTIONS ========== */

section { padding: 90px 0; }

.section-heading {
  margin-bottom: 48px;
  max-width: 580px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 { margin-bottom: 14px; }
.section-heading p { color: var(--gray); font-size: 1.05rem; }
.section-heading .lm-helper { font-size: 0.92rem; margin-top: 8px; color: var(--gray-light); }

/* ========== STRIP ========== */

.strip {
  background: var(--navy);
  padding: 20px 0;
}

.strip-inner {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.strip-inner span { display: inline-flex; align-items: center; gap: 6px; }
.strip-inner .sep { color: rgba(255,255,255,0.2); }

/* ========== WHAT TO EXPECT ========== */

.expect { background: var(--white); }

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.expect-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--fog);
  transition: all var(--t);
}

.expect-card:hover {
  background: var(--fog-dark);
  transform: translateY(-3px);
}

.expect-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.1rem;
}

.expect-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.expect-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }

/* ========== VALUES ========== */

.values { background: var(--fog); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: var(--radius);
  transition: all var(--t);
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ========== SPLIT ========== */

.split {
  background: var(--white);
  overflow: hidden;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.split-grid.r { direction: rtl; }
.split-grid.r > * { direction: ltr; }

.split-img {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.split-body {
  padding: 64px 48px;
}

.split-body h2 { margin-bottom: 14px; }
.split-body p { color: var(--gray); margin-bottom: 12px; }

/* ========== FULL BLEED PHOTO ========== */

.full-photo {
  width: 100%;
  height: 50vh;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.full-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.full-photo .cap {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========== LATEST MESSAGE ========== */

.message-block {
  background: var(--fog);
  text-align: center;
}

.message-block .btn { margin-top: 8px; }

/* ========== PASTORS ========== */

.pastors {
  background: var(--fog);
  padding: 90px 0;
}

.pastors .section-heading {
  text-align: center;
  margin: 0 auto 56px;
}

.pastors-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
}

.pastor-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30, 28, 27, 0.04);
  transition: all var(--t);
}

.pastor-card:nth-child(even) {
  flex-direction: row-reverse;
}

.pastor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pastor-card.featured {
  flex-direction: column;
}

.pastor-card.featured .pastor-img {
  flex: none;
  width: 100%;
  max-height: 500px;
}

.pastor-card.featured .pastor-img img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.pastor-card.featured .pastor-body {
  padding: 36px 40px;
}

.pastor-img {
  flex: 0 0 40%;
  overflow: hidden;
}

.pastor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pastor-body {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pastor-body h4 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.pastor-body .role {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.pastor-body p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 10px;
}

.pastor-body p:last-child {
  margin-bottom: 0;
}

/* ========== CTA ========== */

.cta-block {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,123,138,0.1) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.cta-inner .section-label { color: var(--teal-light); }
.cta-inner h2 { color: var(--white); margin-bottom: 14px; }

.cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ========== PAGE TOP ========== */

.page-top {
  position: relative;
  padding: 150px 24px 60px;
  background: var(--navy-dark);
  overflow: hidden;
}

.page-top-bg {
  position: absolute;
  inset: 0;
}

.page-top-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.05);
}

.page-top-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}

.breadcrumbs {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.breadcrumbs a { color: rgba(255,255,255,0.5); }
.breadcrumbs a:hover { color: var(--teal-light); }

.page-top-inner h1 { color: var(--white); max-width: 650px; }

.page-top-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-top: 10px;
  max-width: 480px;
}

/* ========== CONTENT ========== */

.content-block { padding: 80px 0; }
.content-block.alt { background: var(--white); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-text h2 { margin-bottom: 14px; }
.content-text p { color: var(--gray); margin-bottom: 14px; font-size: 1rem; }

.content-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ========== STEPS ========== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--sand);
  transition: all var(--t);
}

.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.step-num {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--fog-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  transition: all var(--t);
}

.step-card:hover .step-num {
  background: var(--teal);
  color: var(--white);
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { color: var(--gray); font-size: 0.9rem; }

/* ========== FAQ ========== */

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 10px;
  border: 1px solid var(--sand);
  transition: all var(--t);
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-item h4 { margin-bottom: 6px; }
.faq-item p { color: var(--gray); font-size: 0.95rem; }

/* ========== CONTACT ========== */

.contact-block { background: var(--fog); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-row .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-row h4 { font-size: 0.9rem; margin-bottom: 1px; }
.contact-row p, .contact-row a { color: var(--gray); font-size: 0.9rem; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color var(--t);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(58,123,138,0.1);
}

.form-group textarea { min-height: 110px; resize: vertical; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.map-wrap iframe {
  width: 100%; height: 320px;
  border: 0;
  display: block;
  pointer-events: none;
}

.map-link-wrap {
  position: relative;
  display: block;
  cursor: pointer;
}

.map-link-wrap a.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

.map-link-wrap a.map-overlay::after {
  content: 'Open in Google Maps \2197';
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  color: var(--teal);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  pointer-events: none;
}

.map-link-wrap:hover a.map-overlay::after {
  background: var(--teal);
  color: var(--white);
}

/* Re-enable iframe interaction for zoom/pan on desktop via double-click */
.map-link-wrap.is-active iframe {
  pointer-events: auto;
}

/* ========== FOOTER ========== */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand .logo { margin-bottom: 12px; }
.footer-brand .logo-text { font-size: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 320px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  padding: 3px 0;
  font-size: 0.85rem;
  transition: color var(--t);
}

.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
}

.social-links { display: flex; gap: 8px; }

.social-links a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  font-weight: 600;
  transition: all var(--t);
}

.social-links a:hover {
  background: var(--teal);
  color: var(--white);
}

/* ========== 404 ========== */

.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  background: var(--fog);
}

.not-found h1 {
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.not-found h2 { margin-bottom: 10px; }
.not-found p { color: var(--gray); margin-bottom: 28px; }

/* ========== LATEST MESSAGE HOMEPAGE ========== */

.latest-msg { background: var(--fog); padding: 90px 0; }
.lm-video { max-width: 740px; margin: 24px auto; }
.lm-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--ink); }
.lm-embed iframe { width: 100%; height: 420px; border: 0; display: block; }
.lm-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========== TODAY'S READING HOMEPAGE ========== */

.today-reading { background: var(--white); padding: 90px 0; }
.tr-card { max-width: 600px; margin: 0 auto; background: var(--fog); border-radius: var(--radius); padding: 36px 32px; text-align: center; border: 1px solid var(--sand); }
.tr-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; background: var(--teal); color: var(--white); padding: 6px 14px; border-radius: 4px; margin-bottom: 12px; }
.tr-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tr-scr { font-size: 0.85rem; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.tr-excerpt { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.tr-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) { .lm-embed iframe { height: 260px; } .tr-card { padding: 24px 20px; } }

/* ========== MOBILE CTA ========== */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--navy-dark);
  padding: 12px 24px;
  text-align: center;
}

.mobile-cta a { color: var(--white); font-weight: 600; font-size: 1rem; }
.mobile-cta a span { color: var(--teal-light); }

/* ========== REVEAL ========== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s 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; }

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .expect-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; }
  .split-grid.r { direction: ltr; }
  .split-img { min-height: 280px; }
  .split-body { padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 90px 28px 40px;
    gap: 2px;
    box-shadow: -8px 0 30px rgba(30,28,27,0.08);
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    align-items: stretch;
  }

  .nav.active { right: 0; }

  .nav a {
    color: var(--ink) !important;
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
  }

  .nav a:hover,
  .nav a.active { background: var(--fog-dark) !important; color: var(--teal) !important; }

  .nav .btn-nav { margin-left: 0; margin-top: 8px; text-align: center; }

  section { padding: 60px 0; }
  .hero { min-height: 85vh; }
  .hero-body { padding: 110px 20px 60px; }
  .hero-inner h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-inner .sub { font-size: 1rem; }
  .hero-meta { gap: 12px; padding: 14px 16px; flex-direction: column; }

  .expect-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .content-grid { grid-template-columns: 1fr; gap: 28px; }
  .content-img img { height: 260px; }
  .split-img { min-height: 220px; }
  .split-body { padding: 28px 24px; }
  .pastor-card { flex-direction: column !important; }
  .pastor-img { flex: none; }
  .pastor-img img { aspect-ratio: 16 / 9; }
  .pastor-card.featured .pastor-img img { aspect-ratio: 16 / 9; max-height: none; }
  .pastor-card.featured .pastor-body { padding: 24px 20px; }
  .pastor-body { padding: 20px 20px 24px; }
  .full-photo { height: 30vh; min-height: 240px; }

  .page-top { padding: 110px 20px 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-cta { display: block; }
}

@media (max-width: 480px) {
  .hero { min-height: 80vh; }
  .btn-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ========== FAQ ========== */

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 0;
  overflow: hidden;
}

.faq-q {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--t);
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gray-light);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-q { color: var(--teal); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 0 18px;
}

/* ========== CHAT WIDGET ========== */

.chat-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: all var(--t);
  color: white;
}

.chat-toggle:hover { transform: scale(1.08); background: var(--teal-dark); }
.chat-toggle svg { width: 24px; height: 24px; }
.chat-toggle .chat-close-icon { display: none; }
.chat-toggle.open .chat-open-icon { display: none; }
.chat-toggle.open .chat-close-icon { display: block; }

.chat-panel {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 299;
  width: 340px;
  max-width: calc(100vw - 40px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.chat-panel.open { display: flex; }

.chat-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-header-text h4 { font-size: 0.92rem; margin: 0; color: var(--white); }
.chat-header-text p { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin: 2px 0 0; }

.chat-body { padding: 16px 20px; }

.chat-body form { display: flex; flex-direction: column; gap: 10px; }

.chat-body input,
.chat-body textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: 'Satoshi', sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border var(--t);
  box-sizing: border-box;
}

.chat-body input:focus,
.chat-body textarea:focus { border-color: var(--teal); }

.chat-body textarea { min-height: 60px; resize: vertical; }

.chat-body .btn { font-size: 0.85rem; padding: 10px; width: 100%; }

.chat-success { display: none; text-align: center; padding: 32px 0; }
.chat-success p { font-size: 0.92rem; color: var(--gray); margin: 0; }
.chat-success .chat-success-icon { font-size: 2rem; margin-bottom: 8px; display: block; }

.chat-error { font-size: 0.78rem; color: var(--coral); margin: 0; }

.chat-honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

@media (max-width: 600px) {
  .chat-panel {
    right: 10px;
    bottom: calc(60px + 20px + 10px);
    width: calc(100vw - 20px);
    max-height: 60vh;
  }
  .chat-toggle { right: 10px; bottom: calc(60px + 16px); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
