/* ============================================================
   FAMILLE D'IMPACT ANGERS — Design system
   Couleurs dérivées du logo + typo Bricolage Grotesque / Plus Jakarta
   ============================================================ */

:root {
  /* Brand */
  --coral: #EE7D4F;
  --coral-dark: #D9633A;
  --coral-soft: #FBD9C7;
  --coral-mist: #FCEADB;

  /* Neutrals */
  --ink: #2A2926;
  --ink-soft: #4A4843;
  --ink-mute: #7B786F;
  --line: #E8DFD2;
  --line-soft: #F1E9DC;
  --cream: #FAF5EE;
  --cream-warm: #F4ECDC;
  --cream-deep: #ECE0C9;
  --white: #FFFCF6;

  /* Accents */
  --sage: oklch(0.72 0.04 145);
  --sage-deep: oklch(0.55 0.05 145);
  --olive: #6B6B3D;

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* Spacing scale */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; margin: 0; }

/* ------- Container ------- */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 238, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img { height: 44px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 9px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  transition: all 0.15s ease;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__link:hover { color: var(--ink); background: var(--cream-warm); }
.nav__link--active { color: var(--ink); background: var(--cream-warm); }

.nav__cta {
  padding: 11px 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease;
}
.nav__cta:hover { background: var(--coral); transform: translateY(-1px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 22px -8px rgba(238, 125, 79, 0.6);
}
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 10px 28px -8px rgba(238, 125, 79, 0.7); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover { background: var(--coral); }
.btn--wa {
  background: #25D366;
  color: white;
}
.btn--wa:hover { background: #1FB855; }
.btn--lg { padding: 18px 30px; font-size: 17px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--coral-mist);
  border: 1px solid var(--coral-soft);
  color: var(--coral-dark);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}
.hero__title {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  margin-bottom: 22px;
}
.hero__title em {
  font-style: italic;
  color: var(--coral);
  font-weight: 600;
}
.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream-warm);
}

/* Decorative blob behind hero */
.hero__blob {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--coral-mist) 0%, transparent 65%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(20px);
}

/* ============================================================
   PLACEHOLDER (image slot)
   ============================================================ */
.ph {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      var(--cream-warm) 0px, var(--cream-warm) 12px,
      var(--cream-deep) 12px, var(--cream-deep) 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ph__label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  background: var(--cream);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 90px 0; }
.section--cream { background: var(--cream-warm); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }

.section__head { max-width: 720px; margin-bottom: 56px; }
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.section__title { font-size: clamp(34px, 4.5vw, 54px); margin-bottom: 18px; }
.section__lede { font-size: 19px; color: var(--ink-soft); line-height: 1.55; }
.section--ink .section__lede { color: var(--cream-deep); }

/* ============================================================
   "C'EST QUOI" — 3 cards
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--coral-soft); }
.section--cream .feature { background: var(--white); }
.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--coral-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--coral-dark);
}
.feature__title { font-size: 24px; }
.feature__body { color: var(--ink-soft); font-size: 16px; line-height: 1.55; }

/* ============================================================
   STEPS — Comment ça marche
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  padding: 28px 24px;
  border-top: 1.5px solid var(--ink);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  display: block;
  margin-bottom: 12px;
}
.step__title { font-size: 22px; margin-bottom: 10px; }
.step__body { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.section--ink .step { border-top-color: var(--coral); }
.section--ink .step__body { color: var(--cream-deep); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
}
.stat__num span { font-size: 0.5em; color: var(--coral); margin-left: 4px; }
.stat__label {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.quote__visual {
  aspect-ratio: 1 / 1.1;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.quote__text::before { content: "« "; color: var(--coral); }
.quote__text::after { content: " »"; color: var(--coral); }
.quote__author {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
.quote__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--coral-mist);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  color: var(--coral-dark);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--coral);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: 120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta-band h2 { color: var(--white); font-size: clamp(36px, 4.5vw, 54px); }
.cta-band p { color: rgba(255, 255, 255, 0.88); font-size: 18px; margin-top: 16px; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band .btn--primary { background: var(--white); color: var(--ink); box-shadow: none; }
.cta-band .btn--primary:hover { background: var(--ink); color: var(--white); }
.cta-band .btn--ghost { color: var(--white); border-color: var(--white); }
.cta-band .btn--ghost:hover { background: var(--white); color: var(--coral); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream-deep);
  padding: 70px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand img { height: 50px; }
.footer__tag { margin-top: 20px; font-size: 15px; line-height: 1.6; max-width: 320px; color: var(--cream-deep); opacity: 0.8; }
.footer__col h4 { color: var(--white); font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); }
.footer__col a { display: block; padding: 5px 0; font-size: 15px; color: var(--cream-deep); opacity: 0.75; transition: opacity 0.15s; }
.footer__col a:hover { opacity: 1; color: var(--coral); }
.footer__bottom { padding-top: 28px; display: flex; justify-content: space-between; font-size: 13px; opacity: 0.6; }

/* ============================================================
   FIND MY FI — page
   ============================================================ */
