/*
 * Danseur.fr — Feuille de style v2
 * Nouveau système de composants — pages refontes progressives
 * Basé sur le design system de référence, couleurs danseur.fr
 * 12/04/2026
 */

/*
 * SpectaclesDeNoel.com — Feuille de style globale
 * Généré automatiquement — ne pas modifier manuellement
 * Toutes les règles CSS du site sont ici
 */

/* =============================================
       VARIABLES & RESET
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --rouge:        #b8973a;
      --rouge-sombre: #0a0908;
      --rouge-clair:  #d4aa4a;
      --accent:       #d4aa4a;
      --blanc:        #ffffff;
      --creme:        #f5f0e4;
      --gris-clair:   #f5f0e4;
      --gris-texte:   #1a1714;
      --gris-moyen:   #5a5450;
      --bordure:      #e2ddd6;
      --font-titre:   'Palatino Linotype', Palatino, serif;
      --font-texte:   Arial, Helvetica, sans-serif;
      --font-corps:   Arial, Helvetica, sans-serif;
      /* Variables danseur.fr */
      --or:         #b8973a;
      --or-clair:   #d4aa4a;
      --or-pale:    #f5f0e4;
      --noir:       #0a0908;
      --texte:      #1a1714;
      --texte-sec:  #5a5450;
      --texte-moyen:#5a5450;
      --texte-ter:  #8a8480;
    }


    html { font-size: 16px; scroll-behavior: smooth; }

    body {
      font-family: var(--font-texte);
      color: var(--texte);
      background: var(--blanc);
      line-height: 1.7;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--or); }
    a:hover { color: var(--noir); }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* =============================================
       NAVIGATION
    ============================================= */
