/* ============================================================= */
/*  MANÈGE EQUI'LIBRE EVIAN                                       */
/*  Palette officielle du site : framboise #E20156 · or #FFCB05  */
/*  brun-prune chaud · roses doux · Cormorant Garamond           */
/* ============================================================= */

:root {
  /* Palette officielle du site (thème Wix) */
  --magenta: #e20156;        /* framboise — couleur de marque (color_18) */
  --magenta-deep: #970139;   /* framboise foncé (color_19) */
  --magenta-ink: #4b001d;    /* lie-de-vin (color_20) */
  --magenta-tint: #fce7ef;   /* voile rose doux */
  --pink: #ec76a3;           /* rose (color_17) */
  --pink-light: #f5a4c3;     /* rose clair (color_16) */
  --navy: #3d2b2e;           /* brun-prune chaud — sections foncées & titres */
  --navy-deep: #2a1c20;
  --gold: #ffcb05;           /* jaune d'or (color_5) */
  --gold-deep: #e0af00;
  --cream: #fbf6ef;          /* blanc chaud */
  --cream-2: #f3e9dd;
  --ivory: #fffdfa;
  --alert: #ed1c24;          /* rouge (color_3) */
  --alert-deep: #c41219;
  --ink: #2a2420;
  --muted: #8a7d74;

  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --maxw: 1180px;
  --radius: 6px;
  --rule: rgba(75,0,29,.16);   /* filet lie-de-vin discret */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
sup { font-size: .6em; }

/* ---- Titres ---- */
.h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -.01em;
}
.h2 em { font-style: italic; color: var(--magenta); }
.h2--light { color: var(--ivory); }
.h2--light em { color: var(--gold); }
/* Intitulé éditorial : petit filet + libellé en capitales fines */
.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.1rem;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.kicker--magenta { color: var(--magenta); }
.kicker--gold { color: var(--gold-deep); }
.section-head .kicker { display: inline-flex; }
.section-head .kicker::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.2rem,5vw,3.4rem); }
.section-sub { margin-top: .9rem; color: var(--muted); }