.find-page { padding: 40px 0 0; }
.find-head { max-width: 720px; margin-bottom: 32px; }
.find-head h1 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 14px; }
.find-head p { font-size: 18px; color: var(--ink-soft); }

.search-bar {
  display: flex;
  gap: 12px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 20px -8px rgba(42, 41, 38, 0.08);
  margin-bottom: 36px;
  align-items: center;
}
.search-bar__icon {
  margin-left: 14px;
  color: var(--ink-mute);
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 4px;
  font-family: inherit;
  font-size: 16px;
  background: transparent;
  color: var(--ink);
}
.search-bar input::placeholder { color: var(--ink-mute); }
.search-bar .btn { padding: 12px 22px; }
.search-bar__geo {
  background: var(--cream-warm);
  border: none;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s;
}
.search-bar__geo:hover { background: var(--cream-deep); }

/* Autocomplete dropdown */
.search-wrap {
  position: relative;
  margin-bottom: 36px;
}
.search-wrap .search-bar { margin-bottom: 0; }
.autocomplete {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 36px -10px rgba(42, 41, 38, 0.18);
  max-height: 320px;
  overflow-y: auto;
}
.autocomplete__item {
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  cursor: pointer;
  align-items: center;
  transition: background 0.12s ease;
}
.autocomplete__item--hl,
.autocomplete__item:hover {
  background: var(--cream-warm);
}
.autocomplete__icon {
  color: var(--coral-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.autocomplete__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.autocomplete__text strong {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.autocomplete__text span {
  font-size: 13px;
  color: var(--ink-mute);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.find-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  height: calc(100vh - 280px);
  min-height: 600px;
  margin-bottom: 60px;
}

.fi-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fi-list__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 10px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.fi-list__header h3 { font-size: 18px; font-family: var(--font-body); font-weight: 700; }
.fi-list__count { font-size: 13px; color: var(--ink-mute); font-weight: 500; }

.fi-card {
  padding: 18px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  background: var(--cream);
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fi-card:hover { border-color: var(--coral-soft); background: var(--coral-mist); }
.fi-card--active { border-color: var(--coral); background: var(--coral-mist); }
.fi-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.fi-card__name { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.fi-card__quartier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral-dark);
  background: var(--coral-mist);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.fi-card--active .fi-card__quartier { background: var(--coral); color: var(--white); }
.fi-card__meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  align-items: center;
  flex-wrap: wrap;
}
.fi-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.fi-card__dist {
  font-weight: 700;
  color: var(--coral-dark);
}

/* Map */
.map-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-warm);
}
#map { width: 100%; height: 100%; }
.map-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 500;
  background: var(--white);
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.1);
  max-width: 260px;
}
.map-legend strong { display: block; margin-bottom: 6px; font-size: 13px; }
.map-legend__row { display: flex; gap: 8px; align-items: center; margin: 4px 0; color: var(--ink-soft); }
.map-legend__dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.map-legend__dot--fi { background: rgba(238, 125, 79, 0.3); border: 2px solid var(--coral); }
.map-legend__dot--me { background: var(--ink); border: 2px solid var(--white); box-shadow: 0 0 0 1.5px var(--ink); }

/* FI detail panel (overlay) */
.fi-detail {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 600;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  width: 340px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 40px -10px rgba(42, 41, 38, 0.25);
  animation: slideIn 0.25s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.fi-detail__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--cream);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.fi-detail__close:hover { background: var(--coral-mist); color: var(--coral-dark); }
