/* =========================================================================
   IMPACT Bαitω — Centre d'Évangélisation Béthanie
   Design system : éditorial, sobre, hairlines plutôt que cartes/ombres.
   Palette dérivée du blason (voir ci-dessous).
   ========================================================================= */

:root{
  /* --- Couleurs (échantillonnées depuis le logo) --- */
  --ink:        #15130F;   /* encre, quasi-noir chaud */
  --ink-soft:   #2A271F;
  --paper:      #FBFAF7;   /* fond ivoire */
  --paper-alt:  #F3F0E7;   /* fond section alterné */
  --paper-dark: #12100C;   /* footer / sections sombres */
  --line:       #E7E2D3;   /* filet fin sur fond clair */
  --line-dark:  rgba(255,255,255,.12);
  --muted:      #6E6A5E;   /* texte secondaire */
  --muted-inv:  #B9B4A6;   /* texte secondaire sur fond sombre */
  --gold-bright:#FFCD00;   /* or vif du blason — accents, fonds sombres */
  --gold:       #A9820A;   /* or profond — texte/liens sur fond clair */
  --gold-deep:  #7A5F08;   /* survol / actif */

  /* --- Typo --- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Rythme --- */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 2px; /* volontairement quasi carré : sobriété */
}

:root{
  --header-h: 84px; /* recalculé en JS (nav-row + barre du haut si visible) */
}