/* ── NAVIGATION DANSEUR.FR ────────────────────────────────────── */
/* ── NAV ─────────────────────────────────────────────────────── */
nav{position:fixed;top:0;left:0;right:0;z-index:200;background:rgba(10,9,8,0.98);border-bottom:1px solid rgba(184,151,58,0.18);backdrop-filter:blur(10px)}
.nav-inner{max-width:1100px;margin:0 auto;padding:0 1.25rem;display:flex;align-items:center;justify-content:space-between;height:64px}
.nav-logo{font-family:'Palatino Linotype',Palatino,serif;font-size:1.45rem;color:#fff;text-decoration:none;letter-spacing:0.02em;flex-shrink:0}
.nav-logo:hover,.nav-logo:visited,.nav-logo:active{color:#fff}
.nav-logo span{color:#b8973a}
.nav-logo:hover span,.nav-logo:active span{color:#b8973a}
.nav-links{display:flex;align-items:center;gap:0;list-style:none;margin:0;padding:0}
.nav-item{position:relative}
.nav-link-top{font-family:'Trebuchet MS',Arial,sans-serif;font-size:0.76rem;color:rgba(255,255,255,0.62);text-transform:uppercase;letter-spacing:0.05em;cursor:pointer;padding:8px 9px;border-radius:3px;display:flex;align-items:center;gap:5px;white-space:nowrap;transition:color .2s,background .2s;user-select:none}
.nav-caret{font-size:0.6rem;opacity:0.45;transition:transform .22s}
.nav-item:hover .nav-link-top{color:#fff;background:rgba(255,255,255,0.06)}
.nav-item:hover .nav-caret{transform:rotate(180deg)}
.nav-drop{display:none;position:absolute;top:calc(100% + 1px);left:50%;transform:translateX(-50%);background:#0f0e0c;border:1px solid rgba(184,151,58,0.15);border-top:2px solid #b8973a;padding:24px 20px;gap:28px;z-index:300;flex-direction:row;min-width:max-content}
.nav-item:hover .nav-drop{display:flex}
.drop-col{display:flex;flex-direction:column;min-width:148px}
.drop-head{font-family:'Trebuchet MS',Arial,sans-serif;font-size:0.65rem;text-transform:uppercase;letter-spacing:0.14em;color:#b8973a;margin:0 0 8px;padding-bottom:7px;border-bottom:1px solid rgba(184,151,58,0.18);white-space:nowrap}
.nav-drop a{font-family:'Trebuchet MS',Arial,sans-serif;font-size:0.8rem;color:rgba(255,255,255,0.52);text-decoration:none;padding:4px 0;text-transform:none;letter-spacing:0.01em;white-space:nowrap;transition:color .15s}
.nav-drop a:hover{color:#fff}
.nav-cta{background:#b8973a !important;color:#fff !important;padding:9px 20px !important;border-radius:3px !important;font-family:'Trebuchet MS',Arial,sans-serif !important;font-size:0.78rem !important;white-space:nowrap;text-decoration:none;text-transform:uppercase !important;letter-spacing:0.08em !important;transition:background .2s !important}
.nav-cta:hover{background:#d4aa4a !important}
.nav-burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px}
.nav-burger span{display:block;width:22px;height:1.5px;background:rgba(255,255,255,0.7)}
.nav-mobile{display:none;flex-direction:column;background:#0a0908;border-top:1px solid rgba(184,151,58,0.12);padding:16px 5% 24px}
.nav-mobile a{font-family:'Trebuchet MS',Arial,sans-serif;font-size:0.85rem;color:rgba(255,255,255,0.6);text-decoration:none;padding:10px 0;border-bottom:1px solid rgba(255,255,255,0.05);text-transform:uppercase;letter-spacing:0.06em}
.nav-mobile a:hover{color:#fff}
.nav-cta-mobile{background:#b8973a !important;color:#fff !important;text-align:center;border-radius:3px;margin-top:14px;border:none !important;padding:12px !important}
nav.open .nav-mobile{display:flex}

/* ── BREADCRUMB ──────────────────────────────────────────────── */

    
    /* =============================================
       HERO
    ============================================= */
    .hero {
      background: var(--noir);
      padding: 2.5rem 0;
      margin-top: 64px;
    }

    .hero-eyebrow {
      color: rgba(255,255,255,0.5);
      font-size: 0.65rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .hero h1 {
      font-family: var(--font-titre);
      color: var(--blanc);
      font-size: 2.2rem;
      font-weight: normal;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--or-clair);
    }

    .hero-desc {
      color: rgba(255,255,255,0.75);
      font-size: 1.05rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .hero-cta {
      display: inline-block;
      background: var(--or);
      color: var(--blanc);
      padding: 0.75rem 1.75rem;
      font-size: 0.9rem;
      font-weight: 400;
      text-decoration: none;
      border-radius: 3px;
      letter-spacing: 0.02em;
      margin-top: 1.5rem;
    }

    .hero-cta:hover {
      background: var(--or-clair);
      color: var(--noir);
    }

    .stat-sep {
      width: 1px;
      height: 36px;
      background: rgba(255,255,255,0.1);
    }

    /* =============================================
       BARRE DE STATS
    ============================================= */
    .stats-bar {
      background: var(--noir);
      border-top: 1px solid rgba(184,151,58,0.2);
      padding: 0;
    }

    .stats-grille {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0.75rem 0.5rem;
      border-right: 1px solid rgba(255,255,255,0.12);
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-num {
      color: var(--blanc);
      font-size: 1.4rem;
      font-family: var(--font-titre);
      line-height: 1.2;
    }

    .stat-label {
      color: rgba(255,255,255,0.5);
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      margin-top: 0.25rem;
    }

    /* .section doublure supprimée */

    @media(max-width:900px){
  .nav-links{display:none}
  .nav-burger{display:flex}
}
@media(max-width:768px){
  .nav-links{display:none}
  .nav-burger{display:flex}
}

        @media (max-width: 767px) {
      .grille-4 { grid-template-columns: 1fr; }
      .grille-3 { grid-template-columns: 1fr; gap: 0.85rem; }
      .prix-grid { grid-template-columns: 1fr !important; }
      .hero-desc { font-size: 0.9rem; }
      .stats-bar .container { padding: 0; }
      .stats-grille { grid-template-columns: repeat(2, 1fr); }
      .stat { border-right: none; border-bottom: none; }
      .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
      .stat:nth-child(1), .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.12); }
      .stat-num { font-size: 1.1rem; }
      .stat-label { font-size: 0.62rem; }
    }

    
    /* =============================================
       SECTIONS GÉNÉRALES
    ============================================= */
    .section {
      padding: 3rem 0;
      border-bottom: 1px solid var(--bordure);
    }

    .section:last-of-type { border-bottom: none; }

    .section-creme { background: var(--or-pale); }
    .section-gris  { background: var(--or-pale); }
    .section-rouge { background: var(--or); }

    .section h2 {
      font-family: var(--font-titre);
      font-size: 1.75rem;
      font-weight: normal;
      color: var(--noir);
      margin-bottom: 1.25rem;
      line-height: 1.2;
    }

    .section h2 em {
      font-style: italic;
      color: var(--or);
    }

    .section-rouge h2 { color: var(--blanc); }
    .section-rouge h2 em { color: var(--or-clair); }

    .section h3 {
      font-family: var(--font-titre);
      font-size: 1.15rem;
      font-weight: normal;
      color: var(--noir);
      margin-bottom: 0.6rem;
      margin-top: 1.5rem;
    }

    .section p {
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 1rem;
      color: var(--texte);
    }

    .section-rouge p { color: rgba(255,255,255,0.8); }

    .intro-texte {
      font-size: 1.1rem;
      color: var(--texte-moyen);
      margin-bottom: 2rem;
    }

    /* =============================================
       GRILLE DE CARTES
    ============================================= */
    .grille, .grille-3 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-top: 2rem;
    }

    .carte {
      background: var(--blanc);
      border: 1px solid var(--bordure);
      border-radius: 4px;
      padding: 1.5rem;
    }

    .carte-rouge {
      background: var(--blanc);
      border-left: 4px solid var(--or);
      border-top: 1px solid var(--bordure);
      border-right: 1px solid var(--bordure);
      border-bottom: 1px solid var(--bordure);
      border-radius: 0 4px 4px 0;
      padding: 1.5rem;
    }

    .carte h3 {
      font-family: var(--font-titre);
      font-size: 1.05rem;
      font-weight: normal;
      color: var(--noir);
      margin-bottom: 0.5rem;
      margin-top: 0;
    }

    .carte p {
      font-size: 0.95rem;
      color: var(--texte-moyen);
      margin-bottom: 0;
    }

    .carte-icone {
      margin-bottom: 0.75rem;
    }

    .carte-icone svg {
      width: 32px;
      height: 32px;
    }

    .grille-magazine {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid var(--bordure);
      border-radius: 3px;
      margin-top: 2rem;
    }

    .carte-mag {
      padding: 1.75rem 1.5rem;
      border-right: 1px solid var(--bordure);
      border-bottom: 1px solid var(--bordure);
      position: relative;
      overflow: hidden;
      background: var(--blanc);
    }

    .carte-mag:nth-child(2n) { border-right: none; }
    .carte-mag:nth-last-child(-n+2) { border-bottom: none; }

    .carte-mag__bg-num {
      position: absolute;
      top: 4px;
      right: 8px;
      font-family: var(--font-titre);
      font-size: 72px;
      color: var(--bordure);
      line-height: 1;
      pointer-events: none;
      font-weight: normal;
    }

    .carte-mag__cat {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--or);
      margin-bottom: 0.4rem;
      font-family: var(--font-texte);
      position: relative;
    }

    .carte-mag__titre {
      font-family: var(--font-titre);
      font-size: 1.15rem;
      font-weight: normal;
      color: var(--texte);
      line-height: 1.2;
      margin-bottom: 0.6rem;
      position: relative;
    }

    .carte-mag__texte {
      color: var(--texte-moyen);
      font-size: 0.88rem;
      line-height: 1.6;
      position: relative;
    }

    .carte-mag__foot {
      margin-top: 0.75rem;
      font-size: 0.75rem;
      color: #aaa;
      position: relative;
    }

    .carte-mag__foot .bull { color: var(--or); margin: 0 0.4rem; }

    @media (max-width: 768px) {
      .grille-magazine { grid-template-columns: 1fr; gap: 0.85rem; border: none; }
      .carte-mag__bg-num { font-size: 48px; }
      .carte-mag { border-top: 1px solid var(--bordure); border-right: 1px solid var(--bordure); border-bottom: 1px solid var(--bordure); border-left: 1px solid var(--bordure); border-radius: 3px; }
      .carte-mag:nth-child(2n) { border-right: 1px solid var(--bordure); }
      .carte-mag:nth-last-child(-n+2) { border-bottom: 1px solid var(--bordure); }
      .formule-ligne { flex-wrap: wrap; }
      .formule-ligne__gauche { width: 100%; border-right: none; border-bottom: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 0.75rem 1.25rem 0; }
      .formule-ligne__niveau { width: 100%; border-right: none; border-bottom: 1px solid var(--bordure); padding: 0.1rem 1.25rem 0.75rem; justify-content: flex-start; }
      .formule-ligne__sep { display: none; }
      .formule-ligne__nom { margin-bottom: 0.1rem; }
      .formule-ligne__accroche { margin-bottom: 0.2rem; }
      .formule-ligne__texte { padding: 1rem 1.25rem; width: 100%; }
    }

    /* =============================================
       CARTES HORIZONTALES
    ============================================= */
    .cartes-h {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 1.5rem;
    }

    .carte-h {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.9rem 1rem;
      border: 1px solid var(--bordure);
      border-radius: 3px;
      background: var(--blanc);
    }

    .carte-h--alt {
      background: var(--or-pale);
    }

    .carte-h__carre {
      width: 10px;
      height: 10px;
      background: var(--or);
      flex-shrink: 0;
      margin-top: 5px;
    }

    .carte-h__titre {
      color: var(--noir);
      font-family: var(--font-titre);
      font-size: 0.95rem;
      font-weight: normal;
      margin-bottom: 0.25rem;
    }

    .carte-h__texte {
      color: var(--texte-moyen);
      font-size: 0.88rem;
      line-height: 1.6;
    }

    /* =============================================
       LISTE STYLISÉE
    ============================================= */
    .liste-rouge {
      list-style: none;
      padding: 0;
      margin-top: 1.25rem;
      margin-left: 2rem;
    }

    .liste-rouge li {
      padding: 0.6rem 0 0.6rem 1.75rem;
      position: relative;
      border-bottom: 1px solid var(--bordure);
      font-size: 1rem;
      line-height: 1.6;
    }

    .liste-rouge li:last-child { border-bottom: none; }

    .liste-rouge li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 1.1rem;
      width: 8px;
      height: 8px;
      background: var(--or);
      border-radius: 50%;
    }

    .liste-rouge li strong { color: var(--noir); }

    /* =============================================
       SECTION BUDGET - TABLEAU FORMULES
    ============================================= */
    .formules-tableau {
      border: 1px solid var(--bordure);
      border-radius: 3px;
      overflow: hidden;
      margin-top: 2rem;
    }

    .formule-ligne {
      display: flex;
      align-items: stretch;
      border-bottom: 1px solid var(--bordure);
    }

    .formule-ligne:last-child { border-bottom: none; }
    .formule-ligne--blanc { background: var(--blanc); }
    .formule-ligne--creme { background: var(--or-pale); }

    .formule-ligne__gauche {
      width: 150px;
      flex-shrink: 0;
      padding: 1.25rem;
      border-right: 1px solid var(--bordure);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .formule-ligne__nom {
      font-family: var(--font-titre);
      font-size: 1.05rem;
      font-weight: normal;
      color: var(--or);
      line-height: 1.1;
      margin-bottom: 0.3rem;
    }

    .formule-ligne__accroche {
      font-family: var(--font-titre);
      font-style: italic;
      font-size: 0.75rem;
      color: #bbb;
      line-height: 1.3;
    }

    .formule-ligne__niveau {
      width: 90px;
      flex-shrink: 0;
      padding: 1.25rem 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .fl-pt {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .fl-pt--on  { background: var(--or); }
    .fl-pt--off { background: var(--bordure); }

    .formule-ligne__sep {
      width: 1px;
      background: var(--bordure);
      flex-shrink: 0;
    }

    .formule-ligne__texte {
      flex: 1;
      padding: 1.25rem 1.5rem;
      font-size: 0.88rem;
      color: var(--texte-moyen);
      line-height: 1.7;
      display: flex;
      align-items: center;
    }

    @media (max-width: 768px) {
      .formule-ligne { flex-wrap: wrap; }
      .formule-ligne__gauche { width: 100%; border-right: none; border-bottom: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 0.75rem 1.25rem 0; }
      .formule-ligne__niveau { width: 100%; border-right: none; border-bottom: 1px solid var(--bordure); padding: 0.1rem 1.25rem 0.75rem; justify-content: flex-start; }
      .formule-ligne__sep { display: none; }
      .formule-ligne__nom { margin-bottom: 0.1rem; }
      .formule-ligne__accroche { margin-bottom: 0.2rem; }
      .formule-ligne__texte { padding: 1rem 1.25rem; width: 100%; }
    }

    /* =============================================
       GRILLE ÉTAPES
    ============================================= */
    .grille-etapes {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--bordure);
      border-radius: 3px;
      margin-top: 2rem;
    }

    .carte-etape {
      padding: 1.25rem 1rem;
      border-right: 1px solid var(--bordure);
      position: relative;
      background: var(--blanc);
    }

    .carte-etape:last-child { border-right: none; }

    .etape-top {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.6rem;
    }

    .etape-puce {
      width: 28px;
      height: 28px;
      background: var(--or-pale);
      border: 1px solid var(--bordure);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .etape-puce span {
      color: var(--or);
      font-size: 0.78rem;
      font-weight: bold;
      font-family: var(--font-texte);
    }

    .etape-titre {
      color: var(--noir);
      font-family: var(--font-titre);
      font-size: 0.9rem;
      font-weight: normal;
      line-height: 1.2;
    }

    .etape-texte {
      color: var(--texte-moyen);
      font-size: 0.82rem;
      line-height: 1.6;
    }

    .etape-fleche {
      position: absolute;
      right: -9px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 8px solid var(--bordure);
      z-index: 1;
    }

    @media (max-width: 768px) {
      .grille-etapes { grid-template-columns: 1fr; gap: 0.85rem; border: none; }
      .carte-etape { border-top: 1px solid var(--bordure); border-right: 1px solid var(--bordure); border-bottom: 1px solid var(--bordure); border-left: 1px solid var(--bordure); border-radius: 3px; }
      .etape-fleche { display: none; }
    }

    /* =============================================
       BLOC ENCADRÉ (question / réponse)
    ============================================= */
    .encadre {
      background: var(--or-pale);
      border-left: 4px solid var(--or);
      padding: 1.25rem 1.5rem;
      margin: 1.5rem 0;
      border-radius: 0 4px 4px 0;
    }

    .encadre p { margin-bottom: 0; font-size: 1rem; }

    /* =============================================
       BLOC CTA INTERMÉDIAIRE
    ============================================= */
    .cta-bloc {
      background: var(--or);
      padding: 2.5rem 1.5rem;
      text-align: center;
      border-radius: 4px;
      margin: 2rem 0;
    }

    .cta-bloc h3 {
      font-family: var(--font-titre);
      color: var(--blanc);
      font-size: 1.4rem;
      font-weight: normal;
      margin-bottom: 0.75rem;
    }

    .cta-bloc p {
      color: rgba(255,255,255,0.75);
      font-size: 0.95rem;
      margin-bottom: 1.25rem;
    }

    .btn-blanc {
      display: inline-block;
      background: var(--blanc);
      color: var(--noir);
      padding: 0.75rem 1.5rem;
      font-size: 0.95rem;
      font-weight: bold;
      text-decoration: none;
      border-radius: 3px;
    }

    .btn-blanc:hover { background: var(--or-clair); color: var(--noir); }

    .btn-rouge {
      display: inline-block;
      background: var(--or);
      color: var(--blanc);
      padding: 0.75rem 1.5rem;
      font-size: 0.95rem;
      font-weight: bold;
      text-decoration: none;
      border-radius: 3px;
      border: 2px solid var(--or);
    }

    .btn-rouge:hover { background: var(--noir); border-color: var(--noir); color: var(--blanc); }

    /* =============================================
       TÉMOIGNAGES
    ============================================= */
    .temoignage {
      background: var(--blanc);
      border: 1px solid var(--bordure);
      border-top: 3px solid var(--or);
      padding: 1.5rem;
      border-radius: 0 0 4px 4px;
    }

    .temoignage-quote {
      font-family: var(--font-titre);
      font-size: 3rem;
      color: var(--or);
      line-height: 0.6;
      margin-bottom: 0.75rem;
      display: block;
    }

    .temoignage-texte {
      font-family: var(--font-titre);
      font-style: italic;
      font-size: 0.9rem;
      color: var(--texte);
      line-height: 1.65;
      margin-bottom: 1rem;
    }

    .temoignage-auteur {
      font-size: 0.85rem;
      color: var(--texte-moyen);
    }

    .temoignage-auteur strong {
      color: var(--noir);
      display: block;
      font-size: 0.88rem;
      font-family: var(--font-texte);
    }

    .temoignage-auteur span {
      font-size: 0.78rem;
      color: #aaa;
      font-family: var(--font-texte);
    }

    /* =============================================
       TAGS MOTS-CLÉS
    ============================================= */
    .tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .hero .tags-container { margin-bottom: 0; }

    .tag-mot {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      color: #ffffff;
      border: 1px solid rgba(255,255,255,0.5);
      padding: 0.35rem 0.9rem;
      font-size: 0.8rem;
      border-radius: 2px;
      letter-spacing: 0.03em;
      font-weight: normal;
    }

    /* =============================================
       HUB CARDS - MAILLAGE INTERNE
    ============================================= */
    .hub-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin-top: 1.4em;
    }

    @media (max-width: 768px) {
      .hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    .hub-card {
      background: var(--blanc);
      border: 1px solid var(--bordure);
      border-radius: 4px;
      padding: 11px 12px 10px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 2px;
      position: relative;
      overflow: hidden;
      transition: border-color .22s ease;
    }

    .hub-card:hover { border-color: var(--or); }

    .hub-card__bg {
      position: absolute;
      top: 4px;
      right: 8px;
      font-family: var(--font-titre);
      font-size: 34px;
      color: var(--bordure);
      line-height: 1;
      pointer-events: none;
      font-weight: normal;
    }

    .hub-card__num {
      font-size: .62rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--texte-moyen);
      display: block;
      margin-bottom: 3px;
    }

    .hub-card__name {
      font-size: .82rem;
      font-weight: 700;
      color: var(--texte);
      position: relative;
      line-height: 1.25;
    }

    .hub-card__region {
      font-size: .68rem;
      color: var(--texte-moyen);
      letter-spacing: .03em;
      position: relative;
    }

    /* =============================================
       FAQ
    ============================================= */
    .faq-wrapper {
      border: 1px solid var(--bordure);
      border-radius: 3px;
      overflow: hidden;
      margin-top: 2rem;
    }

    .faq-item {
      border-bottom: 1px solid var(--bordure);
      background: var(--blanc);
    }

    .faq-item:last-child { border-bottom: none; }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 1.1rem 1.25rem;
      font-size: 0.95rem;
      font-weight: normal;
      color: var(--noir);
      cursor: pointer;
      font-family: var(--font-titre);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      line-height: 1.4;
    }

    .faq-question:hover { background: var(--or-pale); }

    .faq-plus {
      width: 26px;
      height: 26px;
      border: 1px solid var(--bordure);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
      color: var(--or);
      font-weight: normal;
      font-family: var(--font-texte);
      transition: background .2s;
    }

    .faq-question.ouvert .faq-plus {
      background: var(--or);
      color: var(--blanc);
      border-color: var(--or);
    }

    .faq-reponse {
      display: none;
      padding: 1rem 1.25rem;
      font-size: 0.92rem;
      color: var(--texte-moyen);
      line-height: 1.7;
      background: var(--or-pale);
      border-top: 1px solid var(--bordure);
    }

    .faq-reponse.ouvert { display: block; }

    /* =============================================
       AVANT-FOOTER CTA
    ============================================= */
    /* ── BOUTON OR ──────────────────────────────────────────────── */
    .btn-or {
      display: inline-block;
      background: var(--or);
      color: var(--blanc);
      padding: 0.75rem 1.75rem;
      font-size: 0.82rem;
      text-decoration: none;
      border-radius: 3px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-family: var(--font-texte);
      transition: background .2s;
      border: none;
      cursor: pointer;
    }
    .btn-or:hover {
      background: var(--or-clair);
      color: var(--blanc);
    }

        .avant-footer {
      background: var(--noir);
      padding: 3.5rem 0;
      text-align: center;
    }

    .avant-footer__titre {
      font-family: var(--font-titre);
      color: var(--blanc);
      font-size: 1.75rem;
      font-weight: normal;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .avant-footer__titre em {
      font-style: italic;
      color: var(--or-clair);
    }

    .avant-footer__accroche {
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      max-width: 600px;
      margin: 0 auto 1.75rem;
      line-height: 1.6;
    }

    .avant-footer__cta {
      display: inline-block;
      background: var(--or);
      color: var(--blanc);
      padding: 0.75rem 1.75rem;
      font-size: 0.95rem;
      font-weight: bold;
      text-decoration: none;
      border-radius: 3px;
      letter-spacing: 0.03em;
    }

    .avant-footer__cta:hover {
      background: var(--or-clair);
      color: var(--blanc);
    }

    /* =============================================
       FOOTER
    ============================================= */
    .site-footer {
      background: var(--noir);
      padding: 1rem 0;
      text-align: center;
    }

    .footer-ligne {
      color: rgba(255,255,255,0.4);
      font-size: 0.78rem;
    }

    .footer-ligne a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
    }

    .footer-ligne a:hover {
      color: var(--or);
    }

    /* =============================================
       RESPONSIVE : TABLETTE
    ============================================= */
    @media (max-width: 767px) {
      .grille-4 { grid-template-columns: 1fr; }
      .grille-3 { grid-template-columns: 1fr; gap: 0.85rem; }
      .prix-grid { grid-template-columns: 1fr !important; }
      .hero-desc { font-size: 0.9rem; }
      .tag-mot { font-size: 0.68rem; padding: 0.25rem 0.65rem; }
      .grille { gap: 0.85rem; }
      .cartes-h { gap: 0.85rem; }
    }

    @media (min-width: 768px) {
      .nav-liens { display: flex; }
      .nav-burger { display: none; }
      .nav-cta { display: block; margin-left: 0; }
      .logo svg { width: 210px; height: 58px; }

      .grille { grid-template-columns: repeat(3, 1fr); }
      .grille-3 { grid-template-columns: repeat(3, 1fr); }

      .form-grille { grid-template-columns: repeat(2, 1fr); }

      .footer-grille { grid-template-columns: repeat(2, 1fr); }

      

      .hero h1 { font-size: 2.6rem; }
    }

    /* =============================================
       RESPONSIVE : DESKTOP
    ============================================= */
    @media (min-width: 1024px) {
      .grille-3 { grid-template-columns: repeat(3, 1fr); }
      .grille-4 { grid-template-columns: repeat(2, 1fr); }

      .footer-grille { grid-template-columns: repeat(4, 1fr); }

      .hero h1 { font-size: 3rem; }
    }
  
    /* ========== MEGA MENU ========== */
    .nav-item-mega { position: relative; }
    .nav-item-mega .mega-link { display: flex; align-items: center; gap: 0.3rem; }
    .nav-item-mega .mega-link::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid rgba(255,255,255,1); margin-top: 1px; transition: transform .2s; }
    .nav-item-mega:hover .mega-link::after { transform: rotate(180deg); border-top-color: rgba(255,255,255,0.45); }

    .mega-menu { display: none; position: absolute; top: calc(100% + 0px); left: 50%; transform: translateX(-50%); background: var(--noir); border: none; border-radius: 0 0 4px 4px; padding: 1.25rem 1.5rem; min-width: 180px; z-index: 1000; }
    .nav-item-mega:hover .mega-menu { display: flex; gap: 2rem; }

    .mega-col { min-width: 220px; }

    .mega-col__titre {
      font-size: 0.68rem;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,1);
      border-top: 2px solid var(--or);
      border-bottom: 1px solid var(--or);
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      margin-bottom: 0.6rem;
      margin-top: 0;
    }
    .mega-col ul { list-style: none; margin: 0; padding: 0; }
    .mega-col ul li { margin-bottom: 0.1rem; }
    .mega-col ul li a { font-size: 0.68rem; color: rgba(255,255,255,1); text-decoration: none; display: block; padding: 0.2rem 0; transition: color .15s; white-space: nowrap; letter-spacing: 0.06em; }
    .mega-col ul li a:hover { color: rgba(255,255,255,0.45); }

    /* Pont invisible */
    .mega-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }

    /* Mobile mega menu dans nav-mobile */
    .nav-mobile .mega-mobile-titre { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,1); padding: 0.65rem 1.5rem 0.2rem; font-family: var(--font-texte); cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.08); }
    .nav-mobile .mega-mobile-titre::after { content: '+'; font-size: 1rem; color: rgba(255,255,255,0.4); }
    .nav-mobile .mega-mobile-titre.ouvert::after { content: '−'; }
    .nav-mobile .mega-mobile-liens { display: none; padding: 0 0 0.5rem; }
    .nav-mobile .mega-mobile-liens.ouvert { display: block; }
    .nav-mobile .mega-mobile-liens a { display: block; padding: 0.4rem 2rem; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,1); text-decoration: none; }
    .nav-mobile .mega-mobile-liens a:hover { color: rgba(255,255,255,0.45); }

.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 4rem 1rem; }

.page-404__inner { text-align: center; max-width: 600px; }

.page-404__numero { font-family: var(--font-titre); font-size: 8rem; color: var(--or); line-height: 1; opacity: 0.15; letter-spacing: -0.05em; margin-bottom: -2rem; }

.page-404__picto { font-size: 3rem; margin-bottom: 1rem; }

.page-404__titre { font-family: var(--font-titre); font-size: 1.75rem; font-weight: normal; color: var(--noir); margin-bottom: 1rem; line-height: 1.3; }

.page-404__titre em { font-style: italic; color: var(--or); }

.page-404__texte { font-size: 1rem; color: var(--texte-moyen); line-height: 1.8; margin-bottom: 2rem; }

.page-404__liens { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; }

.page-404__lien-principal { background: var(--or); color: var(--blanc); padding: 0.75rem 1.75rem; border-radius: 3px; text-decoration: none; font-weight: bold; font-size: 0.9rem; letter-spacing: 0.06em; transition: background .2s; }

.page-404__lien-principal:hover { background: var(--noir); }

.page-404__lien-secondaire { background: var(--or-pale); color: var(--noir); padding: 0.75rem 1.75rem; border-radius: 3px; text-decoration: none; font-size: 0.9rem; border: 1px solid var(--bordure); transition: border-color .2s; }

.page-404__lien-secondaire:hover { border-color: var(--or); }

.page-404__suggestion { font-size: 0.85rem; color: var(--texte-moyen); border-top: 1px solid var(--bordure); padding-top: 1.5rem; }

.page-404__suggestion a { color: var(--or); text-decoration: none; }

.page-404__suggestion a:hover { text-decoration: underline; }

.mentions-body { padding: 3rem 0 4rem; }

.mentions-body h2 { font-family: var(--font-titre); font-size: 1.25rem; font-weight: normal; color: var(--noir); margin: 2.5rem 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--bordure); }

.mentions-body h2:first-child { margin-top: 0; }

.mentions-body p { font-size: 0.97rem; line-height: 1.8; color: var(--texte); margin-bottom: 0.75rem; }

.mentions-body p:last-child { margin-bottom: 0; }

.mentions-titre-page { font-family: var(--font-titre); font-size: 1.75rem; font-weight: normal; color: var(--noir); margin-bottom: 2rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--bordure); }

/* Catalogue complet - grille 2 colonnes dense */
    .catalogue-grille { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 2rem; border: 1px solid var(--bordure); border-radius: 3px; overflow: hidden; }

.catalogue-item { padding: 1rem 1.25rem; border-right: 1px solid var(--bordure); border-bottom: 1px solid var(--bordure); background: var(--blanc); display: flex; flex-direction: column; gap: 0.3rem; }

.catalogue-item:nth-child(2n) { border-right: none; }

.catalogue-item:nth-last-child(-n+2) { border-bottom: none; }

.catalogue-item--alt { background: var(--blanc); }

.catalogue-item__cat { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--or); font-family: var(--font-texte); }

