/* Styles communs des pages Laravel, repris du site rccalais.fr (main.css). Fichier servi tel quel : pas de compilation. */
/* base.css (inliné pour la maquette) */
/* Design tokens */
:root {
  /* Couleurs du club */
  --noir: #0a0a0a;
  --noir-pur: #000000;
  --rouge: #e3051a;
  --rouge-fonce: #b50414;
  --or: #eac414;
  --or-fonce: #c7a509;

  /* Neutres (fond blanc, esprit psg.fr) */
  --blanc: #ffffff;
  --gris-05: #f7f7f8;
  --gris-10: #ededef;
  --gris-30: #c9c9cd;
  --gris-60: #6b6b70;
  --gris-80: #2c2c30;

  /* Typo */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(.85rem, 4vw, 2.5rem);
  --radius: 10px;
  --header-h: 84px;
  --topbar-h: 38px;
  --section-pad: clamp(2rem, 4.5vw, 3rem);

  /* Effets */
  --shadow-card: 0 6px 24px rgba(10, 10, 10, .08);
  --shadow-card-hover: 0 14px 40px rgba(10, 10, 10, .16);
  --transition: .28s cubic-bezier(.4, 0, .2, 1);
}

@media (min-width: 1080px) {
  :root { --header-h: 112px; }
}

/* Reset et base (mobile first) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--noir);
  background: var(--blanc);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--or);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

/* Titres display */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: 1.05;
}

/* En-tête de section : mobile en colonne (pleine largeur), desktop en ligne */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
@media (min-width: 640px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--rouge);
  margin-bottom: .5rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 3px;
  background: linear-gradient(90deg, var(--rouge) 60%, var(--or) 60%);
}
.section-head h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
.link-more {
  flex-shrink: 0;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--noir);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .2rem;
  border-bottom: 2px solid var(--or);
  transition: color var(--transition), gap var(--transition);
}
.link-more:hover { color: var(--rouge); gap: .8rem; }

/* Boutons CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-weight: 800;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .95rem 1.8rem;
  border-radius: 4px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--rouge {
  background: var(--rouge);
  color: var(--blanc);
  box-shadow: 0 6px 18px rgba(227, 5, 26, .35);
}
.btn--rouge:hover { background: var(--rouge-fonce); box-shadow: 0 10px 26px rgba(227, 5, 26, .45); }

.btn--or {
  background: var(--or);
  color: var(--noir-pur);
  box-shadow: 0 6px 18px rgba(234, 196, 20, .35);
}
.btn--or:hover { background: var(--or-fonce); }

.btn--noir { background: var(--noir); color: var(--blanc); }
.btn--noir:hover { background: var(--gris-80); }

/* Animation reveal au scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .8, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

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

/* En-tête : barre du haut et navigation */
.topbar {
  background: var(--noir-pur);
  color: var(--blanc);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  height: var(--topbar-h);
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.topbar__socials { display: flex; align-items: center; gap: .9rem; font-size: .95rem; }
.topbar__socials a { opacity: .75; transition: opacity var(--transition), color var(--transition); }
.topbar__socials a:hover { opacity: 1; color: var(--or); }
.topbar__group { display: flex; align-items: center; gap: .7rem; }
.topbar__label {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #fff;
  opacity: .85;
  white-space: nowrap;
}
.topbar__sep { width: 1px; height: 16px; background: rgba(255,255,255,.28); flex-shrink: 0; }
@media (max-width: 480px) {
  .topbar__label { display: none; }

  /* Header compact pour les petits écrans */
  :root { --header-h: 72px; }
  .nav { gap: .35rem; }
  .brand__crest { width: 52px; height: 52px; }
  .burger { width: 38px; }
  .nav__ctas { gap: .35rem; }
  .nav__ctas .btn {
    padding: .55rem .5rem;
    font-size: .6rem;
    letter-spacing: 0;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-10);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(10, 10, 10, .1); }

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Logo officiel du club (sans texte) */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-inline: auto; /* mobile : centré entre burger et CTA */
}
.brand__crest {
  width: 72px; height: 72px;
  display: grid;
  place-items: center;
  transition: transform var(--transition);
}
.brand:hover .brand__crest { transform: scale(1.05) rotate(-2deg); }
.brand__crest img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.nav__list {
  display: none; /* mobile-first : caché, remplacé par le panneau */
}