/* ---------- Reset minimal ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:600; line-height:1.15; margin:0; letter-spacing:-.01em; }
p{ margin:0; }
button{ font:inherit; background:none; border:0; cursor:pointer; color:inherit; }
input, textarea{ font:inherit; }

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

.container{
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:var(--gutter);
}

/* ---------- Typo utilitaires ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family:var(--font-body);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--gold);
  display:inline-block;
}
.on-dark .eyebrow{ color:var(--gold-bright); }
.on-dark .eyebrow::before{ background:var(--gold-bright); }

.section-head{
  max-width:640px;
  margin-bottom:clamp(2.5rem, 6vw, 4.5rem);
}
.section-head h2{
  font-size:clamp(1.9rem, 3.4vw, 2.75rem);
  margin-top:.9rem;
}
.section-head p{
  margin-top:1rem;
  color:var(--muted);
  font-size:1.05rem;
}
.on-dark .section-head p{ color:var(--muted-inv); }

/* ---------- Boutons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.85rem 1.6rem;
  font-size:.92rem;
  font-weight:600;
  letter-spacing:.01em;
  border:1px solid transparent;
  transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--ink);
  color:var(--paper);
}
.btn-primary:hover{ background:var(--gold-deep); transform:translateY(-1px); }
.btn-ghost{
  border-color:var(--line);
  color:var(--ink);
}
.btn-ghost:hover{ border-color:var(--ink); }
.on-dark .btn-ghost{ border-color:var(--line-dark); color:var(--paper); }
.on-dark .btn-ghost:hover{ border-color:var(--gold-bright); color:var(--gold-bright); }
.btn-gold{
  background:var(--gold-bright);
  color:var(--ink);
}
.btn-gold:hover{ background:#fff; }
.btn-text{
  font-size:.88rem;
  font-weight:600;
  border-bottom:1px solid currentColor;
  padding-bottom:2px;
  color:var(--ink);
}
.btn-text:hover{ color:var(--gold-deep); }

/* ============================= NAV ============================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background:linear-gradient(to bottom, rgba(15,13,10,.88), rgba(15,13,10,.55) 70%, rgba(15,13,10,0));
  border-bottom:1px solid transparent;
  transition:background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled,
.site-header.is-open{
  background:rgba(15,13,10,.96);
  backdrop-filter:blur(10px);
  border-bottom-color:var(--line-dark);
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* ---------- Barre du haut : réseaux + contact ---------- */
.top-bar{ display:none; border-bottom:1px solid rgba(255,255,255,.08); }
@media (min-width:1080px){
  .top-bar{ display:block; }
  .top-bar-row{
    display:flex; align-items:center; justify-content:space-between;
    height:38px;
    font-size:.78rem;
  }
  .top-bar-social{ display:flex; align-items:center; gap:.6rem; }
  .top-bar-social a{
    width:26px; height:26px;
    display:flex; align-items:center; justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:.78rem;
    transition:background .2s ease, transform .2s ease, color .2s ease;
  }
  .top-bar-social a:hover{ transform:translateY(-1px); }
  .top-bar-social .social-facebook:hover{ background:#1877F2; }
  .top-bar-social .social-instagram:hover{ background:radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
  .top-bar-social .social-youtube:hover{ background:#FF0000; }
  .top-bar-social .social-whatsapp:hover{ background:#25D366; }
  .top-bar-contact{ display:flex; align-items:center; gap:1.6rem; }
  .top-bar-contact a{ color:var(--muted-inv); display:inline-flex; align-items:center; gap:.5rem; }
  .top-bar-contact a:hover{ color:var(--gold-bright); }
  .top-bar-contact i{ color:var(--gold-bright); font-size:.85rem; }
}

.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  height:84px;
}
.brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  min-width:0;
}
.brand img{ height:42px; width:auto; flex-shrink:0; }
.brand-word{
  font-family:var(--font-display);
  font-size:1.28rem;
  font-weight:600;
  letter-spacing:-.01em;
  color:#fff;
  white-space:nowrap;
}
.brand-word .glyph{ color:var(--gold-bright); font-style:italic; }

.main-nav{ display:none; }
@media (min-width: 1240px){
  .main-nav{
    display:flex;
    align-items:center;
    gap:1.75rem;
    flex-wrap:nowrap;
  }
  .main-nav > li{ position:relative; }
  .main-nav > li > a{
    display:flex;
    align-items:center;
    gap:.35rem;
    font-size:.86rem;
    font-weight:600;
    padding:.4rem 0;
    position:relative;
    color:#fff;
    white-space:nowrap;
  }
  .main-nav > li > a::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:-2px;
    height:1px;
    background:var(--gold-bright);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .25s ease;
  }
  .main-nav > li > a:hover{ color:var(--gold-bright); }
  .main-nav > li > a:hover::after,
  .main-nav > li.is-open > a::after{ transform:scaleX(1); }
  .caret{ font-size:.6rem; opacity:.7; transition:transform .25s ease; }
  .main-nav > li.is-open .caret{ transform:rotate(180deg); }

  .sub-nav{
    position:absolute;
    top:100%; left:-1.1rem;
    margin-top:.85rem;
    min-width:230px;
    background:var(--paper-dark);
    border:1px solid var(--line-dark);
    box-shadow:0 24px 48px rgba(0,0,0,.4);
    padding:.6rem;
    opacity:0;
    visibility:hidden;
    transform:translateY(6px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .main-nav > li:hover .sub-nav,
  .main-nav > li.is-open .sub-nav{
    opacity:1; visibility:visible; transform:translateY(0);
  }
  .sub-nav a{
    display:block;
    padding:.6rem .8rem;
    font-size:.86rem;
    font-weight:500;
    color:var(--muted-inv);
  }
  .sub-nav a:hover{ background:rgba(255,255,255,.05); color:var(--gold-bright); }
}

.nav-right{
  display:flex;
  align-items:center;
  gap:1rem;
}

.icon-btn{
  width:38px; height:38px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--line-dark);
  color:#fff;
  transition:border-color .2s ease, color .2s ease;
}
.icon-btn:hover{ border-color:var(--gold-bright); color:var(--gold-bright); }

.nav-toggle{
  display:inline-flex;
  width:38px; height:38px;
  align-items:center; justify-content:center;
  border:1px solid var(--line-dark);
  flex-shrink:0;
}
@media (min-width:1240px){ .nav-toggle{ display:none; } }
.nav-toggle .bars{ position:relative; width:16px; height:11px; }
.nav-toggle .bars span{
  position:absolute; left:0; right:0; height:1px; background:#fff;
  transition:transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle .bars span:nth-child(1){ top:0; }
.nav-toggle .bars span:nth-child(2){ top:5px; }
.nav-toggle .bars span:nth-child(3){ top:10px; }
.site-header.is-open .nav-toggle .bars span:nth-child(1){ top:5px; transform:rotate(45deg); }
.site-header.is-open .nav-toggle .bars span:nth-child(2){ opacity:0; }
.site-header.is-open .nav-toggle .bars span:nth-child(3){ top:5px; transform:rotate(-45deg); }

/* ---------- Menu mobile ---------- */
.mobile-nav{
  display:none;
  position:fixed;
  inset:var(--header-h) 0 0 0;
  background:var(--paper-dark);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  padding:1.5rem var(--gutter) 3rem;
  z-index:999;
}
.site-header.is-open .mobile-nav{ display:block; }
@media (min-width:1240px){ .mobile-nav{ display:none !important; } }
.mobile-nav > ul > li{ border-bottom:1px solid var(--line-dark); }
.mobile-nav > ul > li > a,
.mobile-nav .mobile-parent{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.05rem 0;
  font-family:var(--font-display);
  font-size:1.2rem;
  font-weight:600;
  color:#fff;
  width:100%;
  text-align:left;
}
.mobile-sub{ display:none; padding:0 0 1rem 1rem; }
.mobile-sub.is-open{ display:block; }
.mobile-sub li a{ display:block; padding:.6rem 0; color:var(--muted-inv); font-size:.98rem; }
.mobile-social{
  display:flex; gap:.7rem;
  margin-top:1.8rem;
}
.mobile-social a{
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.06);
  color:#fff;
  border:1px solid var(--line-dark);
}
.mobile-social .social-facebook:active,.mobile-social .social-facebook:hover{ background:#1877F2; border-color:#1877F2; }
.mobile-social .social-instagram:active,.mobile-social .social-instagram:hover{ background:#d6249f; border-color:#d6249f; }
.mobile-social .social-youtube:active,.mobile-social .social-youtube:hover{ background:#FF0000; border-color:#FF0000; }
.mobile-social .social-whatsapp:active,.mobile-social .social-whatsapp:hover{ background:#25D366; border-color:#25D366; }
.mobile-nav .mobile-actions{ margin-top:1.6rem; display:flex; flex-direction:column; gap:.9rem; }
.mobile-nav .mobile-actions .btn{ justify-content:center; }
.mobile-nav .mobile-actions .btn-ghost{ border-color:var(--line-dark); color:#fff; }

/* ============================= HERO ============================= */
.hero{
  position:relative;
  padding:calc(var(--header-h) + clamp(2.5rem,7vw,5.5rem)) 0 clamp(3rem,7vw,5rem);
  background:var(--paper);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:3rem;
  align-items:center;
}
@media (min-width:960px){
  .hero-grid{ grid-template-columns:1.05fr .95fr; gap:4rem; }
}
.hero-glyph{
  position:absolute;
  top:-4vw; right:-2vw;
  font-family:var(--font-display);
  font-style:italic;
  font-weight:500;
  font-size:min(46vw, 34rem);
  line-height:1;
  color:var(--ink);
  opacity:.035;
  user-select:none;
  pointer-events:none;
  z-index:0;
}
.hero-copy{ position:relative; z-index:1; }
.hero-copy h1{
  margin-top:1.1rem;
  font-size:clamp(2.8rem, 7vw, 5rem);
}
.hero-copy h1 .glyph{ color:var(--gold); font-style:italic; }
.hero-copy .lede{
  margin-top:1.4rem;
  max-width:34rem;
  font-size:1.12rem;
  color:var(--muted);
}
.hero-actions{
  margin-top:2.3rem;
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
}
.hero-meta{
  margin-top:3rem;
  display:flex;
  gap:2.2rem;
  flex-wrap:wrap;
  padding-top:1.6rem;
  border-top:1px solid var(--line);
  max-width:34rem;
}
.hero-meta div strong{ display:block; font-family:var(--font-display); font-size:1.15rem; }
.hero-meta div span{ font-size:.78rem; color:var(--muted); }

.hero-visual{
  position:relative;
  z-index:1;
  aspect-ratio:4/5;
  background:var(--paper-alt);
  border:1px solid var(--line);
  overflow:hidden;
}
.hero-visual::before{
  content:"";
  position:absolute; inset:14px;
  border:1px solid rgba(251,250,247,.35);
  z-index:3;
  pointer-events:none;
}
.hero-visual figcaption{
  position:absolute;
  left:1.5rem; bottom:1.3rem;
  z-index:3;
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
}

/* ---------- Slider (hero) ---------- */
.hero-slides{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0;
  background-position:center;
  background-size:cover;
  opacity:0;
  transition:opacity 1.1s ease;
}
.hero-slide.is-active{ opacity:1; z-index:1; }
.hero-slide::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(15,13,10,.78) 0%, rgba(15,13,10,.15) 55%, rgba(15,13,10,.35) 100%);
}
.hero-visual .slide-caption{
  position:absolute; left:1.5rem; right:1.5rem; bottom:1.3rem;
  z-index:3; color:#fff;
}
.hero-visual .slide-caption .eyebrow{ color:var(--gold-bright); }
.hero-visual .slide-caption p{ margin-top:.4rem; font-family:var(--font-display); font-size:1.15rem; max-width:22rem; }
.hero-dots{
  position:absolute; right:1.4rem; top:1.3rem; z-index:3;
  display:flex; flex-direction:column; gap:.55rem;
}
.hero-dots button{
  width:6px; height:6px; border-radius:50%;
  background:rgba(255,255,255,.4);
  transition:background .2s ease, transform .2s ease;
}
.hero-dots button.is-active{ background:var(--gold-bright); transform:scale(1.4); }

/* ============================= BANNIÈRE DE PAGE (pages intérieures) ============================= */
.page-banner{
  position:relative;
  margin-top:0;
  padding-top:var(--header-h);
  min-height:clamp(20rem, 42vh, 30rem);
  display:flex;
  align-items:flex-end;
  background:var(--ink) center/cover no-repeat;
  overflow:hidden;
}
.page-banner::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(15,13,10,.85) 0%, rgba(15,13,10,.25) 60%, rgba(15,13,10,.45) 100%);
}
.page-banner-glyph{
  position:absolute;
  top:-8vw; right:-2vw;
  font-family:var(--font-display);
  font-style:italic;
  font-size:min(30vw, 22rem);
  color:#fff;
  opacity:.05;
  pointer-events:none;
}
.page-banner-inner{
  position:relative; z-index:1;
  padding-bottom:clamp(2.5rem, 6vw, 4rem);
  color:#fff;
}
.page-banner-inner h1{
  margin-top:.9rem;
  font-size:clamp(2.1rem, 4.6vw, 3.4rem);
  max-width:38rem;
}
.page-banner-inner p{
  margin-top:1rem;
  max-width:34rem;
  color:var(--muted-inv);
  font-size:1.02rem;
}
.breadcrumb{
  position:relative; z-index:1;
  display:flex; gap:.5rem; align-items:center;
  font-size:.78rem; color:var(--muted-inv);
  margin-bottom:.4rem;
}
.breadcrumb a:hover{ color:var(--gold-bright); }

/* ============================= CROYANCES (3 col) ============================= */
.pillars{ padding:var(--section-y) 0; background:var(--paper); }
.pillars-grid{
  display:grid;
  grid-template-columns:1fr;
  border-top:1px solid var(--line);
}
@media (min-width:800px){
  .pillars-grid{ grid-template-columns:repeat(3,1fr); }
}
.pillar{
  padding:2.4rem 1.8rem 2.4rem 0;
  border-bottom:1px solid var(--line);
}
@media (min-width:800px){
  .pillar{ border-right:1px solid var(--line); padding:2.8rem 2.2rem; }
  .pillar:last-child{ border-right:0; }
}
.pillar .num{
  font-family:var(--font-display);
  font-style:italic;
  color:var(--gold);
  font-size:.95rem;
}
.pillar h3{
  margin-top:.9rem;
  font-size:1.35rem;
}
.pillar p{
  margin-top:.85rem;
  color:var(--muted);
  font-size:.98rem;
}

/* Variante sombre (pour casser les longues suites de sections claires) */
.pillars--dark{ background:var(--ink); }
.pillars--dark .pillars-grid{ border-top-color:var(--line-dark); }
.pillars--dark .pillar{ border-bottom-color:var(--line-dark); }
.pillars--dark .pillar{ border-right-color:var(--line-dark); }
.pillars--dark .pillar h3{ color:#fff; }
.pillars--dark .pillar p{ color:var(--muted-inv); }
.pillars--dark .pillar .num{ color:var(--gold-bright); }

/* ============================= STATS STRIP ============================= */
.stats{
  background:var(--ink);
  color:var(--paper);
  padding:clamp(3rem,6vw,4.5rem) 0;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
}
@media (min-width:760px){ .stats-grid{ grid-template-columns:repeat(4,1fr); } }
.stat{
  padding:1.4rem 1.6rem;
  border-top:1px solid var(--line-dark);
}
@media (min-width:760px){
  .stat{ border-top:0; border-left:1px solid var(--line-dark); }
  .stat:first-child{ border-left:0; }
}
.stat .n{
  font-family:var(--font-display);
  font-size:clamp(2.1rem,4vw,3rem);
  color:var(--gold-bright);
}
.stat .l{ margin-top:.4rem; font-size:.82rem; color:var(--muted-inv); }

/* ============================= WELCOME / VISION-MANDAT-MISSION ============================= */
.welcome{ padding:var(--section-y) 0; background:var(--paper); }
.welcome-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:3.5rem;
}
@media (min-width:960px){
  .welcome-grid{ grid-template-columns:.85fr 1.15fr; gap:5rem; align-items:start; }
}
.welcome-visual{
  aspect-ratio:3/4;
  background:var(--paper-alt) center/cover no-repeat;
  border:1px solid var(--line);
}
.welcome-blocks{ margin-top:2.2rem; }
.welcome-block{
  padding:1.6rem 0;
  border-top:1px solid var(--line);
}
.welcome-block:last-of-type{ border-bottom:1px solid var(--line); }
.welcome-block h4{
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold);
}
.welcome-block p{
  margin-top:.7rem;
  color:var(--ink-soft);
  font-size:1.02rem;
  max-width:38rem;
}
.welcome-actions{ margin-top:2rem; display:flex; gap:1rem; flex-wrap:wrap; }

/* ============================= ÉVÉNEMENTS ============================= */
.events{ padding:var(--section-y) 0; background:var(--paper-alt); }
.section-head-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:2rem;
  flex-wrap:wrap;
}
.events-grid{
  margin-top:1rem;
  display:grid;
  grid-template-columns:1fr;
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
@media (min-width:760px){ .events-grid{ grid-template-columns:repeat(3,1fr); } }
.events-grid--2{ grid-template-columns:1fr; }
@media (min-width:640px){ .events-grid--2{ grid-template-columns:repeat(2,1fr); } }
.event-card{
  background:var(--paper);
  display:flex;
  flex-direction:column;
}
.event-media{
  aspect-ratio:16/11;
  background:var(--paper-alt) center/cover no-repeat;
  position:relative;
}
.event-media .tag{
  position:absolute;
  left:0; bottom:0;
  background:var(--ink);
  color:var(--paper);
  font-size:.7rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:.45rem .75rem;
}
.event-body{ padding:1.6rem; flex:1; display:flex; flex-direction:column; }
.event-body h3{ font-size:1.15rem; }
.event-body p{ margin-top:.7rem; color:var(--muted); font-size:.92rem; flex:1; }
.event-body .btn-text{ margin-top:1.2rem; align-self:flex-start; }

/* ============================= TÉMOIGNAGE ============================= */
.quote-section{
  padding:var(--section-y) 0;
  background:var(--ink);
  color:var(--paper);
  position:relative;
  overflow:hidden;
}
.quote-mark{
  font-family:var(--font-display);
  font-size:8rem;
  color:var(--gold-bright);
  opacity:.5;
  line-height:1;
  margin-bottom:-1.4rem;
}
.quote-wrap{ max-width:760px; margin-inline:auto; text-align:center; position:relative; z-index:1; }
.quote-track{ position:relative; min-height:9.5rem; }
blockquote.quote{
  font-family:var(--font-display);
  font-size:clamp(1.4rem,3vw,2.05rem);
  font-weight:500;
  line-height:1.45;
  margin:0;
  position:absolute; inset:0;
  opacity:0;
  transition:opacity .6s ease;
}
blockquote.quote.is-active{ position:relative; opacity:1; }
.quote-author{
  margin-top:1.6rem;
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted-inv);
}
.quote-dots{ margin-top:2rem; display:flex; justify-content:center; gap:.6rem; }
.quote-dots button{
  width:7px; height:7px; border-radius:50%;
  background:var(--line-dark);
  transition:background .2s ease, transform .2s ease;
}
.quote-dots button.is-active{ background:var(--gold-bright); transform:scale(1.3); }

/* ============================= CARTE / CONTACT ============================= */
.locate{ padding:var(--section-y) 0; background:var(--paper); }
.locate-grid{
  display:grid;
  grid-template-columns:1fr;
  border:1px solid var(--line);
}
@media (min-width:900px){ .locate-grid{ grid-template-columns:1.1fr 1fr; } }
.locate-map{ aspect-ratio:4/3; }
.locate-map iframe{ width:100%; height:100%; border:0; filter:grayscale(85%) contrast(1.05); }
.locate-info{
  padding:clamp(2rem,4vw,3.2rem);
  display:flex; flex-direction:column; justify-content:center;
  border-top:1px solid var(--line);
}
@media (min-width:900px){ .locate-info{ border-top:0; border-left:1px solid var(--line); } }
.locate-info h3{ font-size:1.6rem; }
.locate-list{ margin-top:1.6rem; display:flex; flex-direction:column; gap:1.1rem; }
.locate-list li{ font-size:.98rem; }
.locate-list span{ display:block; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-bottom:.25rem; }
.locate-info .btn{ margin-top:1.8rem; align-self:flex-start; }

/* ============================= BANDEAU CTA ============================= */
.cta-band{
  background:var(--gold-bright);
  padding:clamp(2.6rem,5vw,3.6rem) 0;
}
.cta-row{
  display:flex; flex-wrap:wrap; gap:1.6rem;
  align-items:center; justify-content:space-between;
}
.cta-row h3{ font-size:clamp(1.4rem,2.6vw,2rem); max-width:32rem; }
.cta-row .btn-primary{ background:var(--ink); }
.cta-row .btn-primary:hover{ background:#000; }

/* ============================= FOOTER ============================= */
.site-footer{
  background:var(--paper-dark);
  color:var(--muted-inv);
  padding-top:var(--section-y);
  position:relative;
  overflow:hidden;
}
.footer-glyph{
  position:absolute;
  right:-3vw; bottom:-6vw;
  font-family:var(--font-display);
  font-style:italic;
  font-size:min(38vw,26rem);
  color:var(--paper);
  opacity:.03;
  pointer-events:none;
}
.footer-grid{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:1fr;
  gap:3rem;
  padding-bottom:3.5rem;
  border-bottom:1px solid var(--line-dark);
}
@media (min-width:860px){ .footer-grid{ grid-template-columns:1.3fr .8fr .8fr 1fr; gap:2.5rem; } }
.footer-brand img{ height:44px; margin-bottom:1.1rem; }
.footer-brand p{ font-size:.9rem; line-height:1.7; max-width:22rem; }
.footer-col h4{
  color:var(--paper);
  font-size:.75rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:1.3rem;
}
.footer-col ul{ display:flex; flex-direction:column; gap:.85rem; }
.footer-col a, .footer-col li{ font-size:.9rem; }
.footer-col a:hover{ color:var(--gold-bright); }
.footer-social{ display:flex; gap:.9rem; margin-top:1.4rem; }
.footer-social a{
  width:36px; height:36px;
  border:1px solid var(--line-dark);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .2s ease, color .2s ease;
}
.footer-social a:hover{ border-color:var(--gold-bright); color:var(--gold-bright); }
.footer-bottom{
  position:relative; z-index:1;
  padding:1.6rem 0 2.2rem;
  display:flex; flex-wrap:wrap; gap:1rem;
  align-items:center; justify-content:space-between;
  font-size:.8rem;
  color:var(--muted-inv);
}
.footer-bottom a:hover{ color:var(--gold-bright); }

/* ============================= PAGE TV (média) ============================= */
.tv-hero{
  background:var(--ink);
  padding:clamp(3rem,6vw,5rem) 0;
}
.tv-hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2.5rem;
}
@media (min-width:960px){ .tv-hero-grid{ grid-template-columns:1.5fr 1fr; align-items:center; } }
.tv-player{
  position:relative;
  aspect-ratio:16/9;
  background:#000;
  border:1px solid var(--line-dark);
}
.tv-player iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.tv-live-tag{
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--gold-bright);
}
.tv-live-tag::before{
  content:""; width:7px; height:7px; border-radius:50%; background:var(--gold-bright);
}
.tv-hero-copy h2{ color:#fff; margin-top:.7rem; font-size:clamp(1.6rem,3vw,2.2rem); }
.tv-hero-copy p{ margin-top:.9rem; color:var(--muted-inv); }

.video-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
@media (min-width:640px){ .video-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:960px){ .video-grid{ grid-template-columns:repeat(4,1fr); } }
.video-card{ background:var(--paper); }
.video-thumb{
  position:relative;
  aspect-ratio:4/3;
  background:var(--paper-alt) center/cover no-repeat;
}
.video-thumb::after{ content:""; position:absolute; inset:0; background:rgba(21,19,15,.28); }
.video-play{
  position:absolute; inset:0; z-index:1;
  display:flex; align-items:center; justify-content:center;
}
.video-play span{
  width:46px; height:46px; border-radius:50%;
  background:rgba(251,250,247,.92);
  display:flex; align-items:center; justify-content:center;
  transition:transform .2s ease, background .2s ease;
}
.video-play span::before{
  content:""; border-style:solid; border-width:7px 0 7px 11px;
  border-color:transparent transparent transparent var(--ink);
  margin-left:3px;
}
.video-card:hover .video-play span{ transform:scale(1.08); background:var(--gold-bright); }
.video-body{ padding:1.1rem 1.2rem 1.3rem; }
.video-body .tag{ font-size:.7rem; letter-spacing:.06em; text-transform:uppercase; color:var(--gold); font-weight:700; }
.video-body h4{ margin-top:.4rem; font-size:1rem; }

/* ============================= WIDGET ASSISTANCE ============================= */
.assist-btn{
  position:fixed;
  right:1.4rem; bottom:1.4rem;
  z-index:1200;
  width:56px; height:56px;
  background:var(--ink);
  color:var(--gold-bright);
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--ink);
  box-shadow:0 12px 28px rgba(21,19,15,.28);
  transition:transform .2s ease;
}
.assist-btn:hover{ transform:translateY(-2px); }
.assist-panel{
  position:fixed;
  right:1.4rem; bottom:5.4rem;
  z-index:1200;
  width:min(340px, calc(100vw - 2.8rem));
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:0 30px 60px rgba(21,19,15,.22);
  display:none;
  flex-direction:column;
}
.assist-panel.is-open{ display:flex; }
.assist-head{
  padding:1.1rem 1.3rem;
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
}
.assist-head p{ font-weight:700; font-size:.9rem; }
.assist-head button{ font-size:1rem; color:var(--muted); }
.assist-body{ padding:1.1rem 1.3rem 1.4rem; }
.assist-body > p{ font-size:.86rem; color:var(--muted); margin-bottom:1rem; }
.assist-form{ display:flex; flex-direction:column; gap:.7rem; }
.assist-form input, .assist-form textarea{
  border:1px solid var(--line);
  padding:.7rem .8rem;
  font-size:.88rem;
  background:var(--paper);
  color:var(--ink);
}
.assist-form textarea{ resize:none; height:5.5rem; }
.assist-form input:focus, .assist-form textarea:focus{ outline:none; border-color:var(--gold); }
.assist-status{ font-size:.78rem; color:var(--muted); min-height:1em; }