.catalogue-item__titre { font-family: var(--font-titre); font-size: 0.95rem; font-weight: normal; color: var(--texte); }

.catalogue-item__desc { font-size: 0.82rem; color: var(--texte-moyen); line-height: 1.5; }

/* Formulaire de devis — Design 2 */
    .form-wrap { width: 75%; margin: 0 auto; }

.form-devis { border: 1px solid var(--or); border-radius: 4px; padding: 2rem 2.5rem; background: var(--or-pale); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.2rem; }

.form-group.full { grid-column: 1 / -1; }

.form-group label { font-size: 0.78rem; font-weight: bold; color: var(--texte); font-family: var(--font-texte); }

.form-group input[required] + label,
.form-group textarea[required] + label { }

.form-group:has(input[required]) label::after,
.form-group:has(textarea[required]) label::after { content: " *"; color: var(--or); font-weight: bold; }

.form-group label span { color: var(--or); font-weight: normal; }

.form-group input, .form-group textarea { width: 100%; padding: 0.65rem 0.9rem; border: 1px solid var(--bordure); border-radius: 3px; font-size: 0.95rem; font-family: var(--font-texte); color: var(--texte); background: var(--blanc); transition: border-color .2s; }

.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--or); box-shadow: 0 0 0 2px rgba(139,26,26,0.08); }

