/* ═══════════════════════════════════════════════════════════════
   Jubilé Tabernacle — site institutionnel
   Palette héritée de l'application (lib/core/theme.dart) :
   bordeaux #860505 · dégradé #6B0404→#1A0000 · or #D4AF70 · fond #FFF8F6
   ═══════════════════════════════════════════════════════════════ */

:root {
  --primary: #860505;
  --primary-dark: #6B0404;
  --near-black: #1A0000;
  --gold: #D4AF70;
  --gold-soft: #E8CFA3;
  --bg: #FFF8F6;
  --surface: #FFFFFF;
  --ink: #201A19;
  --ink-soft: #5C4F4C;
  --line: #F0DDD8;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(134, 5, 5, 0.08);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* ── Boutons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--near-black);
  box-shadow: 0 6px 24px rgba(212, 175, 112, 0.35);
}
.btn-gold:hover { box-shadow: 0 10px 32px rgba(212, 175, 112, 0.5); }

.btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.7); }

.btn-lg { padding: 1.15rem 2.6rem; font-size: 1.05rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 6px 24px rgba(134, 5, 5, 0.3);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(134, 5, 5, 0.42); }

/* ── Navigation ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.4rem 0;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled {
  background: rgba(26, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo { height: 58px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--near-black) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212, 175, 112, 0.18), transparent 60%),
    linear-gradient(165deg, var(--primary-dark) 0%, #3d0202 45%, var(--near-black) 100%);
  overflow: hidden;
}

/* Carrousel de photos de l'assemblée (fondu enchaîné + léger zoom) */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; animation: kenburns 9s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

/* Voile brand par-dessus les photos : lisibilité + identité */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212, 175, 112, 0.14), transparent 60%),
    linear-gradient(165deg, rgba(107, 4, 4, 0.88) 0%, rgba(61, 2, 2, 0.82) 45%, rgba(26, 0, 0, 0.92) 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 420px at 18% 78%, rgba(134, 5, 5, 0.5), transparent 70%),
    radial-gradient(circle 380px at 84% 22%, rgba(212, 175, 112, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; padding: 8rem 0 6rem; }

.hero-kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.2rem, 9vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}
.hero-title span {
  display: block;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-soft);
}

.hero-verse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 34ch;
  margin: 2.2rem auto 0.4rem;
}

.hero-ref {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

.hero-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

/* ── Sections génériques ─────────────────────────────────────── */
.section { padding: 6.5rem 0; }
.section-alt { background: var(--surface); }

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
}
.section-kicker.light { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  max-width: 22ch;
}
.section-title.light { color: #fff; }

.section-lead {
  max-width: 62ch;
  margin-top: 1.3rem;
  font-size: 1.06rem;
  color: var(--ink-soft);
}

/* ── Cartes (à propos / application) ─────────────────────────── */
.cards-grid, .features-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 3.2rem;
}
.cards-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card, .feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover, .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(134, 5, 5, 0.13);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(134, 5, 5, 0.09), rgba(212, 175, 112, 0.18));
  color: var(--primary);
  margin-bottom: 1.3rem;
}
.card-icon svg { width: 25px; height: 25px; }

.card h3, .feature h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card p, .feature p { color: var(--ink-soft); font-size: 0.95rem; }

/* ── Cultes ──────────────────────────────────────────────────── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 3.2rem;
}

.schedule-card {
  position: relative;
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  color: #fff;
  background: linear-gradient(150deg, var(--primary-dark), var(--near-black));
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(107, 4, 4, 0.3);
}
.schedule-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 112, 0.22), transparent 70%);
}

.schedule-day {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.schedule-time {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0.5rem 0 0.4rem;
}

.schedule-label { color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; }

/* ── Adresse & carte ─────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  margin-top: 1.4rem;
  align-items: stretch;
}

.location-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.location-address {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.location-hint {
  margin: 0.8rem 0 1.8rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.location-card .btn { margin-top: auto; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 340px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

/* ── Le Message ──────────────────────────────────────────────── */
.message-section {
  color: #fff;
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(212, 175, 112, 0.12), transparent 55%),
    linear-gradient(150deg, #2a0101 0%, var(--near-black) 100%);
}