.nav__ctas { display: flex; align-items: center; gap: .5rem; }
.nav__ctas .btn {
  padding: .6rem .8rem;
  font-size: .68rem;
  letter-spacing: .04em;
  box-shadow: none;
}

/* Burger : à gauche sur mobile */
.burger {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background var(--transition);
}
.burger:hover { background: var(--gris-05); }
.burger__lines { position: relative; width: 22px; height: 2px; background: var(--noir); }
.burger__lines::before, .burger__lines::after {
  content: "";
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: var(--noir);
}
.burger__lines::before { top: -7px; }
.burger__lines::after { top: 7px; }

/* Panneau mobile : plein écran, AU-DESSUS du header */
.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--noir-pur);
  color: var(--blanc);
  padding: 1rem var(--gutter) 2.5rem;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  z-index: 200;
  overflow-y: auto;
}
.mobile-panel.is-open { transform: translateX(0); }

.mobile-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-panel__top img { width: 60px; height: 60px; object-fit: contain; }
.mp-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  font-size: 1rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.mp-close:hover { background: var(--rouge); border-color: var(--rouge); transform: rotate(90deg); }

.mobile-panel > ul > li > a,
.mobile-panel summary.mp-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: color var(--transition);
}
.mobile-panel > ul > li > a:hover,
.mobile-panel summary.mp-main:hover { color: var(--or); }
.mobile-panel > ul > li > a i,
.mobile-panel summary.mp-main i { font-size: .85rem; color: var(--rouge); transition: transform var(--transition); }
.mobile-panel details[open] summary.mp-main i { transform: rotate(90deg); }

.mp-sub { padding: .75rem 0 1rem .5rem; display: grid; gap: .85rem; }
.mp-sub__group .mp-sub__title {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--or);
  margin-bottom: .35rem;
}
.mp-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.mp-chips a {
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.mp-chips a:hover { background: var(--rouge); border-color: var(--rouge); }
.mp-chips a.is-active { background: var(--rouge); border-color: var(--rouge); }
.mp-sub__link {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  padding: .25rem 0;
  color: rgba(255,255,255,.85);
  transition: color var(--transition), padding-left var(--transition);
}
.mp-sub__link:hover { color: var(--or); padding-left: .4rem; }

/* Bas du panneau : CTA + réseaux */
.mp-bottom {
  margin-top: 1.75rem;
  display: grid;
  gap: .75rem;
}
.mp-bottom .btn { width: 100%; }
.mp-bottom__socials {
  display: grid;
  gap: 1rem;
  justify-content: start;
  margin-top: .75rem;
}
.mp-bottom__socials .social-group { gap: .9rem; }
.mp-bottom__socials .social-group__label { font-size: .74rem; }
.mp-bottom__socials .social-group__icons { gap: .8rem; }
.mp-bottom__socials .social-group__icons a {
  width: 50px; height: 50px;
  font-size: 1.15rem;
}
.mobile-panel > ul > li > a.is-active { color: var(--or); }
.mp-sub__link.is-active { color: var(--or); font-weight: 800; }

/* Bandeau défilant */
.ticker {
  background: var(--or);
  color: var(--noir-pur);
  overflow: hidden;
  border-bottom: 3px solid var(--noir-pur);
}
.ticker[hidden] { display: none; }
.ticker__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  padding: .65rem 0;
  animation: ticker 75s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.ticker__item i { color: var(--rouge); }
.ticker__item--lien { text-decoration: none; }
.ticker__item--lien:hover { text-decoration: underline; text-underline-offset: 3px; }
.ticker__item .date-chip {
  background: var(--noir-pur);
  color: var(--or);
  padding: .1rem .55rem;
  border-radius: 3px;
}

/* Bannière de page et fil d'Ariane */
.page-hero {
  position: relative;
  background: var(--noir-pur);
  color: var(--blanc);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 80% 15%, rgba(227,5,26,.35), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.9)),
    url('/images/pelouse-vide.webp') center 40% / cover no-repeat;
}
.page-hero__inner {
  position: relative;
  padding: clamp(2.25rem, 5.5vw, 3.75rem) 0;
  display: grid;
  gap: .75rem;
}
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--or); }
.breadcrumb li { display: inline-flex; align-items: center; gap: .55rem; }
.breadcrumb li:not(:last-child)::after {
  content: "\203A"; /* › */
  font-size: 1rem;
  line-height: 1;
  color: var(--or);
}
.breadcrumb [aria-current] { color: rgba(255,255,255,.95); }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.page-hero__sub { color: rgba(255,255,255,.82); font-size: clamp(.95rem, 2.2vw, 1.05rem); }