.form-group input::placeholder, .form-group textarea::placeholder { color: #c8c0b8; }

.form-bloc-titre { font-family: var(--font-titre); font-size: 0.75rem; font-weight: normal; color: var(--or); text-transform: uppercase; letter-spacing: 0.14em; margin: 1.25rem 0 0.5rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--bordure); grid-column: 1 / -1; }

.form-submit { margin-top: 0.5rem; grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

.form-btn { background: var(--or); color: var(--blanc); border: none; padding: 0.85rem 2rem; font-size: 0.95rem; font-weight: bold; border-radius: 3px; cursor: pointer; font-family: var(--font-texte); letter-spacing: 0.08em; transition: background .2s; }

.form-btn:hover { background: var(--noir); }

.form-btn:disabled { background: #bbb; cursor: not-allowed; }

.form-message { display: none; padding: 1rem 1.25rem; border-radius: 3px; font-size: 0.95rem; border-left: 4px solid var(--or); background: var(--blanc); color: var(--noir); }

.form-message.visible { display: block; }

.form-message.erreur { border-left-color: #c0392b; background: #fff5f5; color: #a00; }

.honeypot { display: none; }

/* Cartes étapes */
    .etapes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--bordure); border-radius: 3px; overflow: hidden; margin-top: 2rem; }

.etape-card { padding: 1.5rem 1.25rem; border-right: 1px solid var(--bordure); background: var(--blanc); position: relative; }

.etape-card:last-child { border-right: none; }

.etape-num { width: 36px; height: 36px; background: var(--or-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-titre); font-size: 1rem; color: var(--or); margin-bottom: 0.75rem; }

/* Section prix interrogative */
    .prix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }

.prix-card { background: var(--blanc); border: 1px solid var(--bordure); border-radius: 4px; padding: 1.5rem; text-align: center; }

.prix-card__question { font-family: var(--font-titre); font-size: 1.05rem; color: var(--noir); margin-bottom: 0.75rem; line-height: 1.3; }

.prix-card__texte { font-size: 0.88rem; color: var(--texte-moyen); line-height: 1.6; margin-bottom: 1rem; }

.prix-card__label { display: inline-block; background: var(--or-pale); border: 1px solid var(--bordure); color: var(--or); font-size: 0.78rem; padding: 0.3rem 0.8rem; border-radius: 2px; font-family: var(--font-texte); font-weight: bold; letter-spacing: 0.05em; }

@media (max-width: 900px) { .form-wrap { width: 95%; } }

@media (max-width: 767px) { .form-wrap { width: 100%; } .form-devis { border: none; border-radius: 0; padding: 1rem 0; background: var(--blanc); } .section { padding: 1rem 0; } }

@media (max-width: 480px) { .etapes-grid { grid-template-columns: 1fr; } .etape-card { border-right: none; border-bottom: 1px solid var(--bordure); } .etape-card:last-child { border-bottom: none; } }
/* =============================================
   GRILLE STANDS (fete-foraine-enfants)
============================================= */
.grille-stands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stand {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.stand__bg-num {
  position: absolute;
  top: -4px;
  right: 10px;
  font-family: var(--font-titre);
  font-size: 52px;
  color: var(--bordure);
  line-height: 1;
  pointer-events: none;
  font-weight: normal;
  font-style: italic;
}

.stand__num {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.4rem;
  font-family: var(--font-texte);
  position: relative;
}

.stand__titre {
  font-family: var(--font-titre);
  font-size: 1.05rem;
  font-weight: normal;
  color: var(--texte);
  line-height: 1.2;
  margin-bottom: 0.3rem;
  position: relative;
}

.stand__age {
  font-size: 0.75rem;
  color: var(--or);
  margin-bottom: 0.6rem;
  font-family: var(--font-texte);
  position: relative;
}

.stand__texte {
  color: var(--texte-moyen);
  font-size: 0.88rem;
  line-height: 1.6;
  position: relative;
}

@media (max-width: 767px) {
  .grille-stands { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* =============================================
   PAGES GUIDE (blog)
============================================= */
.guide-body {
  padding: 2rem 0 3rem;
}

.guide-body h2 {
  font-family: var(--font-titre);
  font-size: 1.6rem;
  font-weight: normal;
  color: var(--noir);
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.guide-body h2:first-child { margin-top: 0; }

.guide-body h2 em {
  font-style: italic;
  color: var(--or);
}

.guide-body h3 {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--noir);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.guide-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--texte);
  margin-bottom: 1rem;
}

.guide-body ul, .guide-body ol {
  margin: 0.75rem 0 1rem 1.5rem;
  line-height: 1.8;
}

.guide-body li {
  font-size: 1rem;
  color: var(--texte);
  margin-bottom: 0.4rem;
}

.guide-body strong { color: var(--noir); }

/* Encadré guide — fond crème, filet gauche rouge */
.guide-encadre {
  background: var(--or-pale);
  border-left: 4px solid var(--or);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.guide-encadre p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.guide-encadre p:last-child { margin-bottom: 0; }

/* Bloc fond crème dans le guide */
.guide-section-creme {
  background: var(--or-pale);
  border: 1px solid var(--bordure);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.guide-section-creme h3 {
  margin-top: 0;
}

/* Tableau tarifaire */
.tarif-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.tarif-table th {
  background: var(--noir);
  color: var(--blanc);
  padding: 0.6rem 0.9rem;
  text-align: left;
  font-weight: normal;
  font-family: var(--font-texte);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.tarif-table td {
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid var(--bordure);
  color: var(--texte);
  vertical-align: top;
}

.tarif-table tr:last-child td { border-bottom: none; }
.tarif-table tr:nth-child(even) td { background: var(--or-pale); }

.tarif-table .montant {
  color: var(--noir);
  font-weight: bold;
  white-space: nowrap;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.checklist li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--bordure);
  font-size: 0.95rem;
  color: var(--texte);
  line-height: 1.6;
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--or);
  border-bottom: 2px solid var(--or);
  transform: rotate(-45deg);
}

/* Étapes numérotées inline */
.etapes {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
  counter-reset: etape-counter;
}

.etapes li {
  padding: 0.6rem 0 0.6rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--bordure);
  font-size: 0.95rem;
  color: var(--texte);
  line-height: 1.6;
  counter-increment: etape-counter;
}

.etapes li:last-child { border-bottom: none; }

.etapes li::before {
  content: counter(etape-counter);
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 22px;
  height: 22px;
  background: var(--or-pale);
  border: 1px solid var(--bordure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--or);
  font-weight: bold;
  font-family: var(--font-texte);
}

/* Responsive guide */
@media (max-width: 767px) {
  .guide-body h2 { font-size: 1.3rem; }
  .tarif-table thead { display: none; }
  .tarif-table, .tarif-table tbody, .tarif-table tr, .tarif-table td { display: block; width: 100%; }
  .tarif-table tr { border: 1px solid var(--bordure); border-radius: 4px; margin-bottom: 0.75rem; overflow: hidden; }
  .tarif-table tr:nth-child(even) td { background: var(--blanc); }
  .tarif-table td { padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--bordure); display: flex; gap: 0.75rem; align-items: baseline; font-size: 0.88rem; }
  .tarif-table td:last-child { border-bottom: none; }
  .tarif-table td::before { content: attr(data-label); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--or); font-weight: bold; min-width: 100px; flex-shrink: 0; }
}
.grille-gouter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .grille-gouter { grid-template-columns: 1fr; }
}
/* =============================================
   PROCESSUS — section étapes verticales (agence)
============================================= */
.processus {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--bordure);
  border-radius: 3px;
  overflow: hidden;
}

