/* ══════════════════════════════════════════════════════════════════════════
   COPIE DISSOCIÉE de www.voyages21.com/circuits/classiques
   Transcrite à l'identique depuis, en lecture seule :
     · src/app/globals.css              (jetons, navbar, pied, bandeau)
     · src/components/NavBar.jsx        (3 barres + 4 mega-menus + mobile)
     · src/components/Footer.jsx        (pied de page)
     · src/app/circuits/classiques/page.jsx (hero, sections, 11 circuits)
     · public/social-contact-bar.js     (bulle de contact flottante)
   Aucun lien ne pointe vers le site en ligne. Aucune écriture sur son dépôt.
   ══════════════════════════════════════════════════════════════════════════ */



:root {
  --red:        #8C2020;
  --navy:       #1B3A28;
  --green:      #1B3A28;
  --olive-dark: #152E1F;
  --olive-mid:  #2A5238;
  --gold:       #C8A440;
  --cream:      #F5F0E8;
  --dark:       #111111;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --light-gray: #F9F7F4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }

:focus-visible { outline: 3px solid rgba(200,164,64,.42); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }

/* ── EN-TÊTE 3 BARRES : 48 + 40 + 68 = 156 px ───────────────────────── */
.entete { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; flex-direction: column; }

.bar1 {
  background: #1B3A28; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(200,164,64,0.18);
}
.marque { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 1px; }
.marque .nom {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
  color: #FFFFFF; letter-spacing: 0.08em; line-height: 1;
}
.marque .nom i { color: #C8A440; font-style: normal; }
.marque .signature {
  font-family: 'DM Sans', sans-serif; font-size: 0.52rem; font-weight: 500;
  color: rgba(200,164,64,0.75); letter-spacing: 0.3em; text-transform: uppercase;
}

.bar2 {
  background: #152E1F; height: 40px;
  display: flex; align-items: center; padding: 0 2.5rem;
  border-bottom: 1px solid rgba(200,164,64,0.12);
}
.bar2-gauche { display: flex; align-items: center; gap: 1.4rem; flex: 1; }
.bar2-centre { display: flex; align-items: center; gap: 2rem; }
.bar2-droite { flex: 1; display: flex; justify-content: flex-end; position: relative; }

.lien-bar {
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.72rem;
  font-weight: 400; letter-spacing: 0.04em;
  transition: color .15s; white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
}
.lien-bar:hover { color: #C8A440; }
.lien-bar.fort { font-weight: 600; letter-spacing: 0.1em; }
/* Le bouton About surcharge la taille du lien de barre : 0.7rem, 600, 0.08em */
.lien-bar.about { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; }
.lien-bar.about[aria-expanded="true"] { color: #C8A440; }

.deroule-about {
  position: absolute; top: 100%; right: 0;
  background: #152E1F;
  border: 1px solid rgba(200,164,64,0.25); border-top: 2px solid #C8A440;
  border-radius: 0 0 6px 6px; padding: 0.5rem 0; z-index: 999; min-width: 210px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  animation: slideDown 0.18s ease;
}
.deroule-about[hidden] { display: none; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.deroule-about .titre {
  display: block; padding: 0.55rem 1.2rem; color: #FFFFFF; text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color .15s;
}
.deroule-about .titre:hover { color: #C8A440; }
.deroule-about .sep { height: 1px; background: rgba(255,255,255,0.08); margin: 0 1.2rem; }
.deroule-about .sous {
  display: block; padding: 0.5rem 1.2rem; color: rgba(255,255,255,0.72); text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem; letter-spacing: 0.05em;
  transition: color .15s, padding-left .15s;
}
.deroule-about .sous:hover { color: #C8A440; padding-left: 1.5rem; }

.bar3 {
  height: 68px; background: transparent;
  transition: background .25s ease, box-shadow .35s ease;
  display: flex; align-items: center; padding: 0 2.5rem;
}
.bar3.plein { background: rgba(27,58,40,0.97); }
.bar3.defile { backdrop-filter: blur(8px); box-shadow: 0 2px 20px rgba(0,0,0,0.35); }

.retour-zone { flex: 0 0 180px; display: flex; align-items: center; }
.retour {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.52); text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.68rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color .15s;
}
.retour:hover { color: #C8A440; }

.bar3-menu { display: flex; align-items: center; gap: 0.6rem; flex: 1; justify-content: center; }

.pastille {
  display: flex; align-items: center; gap: 5px;
  padding: 0.3rem 1.05rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.52);
  border-radius: 50px; cursor: pointer; color: #FFFFFF;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  transition: color .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.pastille[aria-expanded="true"] { background: #1D4030; border-color: #C8A440; color: #C8A440; }
.chevron { transition: transform .2s; margin-top: 1px; flex-shrink: 0; }
[aria-expanded="true"] > .chevron { transform: rotate(180deg); }

.bar3-droite { display: flex; align-items: center; gap: 1rem; flex: 0 0 auto; }
.tel {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.70); text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.74rem;
  font-weight: 500; letter-spacing: 0.03em;
  transition: color .15s; white-space: nowrap;
}
.tel:hover { color: #C8A440; }
.nav-cta-btn {
  font-family: 'DM Sans', sans-serif; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #111; background: #C8A440; padding: 0.5rem 1.4rem;
  text-decoration: none; flex-shrink: 0; transition: background .2s;
  border: none; cursor: pointer;
}
.nav-cta-btn:hover { background: #b09030; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 26px; height: 2px; background: #FFFFFF; transition: all 0.3s; }

/* ── MEGA-MENUS — ancrés sous les 156 px de l'en-tête ────────────────── */
.mega-panel {
  position: fixed; top: 156px; left: 0; right: 0;
  background: #1B3A28; border-top: 2px solid #C8A440;
  z-index: 997; padding: 0.7rem 2.5rem 0.85rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.mega-panel[hidden] { display: none; }
.mega-rang { max-width: 1200px; margin: 0 auto; display: flex; align-items: stretch; gap: 0; }
.mega-bloc { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 0 1.2rem; }
.mega-bloc.serre { flex-shrink: 0; flex-grow: 0; flex-basis: auto; padding: 0 0 0 1.2rem; }

.sec {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.1rem; font-weight: 700; color: #FFFFFF;
  letter-spacing: 0.01em; margin-bottom: 0.9rem; display: block; text-align: center;
}

.sep-col {
  width: 1px; flex-shrink: 0; align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(200,164,64,0.5) 20%, rgba(200,164,64,0.5) 80%, transparent);
}

.grille2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.grille3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem; }

.carte { text-decoration: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; }
.carte .cadre { border: 2px solid transparent; transition: border-color .2s, transform .2s; }
.carte:hover .cadre { border-color: #C8A440; }

/* InspCard : 128 / 124×84 / rayon 6 / zoom 1.04 */
.insp { width: 128px; gap: 0.35rem; }
.insp .cadre { width: 124px; height: 84px; border-radius: 6px; }
.insp:hover .cadre { transform: scale(1.04); }
.insp .nom { color: rgba(255,255,255,0.88); font-size: 0.73rem; font-weight: 500; text-align: center; line-height: 1.25; }

/* LargeCard : 225 / 220×165 / rayon 8 / zoom 1.04 */
.large { width: 225px; gap: 0.6rem; flex-shrink: 0; }
.large .cadre { width: 220px; height: 165px; border-radius: 8px; }
.large:hover .cadre { transform: scale(1.04); }
.large .nom { color: rgba(255,255,255,0.92); font-size: 1rem; font-weight: 600; text-align: center; line-height: 1.3; }

/* ExplorerCard : 240 / 235×165 / rayon 8 / zoom 1.03 */
.explorer { width: 240px; gap: 0.6rem; flex-shrink: 0; }
.explorer .cadre { width: 235px; height: 165px; border-radius: 8px; }
.explorer:hover .cadre { transform: scale(1.03); }
.explorer .nom { color: rgba(255,255,255,0.92); font-size: 0.9rem; font-weight: 600; text-align: center; line-height: 1.3; }

/* Emplacement d'image — la photothèque est en suspens */
.cadre {
  background:
    repeating-linear-gradient(135deg, rgba(200,164,64,0.07) 0 8px, transparent 8px 16px),
    linear-gradient(160deg, #2A5238, #152E1F);
  display: flex; align-items: center; justify-content: center;
}
.cadre::after {
  content: 'photo';
  font-family: 'DM Sans', sans-serif; font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(200,164,64,0.5);
}

.cadran {
  width: 160px; flex-shrink: 0; align-self: stretch; min-height: 150px;
  border-radius: 8px; overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: border-color .2s, transform .25s;
}
.cadran:hover { border-color: #C8A440; transform: scale(1.02); }
.cadran .haut { flex: 1; min-height: 100px; }
.cadran .haut::after { content: none; }
.cadran .bas {
  background: rgba(21,46,31,0.96); border-top: 1px solid rgba(200,164,64,0.3);
  padding: 0.65rem 0.8rem; text-align: center; flex-shrink: 0;
}
.cadran .bas p {
  color: #FFFFFF; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; line-height: 1.4; margin-bottom: 0.18rem;
}
.cadran .bas span { color: #C8A440; font-size: 0.9rem; }

.mega-pied {
  max-width: 1200px; margin: 0.75rem auto 0; padding-top: 0.65rem;
  border-top: 1px solid rgba(200,164,64,0.18); text-align: center;
  /* Hauteur de ligne calee sur celle du site d'origine (16 px DM Sans) */
  line-height: 21px;
}
.mega-pied a {
  color: #C8A440; font-size: 0.78rem; font-weight: 600; text-decoration: none;
  letter-spacing: 0.05em; font-family: 'Playfair Display', serif; font-style: italic;
}
.mega-pied a:hover { opacity: 0.75; }
.lien-or { color: #C8A440; font-size: 0.76rem; font-weight: 600; text-decoration: none; letter-spacing: 0.04em; transition: opacity .15s; }
.lien-or:hover { opacity: 0.7; }

/* ── MENU MOBILE ─────────────────────────────────────────────────────── */
.mobile-panel {
  position: fixed; top: 156px; left: 0; right: 0;
  background: #1B3A28; border-top: 2px solid #C8A440;
  z-index: 996; max-height: calc(100vh - 156px); overflow-y: auto;
}
.mobile-panel[hidden] { display: none; }
.mobile-panel ul { list-style: none; padding: 1rem 1.5rem; }
.mobile-panel a { display: block; text-decoration: none; }
.mobile-panel .item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-panel .item a { padding: 0.6rem 0; color: rgba(255,255,255,0.85); font-size: 0.84rem; font-weight: 400; letter-spacing: 0.03em; }
.mobile-panel .indent a { padding-left: 1rem; }
.mobile-panel .section a {
  padding: 1rem 0 0.35rem; color: #C8A440; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.mobile-panel .titre-off a {
  padding: 0.6rem 0 0.6rem 1rem; color: rgba(200,164,64,0.45); font-size: 0.62rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
}
.mobile-panel .contact a {
  margin-top: 1.2rem; padding: 0.85rem; background: #C8A440; color: #111;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-align: center;
}

/* ── HERO de la page Circuits Classiques ─────────────────────────────── */
.hero {
  height: 65vh; min-height: 440px;
  background: linear-gradient(135deg, #1B2D4F 0%, #2d1a0e 60%, #8C2020 100%);
  display: flex; align-items: flex-end;
  padding: 0 5rem 5rem; position: relative; overflow: hidden;
}
.hero .contenu { position: relative; z-index: 1; }
.hero .surtitre {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4rem);
  color: white; font-weight: 700; line-height: 1.1; margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .chapo { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.65; }

/* ── BANDEAU COUSU MAIN ──────────────────────────────────────────────── */
.cousu-main-banner {
  background: var(--navy); color: var(--white); text-align: center;
  padding: 1.1rem 2rem;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.95rem; letter-spacing: 0.04em;
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
}
.cousu-main-banner strong { color: var(--gold); font-style: normal; font-weight: 600; }

/* ── SECTIONS DE CONTENU ─────────────────────────────────────────────── */
.section-label {
  font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.sect-mode { padding: 4rem 3rem; background: var(--white); }
.sect-mode .enveloppe { max-width: 900px; margin: 0 auto; }
.sect-mode h2 { font-size: 2rem; color: var(--navy); text-align: center; margin-bottom: 2.5rem; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.duo article { border-top: 4px solid var(--gold); padding: 2rem; background: var(--light-gray); }
.duo h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; }
.duo p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.2rem; }
.duo ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.duo li { font-size: 0.82rem; color: var(--gray); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.duo li span { position: absolute; left: 0; color: #22c55e; font-weight: 700; }

.sect-liste { padding: 4rem 3rem; background: var(--light-gray); }
.sect-liste .enveloppe { max-width: 1100px; margin: 0 auto; }
.sect-liste h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 2.5rem; }
.grille-circuits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.fiche { background: var(--white); border-top: 3px solid var(--gold); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.fiche .duree { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.fiche h3 { font-size: 1rem; color: var(--navy); line-height: 1.3; flex: 1; }
.fiche p { font-size: 0.8rem; color: var(--gray); line-height: 1.55; }
.fiche .tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.5rem; }
.fiche .tags span {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--light-gray); color: var(--navy); padding: 0.15rem 0.5rem;
}
.fiche .demander {
  font-size: 0.75rem; font-weight: 600; color: var(--gold); text-decoration: none;
  margin-top: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase;
}

.sect-cta { background: var(--navy); text-align: center; padding: 5rem 3rem; }
.sect-cta h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 1rem; }
.sect-cta > p.texte { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 480px; margin: 0 auto 2rem; }
.btn-primary {
  display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold); color: var(--dark);
  padding: 0.9rem 2.2rem; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; margin-right: 1rem;
}
.btn-primary:hover { background: #b07800; transform: translateY(-1px); }
.btn-outline {
  display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; background: transparent; color: var(--white);
  padding: 0.85rem 2.2rem; text-decoration: none; border: 1.5px solid var(--white); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ── PIED DE PAGE ────────────────────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 4rem 3rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-wa { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.footer-wa span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--gold); font-weight: 500; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li span { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact p { font-size: 0.85rem; margin-bottom: 0.4rem; line-height: 1.6; }
.footer-devis {
  display: inline-block; margin-top: 1rem; padding: 0.6rem 1.2rem; background: var(--gold);
  color: var(--dark); text-decoration: none; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}

/* ── BULLE DE CONTACT FLOTTANTE (social-contact-bar.js) ──────────────── */
.v21-contact-bar {
  position: fixed; right: 18px; bottom: 20px; z-index: 9999;
  display: flex; flex-direction: column-reverse; align-items: center; gap: 8px;
}
.v21-contact-main, .v21-contact-link {
  width: 48px; height: 48px; padding: 0; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0; line-height: 0;
  box-shadow: 0 12px 28px rgba(16,35,26,.25);
  transition: opacity .18s ease, transform .2s ease, background .2s ease, color .2s ease;
}
.v21-contact-main { border: 1px solid rgba(255,255,255,.5); background: #25d366; color: #082817; cursor: pointer; z-index: 2; }
.v21-contact-main:hover { filter: brightness(1.02); transform: translateY(-1px); }
.v21-contact-bar svg { width: 22px; height: 22px; display: block; }
.v21-contact-link {
  opacity: 0; pointer-events: none; transform: translateY(8px);
  background: rgba(255,255,255,.94); color: #152e1f; border: 1px solid rgba(16,35,26,.12);
}
.v21-contact-bar.open .v21-contact-link { opacity: 1; pointer-events: auto; transform: translateY(0); }
.v21-contact-bar.open .v21-contact-main { background: #1b3a28; color: #fff; }
.v21-contact-link.v21-wa { background: #25d366; color: #082817; }
.v21-contact-link.v21-tel { background: #fff; color: #1b3a28; }
.v21-contact-link.v21-ig { background: #c13584; color: #fff; }
.v21-contact-link.v21-fb { background: #1877f2; color: #fff; }

/* ── MARQUEUR DE COPIE (hors maquette, n'occupe aucune place) ────────── */
.marqueur {
  position: fixed; left: 14px; bottom: 16px; z-index: 9999;
  background: rgba(110,43,32,0.94); color: #FBEDE8;
  font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.03em;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

/* ── RESPONSIVE (identique à globals.css) ────────────────────────────── */
@media (max-width: 900px) {
  .bar2 { display: none !important; }
  .bar3-menu { display: none !important; }
  .nav-cta-btn { display: none !important; }
  .mega-panel { display: none !important; }
  .mobile-panel { top: 68px; max-height: calc(100vh - 68px); }
  .burger { display: flex; }
  .hero { padding: 0 1.5rem 3rem; }
  .duo, .grille-circuits { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .sect-mode, .sect-liste { padding: 3rem 1.5rem; }
}
/* ═══════════════════════════════════════════════════════════════════════
   REFONTE HEADER « MARHABA » — menu unifié dans la barre 2 (comme l'accueil).
   Reprend à l'identique les overrides de index.html pour propager le nouveau
   header + la charte olive aux sous-pages (lieux / activités).
   ═══════════════════════════════════════════════════════════════════════ */
/* Barres du haut : bar1 + bar2 pleines (vert) ; bar3 transparente en permanence */
.entete{ background:transparent; box-shadow:none; }
.bar1{ background:var(--green); border-bottom:1px solid rgba(200,164,64,.18); }
.bar2{ background:#152E1F; border-bottom:1px solid rgba(200,164,64,.12); }
.bar3, .bar3.plein, .bar3.defile, .entete.scrolled .bar3{
  background:transparent !important; box-shadow:none !important; backdrop-filter:none !important;
}
/* Items de nav = boutons VERTS pleins (pastilles, ← Accueil, tél) */
.pastille, .retour, .tel{
  background:var(--green); color:#fff !important; border:1px solid rgba(200,164,64,.45);
  border-radius:50px; padding:.44rem 1.05rem; font-family:'DM Sans',sans-serif;
  font-style:normal; font-weight:600; font-size:.8rem; letter-spacing:.02em;
  text-transform:none; display:flex; align-items:center; gap:6px; white-space:nowrap;
  box-shadow:0 4px 14px rgba(16,35,26,.20);
}
.pastille:hover, .retour:hover, .tel:hover{
  background:#24503a; color:#fff !important; border-color:rgba(200,164,64,.7);
}
.pastille[aria-expanded="true"]{ background:var(--gold); border-color:var(--gold); color:#1b3a28 !important; }
/* Contact en DORÉ plein */
.nav-cta-btn{ background:var(--gold); color:#1b1b1b; border-radius:50px; }
.nav-cta-btn:hover{ background:#b09030; }
/* Menu unique dans la barre « Marhaba » (bar2) ; bar3 = mobile (burger) seul */
.bar2{ height:auto; min-height:56px; justify-content:center; position:relative; }
.bar2-menu{ display:flex; align-items:center; gap:1rem; flex-wrap:wrap; justify-content:center; }
.bar2-droite{ position:absolute; right:2.5rem; top:50%; transform:translateY(-50%); flex:0 0 auto; display:flex; gap:1rem; }
@media (min-width:901px){
  .bar3{ display:none !important; }
  .mega-panel{ top:104px; }              /* ancré sous le nouveau header (104 px) */
}
/* ── HEADER MOBILE : barre de nav compacte, burger accessible ── */
@media (max-width:900px){
  .bar3{ justify-content:space-between; padding:0 1rem; gap:.5rem; }
  .retour-zone{ flex:0 0 auto; }
  .bar3-droite{ gap:.5rem; }
  .retour, .pastille, .tel{ padding:.4rem .85rem; font-size:.76rem; box-shadow:0 3px 10px rgba(16,35,26,.18); }
  .burger{ padding:6px; flex:0 0 auto; }
  /* rangée de contacts en tête du menu burger */
  .mob-contact{ display:flex; gap:.5rem; padding:1rem 1.4rem .6rem; border-bottom:1px solid rgba(255,255,255,.08); }
  .mob-contact .mc{ flex:1; text-align:center; padding:.6rem .4rem; border-radius:8px;
    font-family:'DM Sans',sans-serif; font-size:.8rem; font-weight:600; letter-spacing:.02em; background:#2A5238; color:#fff; }
  .mob-contact .mc.wa{ background:#25d366; color:#082817; }
  .mob-contact .mc.devis{ background:var(--gold); color:#1b1b1b; }
}

/* Ancrage des sections : décalage sous l'en-tête fixe pour que le titre reste visible */
section[id]{ scroll-margin-top:120px; }
@media (max-width:900px){ section[id]{ scroll-margin-top:96px; } }