/* Pied de page */
.site-footer {
  background: var(--noir-pur);
  color: rgba(255,255,255,.75);
  padding: clamp(2rem, 4.5vw, 3.5rem) 0 1.75rem;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--rouge) 0 45%, var(--or) 45% 65%, var(--rouge) 65%) 1;
}
.footer__grid { display: grid; gap: 0; }
.footer__brand { display: flex; justify-content: center; padding-top: 1.75rem; }
.social-group { display: flex; align-items: center; gap: .7rem; }
.social-group__label {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--or);
}
.social-group__icons { display: flex; gap: .6rem; }
.social-group__icons a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: .85rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.social-group__icons a:hover { background: var(--rouge); border-color: var(--rouge); color: var(--blanc); transform: translateY(-3px); }
.net-block { display: grid; gap: .55rem; justify-items: start; }
.net-block + .net-block { margin-top: 1.1rem; }
.net-block .social-group__label {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,.75);
}
.footer__acc { border-top: 1px solid rgba(255,255,255,.12); }
.footer__acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blanc);
}
.footer__acc summary i { font-size: .75rem; color: var(--rouge); transition: transform var(--transition); }
.footer__acc[open] summary i { transform: rotate(180deg); }
.footer__acc ul { display: grid; gap: .55rem; font-size: .9rem; padding: 0 0 1.25rem; }
.footer__acc a { transition: color var(--transition); }
.footer__acc a:hover { color: var(--or); }
.footer__acc a.is-active { color: var(--or); }
.footer__acc address { font-style: normal; font-size: .9rem; line-height: 1.8; padding: 0 0 1.25rem; }
.footer__acc address a {
  display: inline-block;
  margin-top: .5rem;
  color: rgba(255,255,255,.75);
  font-weight: 400;
  transition: color var(--transition);
}
.footer__acc address a:hover { color: var(--or); }
.footer__nets-body { padding: 0 0 1.25rem; }
.footer__bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__bottom a:hover { color: var(--or); }

.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--rouge);
  color: var(--blanc);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(227,5,26,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 90;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--noir-pur); }

/* Breakpoints */
@media (min-width: 900px) {

  /* Footer : colonnes ouvertes, accordéons neutralisés (géré aussi en JS) */
  .footer__grid { grid-template-columns: 1fr 1fr 1.1fr 1.3fr auto; gap: 2.5rem; }
  .footer__brand { padding-top: 0; justify-content: flex-end; align-items: flex-start; }
  .footer__acc { border-top: none; }
  .footer__acc summary { pointer-events: none; padding: 0 0 1rem; }
  .footer__acc summary i { display: none; }
  .footer__acc ul, .footer__acc address, .footer__nets-body { padding-bottom: 0; }
}