.processus-etape {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-bottom: 1px solid var(--bordure);
  background: var(--blanc);
}

.processus-etape:nth-child(even) { background: var(--or-pale); }
.processus-etape:last-child { border-bottom: none; }

.processus-num {
  width: 52px;
  flex-shrink: 0;
  padding: 1.25rem;
  font-family: var(--font-titre);
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--bordure);
  border-right: 1px solid var(--bordure);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1.4rem;
  font-style: italic;
}

.processus-contenu {
  flex: 1;
  padding: 1.25rem 1.5rem;
}

.processus-contenu h3 {
  font-family: var(--font-titre);
  font-size: 1rem;
  font-weight: normal;
  color: var(--noir);
  margin-bottom: 0.5rem;
  margin-top: 0;
  line-height: 1.3;
}

.processus-contenu p {
  font-size: 0.9rem;
  color: var(--texte-moyen);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .processus-num { width: 36px; font-size: 1.1rem; padding: 1rem 0.6rem; }
  .processus-contenu { padding: 1rem; }
  .processus-contenu h3 { font-size: 0.95rem; }
  .processus-contenu p { font-size: 0.85rem; }
}

/* =============================================
   PROGRAMME EXEMPLE — timeline horaire (agence)
============================================= */
.programme-exemple {
  border: 1px solid var(--bordure);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.prog-header {
  background: var(--noir);
  color: rgba(255,255,255,0.85);
  padding: 0.65rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-texte);
}

