/* ==========================================================================
   GAUME EXPERIENCE — Maquette de validation visuelle
   Charte : vert forêt + doré + anthracite + ivoire
   Typographie : Outfit (titres) + Inter (corps)
   ========================================================================== */

/* --------- VARIABLES --------- */
:root {
  --c-forest: #2E5C3E;
  --c-forest-dark: #1A3A28;
  --c-gold: #C9A961;
  --c-gold-dark: #A88A45;
  --c-anthracite: #2C2C2C;
  --c-ivory: #FAF7F2;
  --c-cream: #F2EEE6;
  --c-line: #E2DDD2;
  --c-white: #FFFFFF;
  --c-muted: #6E6A63;

  --f-title: 'Outfit', sans-serif;
  --f-body: 'Inter', sans-serif;

  --container: 1280px;
  --radius: 6px;
  --transition: all 0.25s ease;
}

/* --------- RESET --------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --------- BASE --------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-anthracite);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--f-title);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-anthracite);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
  display: inline-block;
}

.lead {
  font-size: 1.15rem;
  color: var(--c-muted);
  max-width: 720px;
  line-height: 1.7;
}

/* --------- BUTTONS --------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-forest);
  color: var(--c-white);
}
.btn-primary:hover {
  background: var(--c-forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(46,92,62,.35);
}

.btn-gold {
  background: var(--c-gold);
  color: var(--c-anthracite);
}
.btn-gold:hover {
  background: var(--c-gold-dark);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: var(--c-white);
  color: var(--c-anthracite);
}

.btn-ghost {
  background: transparent;
  color: var(--c-forest);
  border: 1.5px solid var(--c-forest);
}
.btn-ghost:hover {
  background: var(--c-forest);
  color: var(--c-white);
}

/* --------- HEADER / NAV --------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000; /* doit rester au-dessus de l'overlay mobile (9998) pour que le menu drawer (dans le header) reste cliquable */
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
  transition: var(--transition);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand img { height: 52px; width: auto; max-width: 280px; object-fit: contain; }
@media (max-width: 560px) {
  .brand img { height: 42px; max-width: 200px; }
}

/* Logo carré dans le footer — fond clair pour le faire ressortir sur le vert sombre */
.footer-logo {
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 22px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}
.footer-logo img { height: 88px; width: auto; display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 48px; /* respiration après le logo */
}
.nav-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-anthracite);
  position: relative;
  padding: 6px 0;
  white-space: nowrap; /* pas de retour à la ligne sur les titres */
  transition: var(--transition);
}
@media (max-width: 1180px) {
  .nav-menu { gap: 22px; margin-left: 32px; }
  .nav-menu a { font-size: 0.88rem; }
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--c-forest);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-gold);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger { display: none; }
.menu-reserve-btn { display: none !important; } /* caché par défaut, affiché uniquement en mobile via @media */

/* --------- LANG SWITCHER --------- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 14px;
  padding: 2px 6px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: var(--c-white);
}
.lang-switcher a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--c-muted);
  transition: var(--transition);
}
.lang-switcher a:hover { color: var(--c-forest); }
.lang-switcher a.active {
  background: var(--c-forest);
  color: var(--c-white);
}
.lang-switcher span {
  width: 1px; height: 14px;
  background: var(--c-line);
  display: inline-block;
}
@media (max-width: 980px) {
  .lang-switcher { margin-right: 8px; padding: 2px 6px; }
  .lang-switcher a { padding: 3px 6px; font-size: 0.72rem; }
}
@media (max-width: 560px) {
  .lang-switcher span { display: none; }
}

/* --------- HERO --------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--c-white);
  margin-top: 86px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,40,.78) 0%, rgba(26,58,40,.45) 50%, rgba(26,58,40,.65) 100%);
  z-index: -1;
}
.hero h1 { color: var(--c-white); margin-bottom: 24px; max-width: 900px; }
.hero-tagline {
  font-family: var(--f-title);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 32px;
}
.hero-punch {
  font-family: var(--f-title);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero-punch strong {
  font-weight: 600;
  color: var(--c-gold);
}
.hero p.lead {
  color: rgba(255,255,255,.92);
  margin-bottom: 40px;
  max-width: 640px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .hero-scroll { display: none; }
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: var(--c-gold);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Hero variant pour pages intérieures */
.hero-page {
  min-height: 56vh;
  margin-top: 86px;
}