@media (min-width: 1080px) {

  .burger { display: none; }
  .brand { margin-inline: 0; }
  .brand__crest { width: 100px; height: 100px; }
  .nav { justify-content: space-between; gap: 1.25rem; }
  .nav__ctas { gap: .75rem; }
  .nav__ctas .btn { padding: .7rem 1.3rem; font-size: .78rem; letter-spacing: .06em; }
  .nav__ctas .btn--rouge { box-shadow: 0 6px 18px rgba(227, 5, 26, .35); }

  .nav__list {
    display: flex;
    align-items: stretch;
    gap: .25rem;
    flex: 1;
    justify-content: center;
    height: var(--header-h);
  }
  .nav__list > li { display: flex; align-items: stretch; }
  .nav__list > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: 0 .85rem;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: color var(--transition);
  }
  .nav__list > li > a i { font-size: .6rem; transition: transform var(--transition); }
  .nav__list > li > a::after {
    content: "";
    position: absolute;
    left: .85rem; right: .85rem; bottom: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--rouge) 60%, var(--or) 60%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }
  .nav__list > li:hover > a,
  .nav__list > li:focus-within > a { color: var(--rouge); }
  .nav__list > li:hover > a::after,
  .nav__list > li:focus-within > a::after { transform: scaleX(1); }
  .nav__list > li:hover > a i,
  .nav__list > li:focus-within > a i { transform: rotate(180deg); }

  /* --- Dropdowns (Équipes et Le Club) : même style, largeur contenue --- */
  .has-drop { position: relative; }
  .drop {
    position: absolute;
    top: 100%;
    left: .4rem;
    min-width: 260px;
    background: var(--blanc);
    border: 1px solid var(--gris-10);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 26px 50px rgba(10,10,10,.16);
    padding: .6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 50;
  }
  .has-drop:hover .drop,
  .has-drop:focus-within .drop {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .drop a {
    display: block;
    font-size: .86rem;
    font-weight: 600;
    padding: .6rem .8rem;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
  }
  .drop a:hover { background: var(--gris-05); color: var(--rouge); }

  /* Variante Équipes : 2 colonnes de groupes avec étiquettes */
  .drop--equipes {
    min-width: 560px;
    padding: .8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .25rem .75rem;
  }
  .drop-group { padding: .45rem .5rem; }
  .drop-group > a {
    padding: .35rem .3rem;
    margin-bottom: .3rem;
    font-weight: 700;
  }
  .drop-chips { display: flex; flex-wrap: wrap; gap: .35rem; padding: 0 .3rem; }
  .drop-chips a {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    padding: .22rem .6rem;
    border: 1px solid var(--gris-10);
    border-radius: 999px;
    color: var(--gris-60);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
  }
  .drop-chips a:hover { background: var(--gris-05); border-color: var(--rouge); color: var(--rouge); }
  .drop-chips a.is-active { background: var(--gris-05); border-color: var(--rouge); color: var(--rouge); }
}