.prog-ligne {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--bordure);
  background: var(--blanc);
}

.prog-ligne--alt { background: var(--or-pale); }
.prog-ligne:last-child { border-bottom: none; }

.prog-heure {
  width: 64px;
  flex-shrink: 0;
  padding: 1rem 0.75rem;
  font-family: var(--font-titre);
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--or);
  border-right: 1px solid var(--bordure);
  text-align: center;
  line-height: 1.3;
  padding-top: 1.1rem;
}

.prog-contenu {
  flex: 1;
  padding: 1rem 1.25rem;
}

.prog-titre {
  font-family: var(--font-titre);
  font-size: 0.95rem;
  font-weight: normal;
  color: var(--noir);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.prog-detail {
  font-size: 0.85rem;
  color: var(--texte-moyen);
  line-height: 1.65;
}

@media (max-width: 767px) {
  .prog-heure { width: 46px; font-size: 0.78rem; padding: 0.75rem 0.4rem; }
  .prog-contenu { padding: 0.75rem 1rem; }
  .prog-titre { font-size: 0.88rem; }
  .prog-detail { font-size: 0.8rem; }
}
/* ============================================================
   Classes migrées depuis styles inline (audit intégrité)
   ============================================================ */

/* Libellé optionnel dans formulaires devis/recherche */
.form-label-opt {
  color: var(--texte-moyen);
  font-size: 0.82rem;
}

/* Mention RGPD sous le bouton d'envoi */
.form-rgpd,
.section .form-rgpd {
  font-size: 0.62rem;
  color: #b0a898;
  text-align: center;
  line-height: 1.5;
}

/* Paragraphe avec espacement top dans les guides */
.guide-p-top {
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Wrapper table scrollable (spectacle-enfants) */
.table-scroll {
  overflow-x: auto;
}

/* Encadré avec marge supérieure */
.encadre-top {
  margin-top: 2rem;
}

/* CTA centré (guignol — variante sans padding) */
.cta-centre {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================================
   Composant : grille-idees (page saint-nicolas et similaires)
   Grille 10 idées numérotées — format magazine enrichi
   ============================================================ */

.grille-idees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.carte-idee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--bordure);
  border-radius: 4px;
  padding: 1.75rem 1.5rem 1.25rem;
  background: var(--blanc);
  border-top: 3px solid var(--or);
}

.carte-idee--alt {
  background: var(--section-creme, #f5f0e4);
}

.carte-idee__num {
  position: absolute;
  top: -8px;
  right: 12px;
  font-family: var(--font-titre);
  font-size: 5rem;
  line-height: 1;
  color: var(--or);
  opacity: 0.12;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}

.carte-idee__badge {
  display: inline-block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--or);
  font-family: var(--font-corps);
  margin-bottom: 0.5rem;
  position: relative;
}

.carte-idee__titre {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  color: var(--noir);
  margin-bottom: 0.65rem;
  line-height: 1.3;
  position: relative;
}

.carte-idee__texte {
  font-size: 0.92rem;
  color: var(--texte);
  line-height: 1.65;
  position: relative;
}

.carte-idee__foot {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--bordure);
  font-size: 0.75rem;
  color: var(--texte-moyen);
  letter-spacing: 0.03em;
  position: relative;
}