.message-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.message-lead {
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  max-width: 56ch;
}

.message-points {
  list-style: none;
  margin: 1.8rem 0 2.4rem;
  display: grid;
  gap: 0.85rem;
}
.message-points li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}
.message-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.message-points strong { color: var(--gold-soft); font-weight: 600; }

.message-quote {
  border-left: 3px solid var(--gold);
  padding: 1.4rem 0 1.4rem 2rem;
}
.message-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.45;
  color: var(--gold-soft);
}
.message-quote figcaption {
  margin-top: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Badges stores ───────────────────────────────────────────── */
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  background: var(--near-black);
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(26, 0, 0, 0.25);
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26, 0, 0, 0.35); }
.store-badge svg { width: 28px; height: 28px; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.25; font-weight: 600; font-size: 1.02rem; }
.store-badge small { font-size: 0.68rem; font-weight: 400; opacity: 0.75; letter-spacing: 0.04em; }

.store-badge-web {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-section {
  color: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 110%, rgba(212, 175, 112, 0.16), transparent 60%),
    linear-gradient(160deg, var(--primary-dark), var(--near-black));
}
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact-section .section-title { max-width: 26ch; }
.contact-lead {
  margin: 1.3rem auto 2.4rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.6rem 0 2.4rem;
  border-top: 1px solid rgba(212, 175, 112, 0.18);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; text-align: center; }
.footer-logo { height: 64px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-verse { font-family: var(--font-display); font-style: italic; color: var(--gold-soft); font-size: 1rem; }
.footer-copy { font-size: 0.8rem; opacity: 0.6; }

/* ── En-tête des pages intérieures ───────────────────────────── */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% -20%, rgba(212, 175, 112, 0.16), transparent 60%),
    linear-gradient(165deg, var(--primary-dark) 0%, #3d0202 55%, var(--near-black) 100%);
}
.page-hero .section-kicker { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
}
.page-hero-lead {
  max-width: 58ch;
  margin: 1.4rem auto 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
}
.page-hero .hero-actions { margin-top: 2.2rem; }

/* ── Bandeau « culte en direct » (accueil + visite) ──────────── */
.live-strip {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding: 1.6rem 2rem;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 40px rgba(107, 4, 4, 0.28);
}
.live-strip-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.live-strip-icon svg { width: 24px; height: 24px; }
.live-strip-text { flex: 1 1 280px; }
.live-strip-text strong { display: block; font-size: 1.08rem; margin-bottom: 0.15rem; }
.live-strip-text span { color: rgba(255, 255, 255, 0.82); font-size: 0.93rem; }
.live-strip .btn { flex-shrink: 0; }

/* ── Liste « à quoi s'attendre » ─────────────────────────────── */
.expect-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.expect-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
}
.expect-item .card-icon { width: 46px; height: 46px; margin: 0; flex-shrink: 0; }
.expect-item p { font-weight: 600; font-size: 0.98rem; color: var(--ink); }

/* ── FAQ (accordéons natifs) ─────────────────────────────────── */
.faq-list {
  margin-top: 3rem;
  display: grid;
  gap: 0.9rem;
  max-width: 780px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.6rem 1.4rem; color: var(--ink-soft); font-size: 0.96rem; }

/* ── Dons ────────────────────────────────────────────────────── */
.don-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.don-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.don-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(134, 5, 5, 0.13); }
.don-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.4rem; }
.don-card p { color: var(--ink-soft); font-size: 0.93rem; margin-bottom: 1.6rem; }
.don-card .btn { margin-top: auto; align-self: flex-start; padding: 0.75rem 1.7rem; font-size: 0.9rem; }