/* ---- Boutons ---- */
.btn {
  display: inline-block; padding: .9rem 1.9rem; border-radius: var(--radius);
  font-weight: 600; font-size: .9rem; letter-spacing: .01em; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn--magenta { background: var(--magenta); color: #fff; }
.btn--magenta:hover { background: var(--magenta-deep); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn--outline { border: 1px solid rgba(255,255,255,.55); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn--outline-light { border: 1px solid var(--gold); color: var(--ivory); }
.btn--outline-light:hover { background: rgba(255,203,5,.14); transform: translateY(-2px); }

/* ============================================================= */
/*  BANNIÈRE D'URGENCE                                            */
/* ============================================================= */
.urgent {
  position: sticky; top: 0; z-index: 1000; height: 50px; overflow: hidden;
  background: var(--alert);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.urgent__track {
  display: flex; align-items: center; gap: 1.6rem; white-space: nowrap;
  color: #fff; font-weight: 600; letter-spacing: .03em; font-size: 1.12rem;
  padding-left: 100%; animation: marquee 30s linear infinite; position: relative; z-index: 1;
}
.urgent__track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================= */
/*  NAVIGATION                                                    */
/* ============================================================= */
.nav { position: sticky; top: 50px; z-index: 900; transition: background .4s var(--ease), box-shadow .4s, padding .4s; padding: .7rem 0; }
.nav.scrolled { background: rgba(255,253,249,.94); backdrop-filter: blur(14px); box-shadow: 0 8px 30px rgba(61,43,46,.12); }
.nav__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem,4vw,2.6rem); display: flex; align-items: center; justify-content: space-between; }
.nav__brandwrap { display: flex; flex-direction: row; align-items: center; gap: .7rem; margin-left: clamp(5.5rem, 12vw, 7.5rem); flex-shrink: 0; }
.nav__brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.nav__powered { position: absolute; top: 50%; left: 0; transform: translateY(-50%); white-space: nowrap; z-index: 3; }
.nav__brand img { height: 60px; width: auto; flex-shrink: 0; transition: height .4s var(--ease); filter: drop-shadow(0 4px 12px rgba(0,0,0,.15)); }
.nav.scrolled .nav__brand img { height: 48px; filter: none; }
.nav__powered { display: flex; flex-direction: column; align-items: flex-start; text-align: left; line-height: 1.1; transition: color .3s; }
.nav__powered span { font-size: .6rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #ec76a3; }
.nav__powered strong { font-size: .84rem; font-weight: 800; letter-spacing: .01em; color: #e20156; }
.nav__powered:hover strong { color: #ec76a3; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links a { font-weight: 700; font-size: .92rem; color: var(--navy); text-shadow: none; position: relative; transition: color .3s; }
.nav__links a:not(.nav__cta):hover { color: var(--magenta); }
.nav__links a:not(.nav__cta)::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--magenta); transition: width .3s var(--ease); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { background: var(--magenta); color:#fff !important; text-shadow:none !important; padding:.5rem 1.25rem; border-radius: var(--radius); transition: transform .3s, background .3s; }
.nav__cta:hover { transform: translateY(-2px); background: var(--magenta-deep); }
/* Sélecteur de langue */
.lang { display: flex; align-items: center; gap: 2px; margin-left: 1.1rem; padding: 3px; border-radius: 100px; background: rgba(226,1,86,.08); }
.lang__btn { border: 0; background: transparent; color: var(--navy); font-weight: 800; font-size: .72rem; letter-spacing: .04em; padding: .34rem .5rem; border-radius: 100px; cursor: pointer; transition: background .25s, color .25s; line-height: 1; }
.lang__btn:hover { background: rgba(226,1,86,.12); }
.lang__btn.is-active { background: var(--magenta); color: #fff !important; text-shadow: none; }

/* Support RTL (arabe) */
body.is-rtl { direction: rtl; }
body.is-rtl .nav__brandwrap { align-items: flex-end; }
body.is-rtl .lang { margin-left: 0; margin-right: 1.1rem; }
body.is-rtl .tags, body.is-rtl .labels, body.is-rtl .panneau__labels, body.is-rtl .infra__list { direction: rtl; }
body.is-rtl .team li, body.is-rtl .owners__stats span { text-align: right; }

.nav__burger { display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:6px; }
.nav__burger span { width:26px; height:2px; background: var(--navy); border-radius:2px; transition:.3s; }

/* ============================================================= */
/*  HÉRO                                                          */
/* ============================================================= */
.hero { position: relative; min-height: calc(100vh - 92px); display: grid; place-items: center; text-align: center; padding: 3rem clamp(1.1rem,4vw,2.6rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); will-change: transform; }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,28,32,.35), rgba(75,0,29,.55) 60%, rgba(42,28,32,.8)); }
.hero__inner { position: relative; z-index: 2; max-width: 860px; }
.hero__logo { width: 130px; height: auto; margin: 0 auto 1.4rem; filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }
.hero__eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; font-size: .8rem; }
.hero__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.8rem, 8vw, 6rem); line-height: .98; color: #fff; text-shadow: 0 12px 44px rgba(0,0,0,.5); margin: .4rem 0; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub { max-width: 600px; margin: 1.2rem auto 2.2rem; color: rgba(255,253,249,.94); font-size: clamp(1rem,2.2vw,1.18rem); }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,253,249,.75); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; }
.hero__scroll i { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: sdown 2s ease-in-out infinite; }
@keyframes sdown { 0%,100%{opacity:.3; transform:scaleY(.6)} 50%{opacity:1; transform:scaleY(1)} }

/* ============================================================= */
/*  PANNEAU BIENVENUE                                             */
/* ============================================================= */
.panneau { position: relative; background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-deep) 60%, var(--magenta-ink) 100%); color: #fff; overflow: hidden; }
.panneau__marquee { border-bottom: 1px solid rgba(255,255,255,.16); overflow: hidden; }
.panneau__track { display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap; padding: .7rem 0; animation: marquee 26s linear infinite; will-change: transform; }
.panneau__track span { font-family: var(--serif); font-size: clamp(1.1rem,2.4vw,1.6rem); font-weight: 600; letter-spacing: .02em; }
.panneau__track i { color: var(--gold); font-style: normal; font-size: .8rem; }
.panneau__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.4rem,5vw,3.6rem) clamp(1.1rem,4vw,2.6rem); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.panneau__hi { font-family: var(--serif); font-style: italic; font-size: clamp(2.2rem,6vw,3.6rem); color: var(--gold); line-height: 1; }
.panneau__name { font-family: var(--serif); font-size: clamp(1.3rem,3.4vw,2rem); letter-spacing: .04em; text-transform: uppercase; margin: 0; }
.panneau__name strong { font-weight: 700; }
.panneau__labels { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .7rem; margin-top: .4rem; }
.panneau__labels span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; padding: .42rem .9rem; border: 1px solid rgba(255,203,5,.55); border-radius: 999px; color: rgba(255,255,255,.92); }