.carte-idee__foot .bull {
  color: var(--or);
  margin: 0 0.35rem;
}

/* Responsive mobile */
@media (max-width: 767px) {
  .grille-idees {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .carte-idee__num {
    font-size: 3.5rem;
    top: -4px;
    right: 8px;
  }

  .carte-idee__titre {
    font-size: 1.05rem;
  }
}

/* ============================================================
   Composant : grille-hub-guide / carte-hub-guide
   Grille 2 colonnes desktop, 1 colonne mobile
   Usage : pages hub (guides, disciplines, géo...)
   ============================================================ */

.grille-hub-guide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.carte-hub-guide {
  position: relative;
  overflow: hidden;
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: 4px;
  padding: 1.5rem 1.5rem 1.25rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 3px solid var(--bordure);
  transition: border-top-color .2s ease, border-color .2s ease;
}

.carte-hub-guide:hover {
  border-color: var(--or);
  border-top-color: var(--or);
}

.carte-hub-guide__bg {
  position: absolute;
  top: 2px;
  right: 10px;
  font-family: var(--font-titre);
  font-size: 4.5rem;
  color: var(--bordure);
  line-height: 1;
  pointer-events: none;
  font-weight: normal;
  opacity: 0.6;
}

.carte-hub-guide__cat {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--or);
  font-family: var(--font-corps);
  margin-bottom: 0.45rem;
  position: relative;
}

.carte-hub-guide__titre {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--noir);
  margin-bottom: 0.65rem;
  line-height: 1.3;
  position: relative;
}

.carte-hub-guide__resume {
  font-size: 0.88rem;
  color: var(--texte);
  line-height: 1.6;
  flex-grow: 1;
  position: relative;
  margin-bottom: 0.85rem;
}

.carte-hub-guide__foot {
  border-top: 1px solid var(--bordure);
  padding-top: 0.6rem;
  font-size: 0.72rem;
  color: var(--texte-moyen);
  letter-spacing: 0.02em;
  position: relative;
}

.carte-hub-guide__foot .bull {
  color: var(--or);
  margin: 0 0.3rem;
}

/* Responsive mobile */
@media (max-width: 767px) {
  .grille-hub-guide {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .carte-hub-guide__bg {
    font-size: 3rem;
  }

  .carte-hub-guide__titre {
    font-size: 1rem;
  }
}

/* ============================================================
   Composant : carte-hub-guide
   Carte enrichie pour pages hub (guides, disciplines, géo)
   Grille 2 colonnes desktop, 1 colonne mobile
   ============================================================ */

.grille-hub-guide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.carte-hub-guide {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--bordure);
  border-radius: 4px;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--blanc);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.carte-hub-guide:hover {
  border-color: var(--or);
  box-shadow: 0 2px 12px rgba(139,26,26,0.08);
}

.carte-hub-guide__bg {
  position: absolute;
  top: -6px;
  right: 10px;
  font-family: var(--font-titre);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--or);
  opacity: 0.07;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}

.carte-hub-guide__cat {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--or);
  font-family: var(--font-corps);
  margin-bottom: 0.45rem;
  position: relative;
}

.carte-hub-guide__titre {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--noir);
  margin-bottom: 0.65rem;
  line-height: 1.3;
  position: relative;
}

.carte-hub-guide__resume {
  font-size: 0.88rem;
  color: var(--texte);
  line-height: 1.6;
  position: relative;
  flex: 1;
}

.carte-hub-guide__foot {
  margin-top: 1rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--bordure);
  font-size: 0.72rem;
  color: var(--texte-moyen);
  letter-spacing: 0.02em;
  position: relative;
}

.carte-hub-guide__foot .bull {
  color: var(--or);
  margin: 0 0.3rem;
}

/* Responsive mobile */
@media (max-width: 767px) {
  .grille-hub-guide {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .carte-hub-guide__bg {
    font-size: 3.5rem;
    top: -4px;
    right: 8px;
  }

  .carte-hub-guide__titre {
    font-size: 1rem;
  }
}
