/* Gabarit « Stage » (page Anim'Foot). Les styles communs viennent de site.css. */
  /* ===== HERO : fond blanc pour le logo, liseré rouge/or ===== */
  .hero { background: var(--blanc); padding: clamp(2.2rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem); border-top: 6px solid var(--rouge); position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 6px; background: var(--or); }
  .hero__inner { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; }
  .hero__inner > * { min-width: 0; }
  @media (min-width: 940px) { .hero__inner { grid-template-columns: 1.5fr 1fr; } }
  .hero__logo { width: min(360px, 70vw); height: auto; margin-bottom: 1.4rem; }
  .hero h1 { font-size: clamp(2.2rem, 5.8vw, 4rem); overflow-wrap: break-word; }
  .hero h1 span { display: block; color: var(--rouge); }
  .hero__sub { margin-top: 1rem; font-size: clamp(1rem, 2vw, 1.15rem); color: var(--gris-80); }
  .hero__cta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem; }
  @media (max-width: 599px) {
    .hero__cta .btn { flex: 1 1 100%; padding: .85rem .5rem; font-size: .88rem; }
  }

  /* Carte tarif : noir + or */
  .prix { background: var(--noir); color: var(--blanc); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-card-hover); position: relative; overflow: hidden; }
  .prix::after { content: ''; position: absolute; top: -40%; right: -25%; width: 60%; height: 180%; background: linear-gradient(118deg, transparent 46%, rgba(234,196,20,.16) 46.5%, rgba(234,196,20,.16) 55%, transparent 55.5%); }
  .prix .montant { font-family: var(--font-display); font-size: 3.6rem; line-height: 1; color: var(--or); }
  .prix .montant small { font-size: 1.15rem; color: var(--blanc); }
  .prix > p { font-size: .9rem; color: rgba(255,255,255,.75); margin-top: .35rem; }
  .prix ul { list-style: none; margin-top: 1rem; display: grid; gap: .45rem; font-size: .93rem; position: relative; }
  .prix li::before { content: '✔'; color: var(--or); font-weight: 800; margin-right: .55rem; }
  .prix .places { margin-top: 1.1rem; border: 1.5px solid rgba(255,255,255,.3); border-radius: 6px; padding: .6rem .8rem; font-size: .85rem; font-weight: 700; }
  .prix .places b { color: var(--or); }

  /* Bande infos clés pleine largeur */
  .bande { background: var(--rouge); color: var(--blanc); }
  .bande ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); }
  @media (min-width: 760px) { .bande ul { grid-template-columns: repeat(4, 1fr); } }
  .bande li { text-align: center; padding: 1.1rem .6rem; }
  .bande li + li { border-left: 1px solid rgba(255,255,255,.25); }
  @media (max-width: 759px) { .bande li:nth-child(3) { border-left: none; } .bande li:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.25); } }
  .bande b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; line-height: 1.1; }
  .bande span { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .9; }

  /* Journée type */
  .jours { display: grid; gap: 1.2rem; margin-top: 1.6rem; grid-template-columns: 1fr; }
  @media (min-width: 720px) { .jours { grid-template-columns: 1fr 1fr; } }
  .jour { border-radius: var(--radius); padding: 1.6rem; color: var(--blanc); background: linear-gradient(135deg, var(--noir) 0%, #2a0407 100%); position: relative; overflow: hidden; }
  .jour--am::before, .jour--pm::before { content: ''; position: absolute; inset: 0 0 auto; height: 5px; background: var(--rouge); }
  .jour--pm::before { background: var(--or); }
  .jour .demi { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--or); }
  .jour--am .demi { color: var(--rouge); filter: brightness(1.6); }
  .jour h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.35rem; margin: .35rem 0 .5rem; }
  .jour p { font-size: .95rem; color: rgba(255,255,255,.85); }

  /* Planning : 4 colonnes jour */
  .planning { display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-top: 1.6rem; }
  @media (min-width: 640px) { .planning { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1020px) { .planning { grid-template-columns: repeat(4, 1fr); } }
  .pj { background: var(--blanc); border: 1px solid var(--gris-10); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; }
  .pj h3 { background: var(--noir); color: var(--blanc); font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.05rem; padding: .75rem .9rem; }
  .pj h3 small { display: block; font-family: var(--font-body); font-weight: 700; font-size: .72rem; color: var(--or); text-transform: none; letter-spacing: 0; }
  .pj ul { list-style: none; padding: .5rem 0; }
  .pj li { display: flex; gap: .6rem; align-items: baseline; font-size: .85rem; padding: .38rem .9rem; }
  .pj li + li { border-top: 1px solid var(--gris-05); }
  .pj li span { font-weight: 800; font-variant-numeric: tabular-nums; color: var(--gris-60); flex-shrink: 0; width: 2.9em; }
  .pj li.tempsfort { background: #fdf7dd; font-weight: 700; }
  .pj li.tempsfort span { color: var(--or-fonce); }

  /* Installations : liste à puces + carrousel photo */
  .installs { list-style: none; display: grid; gap: .55rem; grid-template-columns: 1fr; margin-top: 1.6rem; }
  @media (min-width: 560px) { .installs { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 920px) { .installs { grid-template-columns: repeat(3, 1fr); } }
  .installs li { position: relative; padding-left: 1.7rem; font-size: .98rem; color: var(--gris-80); }
  .installs li::before { content: ''; position: absolute; left: 0; top: .45em; width: .62rem; height: .62rem; border-radius: 50%; background: var(--or); box-shadow: 0 0 0 3px rgba(199,161,42,.18); }
  .installs li strong { font-weight: 800; color: var(--noir); }

  .carousel { position: relative; margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); background: var(--gris-10); }
  .carousel__viewport { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
  .carousel__viewport::-webkit-scrollbar { display: none; }
  .carousel__viewport:focus-visible { outline: 3px solid var(--or); outline-offset: -3px; }
  .carousel__slide { position: relative; flex: 0 0 100%; scroll-snap-align: center; }
  .carousel__slide img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--gris-10); }
  .carousel__slide figcaption { position: absolute; inset: auto 0 0; padding: 2.4rem 1.1rem .9rem; color: var(--blanc); font-weight: 800; font-size: 1rem; background: linear-gradient(transparent, rgba(0,0,0,.8)); }
  .carousel__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 2.6rem; height: 2.6rem; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--noir); font-size: 1rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-card); transition: var(--transition); }
  .carousel__nav:hover { background: var(--blanc); transform: translateY(-50%) scale(1.06); }
  .carousel__nav--prev { left: .7rem; }
  .carousel__nav--next { right: .7rem; }
  .carousel__dots { position: absolute; inset: auto 0 .55rem; z-index: 2; display: flex; justify-content: center; gap: .45rem; }
  .carousel__dot { width: .6rem; height: .6rem; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: var(--transition); }
  .carousel__dot[aria-selected="true"] { background: var(--or); transform: scale(1.35); }
  @media (prefers-reduced-motion: reduce) { .carousel__viewport { scroll-behavior: auto; } }

  .installs-lieux { margin-top: 1.4rem; font-size: .95rem; color: var(--gris-80); background: var(--blanc); border-left: 4px solid var(--or); border-radius: 6px; box-shadow: var(--shadow-card); padding: .9rem 1.1rem; }

  /* ===== Tenue : vitrine sur fond noir ===== */
  .tenue { background: var(--noir); color: var(--blanc); position: relative; overflow: hidden; }
  .tenue::before { content: ''; position: absolute; left: -10%; bottom: -50%; width: 55%; height: 200%; background: linear-gradient(118deg, transparent 47%, rgba(227,5,26,.16) 47.5%, rgba(227,5,26,.16) 55%, transparent 55.5%); pointer-events: none; }
  .tenue__inner { display: grid; gap: clamp(1.6rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; position: relative; }
  @media (min-width: 880px) { .tenue__inner { grid-template-columns: 1fr 1.1fr; } }
  .tenue h2 { color: var(--blanc); }
  .tenue h2 em { font-style: normal; color: var(--or); }
  .tenue .lead { color: rgba(255,255,255,.85); }
  .tenue__offert { display: inline-block; background: var(--or); color: var(--noir-pur); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; border-radius: 4px; padding: .25rem .7rem; margin-bottom: .9rem; }
  .tailles { margin-top: 1.3rem; }
  .tailles p { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.75); margin-bottom: .5rem; }
  .tailles ul { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; }
  .tailles li { border: 1.5px solid rgba(255,255,255,.4); border-radius: 5px; padding: .28rem .7rem; font-size: .85rem; font-weight: 800; }
  .kit { display: flex; justify-content: center; gap: 0; }
  .kit figure { background: var(--blanc); border-radius: var(--radius); padding: .8rem .8rem 1rem; box-shadow: 0 18px 50px rgba(0,0,0,.5); width: min(46%, 270px); transition: var(--transition); }
  .kit figure:first-child { transform: rotate(-4deg) translateX(6%); z-index: 1; }
  .kit figure:last-child { transform: rotate(3.5deg) translateX(-6%) translateY(8%); }
  .kit figure:hover { transform: rotate(0) translate(0, -2%); z-index: 2; }
  .kit img { border-radius: 6px; width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--gris-10); }
  .kit figcaption { text-align: center; color: var(--noir); font-weight: 800; font-size: .9rem; margin-top: .55rem; }