/* --------- SECTIONS --------- */
section {
  padding: 110px 0;
}
.section-ivory { background: var(--c-ivory); }
.section-dark { background: var(--c-forest-dark); color: var(--c-white); }
.section-dark h2, .section-dark h3 { color: var(--c-white); }
.section-dark .lead { color: rgba(255,255,255,.85); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .lead { margin: 16px auto 0; }

/* --------- INTRO TWO COLS --------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.two-col-image {
  position: relative;
}
.two-col-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  border: 2px solid var(--c-gold);
  border-radius: var(--radius);
  z-index: -1;
}

/* --------- EXPERIENCE CARDS --------- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.exp-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.12);
  border-color: var(--c-gold);
}
.exp-card-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.exp-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,58,40,.4) 100%);
}
.exp-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--c-gold);
  color: var(--c-anthracite);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 1;
}
.exp-card-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.exp-card h3 { margin-bottom: 12px; }
.exp-card p { color: var(--c-muted); margin-bottom: 24px; flex-grow: 1; }
.exp-meta {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 24px;
}
.exp-meta-item small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.exp-meta-item strong {
  font-family: var(--f-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-forest);
}

/* --------- WHY (4 cols icons) --------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 32px 16px;
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-cream);
  border-radius: 50%;
  color: var(--c-forest);
}
.why-icon svg { width: 28px; height: 28px; }
.why-card h4 { margin-bottom: 12px; color: var(--c-anthracite); }
.why-card p { font-size: 0.95rem; color: var(--c-muted); line-height: 1.6; }

/* --------- GALLERY --------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery-grid figure {
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-grid figure:hover { transform: scale(1.02); }
.gallery-grid figure:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* --------- CTA FINAL --------- */
.cta-final {
  position: relative;
  padding: 140px 0;
  color: var(--c-white);
  text-align: center;
  overflow: hidden;
}
.cta-final-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.cta-final::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(46,92,62,.92), rgba(26,58,40,.85));
  z-index: -1;
}
.cta-final h2 { color: var(--c-white); margin-bottom: 16px; }
.cta-final p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* --------- COMPARATIF TABLE --------- */
.comparatif {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}
.comparatif-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--c-line);
}
.comparatif-row:last-child { border-bottom: none; }
.comparatif-row > div {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  line-height: 1.55;
}
/* Wrapper inside cells so <br/> + spaces are preserved in flex layout */
.comparatif-row .value > .cell,
.comparatif-row .label > .cell { width: 100%; }
.comparatif-row .cell .row { display: block; }
.comparatif-row .cell .row + .row { margin-top: 4px; }
.comparatif-row .cell .muted { color: var(--c-muted); font-size: 0.88em; }
.comparatif-row.head {
  background: var(--c-forest);
  color: var(--c-white);
}
.comparatif-row.head h4 {
  font-family: var(--f-title);
  font-weight: 600;
  color: var(--c-white);
}
.comparatif-row .label {
  font-weight: 600;
  background: var(--c-cream);
  border-right: 1px solid var(--c-line);
}
.comparatif-row .value {
  color: var(--c-muted);
  border-right: 1px solid var(--c-line);
}
.comparatif-row .value:last-child { border-right: none; }
.comparatif-row .value strong {
  color: var(--c-forest);
  font-family: var(--f-title);
  font-weight: 600;
}

/* --------- INCLUS LIST --------- */
.inclus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.inclus-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--c-white);
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
}
.inclus-check {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--c-forest);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inclus-item h4 { margin-bottom: 4px; font-size: 1rem; }
.inclus-item p { font-size: 0.9rem; color: var(--c-muted); margin: 0; }

/* --------- CIRCUITS (Orval / Semois) --------- */
.circuit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.circuit-card.reverse { grid-template-columns: 1fr 1fr; }
.circuit-card.reverse .circuit-img { order: 2; }
.circuit-img {
  background-size: cover;
  background-position: center;
  min-height: 360px;
}
.circuit-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.circuit-body h3 { margin-bottom: 8px; }
.circuit-distance {
  font-family: var(--f-title);
  color: var(--c-gold);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.circuit-price {
  font-family: var(--f-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-forest);
  margin: 16px 0 24px;
}
.circuit-price small {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--c-muted);
  margin-left: 4px;
}

/* --------- FOOTER --------- */
.site-footer {
  background: var(--c-forest-dark);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer h4 {
  color: var(--c-white);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.site-footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--c-gold); }
.footer-brand p {
  font-size: 0.92rem;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-baseline {
  font-family: var(--f-title);
  color: var(--c-gold) !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem !important;
  font-weight: 500;
  margin-bottom: 20px !important;
}
.footer-contact-line {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.footer-contact-line svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--c-gold);
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
}
.footer-socials {
  display: flex; gap: 16px;
}
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-anthracite);
}
.footer-socials svg { width: 16px; height: 16px; }

/* --------- WHATSAPP FLOAT --------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #25D366;
  color: var(--c-white);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.5);
  z-index: 90;
  transition: transform 0.2s ease;
  /* Pulse via pseudo-element pour éviter de repeindre le SVG */
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: floatPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg {
  width: 32px; height: 32px;
  display: block;
  position: relative;
  z-index: 1;
}
@keyframes floatPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --------- COOKIE BANNER --------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-anthracite);
  color: var(--c-white);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 95;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.cookie-banner.hidden { display: none; }
