
/* ── RESET LIENS BLEUS → BLANC ── */
a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}
a:hover {
  color: var(--accent);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #080808;
      --surface: #0f0f0f;
      --surface2: #161616;
      --accent: #e63946;
      --accent2: #ff6b6b;
      --accent-glow: rgba(230,57,70,0.18);
      --text: #f0f0f0;
      --muted: #777;
      --border: rgba(230,57,70,0.1);
      --radius: 12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 5%;
      background: rgba(8,8,8,0.9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.15em;
      color: var(--accent);
      text-decoration: none;
    }
    .nav-logo span { color: var(--text); }

    nav ul { list-style: none; display: flex; gap: 2rem; }

    nav ul a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.25s;
    }
    nav ul a:hover { color: var(--accent); }

    .nav-cta {
      background: var(--accent) !important;
      color: #fff !important;
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: center; align-items: flex-start;
      padding: 8rem 5% 4rem;
      position: relative;
      background:
        radial-gradient(ellipse at 70% 40%, rgba(230,57,70,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(230,57,70,0.06) 0%, transparent 50%),
        var(--bg);
      overflow: hidden;
    }

    .hero::before {
      content: 'X';
      position: absolute; right: -3%; top: 50%;
      transform: translateY(-50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(18rem, 32vw, 42rem);
      color: rgba(230,57,70,0.04);
      pointer-events: none;
      line-height: 1;
    }

    /* ligne rouge déco gauche */
    .hero::after {
      content: '';
      position: absolute; left: 0; top: 15%; bottom: 15%;
      width: 3px;
      background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    }

    .hero-tag {
      display: inline-block;
      background: rgba(230,57,70,0.12);
      color: var(--accent);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 100px;
      border: 1px solid rgba(230,57,70,0.3);
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 9.5vw, 9.5rem);
      line-height: 0.88;
      letter-spacing: 0.04em;
      max-width: 780px;
    }
    .hero h1 span { color: var(--accent); }

    .hero p {
      margin-top: 1.6rem;
      font-size: clamp(0.95rem, 1.3vw, 1.1rem);
      color: var(--muted);
      max-width: 500px;
      line-height: 1.75;
      font-weight: 300;
    }

    .hero-actions {
      margin-top: 2.5rem;
      display: flex; gap: 1rem; flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.95rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 0 28px rgba(230,57,70,0.35);
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      opacity: 0.88; transform: translateY(-2px);
      box-shadow: 0 0 40px rgba(230,57,70,0.55);
    }

    .btn-outline {
      border: 1px solid rgba(230,57,70,0.35);
      color: var(--text);
      font-weight: 600;
      font-size: 0.88rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.95rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      transition: border-color 0.2s, transform 0.2s, background 0.2s;
    }
    .btn-outline:hover {
      border-color: var(--accent);
      background: rgba(230,57,70,0.07);
      transform: translateY(-2px);
    }

    .hero-stats {
      margin-top: 4rem;
      display: flex; gap: 3rem; flex-wrap: wrap;
    }
    .hero-stat strong {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.6rem;
      color: var(--accent);
      letter-spacing: 0.05em;
      text-shadow: 0 0 20px rgba(230,57,70,0.4);
    }
    .hero-stat span {
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    /* ─── SECTION BASE ─── */
    section { padding: 6rem 5%; }

    .section-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      letter-spacing: 0.04em;
      line-height: 1;
      max-width: 700px;
    }
    .section-title span { color: var(--accent); }

    .section-sub {
      margin-top: 1rem;
      color: var(--muted);
      font-size: 0.97rem;
      max-width: 540px;
      line-height: 1.75;
      font-weight: 300;
    }

    /* ─── SERVICES ─── */
    #services { background: var(--surface); }

    .services-grid {
      margin-top: 4rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .service-card:hover {
      border-color: rgba(230,57,70,0.4);
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(230,57,70,0.12);
    }
    .service-card:hover::before { opacity: 1; }

    .service-icon { font-size: 2rem; margin-bottom: 1.2rem; }

    .service-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.06em;
      margin-bottom: 0.6rem;
    }
    .service-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

    /* ─── ÉQUIPEMENT ─── */
    .equip-grid {
      margin-top: 4rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1rem;
    }

    .equip-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.2rem 1.5rem;
      display: flex; align-items: center; gap: 0.9rem;
      transition: border-color 0.25s;
    }
    .equip-item:hover { border-color: rgba(230,57,70,0.35); }

    .equip-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 8px rgba(230,57,70,0.6);
      flex-shrink: 0;
    }

    .equip-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.4; }
    .equip-item p strong { color: var(--text); display: block; font-size: 0.9rem; }

    /* ─── TARIFS ─── */
    #tarifs { background: var(--surface); }

    .tarifs-grid {
      margin-top: 4rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      align-items: start;
    }

    .tarif-card {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.2rem;
      position: relative;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .tarif-card.featured {
      border-color: var(--accent);
      box-shadow: 0 0 40px rgba(230,57,70,0.15);
    }

    .tarif-badge {
      position: absolute; top: -0.7rem; left: 1.5rem;
      background: var(--accent);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.25rem 0.8rem;
      border-radius: 100px;
      box-shadow: 0 0 14px rgba(230,57,70,0.5);
    }

    .tarif-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
    }

    .tarif-price {
      margin: 1rem 0;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--accent);
      letter-spacing: 0.03em;
      line-height: 1;
      text-shadow: 0 0 20px rgba(230,57,70,0.3);
    }
    .tarif-price span { font-size: 1rem; color: var(--muted); font-family: 'Inter', sans-serif; }

    .tarif-card ul {
      list-style: none;
      margin: 1.2rem 0 1.8rem;
      display: flex; flex-direction: column; gap: 0.65rem;
    }
    .tarif-card ul li {
      font-size: 0.87rem; color: var(--muted);
      padding-left: 1.3rem; position: relative;
    }
    .tarif-card ul li::before {
      content: '✓';
      position: absolute; left: 0;
      color: var(--accent); font-weight: 700;
    }

    /* ─── DÉROULEMENT ─── */
    .steps {
      margin-top: 4rem;
      display: flex; flex-direction: column; gap: 0;
    }

    .step {
      display: grid;
      grid-template-columns: 3rem 1fr;
      gap: 1.5rem;
      padding-bottom: 3rem;
      position: relative;
    }
    .step:last-child { padding-bottom: 0; }

    .step-num {
      width: 3rem; height: 3rem;
      border-radius: 50%;
      background: rgba(230,57,70,0.1);
      border: 1px solid rgba(230,57,70,0.4);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      color: var(--accent);
      flex-shrink: 0;
      position: relative; z-index: 1;
      box-shadow: 0 0 16px rgba(230,57,70,0.2);
    }

    .step::before {
      content: '';
      position: absolute;
      left: 1.45rem; top: 3rem; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, rgba(230,57,70,0.3), transparent);
    }
    .step:last-child::before { display: none; }

    .step-body h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: 0.05em;
      margin-bottom: 0.4rem;
      padding-top: 0.4rem;
    }
    .step-body p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

    /* ─── CTA BAND ─── */
    .cta-band {
      margin: 0 5%;
      background:
        linear-gradient(135deg, rgba(230,57,70,0.15), rgba(230,57,70,0.04)),
        var(--surface2);
      border: 1px solid rgba(230,57,70,0.3);
      border-radius: var(--radius);
      padding: 4rem 5%;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 2rem;
      box-shadow: 0 0 60px rgba(230,57,70,0.08);
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
    }

    .cta-band h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      letter-spacing: 0.04em;
      max-width: 560px;
    }
    .cta-band h2 span { color: var(--accent); }

    /* ─── CONTACT ─── */
    #contact { background: var(--surface); }

    .contact-grid {
      margin-top: 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }

    .contact-info p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.8;
    }
    .contact-info a { color: var(--accent); text-decoration: none; }

    .contact-info ul {
      list-style: none;
      margin-top: 2rem;
      display: flex; flex-direction: column; gap: 1rem;
    }
    .contact-info ul li {
      display: flex; align-items: center; gap: 0.8rem;
      font-size: 0.9rem; color: var(--muted);
    }
    .contact-info ul li span:first-child { font-size: 1.1rem; }

    form { display: flex; flex-direction: column; gap: 1rem; }

    form input, form select, form textarea {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.9rem 1.1rem;
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    form input:focus, form select:focus, form textarea:focus {
      border-color: rgba(230,57,70,0.5);
      box-shadow: 0 0 0 3px rgba(230,57,70,0.08);
    }
    form textarea { min-height: 130px; resize: vertical; }
    form select option { background: #161616; }

    form button {
      background: var(--accent);
      color: #fff;
      font-weight: 800;
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      box-shadow: 0 0 24px rgba(230,57,70,0.4);
      transition: opacity 0.2s, box-shadow 0.2s;
    }
    form button:hover {
      opacity: 0.88;
      box-shadow: 0 0 40px rgba(230,57,70,0.6);
    }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 2.5rem 5%;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }

    footer p { font-size: 0.8rem; color: var(--muted); }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 0.15em;
      color: var(--accent);
      text-decoration: none;
    }
    .footer-logo span { color: var(--text); }

    .socials { display: flex; gap: 0.8rem; }

    .socials a {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(230,57,70,0.2);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      font-size: 0.78rem; font-weight: 700;
      color: var(--muted);
      transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
    }
    .socials a:hover {
      border-color: var(--accent);
      color: var(--accent);
      box-shadow: 0 0 10px rgba(230,57,70,0.3);
    }

    /* ─── DIVIDER ─── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(230,57,70,0.25), transparent);
      margin: 0 5%;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      nav ul { display: none; }
      .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
      .cta-band { text-align: center; justify-content: center; }
    }

    /* ─── AUDIO PLAYER ─── */
    .player {
      position: fixed; bottom: 0; left: 0; right: 0;
      z-index: 200;
      background: rgba(10,10,10,0.97);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(230,57,70,0.25);
      padding: 0;
      box-shadow: 0 -8px 40px rgba(230,57,70,0.1);
    }

    /* barre de progression globale en haut du player */
    .player-progress-bar {
      width: 100%; height: 3px;
      background: rgba(255,255,255,0.06);
      cursor: pointer;
      position: relative;
    }
    .player-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      width: 0%;
      transition: width 0.1s linear;
      pointer-events: none;
    }
    .player-progress-bar:hover .player-progress-fill { filter: brightness(1.2); }

    .player-main {
      display: flex; align-items: center; gap: 1.5rem;
      padding: 0.9rem 2rem;
    }

    /* artwork */
    .player-art {
      width: 48px; height: 48px;
      border-radius: 6px;
      background: rgba(230,57,70,0.15);
      border: 1px solid rgba(230,57,70,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
      overflow: hidden;
    }
    .player-art.playing {
      animation: artPulse 2s ease-in-out infinite;
    }
    @keyframes artPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.4); }
      50%       { box-shadow: 0 0 0 8px rgba(230,57,70,0); }
    }

    /* track info */
    .player-info { flex: 1; min-width: 0; }
    .player-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.08em;
      color: var(--text);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .player-artist {
      font-size: 0.75rem;
      color: var(--muted);
      letter-spacing: 0.05em;
      margin-top: 0.1rem;
    }

    /* contrôles */
    .player-controls {
      display: flex; align-items: center; gap: 0.6rem;
    }
    .ctrl-btn {
      background: none; border: none; cursor: pointer;
      color: var(--muted);
      font-size: 1rem;
      width: 34px; height: 34px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: color 0.2s, background 0.2s;
    }
    .ctrl-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }
    .ctrl-btn.play-pause {
      width: 44px; height: 44px;
      background: var(--accent);
      color: #fff;
      font-size: 1.1rem;
      box-shadow: 0 0 18px rgba(230,57,70,0.4);
    }
    .ctrl-btn.play-pause:hover {
      background: var(--accent2);
      box-shadow: 0 0 28px rgba(230,57,70,0.6);
    }

    /* temps */
    .player-time {
      font-size: 0.75rem;
      color: var(--muted);
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.03em;
      white-space: nowrap;
    }

    /* volume */
    .player-volume {
      display: flex; align-items: center; gap: 0.5rem;
    }
    .vol-icon { font-size: 0.9rem; color: var(--muted); cursor: pointer; }
    .vol-slider {
      -webkit-appearance: none;
      width: 80px; height: 3px;
      border-radius: 2px;
      background: rgba(255,255,255,0.12);
      outline: none; cursor: pointer;
    }
    .vol-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--accent);
      cursor: pointer;
      box-shadow: 0 0 6px rgba(230,57,70,0.5);
    }

    /* toggle playlist */
    .playlist-toggle {
      background: rgba(230,57,70,0.1);
      border: 1px solid rgba(230,57,70,0.2);
      border-radius: 6px;
      color: var(--accent);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.4rem 0.9rem;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .playlist-toggle:hover { background: rgba(230,57,70,0.2); }

    /* playlist drawer */
    .playlist-drawer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
      border-top: 1px solid transparent;
    }
    .playlist-drawer.open {
      max-height: 320px;
      border-top-color: rgba(230,57,70,0.1);
      overflow-y: auto;
    }
    .playlist-drawer::-webkit-scrollbar { width: 4px; }
    .playlist-drawer::-webkit-scrollbar-track { background: transparent; }
    .playlist-drawer::-webkit-scrollbar-thumb { background: rgba(230,57,70,0.3); border-radius: 2px; }

    .playlist-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.8rem 2rem 0.4rem;
    }
    .playlist-header span {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .playlist-count {
      font-size: 0.68rem;
      color: rgba(230,57,70,0.7);
    }

    .playlist-items { padding: 0 1rem 1rem; }

    .playlist-item {
      display: flex; align-items: center; gap: 1rem;
      padding: 0.6rem 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s;
      position: relative;
    }
    .playlist-item:hover { background: rgba(255,255,255,0.04); }
    .playlist-item.active {
      background: rgba(230,57,70,0.08);
      border: 1px solid rgba(230,57,70,0.15);
    }

    .item-num {
      width: 24px;
      font-size: 0.75rem;
      color: var(--muted);
      text-align: center;
      flex-shrink: 0;
    }
    .playlist-item.active .item-num {
      color: var(--accent);
    }
    .item-bars {
      display: none;
      gap: 2px; align-items: flex-end;
      width: 24px; height: 14px;
    }
    .playlist-item.active.playing .item-bars { display: flex; }
    .playlist-item.active.playing .item-num { display: none; }

    .item-bars span {
      width: 3px;
      border-radius: 2px;
      background: var(--accent);
    }
    .item-bars span:nth-child(1) { height: 60%; animation: bar1 0.8s ease-in-out infinite alternate; }
    .item-bars span:nth-child(2) { height: 100%; animation: bar2 0.6s ease-in-out infinite alternate; }
    .item-bars span:nth-child(3) { height: 40%; animation: bar3 0.9s ease-in-out infinite alternate; }
    .item-bars span:nth-child(4) { height: 80%; animation: bar1 0.7s ease-in-out infinite alternate; }

    @keyframes bar1 { from { height: 20%; } to { height: 80%; } }
    @keyframes bar2 { from { height: 50%; } to { height: 100%; } }
    @keyframes bar3 { from { height: 30%; } to { height: 70%; } }

    .item-art {
      width: 38px; height: 38px;
      border-radius: 5px;
      background: rgba(230,57,70,0.1);
      border: 1px solid rgba(230,57,70,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .item-info { flex: 1; min-width: 0; }
    .item-title {
      font-size: 0.87rem;
      font-weight: 600;
      color: var(--text);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .playlist-item.active .item-title { color: var(--accent); }

    .item-meta {
      font-size: 0.73rem;
      color: var(--muted);
      margin-top: 0.1rem;
    }
    .item-duration {
      font-size: 0.75rem;
      color: var(--muted);
      font-variant-numeric: tabular-nums;
      flex-shrink: 0;
    }

    /* padding body pour le player fixe */
    body { padding-bottom: 80px; }


    /* ─── HERO SLIDER ─── */
    .hero { position: relative; overflow: hidden; min-height: 100vh; padding: 8rem 5% 4rem; }
    .hero-slides { position: absolute; inset: 0; z-index: 0; }
    .hero-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity 1.2s ease-in-out;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.55) 55%, rgba(8,8,8,0.15) 100%),
                  linear-gradient(0deg, rgba(8,8,8,0.5) 0%, transparent 50%);
    }
    .hero > *:not(.hero-slides) { position: relative; z-index: 2; }
    .hero-arrow {
      position: absolute !important; top: 50% !important; z-index: 10 !important;
      transform: translateY(-50%) !important;
      background: rgba(0,0,0,0.55); border: 1.5px solid rgba(230,57,70,0.4);
      color: #fff;
      width: 52px !important; height: 52px !important;
      min-width: 52px !important; min-height: 52px !important;
      max-width: 52px !important; max-height: 52px !important;
      border-radius: 50% !important;
      padding: 0 !important;
      font-size: 1.3rem; cursor: pointer;
      display: flex !important; align-items: center; justify-content: center;
      flex-shrink: 0;
      line-height: 1;
      transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
      backdrop-filter: blur(12px); outline: none;
      box-sizing: border-box !important;
    }
    .hero-arrow:hover { background: rgba(230,57,70,0.4) !important; border-color: var(--accent) !important; box-shadow: 0 0 20px rgba(230,57,70,0.5); transform: translateY(-50%) scale(1.08) !important; }
    .hero-arrow.prev { left: 1.5rem !important; right: auto !important; }
    .hero-arrow.next { right: 1.5rem !important; left: auto !important; }
    .hero-nav {
      position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
      z-index: 3; display: flex; gap: 0.55rem; align-items: center;
    }
    .hero-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: rgba(255,255,255,0.25); border: 1.5px solid rgba(255,255,255,0.2);
      cursor: pointer; transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .hero-dot:hover { background: rgba(255,255,255,0.5); transform: scale(1.2); }
    .hero-dot.active { background: var(--accent); border-color: var(--accent); transform: scale(1.3); box-shadow: 0 0 10px rgba(230,57,70,0.7); }
    .hero-counter { position: absolute; top: 6rem; right: 5%; z-index: 3; font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.3); }
    .hero-counter span { color: var(--accent); }

    /* ─── SLIDER TÉMOIGNAGES ─── */
    .temoignages-slider { position: relative; margin-top: 3rem; overflow: hidden; }
    .temoignages-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
      gap: 1.5rem;
      align-items: stretch;
      padding: 1rem 0;
    }
    .temoignage-card {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.2rem;
      min-width: 280px !important;
      max-width: 360px !important;
      width: 360px;
      flex-shrink: 0;
      box-sizing: border-box;
      position: relative;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
      word-break: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
    }
    @media (max-width: 600px) { .temoignage-card { min-width: 90vw !important; max-width: 90vw !important; width: 90vw; } }
    .temoignage-card:hover { border-color: var(--accent); box-shadow: 0 0 40px rgba(230,57,70,0.15); }
    .temoignage-quote { color: var(--accent); font-size: 2.5rem; line-height: 1; opacity: 0.35; font-family: 'Bebas Neue', sans-serif; margin-bottom: 0.8rem; }
    .temoignage-text { font-style: italic; font-size: 0.92rem; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; }
    .temoignage-author { border-top: 1px solid var(--border); padding-top: 1rem; display: flex; align-items: center; gap: 1rem; }
    .temoignage-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
    .temoignage-name { color: var(--accent); font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; font-weight: 700; }
    .temoignage-role { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
    .temo-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
    .temo-btn { background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.3); color: var(--text); width: 40px; height: 40px; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
    .temo-btn:hover { background: rgba(230,57,70,0.25); border-color: var(--accent); }
    .temo-dots { display: flex; gap: 0.4rem; align-items: center; }
    .temo-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.15); cursor: pointer; transition: background 0.3s, transform 0.3s; }
    .temo-dot.active { background: var(--accent); border-color: var(--accent); transform: scale(1.3); box-shadow: 0 0 8px rgba(230,57,70,0.6); }

    /* ─── MAP & CONTACT ─── */
    .map-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
    @media (max-width: 768px) { .map-contact-grid { grid-template-columns: 1fr; } }
    .map-wrapper {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(230,57,70,0.3);
      height: 340px;
      box-shadow: 0 0 30px rgba(230,57,70,0.1), 0 0 0 1px rgba(230,57,70,0.08);
      position: relative;
    }
    .map-wrapper iframe {
      width: 100%; height: 100%; border: none;
      filter: grayscale(100%) invert(92%) sepia(20%) hue-rotate(175deg) saturate(0.4) brightness(0.55) contrast(1.3);
    }
    .contact-details { display: flex; flex-direction: column; gap: 1rem; }
    .contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.2rem; background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; transition: border-color 0.25s; }
    .contact-detail-item:hover { border-color: rgba(230,57,70,0.35); }
    .contact-detail-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(230,57,70,0.12); border: 1px solid rgba(230,57,70,0.25); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
    .contact-detail-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.2rem; }
    .contact-detail-value { font-size: 0.92rem; color: var(--text); line-height: 1.5; }
    .contact-detail-value a { color: var(--text); text-decoration: none; transition: color 0.2s; }
    .contact-detail-value a:hover { color: var(--accent); }
    .badge-open { display: inline-block; background: rgba(40,200,80,0.12); color: #4ade80; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 100px; border: 1px solid rgba(40,200,80,0.25); margin-left: 0.5rem; }

    /* ─── BOUTON RETOUR EN HAUT ─── */
    #backToTop { position: fixed; bottom: 90px; right: 1.5rem; z-index: 150; width: 46px; height: 46px; background: var(--accent); color: #fff; border: none; border-radius: 50%; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(230,57,70,0.5); opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; }
    #backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    #backToTop:hover { background: var(--accent2); box-shadow: 0 0 30px rgba(230,57,70,0.7); transform: translateY(-3px); }

    /* ─── ÉQUIPEMENTS EXTRA ─── */
    .equip-item:hover { border-color: rgba(230,57,70,0.35); }


    /* ─── ANIMATIONS AU SCROLL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.from-left {
      transform: translateX(-50px);
    }
    .reveal.from-right {
      transform: translateX(50px);
    }
    .reveal.visible {
      opacity: 1;
      transform: translate(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }

    /* ─── GALERIE PHOTO ─── */
    #galerie { background: var(--bg); }

    .galerie-grid {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 220px 220px;
      gap: 0.8rem;
    }

    .galerie-item {
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    /* Disposition mosaic */
    .galerie-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
    .galerie-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
    .galerie-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
    .galerie-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
    .galerie-item:nth-child(5) { grid-column: span 4; grid-row: span 1; }

    @media (max-width: 900px) {
      .galerie-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .galerie-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
      .galerie-item:nth-child(1) { grid-column: span 2 !important; }
    }

    @media (max-width: 600px) {
      .galerie-grid { grid-template-columns: 1fr; }
      .galerie-item { grid-column: span 1 !important; height: 200px; }
    }

    .galerie-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease, filter 0.4s ease;
      filter: brightness(0.75) saturate(0.9);
    }

    .galerie-item:hover img {
      transform: scale(1.07);
      filter: brightness(0.9) saturate(1.1);
    }

    .galerie-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.35s;
      display: flex; align-items: flex-end;
      padding: 1.2rem;
    }

    .galerie-item:hover .galerie-overlay { opacity: 1; }

    .galerie-caption {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.1em;
      color: var(--text);
    }

    .galerie-caption span {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 400;
      color: var(--accent);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.2rem;
    }

    /* Border rouge top au survol */
    .galerie-item::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
      z-index: 2;
    }
    .galerie-item:hover::before { transform: scaleX(1); }

    /* ─── LIGHTBOX ─── */
    .lightbox {
      position: fixed; inset: 0; z-index: 300;
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(10px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s;
    }
    .lightbox.open { opacity: 1; pointer-events: auto; }

    .lightbox img {
      max-width: 90vw; max-height: 85vh;
      border-radius: 10px;
      border: 1px solid rgba(230,57,70,0.3);
      box-shadow: 0 0 60px rgba(230,57,70,0.2);
    }

    .lightbox-close {
      position: absolute; top: 1.5rem; right: 2rem;
      background: rgba(230,57,70,0.15);
      border: 1px solid rgba(230,57,70,0.3);
      color: #fff; width: 44px; height: 44px;
      border-radius: 50%; font-size: 1.2rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .lightbox-close:hover { background: rgba(230,57,70,0.4); }

    .lightbox-nav {
      position: absolute; top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: 1px solid rgba(230,57,70,0.3);
      color: #fff; width: 50px; height: 50px;
      border-radius: 50%; font-size: 1.3rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .lightbox-nav:hover { background: rgba(230,57,70,0.35); }
    .lightbox-prev { left: 1.5rem; }
    .lightbox-next { right: 1.5rem; }

    .lightbox-caption {
      position: absolute; bottom: 1.5rem; left: 50%;
      transform: translateX(-50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem; letter-spacing: 0.12em;
      color: rgba(255,255,255,0.6);
    }
/* ── ASTRA CHILD — XCAPE OVERRIDES ── */
body { background:#080808 !important; }
#masthead, .ast-masthead-custom-menu-items, .main-header-bar { display:none !important; }
#colophon { display:none !important; }
#content, .ast-container, .site-content { padding:0 !important; max-width:100% !important; }
.ast-page-builder-template #primary { padding:0 !important; }
body.admin-bar nav { top:32px !important; }
@media screen and (max-width:782px){ body.admin-bar nav { top:46px !important; } }

/* player buttons */
.ctrl-btn { display:inline-flex!important; align-items:center!important; justify-content:center!important; padding:0; }
.ctrl-btn.play-pause { background:#e63946!important; color:#fff!important; border-radius:50%!important; width:42px!important; height:42px!important; font-size:1.1rem!important; }
.ctrl-btn.play-pause:hover { background:#c0392b!important; }



/* ── TEMOIGNAGE AVATAR CENTRÉ ── */
.temoignage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.temo-avatar-top {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    margin: 0 auto 1.2rem auto;
    background: rgba(230,57,70,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(230,57,70,0.15);
}
.temo-avatar-top .temo-avatar-img {
    position: absolute; top:0; left:0;
    width:100%; height:100%;
    object-fit: cover; border-radius:50%;
}
.temo-avatar-top .temo-avatar-fallback {
    font-size: 2rem;
    line-height: 1;
}
.temoignage-author-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.2rem;
    gap: 2px;
}
.temoignage-author-bottom .temoignage-name {
    display: block;
    text-align: center;
}
.temoignage-author-bottom .temoignage-role {
    display: block;
    text-align: center;
}
/* Masquer l'ancien author si présent */
.temoignage-author { display: none !important; }


/* ── FORCE BOUTONS RONDS ── */
.hero-arrow,
.play-pause,
.ctrl-btn,
.temo-btn,
.lightbox-close,
.lightbox-nav,
.contact-detail-icon {
  border-radius: 50% !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
  aspect-ratio: 1 / 1 !important;
}
.hero-arrow    { width: 52px !important; height: 52px !important; }
.play-pause    { width: 52px !important; height: 52px !important; }
.ctrl-btn      { width: 38px !important; height: 38px !important; }
.temo-btn      { width: 38px !important; height: 38px !important; }
.lightbox-close{ width: 44px !important; height: 44px !important; }
.lightbox-nav  { width: 48px !important; height: 48px !important; }
.contact-detail-icon { width: 38px !important; height: 38px !important; }

/* ── TITRES EN BLANC (override thème parent) ── */
h1, h2, h3, h4, h5, h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content :where(h1, h2, h3, h4, h5, h6) {
  color: #ffffff !important;
}

.service-card{text-align:center!important;display:flex!important;flex-direction:column!important;align-items:center!important;}
.service-icon{font-size:2rem;margin:0 auto 1rem;display:flex;align-items:center;justify-content:center;width:64px;height:64px;border-radius:50%;background:rgba(230,57,70,0.1);border:1px solid rgba(230,57,70,0.25);}
.svc-link{color:var(--accent);font-size:0.8rem;margin-top:0.8rem;}

/* ── PLAYER COULEURS ROUGE + BLANC ── */
.player, .player * {
  accent-color: #e63946;
}
/* Barre de progression cliquable */
.player-progress-bar,
.player-progress-fill {
  accent-color: #e63946;
}
.player-progress-fill {
  background: #e63946 !important;
}
/* Boutons player en blanc */
.ctrl-btn,
.play-pause,
.player-title,
.player-artist,
.player-time {
  color: #ffffff !important;
}
/* Slider volume — webkit */
.vol-slider {
  accent-color: #e63946 !important;
  background: rgba(255,255,255,0.12) !important;
}
.vol-slider::-webkit-slider-thumb {
  background: #e63946 !important;
  border: none !important;
}
.vol-slider::-moz-range-thumb {
  background: #e63946 !important;
  border: none !important;
}
.vol-slider::-webkit-slider-runnable-track {
  background: rgba(255,255,255,0.12) !important;
}
/* Icônes et textes actions en blanc */
.ctrl-btn svg,
.ctrl-btn i,
.play-pause svg,
.play-pause i {
  color: #ffffff !important;
  fill: #ffffff !important;
}
/* Play/pause bouton fond rouge */
.play-pause {
  background: #e63946 !important;
  color: #ffffff !important;
}
.play-pause:hover {
  background: #c0323e !important;
}
/* Barre de progression du titre (seek bar) */
input[type=range].seek-bar,
input[type=range].player-seek {
  accent-color: #e63946 !important;
}
input[type=range].seek-bar::-webkit-slider-thumb,
input[type=range].player-seek::-webkit-slider-thumb {
  background: #e63946 !important;
}


/* ── EQUIPEMENTS CARDS ── */
.equip-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.equip-card {
  display: flex;
  flex-direction: column;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.equip-card:hover {
  border-color: rgba(230,57,70,0.5);
  box-shadow: 0 8px 32px rgba(230,57,70,0.12);
  transform: translateY(-4px);
}
.equip-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
  display: flex; align-items: center; justify-content: center;
}
.equip-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.equip-card:hover .equip-card-img img {
  transform: scale(1.05);
}
.equip-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a0a0a 100%);
}
.equip-card-placeholder span {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(230,57,70,0.3);
  text-transform: uppercase;
  font-family: var(--font-title, sans-serif);
}
.equip-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1rem 1.1rem 1.2rem;
}
.equip-card-cat {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}
.equip-card-nom {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}
.equip-card-det {
  font-size: 0.76rem;
  color: var(--text-muted, #888);
  line-height: 1.4;
  margin-top: 2px;
}
@media (max-width: 600px) {
  .equip-grid-new { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
}