/* --- Menu Événements (ajout à base.css) --- */
.drop--events { min-width: 400px; padding: .7rem; }
.drop-events__label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gris-60); padding: .3rem .6rem .5rem; }
.drop--events .ev-link { display: flex; align-items: center; gap: .8rem; padding: .6rem; }
.ev-link__date { flex-shrink: 0; width: 3.1rem; text-align: center; background: var(--noir); color: var(--blanc); border-radius: 6px; padding: .3rem 0; font-size: .7rem; font-weight: 700; text-transform: uppercase; line-height: 1.1; }
.ev-link__date b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; color: var(--or); }
.ev-link__date em { display: block; font-style: normal; font-size: .62rem; color: var(--or); margin: -.1rem 0 .1rem; }
.ev-link__txt { flex: 1; min-width: 0; }
.ev-link__txt strong { display: block; font-size: .9rem; color: var(--noir); }
.ev-link__txt small { display: block; font-size: .76rem; font-weight: 500; color: var(--gris-60); }
.ev-link.is-active .ev-link__txt strong, .ev-link:hover .ev-link__txt strong { color: var(--rouge); }
.ev-pill { flex-shrink: 0; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; border-radius: 999px; padding: .2rem .55rem; }
.ev-pill--open { background: #e8f7ec; color: #1c6b33; }
.ev-pill--soon { background: var(--gris-05); color: var(--gris-60); }
.ev-pill--closed { background: #fff6f6; color: var(--rouge-fonce); }
.drop--events .drop-events__all { margin-top: .35rem; border-top: 1px solid var(--gris-10); border-radius: 0 0 6px 6px; font-weight: 800; color: var(--rouge); display: flex; justify-content: space-between; align-items: center; }
.mp-ev-date { font-size: .72rem; font-weight: 700; color: var(--or); margin-left: .4rem; }
.mp-sub__link--all { font-weight: 800; color: var(--or) !important; }
/* Fil d'Ariane dans les heros des pages événements (style .breadcrumb de base.css) */
.hero-ariane { position: relative; margin-bottom: 1rem; }
.hero .hero-ariane .breadcrumb { color: var(--gris-60); }        /* hero blanc du stage */
.hero .hero-ariane .breadcrumb a:hover { color: var(--rouge); }
.hero .hero-ariane .breadcrumb [aria-current] { color: var(--noir); }

  /* ===== Sections ===== */
  section { padding: clamp(2.2rem, 5vw, 3.4rem) 0; }
  section h2 { font-size: clamp(1.6rem, 3.8vw, 2.4rem); margin-bottom: 1rem; }
  .section--alt { background: var(--gris-05); }
  .lead { color: var(--gris-80); font-size: clamp(.98rem, 1.8vw, 1.08rem); }

  /* ===== Formulaire ===== */
  .fieldset { background: var(--blanc); border: 1px solid var(--gris-10); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: clamp(1.1rem, 3vw, 1.6rem); margin-top: 1.3rem; }
  .fieldset > h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
  .fieldset > h3 .num { background: var(--rouge); color: var(--blanc); font-family: var(--font-body); font-weight: 800; font-size: .85rem; width: 1.7em; height: 1.7em; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .grid2 { display: grid; gap: .95rem; grid-template-columns: 1fr; }
  @media (min-width: 640px) { .grid2 { grid-template-columns: 1fr 1fr; } }
  .champ label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .3rem; }
  .champ label .req { color: var(--rouge); }
  .champ input, .champ select, .champ textarea { width: 100%; padding: .68rem .8rem; border: 1.5px solid var(--gris-30); border-radius: 6px; font: inherit; background: var(--blanc); transition: border-color var(--transition); }
  .champ input:focus, .champ select:focus, .champ textarea:focus { outline: none; border-color: var(--rouge); }
  .champ--full { grid-column: 1 / -1; }
  .hint { font-size: .78rem; color: var(--gris-60); margin-top: .25rem; }

  .enfant { border: 1.5px solid var(--gris-10); border-left: 4px solid var(--or); border-radius: 8px; padding: 1.1rem; margin-top: 1rem; position: relative; }
  .enfant__titre { font-weight: 800; margin-bottom: .8rem; }
  .enfant .suppr { position: absolute; top: .8rem; right: .8rem; background: var(--gris-05); color: var(--gris-60); border-radius: 6px; padding: .25rem .6rem; font-size: .78rem; font-weight: 700; }
  .enfant .suppr:hover { background: var(--rouge); color: var(--blanc); }
  .ajouter { margin-top: 1rem; background: var(--noir); color: var(--blanc); border-radius: 6px; padding: .7rem 1.2rem; font-weight: 800; font-size: .9rem; transition: var(--transition); }
  .ajouter:hover { background: var(--rouge); }

  .paiement { display: grid; gap: .8rem; grid-template-columns: 1fr; }
  @media (min-width: 640px) { .paiement { grid-template-columns: 1fr 1fr; } }
  .paiement label { border: 2px solid var(--gris-10); border-radius: 8px; padding: 1rem; cursor: pointer; display: block; transition: var(--transition); }
  .paiement input { margin-right: .5rem; accent-color: var(--rouge); }
  .paiement label:has(input:checked) { border-color: var(--rouge); background: #fff6f6; }
  .paiement .reco { background: var(--or); color: var(--noir-pur); font-size: .68rem; font-weight: 800; text-transform: uppercase; border-radius: 3px; padding: .1rem .4rem; margin-left: .5rem; }
  .paiement p { font-size: .82rem; color: var(--gris-60); margin-top: .3rem; }
  .deuxfois { display: flex; gap: .55rem; align-items: center; margin-top: .9rem; font-size: .9rem; font-weight: 600; }
  .deuxfois input { accent-color: var(--rouge); }
  .deuxfois span { color: var(--gris-60); font-weight: 500; }
  #creneauWrap { margin-top: .9rem; display: none; }
  #creneauWrap.visible { display: block; }

  .autorisations { display: grid; gap: .8rem; font-size: .88rem; }
  .autorisations label { display: flex; gap: .6rem; align-items: flex-start; }
  .autorisations input { margin-top: .25rem; accent-color: var(--rouge); }
  .recap { background: var(--noir); color: var(--blanc); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-top: 1.2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
  .recap__total { font-family: var(--font-display); font-size: 1.9rem; }
  .recap__total small { color: var(--or); font-size: 1rem; margin-right: .5rem; font-family: var(--font-body); font-weight: 700; }
  .envoyer { width: 100%; margin-top: 1.2rem; background: var(--rouge); color: var(--blanc); font-weight: 800; font-size: 1.05rem; padding: 1rem; border-radius: 8px; transition: var(--transition); }
  .envoyer:hover { background: var(--rouge-fonce); }
  .confirm { display: none; margin-top: 1rem; background: #e8f7ec; border: 1.5px solid #35a854; color: #1c6b33; border-radius: 8px; padding: 1rem; font-weight: 600; }

  .contact-stage { margin-top: 1.6rem; font-size: .92rem; background: var(--blanc); border-left: 4px solid var(--rouge); border-radius: 6px; box-shadow: var(--shadow-card); padding: .9rem 1.1rem; }
  .contact-stage a { color: var(--rouge); font-weight: 700; text-decoration: none; }
  .contact-stage a:hover { text-decoration: underline; }

  /* Barre d'inscription fixée en bas (mobile uniquement) */
  .cta-fixe { position: fixed; inset: auto 0 0; z-index: 50; background: var(--noir); color: var(--blanc); display: none; align-items: center; justify-content: space-between; gap: .8rem; padding: .65rem var(--gutter); padding-bottom: calc(.65rem + env(safe-area-inset-bottom)); box-shadow: 0 -6px 24px rgba(0,0,0,.25); transform: translateY(110%); transition: transform var(--transition); }
  .cta-fixe.visible { transform: translateY(0); }
  .cta-fixe .info b { color: var(--or); font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; margin-right: .4rem; }
  .cta-fixe .info { font-size: .78rem; font-weight: 600; line-height: 1.25; }
  .cta-fixe .btn { padding: .7rem 1.1rem; font-size: .9rem; flex-shrink: 0; }
  @media (max-width: 767px) { .cta-fixe { display: flex; } }

/* ===== Ajouts application d'inscription ===== */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.enfant:only-child .suppr { display: none; }
.erreur { font-size: .8rem; font-weight: 700; color: var(--rouge); margin-top: .3rem; }
.alerte { margin-top: 1.2rem; background: var(--blanc); border: 1.5px solid var(--or); border-left-width: 4px; border-radius: 8px; padding: 1rem 1.1rem; font-size: .95rem; }
.alerte p + p { margin-top: .4rem; }
.alerte--erreur { border-color: var(--rouge); background: #fff6f6; }
.alerte--succes { border-color: #35a854; background: #e8f7ec; color: #1c6b33; }
.resultat { max-width: 760px; }
.resultat .fieldset dl { display: grid; grid-template-columns: max-content 1fr; gap: .45rem 1rem; font-size: .95rem; }
.resultat .fieldset dt { font-weight: 700; color: var(--gris-60); }
.resultat .fieldset ul { list-style: none; display: grid; gap: .35rem; font-size: .95rem; }
.resultat .actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
/* Même hauteur pour tous les champs d'une ligne : navigateurs et types (date, select) ont des marges internes différentes */
.champ input, .champ select { height: 3.1rem; line-height: 1.25; }
.champ input[type="date"]::-webkit-datetime-edit { padding: 0; }

.recap__detail { font-size: .9rem; color: rgba(255,255,255,.8); }
.securise { text-align: center; font-size: .8rem; color: var(--gris-60); margin-top: .6rem; }