/* ============================= UTILITAIRES ============================= */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* ============================= PAGE "BIENTÔT" (stubs) ============================= */
.soon{
  padding:calc(var(--header-h) + 6rem) 0 8rem;
  min-height:70vh;
}
.soon h1{ font-size:clamp(2.2rem,5vw,3.4rem); margin-top:1rem; max-width:36rem; }
.soon p.lede{ margin-top:1.2rem; max-width:34rem; color:var(--muted); font-size:1.05rem; }
.soon .btn{ margin-top:2.2rem; }
/* ============================= PAGE LIVE (culte en direct) ============================= */
.live-hero{ background:var(--ink); padding:clamp(3rem,6vw,5rem) 0; }
.live-status{
  display:inline-flex; align-items:center; gap:.55rem;
  font-size:.75rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:.4rem .8rem;
  border:1px solid var(--line-dark);
}
.live-status.is-live{ color:var(--gold-bright); border-color:var(--gold-bright); }
.live-status.is-live .dot{
  width:7px; height:7px; border-radius:50%; background:var(--gold-bright);
  animation:live-pulse 1.6s ease-in-out infinite;
}
.live-status.is-off{ color:var(--muted-inv); }
.live-status.is-off .dot{ width:7px; height:7px; border-radius:50%; background:var(--muted-inv); }
@keyframes live-pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.25; } }
@media (prefers-reduced-motion: reduce){ .live-status .dot{ animation:none; } }