/* ============================================================= */
/*  INTRO                                                         */
/* ============================================================= */
.intro { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.intro__media { position: relative; }
.intro__media img { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(61,43,46,.22); }
.intro__stamp { position: absolute; bottom: -22px; right: -18px; width: 118px; height: 118px; border-radius: 50%; background: var(--magenta); color: #fff; display: grid; place-content: center; text-align: center; font-size: .8rem; letter-spacing: .12em; box-shadow: 0 8px 20px rgba(61,43,46,.18); border: 3px solid var(--ivory); }
.intro__stamp b { font-family: var(--serif); font-size: 1.1rem; display: block; margin-top: .2rem; }
.intro__text p { color: #52493f; font-size: 1.06rem; margin-top: 1rem; }
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.6rem 0 1.2rem; }
.tags li { background: var(--ivory); border: 1px solid rgba(226,1,86,.18); color: var(--magenta); font-weight: 700; font-size: .84rem; padding: .45rem 1rem; border-radius: 100px; }
.labels { display: flex; flex-wrap: wrap; gap: .5rem; }
.labels span { font-size: .72rem; letter-spacing: .04em; color: var(--muted); background: var(--cream-2); padding: .4rem .8rem; border-radius: 8px; font-weight: 600; }

/* ============================================================= */
/*  ÉTÉ 2026                                                      */
/* ============================================================= */
.summer { background: linear-gradient(180deg, #eaf5fb 0%, #d5e7f0 45%, #b9d7e5 100%); color: #163b52; padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); position: relative; overflow: hidden; }
.summer::before { content: ""; position: absolute; top: -140px; right: -90px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,203,5,.6), rgba(255,203,5,0) 70%); pointer-events: none; }
.summer__head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.4rem,5vw,3.4rem); position: relative; }
.sun { display: block; width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(255,203,5,.28), 0 0 40px rgba(255,203,5,.6); animation: sunpulse 3s ease-in-out infinite; }
@keyframes sunpulse { 0%,100%{box-shadow:0 0 0 8px rgba(255,203,5,.28),0 0 40px rgba(255,203,5,.5)} 50%{box-shadow:0 0 0 14px rgba(255,203,5,.16),0 0 60px rgba(255,203,5,.8)} }
.summer .kicker--gold { color: #0f6ca0; }
.summer__title { font-family: var(--serif); font-weight: 600; font-size: clamp(3rem,11vw,7rem); line-height: .9; color: #12557d; }
.summer__title span { font-style: italic; color: #e6a900; }
.summer__lead { font-size: clamp(1.05rem,2.4vw,1.3rem); color: #2b5a76; margin-top: .8rem; }

.ete-mosaic { max-width: var(--maxw); margin: 0 auto clamp(2.4rem,5vw,3.6rem); display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 1.1rem; }
.ete-mosaic__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 45px rgba(18,85,125,.28); border: 3px solid #fff; }
.ete-mosaic__item--tall { grid-row: span 2; }
.ete-mosaic__item--wide { grid-column: span 2; }
.ete-mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.ete-mosaic__item:hover img { transform: scale(1.07); }
.ete-mosaic__item figcaption { position: absolute; inset: auto 0 0 0; padding: 2.4rem 1.2rem 1.1rem; background: linear-gradient(to top, rgba(15,75,115,.9), rgba(15,75,115,0)); }
.ete-mosaic__item figcaption span { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; color: #fff; letter-spacing: .01em; }
.ete-mosaic__item figcaption span::before { content: ""; display: inline-block; width: 20px; height: 2px; background: var(--gold); vertical-align: middle; margin-right: .55rem; }

.summer__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 1.6rem; align-items: start; }
.scard { background: var(--ivory); color: var(--ink); border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--rule); box-shadow: 0 6px 18px rgba(61,43,46,.08); }
.scard__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.scard__top h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); line-height: 1.05; }
.scard__price { background: var(--gold); color: var(--navy-deep); font-weight: 800; font-size: 1.15rem; padding: .35rem .9rem; border-radius: 100px; white-space: nowrap; }
.scard__badge { background: var(--magenta); color: #fff; font-weight: 700; font-size: .8rem; padding: .35rem .85rem; border-radius: 100px; white-space: nowrap; }
.scard__hours { font-weight: 700; color: var(--magenta); margin-bottom: .8rem; }
.dates { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem; }
.dates li { background: var(--magenta-tint); color: var(--magenta-deep); font-weight: 700; font-size: .82rem; padding: .35rem .8rem; border-radius: 8px; }
.journey { list-style: none; counter-reset: j; display: grid; gap: .55rem; margin-bottom: 1.1rem; }
.journey li { counter-increment: j; position: relative; padding-left: 2.1rem; font-size: .92rem; color: #52493f; }
.journey li::before { content: counter(j); position: absolute; left: 0; top: -1px; width: 1.5rem; height: 1.5rem; background: var(--navy); color: #fff; border-radius: 50%; display: grid; place-content: center; font-size: .78rem; font-weight: 800; }
.scard__note { background: var(--magenta-tint); border-left: 4px solid var(--magenta); border-radius: 10px; padding: .8rem 1rem; font-size: .88rem; color: var(--magenta-ink); font-weight: 600; }
.scard__note--soft { background: rgba(255,203,5,.14); border-color: var(--gold-deep); color: #7a5b00; }
.mini { padding: .9rem 0; border-bottom: 1px solid rgba(61,43,46,.12); }
.mini h4 { font-size: .95rem; color: var(--magenta); margin-bottom: .15rem; }
.mini p { font-size: .9rem; color: #52493f; }
.pricepair { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1rem 0; }
.pricepair span { font-size: .9rem; color: #52493f; }
.pricepair b { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); display: block; }
.scard--slim { }
.price-inline { list-style: none; display: grid; gap: .5rem; margin-top: .8rem; }
.price-inline li { font-size: .92rem; color: #52493f; }
.price-inline b { color: var(--magenta); font-family: var(--serif); font-size: 1.2rem; }

.closure { max-width: 820px; margin: clamp(2rem,4vw,3rem) auto 0; display: flex; align-items: center; gap: 1rem; background: var(--magenta-tint); border-left: 3px solid var(--magenta); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.1rem 1.5rem; color: var(--magenta-ink); }
.closure p { font-size: .96rem; }

/* ============================================================= */
/*  PRESTATIONS                                                   */
/* ============================================================= */
.offers { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); }
.offers__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.offer { background: var(--ivory); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rule); box-shadow: 0 4px 14px rgba(61,43,46,.06); transition: transform .4s var(--ease), box-shadow .4s; }
.offer:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(61,43,46,.12); }
.offer img { aspect-ratio: 4/3; object-fit: cover; }
.offer__body { padding: 1.6rem; }
.offer__body h3 { font-family: var(--serif); font-size: 1.55rem; color: var(--navy); margin-bottom: .5rem; }
.offer__body p { color: #52493f; font-size: .95rem; }
.offer__body a { display: inline-block; margin-top: 1rem; color: var(--magenta); font-weight: 800; font-size: .9rem; transition: transform .3s; }
.offer__body a:hover { transform: translateX(4px); }

/* ============================================================= */
/*  ÉCOLE + ÉQUIPE                                                */
/* ============================================================= */
.school { background: linear-gradient(160deg, var(--magenta), var(--magenta-deep)); color: var(--ivory); }
.school__grid { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.school__media img { border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,.35); aspect-ratio: 3/4; object-fit: cover; }
.school__media .school__media-team { display: block; width: 100%; aspect-ratio: auto; object-fit: contain; margin-top: clamp(1.6rem, 3.5vw, 2.4rem); }

/* --- Panneau mis en valeur (juste le panneau) --- */
.school__media--panneau { position: relative; perspective: 1100px; }
.school__media--panneau::before {
  content: ""; position: absolute; inset: -26px; z-index: -1; border-radius: calc(var(--radius) + 24px);
  background: radial-gradient(closest-side, rgba(255,203,5,.55), rgba(255,203,5,0) 74%);
  filter: blur(10px); animation: panneauGlow 5.5s ease-in-out infinite;
}
.school__media--panneau img {
  aspect-ratio: 129 / 148; object-fit: cover; object-position: center; border: 6px solid #fff;
  box-shadow: 0 26px 64px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.14);
  transform-style: preserve-3d; transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
  animation: panneauFloat 7s ease-in-out infinite; will-change: transform;
}
.school__media--panneau.is-tilting img { animation: none; }
@keyframes panneauFloat { 0%,100% { transform: translateY(0) rotate(-.5deg); } 50% { transform: translateY(-15px) rotate(.5deg); } }
@keyframes panneauGlow { 0%,100% { opacity: .5; transform: scale(.95); } 50% { opacity: .95; transform: scale(1.05); } }
@media (prefers-reduced-motion: reduce) {
  .school__media--panneau img, .school__media--panneau::before { animation: none; }
}
.school__intro { color: rgba(255,253,249,.9); margin-top: 1rem; }
.team { list-style: none; margin-top: 1.8rem; display: grid; gap: .9rem; }
.team li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-left: 3px solid var(--gold); border-radius: 12px; padding: 1rem 1.2rem; transition: background .3s, transform .3s; }
.team li:hover { background: rgba(255,255,255,.15); transform: translateX(6px); }
.team__role { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.team b { font-family: var(--serif); font-size: 1.4rem; display: block; margin: .1rem 0 .25rem; font-weight: 600; }
.team em { font-style: normal; font-size: .88rem; color: rgba(255,253,249,.78); }

/* ============================================================= */
/*  PROPRIÉTAIRES / PENSION                                       */
/* ============================================================= */
.owners { background: var(--cream-2); }
.owners__grid { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.owners__media { position: relative; }
.owners__media img { border-radius: var(--radius); box-shadow: 0 22px 55px rgba(61,43,46,.22); aspect-ratio: 4/3; object-fit: cover; object-position: center 38%; }
.owners__media2 { position: absolute; right: -6%; bottom: -12%; width: 46%; aspect-ratio: 1 !important; border: 6px solid var(--cream-2); box-shadow: 0 18px 44px rgba(61,43,46,.28) !important; }
.owners__text p { color: #52493f; margin-bottom: 1rem; }
.owners__punch { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--magenta) !important; }
.owners__stats { display: flex; gap: 1.6rem; margin: 1.6rem 0 2rem; flex-wrap: wrap; }
.owners__stats span { display: flex; flex-direction: column; }
.owners__stats b { font-family: var(--serif); font-size: 2rem; color: var(--navy); line-height: 1; }
.owners__stats span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

/* ============================================================= */
/*  ACTUALITÉS                                                    */
/* ============================================================= */
.news { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); }
.news__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1.8rem; align-items: start; }
.ncard { background: var(--ivory); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rule); box-shadow: 0 4px 14px rgba(61,43,46,.06); transition: transform .4s var(--ease), box-shadow .4s; }
.ncard:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(61,43,46,.12); }
.ncard__img { aspect-ratio: 16/10; object-fit: cover; }
.ncard__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.ncard__pair img { aspect-ratio: 1; object-fit: cover; }
.ncard__body { padding: 1.5rem; }
.pill { display: inline-block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; padding: .32rem .8rem; border-radius: 100px; margin-bottom: .8rem; }
.pill--magenta { background: var(--magenta-tint); color: var(--magenta); }
.pill--gold { background: rgba(255,203,5,.18); color: var(--gold-deep); }
.pill--navy { background: rgba(61,43,46,.1); color: var(--navy); }
.ncard__body h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); line-height: 1.08; margin-bottom: .5rem; }
.ncard__body p { color: #52493f; font-size: .94rem; }
.ncard__meta { margin-top: .5rem; font-weight: 700; color: var(--magenta); }
.ncard__meta a { color: var(--magenta); }

/* ============================================================= */
/*  CONCOURS                                                      */
/* ============================================================= */
.contests { background: var(--cream-2); padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); }
.timeline { max-width: 800px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); position: relative; }
.timeline::before { content:""; position:absolute; left: 64px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--magenta), rgba(226,1,86,.15)); }
.tl { display: grid; grid-template-columns: 130px 1fr; gap: 1.4rem; padding: 1rem 0; align-items: center; }
.tl__date { text-align: center; background: var(--navy); color: #fff; border-radius: var(--radius); padding: .85rem .4rem; position: relative; z-index: 1; }
.tl__date b { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--gold); line-height: 1; }
.tl__date span { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.tl__body { background: var(--ivory); border-radius: var(--radius); padding: 1.1rem 1.4rem; border: 1px solid var(--rule); }
.tl__body h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); }
.tl__body p { color: #52493f; font-size: .94rem; margin-top: .15rem; }
.tl--pending .tl__date { background: var(--muted); }
.tl--pending .tl__body { border: 1px dashed rgba(61,43,46,.25); background: rgba(255,253,249,.6); }
.gallery { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: 0 6px 18px rgba(61,43,46,.1); transition: transform .5s var(--ease); }
.gallery img:hover { transform: scale(1.04) rotate(-1deg); }

/* ---- Accroche équipe (section école) ---- */
.team__lead { margin-top: 1.5rem; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: rgba(255,253,249,.92); }

/* ============================================================= */
/*  INFRASTRUCTURES                                               */
/* ============================================================= */
.infra { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: var(--ivory); }
.infra__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.infra__text p { color: rgba(255,253,249,.85); margin-bottom: 1rem; }
.infra__thanks { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--gold) !important; }
.infra__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.infra__list li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-left: 3px solid var(--gold); border-radius: 12px; padding: .9rem 1.1rem; font-weight: 600; font-size: .95rem; transition: transform .3s, background .3s; }
.infra__list li:hover { background: rgba(255,255,255,.15); transform: translateX(5px); }