.bank-box {
  margin-top: 2.4rem;
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.6rem;
}
.bank-row + .bank-row { border-top: 1px solid var(--line); }
.bank-row dt { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.bank-row dd { font-weight: 600; font-size: 0.98rem; color: var(--ink); text-align: right; }
.bank-value { display: flex; align-items: center; gap: 0.7rem; }
.copy-btn {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 8px;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.copy-btn:hover, .copy-btn:focus-visible { background: var(--primary); color: #fff; }

.verse-band {
  margin-top: 3.4rem;
  padding: 2.4rem 2.2rem;
  border-radius: var(--radius);
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(212, 175, 112, 0.14), transparent 60%),
    linear-gradient(150deg, #2a0101, var(--near-black));
}
.verse-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--gold-soft);
  max-width: 46ch;
  margin: 0 auto;
}
.verse-band figcaption {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
}
.contact-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.3rem; }
.contact-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }
.contact-card .btn { margin-top: auto; padding: 0.75rem 1.7rem; font-size: 0.9rem; }

.map-wide {
  margin-top: 2.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-wide iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ── Bande CTA sombre en pied de page intérieure ─────────────── */
.cta-band {
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 110%, rgba(212, 175, 112, 0.16), transparent 60%),
    linear-gradient(160deg, var(--primary-dark), var(--near-black));
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.cta-band p { margin: 1rem auto 2rem; max-width: 52ch; color: rgba(255, 255, 255, 0.82); }

/* ── Étapes (culte en ligne) ─────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
}
.step h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin: 1rem 0 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.94rem; }

/* ── Formulaire de contact ───────────────────────────────────── */
.contact-form {
  margin-top: 3rem;
  max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem 2.2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.form-field label .req { color: var(--primary); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(134, 5, 5, 0.12);
}
.contact-form .btn { margin-top: 1.6rem; border: none; cursor: pointer; font-family: var(--font-body); }
.form-note { margin-top: 1rem; font-size: 0.8rem; color: var(--ink-soft); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  display: none;
  margin-top: 2rem;
  max-width: 720px;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
}
.form-status.visible { display: block; }
.form-status.success { background: #E7F5EA; border: 1px solid #1B5E20; color: #1B5E20; }
.form-status.error { background: #FDECEA; border: 1px solid var(--primary); color: var(--primary); }

/* ── Widgets HelloAsso (page dons) ───────────────────────────── */
.don-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 3rem;
}
.don-tab {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s ease;
}
.don-tab:hover { border-color: var(--primary); color: var(--primary); }
.don-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(134, 5, 5, 0.3);
}
.don-tab-desc { margin-top: 1.2rem; color: var(--ink-soft); font-size: 0.95rem; }
.don-widget {
  margin-top: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.don-widget iframe { width: 100%; border: none; display: block; }
.don-fallback { margin-top: 1rem; font-size: 0.85rem; color: var(--ink-soft); }
.don-fallback a { color: var(--primary); font-weight: 600; }

/* ── Page politique de confidentialité ───────────────────────── */
.legal-content { max-width: 780px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.6rem 0 0.8rem;
}
.legal-content h3 { font-size: 1.02rem; font-weight: 600; color: var(--ink); margin: 1.4rem 0 0.5rem; }
.legal-content p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.legal-content ul { padding-left: 1.4rem; color: var(--ink-soft); margin-bottom: 0.9rem; display: grid; gap: 0.35rem; }
.legal-content strong { color: var(--ink); }
.legal-highlight {
  background: rgba(212, 175, 112, 0.14);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.6rem 0;
  color: var(--ink);
}
.legal-date { font-style: italic; color: var(--ink-soft); font-size: 0.92rem; }

.footer-contact { font-size: 0.88rem; color: rgba(255, 255, 255, 0.75); }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }

/* ── Animations d'apparition ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .message-inner { grid-template-columns: 1fr; gap: 3rem; }
  .location-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 82vw);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: linear-gradient(165deg, var(--primary-dark), var(--near-black));
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { position: relative; z-index: 110; }

  .section { padding: 4.5rem 0; }
  .hero-inner { padding: 7rem 0 5rem; }
}