.cookie-actions { display: flex; gap: 12px; }
.cookie-actions .btn { padding: 10px 20px; font-size: 0.85rem; }

/* --------- BREADCRUMB --------- */
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.breadcrumb a:hover { color: var(--c-gold); }

/* --------- NOTE MAQUETTE — désactivée en prod --------- */
.maquette-banner { display: none !important; }

/* --------- RESPONSIVE --------- */
@media (max-width: 980px) {
  /* Empêche tout débordement horizontal global */
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }

  /* Menu mobile : drawer slide-in depuis la droite */
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0 !important;
    width: min(85vw, 360px) !important;
    max-width: 360px !important;
    min-height: 100vh !important;
    background: #FFFFFF !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 96px 24px 32px !important;
    gap: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    box-shadow: -10px 0 30px rgba(0,0,0,.18) !important;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999 !important;
    overflow-y: auto !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .nav-menu.is-open {
    transform: translateX(0) !important;
  }
  .nav-menu a {
    display: block !important;
    width: 100% !important;
    padding: 16px 0 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    border-bottom: 1px solid var(--c-line) !important;
    color: var(--c-anthracite) !important;
  }
  .nav-menu a.active::after { display: none !important; }
  .nav-menu a.active {
    color: var(--c-forest) !important;
    font-weight: 600 !important;
  }

  /* Bouton Réserver dans le menu mobile (clone JS) */
  .nav-menu .menu-reserve-btn {
    display: inline-flex !important;
    width: auto !important;
    align-self: stretch !important;
    margin-top: 28px !important;
    padding: 14px 28px !important;
    background: var(--c-forest) !important;
    color: var(--c-white) !important;
    border-radius: 6px !important;
    border-bottom: none !important;
    text-align: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.02em !important;
  }
  .nav-menu .menu-reserve-btn:hover {
    background: var(--c-forest-dark) !important;
  }
  /* Voile derrière le menu mobile */
  .nav-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,.55) !important;
    z-index: 9998 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  body.menu-open { overflow: hidden; }

  .burger {
    display: flex !important;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    color: var(--c-anthracite);
    position: relative;
    z-index: 10000 !important;
    background: transparent;
    cursor: pointer;
  }
  .burger svg { width: 24px; height: 24px; transition: transform 0.3s ease; }
  .burger.is-open .icon-menu { display: none !important; }
  .burger .icon-close { display: none !important; }
  .burger.is-open .icon-close { display: block !important; }

  .two-col, .exp-grid, .why-grid, .footer-grid, .inclus-grid, .circuit-card {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-grid figure:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  section { padding: 70px 0; }
  .hero { min-height: 80vh; }
  .circuit-img { min-height: 240px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .nav-cta .btn-primary { display: none; }

  /* Forcer toutes les grids inline 1fr 1fr (formulaire contact, etc.) en 1 colonne */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Hero : empêcher tout débordement de titre */
  .hero h1, .hero-page h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: clamp(1.8rem, 7vw, 2.6rem) !important;
  }
  .hero p.lead { font-size: 1rem !important; }

  /* Formulaire : largeur max */
  form { max-width: 100% !important; }
  form input:not([type="checkbox"]):not([type="radio"]),
  form select,
  form textarea {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  form input[type="checkbox"], form input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
  }

  /* Containers : pas de débordement horizontal */
  .container { padding-left: 20px !important; padding-right: 20px !important; }

  /* Image two-col : hauteur auto sur mobile, plus de 520px fixe */
  .two-col-image img {
    height: auto !important;
    max-height: 320px !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  .two-col-image::before { display: none !important; } /* le carré déco peut déborder, on le retire */

  /* Tableau comparatif : devient une suite de cards lisibles */
  .comparatif-row {
    display: block !important;
    grid-template-columns: none !important;
    padding: 0 !important;
  }
  .comparatif-row.head { display: none !important; } /* pas d'en-tête en mobile, redondant */
  .comparatif-row > div {
    padding: 12px 16px !important;
    border-right: none !important;
    display: block !important;
  }
  .comparatif-row .label {
    background: var(--c-cream) !important;
    border-right: none !important;
    border-bottom: 1px solid var(--c-line) !important;
    font-weight: 600 !important;
    color: var(--c-anthracite) !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    padding: 10px 16px !important;
  }
  .comparatif-row .value {
    border-right: none !important;
    border-bottom: 1px solid var(--c-line) !important;
    font-size: 0.95rem !important;
  }
  .comparatif-row:last-child .value:last-child { border-bottom: none !important; }
  .comparatif {
    overflow: hidden !important;
  }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
}