/* ============================================================= */
/*  COMPÉTITION                                                   */
/* ============================================================= */
.compet { background: linear-gradient(160deg, var(--magenta-deep), var(--magenta-ink)); color: var(--ivory); padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); }
.compet__intro { max-width: 860px; margin: 0 auto; }
.compet__intro p { color: rgba(255,253,249,.9); margin-bottom: 1rem; text-align: center; }
.champion { max-width: 860px; margin: 2.6rem auto 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: clamp(1.6rem,4vw,2.6rem); }
.champion__head h3 { font-family: var(--serif); font-size: clamp(1.5rem,3.4vw,2rem); margin-top: .6rem; }
.palmares { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.4rem; }
.palmares li { display: grid; grid-template-columns: 66px 1fr; gap: 1.1rem; align-items: start; padding-bottom: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.palmares li:last-child { border-bottom: 0; padding-bottom: 0; }
.palmares li b { font-family: var(--serif); font-size: 1.55rem; color: var(--gold); line-height: 1; }
.palmares li span { color: rgba(255,253,249,.85); font-size: .95rem; }
.equinet { max-width: 860px; margin: 2rem auto 0; text-align: center; border-top: 1px solid rgba(255,255,255,.2); padding-top: 1.8rem; }
.equinet h4 { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); margin-bottom: .6rem; }
.equinet p { color: rgba(255,253,249,.85); max-width: 760px; margin: 0 auto; }