.live-player-wrap{ margin-top:1.6rem; }
.live-player{
  position:relative;
  aspect-ratio:16/9;
  background:#000;
  border:1px solid var(--line-dark);
}
.live-player iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

.watch-elsewhere{ margin-top:2rem; display:flex; flex-wrap:wrap; gap:.9rem; }
.watch-btn{
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.75rem 1.3rem;
  border:1px solid var(--line-dark);
  color:#fff; font-size:.86rem; font-weight:600;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.watch-btn:hover{ transform:translateY(-1px); }
.watch-btn i{ font-size:1rem; }
.watch-btn.yt:hover{ background:#FF0000; border-color:#FF0000; }
.watch-btn.fb:hover{ background:#1877F2; border-color:#1877F2; }
.watch-btn.wa:hover{ background:#25D366; border-color:#25D366; }

/* ---------- Lecteur vidéo local, cliquer pour lire ---------- */
.video-embed{
  position:relative;
  aspect-ratio:16/9;
  background:#000 center/cover no-repeat;
  border:1px solid var(--line-dark);
  overflow:hidden;
}
.video-embed video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; background:#000; }
.video-embed-play{
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:center; justify-content:center;
  gap:.8rem;
  background:linear-gradient(to top, rgba(15,13,10,.55), rgba(15,13,10,.15) 60%);
  transition:opacity .25s ease, visibility .25s ease;
}
.video-embed-play span{
  width:64px; height:64px; border-radius:50%;
  background:var(--gold-bright);
  display:flex; align-items:center; justify-content:center;
  transition:transform .2s ease;
}
.video-embed-play span::before{
  content:""; border-style:solid; border-width:11px 0 11px 17px;
  border-color:transparent transparent transparent var(--ink);
  margin-left:5px;
}
.video-embed-play:hover span{ transform:scale(1.08); }
.video-embed.is-playing .video-embed-play{ opacity:0; visibility:hidden; pointer-events:none; }

.video-card .video-embed{ aspect-ratio:4/3; border:0; }
.video-card .video-embed-play span{ width:46px; height:46px; }
.video-card .video-embed-play span::before{ border-width:7px 0 7px 11px; }