.fi-detail__quartier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 8px;
}
.fi-detail__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.fi-detail__row {
  display: flex;
  gap: 10px;
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  align-items: flex-start;
}
.fi-detail__row:last-of-type { border-bottom: none; }
.fi-detail__row strong { color: var(--ink); font-weight: 600; min-width: 86px; display: inline-block; }
.fi-detail__bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 16px 0;
  padding: 14px;
  background: var(--cream);
  border-radius: var(--r-md);
}
.fi-detail__bio::before { content: "« "; color: var(--coral); font-weight: 700; }
.fi-detail__bio::after { content: " »"; color: var(--coral); font-weight: 700; }
.fi-detail__wa {
  width: 100%;
  margin-top: 16px;
  justify-content: center;
}
.fi-detail__note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   ABOUT PAGE — refonte
   ============================================================ */
.about-intro {
  padding: 90px 0 60px;
  text-align: center;
}
.about-intro__title {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  margin: 22px auto 28px;
  max-width: 12ch;
}
.about-intro__title em {
  font-style: italic;
  color: var(--coral);
  font-weight: 600;
}
.about-intro__lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}

/* Alternating image / text blocks */
.about-block { padding: 70px 0; }
.about-block--cream { background: var(--cream-warm); }
.about-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-block__grid--reverse .about-block__visual { order: 2; }
.about-block__visual {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream-warm);
}
.about-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-block__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 480px;
}
.about-block__title {
  font-size: clamp(40px, 5.5vw, 62px);
  text-transform: uppercase;
  color: var(--coral);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.about-block__body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Verse callout */
.verse {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-left: 3px solid var(--coral);
  background: var(--cream);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-top: 8px;
}
.about-block--cream .verse { background: var(--white); }
.verse__ref {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.verse__text {
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}

/* Pastor section */
.pastor {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 60px 60px 60px 50px;
  overflow: hidden;
  position: relative;
}
.pastor__mark {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.7;
  color: var(--coral);
  margin-bottom: 16px;
}
.pastor__text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--ink);
  margin-bottom: 28px;
}
.pastor__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pastor__author strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--coral);
  font-weight: 700;
}
.pastor__author span { color: var(--coral-dark); font-weight: 600; font-size: 15px; }
.pastor__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  align-self: stretch;
  max-height: 480px;
}
.pastor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Croyances list */
.croyances {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  border-top: 1px solid var(--line);
}
.croyance {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.croyance__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.01em;
}
.croyance__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}

@media (max-width: 960px) {
  .about-block__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-block__grid--reverse .about-block__visual { order: 0; }
  .about-block__body { max-width: 100%; }
  .pastor { grid-template-columns: 1fr; padding: 40px 30px; gap: 30px; }
  .pastor__photo { order: -1; max-height: 380px; }
  .croyance { grid-template-columns: 50px 1fr; gap: 16px; }
  .croyance__num { font-size: 22px; }
}

.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq__q::after {
  content: "+";
  font-size: 24px;
  color: var(--coral);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq__item--open .faq__q::after { content: "−"; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.faq__item--open .faq__a {
  max-height: 400px;
  padding: 0 0 24px;
}

/* ============================================================
   LEAFLET overrides
   ============================================================ */
.leaflet-container {
  background: var(--cream-warm) !important;
  font-family: var(--font-body) !important;
}
.leaflet-control-attribution {
  background: rgba(250, 245, 238, 0.8) !important;
  font-size: 10px !important;
}
.leaflet-popup-content-wrapper {
  border-radius: var(--r-md) !important;
  background: var(--white) !important;
  box-shadow: 0 6px 24px -8px rgba(0,0,0,0.2) !important;
}
.leaflet-popup-content {
  margin: 14px 18px !important;
  font-family: var(--font-body) !important;
}
.leaflet-popup-content strong {
  font-family: var(--font-display);
  font-size: 17px;
}
.leaflet-popup-tip { background: var(--white) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__grid, .quote, .about-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid, .steps, .team-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 50px 30px; }
  .find-layout { grid-template-columns: 1fr; height: auto; }
  .fi-list { max-height: 400px; }
  #map { height: 500px; }
  .nav__links { display: none; }
}
@media (max-width: 600px) {
  .feature-grid, .steps, .team-grid, .stats, .footer__grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}