/* ============================================================= */
/*  INSCRIPTION                                                   */
/* ============================================================= */
.signup { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: var(--ivory); position: relative; overflow: hidden; }
.signup::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 80% at 82% 18%, rgba(226,1,86,.28), transparent 60%); }
.signup__inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); }
.signup__alert { display: inline-flex; align-items: center; gap: 1rem; text-align: left; background: rgba(255,203,5,.1); border: 1px solid rgba(255,203,5,.4); border-left: 3px solid var(--gold); color: var(--ivory); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.5rem; margin-bottom: 2rem; }
.signup__alert span { font-size: 1.7rem; }
.signup__text { color: rgba(255,253,249,.85); margin: 1rem 0 2rem; font-size: 1.05rem; }
.signup__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================= */
/*  TARIFS                                                        */
/* ============================================================= */
.pricing { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); }
.pricing__group { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem,3vw,1.9rem); color: var(--navy); margin: clamp(2.4rem,5vw,3.4rem) 0 1.4rem; padding-bottom: .7rem; border-bottom: 2px solid var(--magenta); display: inline-block; }
.pricing__group:first-of-type { margin-top: .4rem; }
.pricing__hint { color: var(--muted); font-size: .95rem; margin: -.6rem 0 1.4rem; }
.pricing__hint strong { color: var(--magenta); }
.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; align-items: start; }
.pricing__grid--solo { grid-template-columns: minmax(0,520px); }
.pricing__grid--owners { grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 760px; }
.pcard__note { margin-top: 1.1rem; font-size: .86rem; color: var(--muted); line-height: 1.5; }
.pcard--feat .pcard__note { color: rgba(255,253,249,.82); }
.pcard { background: var(--ivory); border-radius: var(--radius); padding: 2.1rem 1.9rem; box-shadow: 0 4px 14px rgba(61,43,46,.06); border: 1px solid var(--rule); position: relative; transition: transform .4s var(--ease), box-shadow .4s; }
.pcard:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(61,43,46,.12); }
.pcard--feat { background: var(--magenta-deep); color: var(--ivory); border: 0; }
.ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-deep); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; padding: .38rem 1.1rem; border-radius: var(--radius); white-space: nowrap; }
.pcard__head { font-family: var(--serif); font-size: 1.7rem; color: var(--navy); margin-bottom: 1.3rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(61,43,46,.12); }
.pcard--feat .pcard__head { color: #fff; border-color: rgba(255,255,255,.25); }
.plist { list-style: none; display: grid; gap: .9rem; }
.plist li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.plist li span { color: #52493f; }
.pcard--feat .plist li span { color: rgba(255,253,249,.9); }
.plist li b { font-family: var(--serif); font-size: 1.45rem; color: var(--navy); white-space: nowrap; }
.pcard--feat .plist li b { color: var(--gold); }
.keep { font-family: var(--sans) !important; font-size: .85rem !important; font-weight: 700 !important; font-style: italic; color: var(--muted) !important; }
.soon { font-family: var(--sans) !important; font-size: .85rem !important; font-weight: 800 !important; color: var(--magenta) !important; }
.todo { border-top: 1px dashed rgba(61,43,46,.2); padding-top: .9rem; margin-top: .1rem; }
/* Formules mensuelles */
.formules { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.fcard { background: var(--ivory); border-radius: var(--radius); padding: 1.3rem 1.2rem 1.4rem; box-shadow: 0 4px 14px rgba(61,43,46,.06); border: 1px solid var(--rule); border-top: 3px solid var(--magenta); display: flex; flex-direction: column; gap: .5rem; transition: transform .4s var(--ease), box-shadow .4s; }
.fcard:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(61,43,46,.12); }
.fcard__num { font-family: var(--serif); font-size: .95rem; font-weight: 600; color: var(--magenta); letter-spacing: .05em; }
.fcard__desc { font-size: .9rem; color: #52493f; line-height: 1.35; flex: 1; }
.fcard__price { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); }

/* Formules à l'unité */
.unit { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.unit__item { background: var(--navy); color: var(--ivory); border-radius: var(--radius); padding: 1.4rem 1.3rem; display: flex; flex-direction: column; gap: .6rem; border: 1px solid rgba(255,255,255,.08); }
.unit__item span { font-size: .95rem; color: rgba(255,253,249,.9); flex: 1; }
.unit__item small { display: block; color: rgba(255,253,249,.55); font-size: .78rem; margin-top: .15rem; }
.unit__item b { font-family: var(--serif); font-size: 1.7rem; color: var(--gold); }

/* ============================================================= */
/*  FOOTER                                                        */
/* ============================================================= */
.footer { background: var(--navy-deep); color: var(--ivory); padding: clamp(3.5rem,8vw,5rem) clamp(1.1rem,4vw,2.6rem) 2rem; }
.footer__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand img { width: 92px; height: auto; margin-bottom: 1rem; background: #fff; border-radius: 50%; padding: 4px; }
.footer__brand p { color: rgba(255,253,249,.62); font-size: .92rem; max-width: 300px; }
.footer__col h4 { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__col p { color: rgba(255,253,249,.75); font-size: .95rem; line-height: 1.8; }
.footer__col em { font-style: italic; color: rgba(255,253,249,.5); }
.footer__col a { transition: color .3s; }
.footer__col a:hover { color: var(--gold); }
.socials { display: flex; gap: 1rem; margin-top: 1rem; }
.socials a { color: var(--magenta); font-weight: 800; }
.socials a:hover { color: var(--gold); }
.footer__bottom { max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: rgba(255,253,249,.5); }

/* ============================================================= */
/*  ANIMATIONS AU SCROLL                                          */
/* ============================================================= */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .urgent__track, .urgent::after, .hero__scroll i, .signup__alert, .sun { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================= */
/*  RESPONSIVE                                                    */
/* ============================================================= */
@media (max-width: 980px) {
  .intro, .school__grid, .owners__grid, .infra__inner { grid-template-columns: 1fr; }
  .intro__media { max-width: 440px; margin: 0 auto; }
  .school__media { max-width: 400px; margin: 0 auto; }
  .owners__media { max-width: 460px; margin: 0 auto 2.5rem; }
  .offers__grid, .news__grid, .pricing__grid, .summer__grid { grid-template-columns: 1fr 1fr; }
  .summer__grid > .scard:last-child, .news__grid > .ncard:last-child { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .formules { grid-template-columns: repeat(3,1fr); }
  .unit { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
  .nav__brandwrap { margin-left: clamp(4.4rem, 17vw, 5.4rem); }
  .nav__brand img { height: 46px; }
  .nav.scrolled .nav__brand img { height: 42px; }
  .nav__powered span { font-size: .52rem; }
  .nav__powered strong { font-size: .72rem; }
  .lang { margin-left: .3rem; gap: 0; padding: 2px; }
  .lang__btn { padding: .3rem .32rem; font-size: .64rem; }
}
@media (max-width: 900px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(80vw,320px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.5rem; background: rgba(42,28,32,.98); backdrop-filter: blur(16px); padding: 2rem; transform: translateX(100%); transition: transform .45s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.4); z-index: 940; }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: var(--ivory) !important; text-shadow: none !important; font-size: 1.15rem; }
  .nav__burger { display: flex; z-index: 950; }
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.is-rtl .nav__links { inset: 0 auto 0 0; transform: translateX(-100%); }
  body.is-rtl .nav__links.open { transform: translateX(0); }
}
@media (max-width: 620px) {
  .offers__grid, .news__grid, .pricing__grid, .summer__grid, .footer__grid { grid-template-columns: 1fr; }
  .ete-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .ete-mosaic__item--wide { grid-column: span 2; }
  .ete-mosaic__item--tall { grid-row: span 1; }
  .pricing__grid--owners { grid-template-columns: 1fr; }
  .summer__grid > .scard:last-child, .news__grid > .ncard:last-child { grid-column: auto; }
  .formules { grid-template-columns: repeat(2,1fr); }
  .unit { grid-template-columns: 1fr; }
  .owners__stats { gap: 1.2rem; }
  .infra__list { grid-template-columns: 1fr; }
  .palmares li { grid-template-columns: 54px 1fr; gap: .8rem; }
  .timeline::before { left: 54px; }
  .tl { grid-template-columns: 108px 1fr; gap: 1rem; }
  .footer__bottom { flex-direction: column; }
}

/* ============================================================= */
/*  ÉCHELLE DES GALOPS (unique)                                   */
/* ============================================================= */
.galops { position: relative; overflow: hidden; color: var(--ivory); padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem);
  background: linear-gradient(165deg, #4B001D 0%, #7a0230 55%, #97013a 100%); }
.galops__sand { position: absolute; left: 0; right: 0; bottom: 0; height: 140px; pointer-events: none;
  background: linear-gradient(0deg, rgba(201,169,122,.28), rgba(201,169,122,0)); }
.galops .section-head { position: relative; z-index: 1; }
.galops__intro { max-width: 640px; margin: 1rem auto 0; color: rgba(255,253,249,.9); font-size: clamp(1rem,2.2vw,1.15rem); }

.galops__wrap { position: relative; z-index: 1; max-width: 820px; margin: clamp(2.4rem,5vw,3.4rem) auto 0; }
.galops__scale { display: flex; justify-content: center; align-items: flex-end; flex-wrap: wrap;
  gap: clamp(.5rem,2.2vw,1.5rem); margin-bottom: clamp(2rem,4vw,3rem); }
.galop { position: relative; width: clamp(58px,9vw,76px); aspect-ratio: 1; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.32); background: rgba(255,255,255,.07); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: transform .3s var(--ease), background .3s, border-color .3s, box-shadow .3s; }
.galop:nth-child(1) { margin-bottom: 0; }
.galop:nth-child(2) { margin-bottom: 12px; }
.galop:nth-child(3) { margin-bottom: 24px; }
.galop:nth-child(4) { margin-bottom: 36px; }
.galop:nth-child(5) { margin-bottom: 48px; }
.galop:nth-child(6) { margin-bottom: 60px; }
.galop:nth-child(7) { margin-bottom: 72px; }
.galop__hoof { position: absolute; top: 16%; opacity: .45; transition: opacity .3s; }
.galop__hoof svg { width: clamp(20px,3vw,26px); height: auto; fill: currentColor; }
.galop__num { font-family: var(--serif); font-weight: 700; font-size: clamp(1.2rem,3vw,1.55rem); margin-top: 34%; line-height: 1; }
.galop:hover { transform: translateY(-6px) scale(1.05); border-color: #fff; }
.galop:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.galop.is-active { background: var(--magenta); border-color: var(--gold); box-shadow: 0 10px 24px rgba(0,0,0,.3); transform: translateY(-4px) scale(1.06); }
.galop.is-active .galop__hoof { opacity: 1; }
.galop--gold.is-active { background: var(--gold); color: var(--navy-deep); }

.galops__detail { max-width: 640px; margin: 0 auto; }
.galop__panel { display: none; text-align: center; background: var(--ivory); color: var(--ink); border-radius: var(--radius);
  padding: clamp(1.5rem,3.5vw,2.2rem); box-shadow: 0 22px 54px rgba(0,0,0,.32); }
.galop__panel.is-active { display: block; animation: galopIn .45s var(--ease); }
@keyframes galopIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.galop__badge { display: inline-block; background: var(--magenta); color: #fff; font-weight: 800; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; padding: .38rem .95rem; border-radius: 999px; }
.galop__panel h3 { font-family: var(--serif); font-weight: 600; color: var(--navy); font-size: clamp(1.5rem,4.5vw,2.1rem); margin: .8rem 0 .5rem; }
.galop__panel p { color: #52493f; font-size: 1.02rem; line-height: 1.62; }
body.is-rtl .galops__scale { direction: rtl; }

/* --- Traces de sabots qui suivent le curseur (signature) --- */
.hoof-trail { position: fixed; inset: 0; pointer-events: none; z-index: 70; overflow: hidden; }
.hoof-trail .hp { position: absolute; width: 18px; height: 22px; margin: -11px 0 0 -9px; color: #5f4126; opacity: 0;
  animation: hoofFade 1.25s ease forwards; }
.hoof-trail .hp svg { width: 100%; height: 100%; fill: currentColor; }
@keyframes hoofFade { 0% { opacity: 0; } 16% { opacity: .22; } 100% { opacity: 0; } }
@media (max-width: 620px) {
  .galop:nth-child(n) { margin-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .galop__panel.is-active { animation: none; }
}

/* ============================================================= */
/*  ACCESSIBILITÉ / SEO — texte masqué visuellement              */
/* ============================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================= */
/*  BANDEAU RÉASSURANCE                                           */
/* ============================================================= */
.trust { background: var(--ivory); border-bottom: 1px solid var(--rule); padding: clamp(1.4rem,3vw,2rem) clamp(1.1rem,4vw,2.6rem); }
.trust__list {
  list-style: none; max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2.4vw,2rem); text-align: center;
}
.trust__item { display: flex; flex-direction: column; gap: .25rem; position: relative; }
.trust__item + .trust__item::before {
  content: ""; position: absolute; left: calc(-1 * clamp(.5rem,1.2vw,1rem)); top: 10%; bottom: 10%;
  width: 1px; background: var(--rule);
}
.trust__item b { font-family: var(--serif); font-weight: 600; font-size: clamp(1.05rem,1.8vw,1.28rem); color: var(--magenta-deep); line-height: 1.15; }
.trust__item span { font-size: .82rem; color: var(--muted); }
@media (max-width: 860px) {
  .trust__list { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1.4rem; text-align: left; }
  .trust__item + .trust__item::before { display: none; }
}
@media (max-width: 480px) { .trust__list { grid-template-columns: 1fr; } }

/* ============================================================= */
/*  AVIS / PREUVE SOCIALE                                         */
/* ============================================================= */
.reviews { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,9vw,7rem) clamp(1.1rem,4vw,2.6rem); }
.reviews__rating { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1rem; }
.reviews__stars { color: var(--gold-deep); letter-spacing: .1em; font-size: 1.15rem; }
.reviews__score { color: var(--ink); font-size: .95rem; }
.reviews__score b { font-family: var(--serif); font-size: 1.25rem; color: var(--magenta-deep); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2.4vw,1.6rem); margin-top: clamp(1.6rem,4vw,2.6rem); }
.review { margin: 0; background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--radius); padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.review::before { content: "\201C"; font-family: var(--serif); font-size: 2.6rem; line-height: .2; color: var(--pink-light); }
.review blockquote { margin: 0; font-size: 1.02rem; line-height: 1.6; color: #4a4038; }
.review figcaption { font-weight: 700; font-size: .9rem; color: var(--navy); }
.review figcaption span { font-weight: 500; color: var(--muted); }
.reviews__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: clamp(2rem,4vw,3rem); }
.btn--outline-dark { border: 1px solid var(--magenta); color: var(--magenta); }
.btn--outline-dark:hover { background: var(--magenta-tint); transform: translateY(-2px); }
@media (max-width: 860px) { .reviews__grid { grid-template-columns: 1fr; } }
