/* ============================================
   Koh Samui Tours — feuille de style principale
   ============================================ */

:root {
  --turquoise: #0e9594;
  --turquoise-dark: #0a6e6d;
  --lagon: #14b8a6;
  --sable: #fdf6ec;
  --sable-fonce: #f5e9d7;
  --corail: #ff6b57;
  --corail-fonce: #e5533f;
  --encre: #1f2d3d;
  --gris: #5c6b7a;
  --blanc: #ffffff;
  --ombre: 0 10px 30px rgba(31, 45, 61, 0.10);
  --rayon: 14px;
  --transition: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--encre);
  background: var(--sable);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: var(--turquoise); text-decoration: none; }
a:hover { color: var(--turquoise-dark); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--encre);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---------- Header / Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(31, 45, 61, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--encre);
}

.logo .logo-icon { font-size: 1.6rem; }
.logo span.accent { color: var(--turquoise); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.main-nav a {
  color: var(--encre);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.main-nav a:hover { color: var(--turquoise); }

.main-nav a.active {
  color: var(--turquoise);
  border-bottom-color: var(--corail);
}

.btn-nav {
  background: var(--corail);
  color: var(--blanc) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 50px;
  border-bottom: none !important;
  font-weight: 600;
}

.btn-nav:hover { background: var(--corail-fonce); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--encre);
  cursor: pointer;
}

/* ---------- Boutons ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--corail);
  color: var(--blanc);
}
.btn-primary:hover { background: var(--corail-fonce); color: var(--blanc); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--blanc);
  border: 2px solid var(--blanc);
}
.btn-secondary:hover { background: var(--blanc); color: var(--turquoise-dark); }

.btn-outline {
  background: transparent;
  color: var(--turquoise);
  border: 2px solid var(--turquoise);
}
.btn-outline:hover { background: var(--turquoise); color: var(--blanc); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--blanc);
  background:
    linear-gradient(160deg, rgba(10, 60, 80, 0.65), rgba(14, 149, 148, 0.55)),
    linear-gradient(120deg, #0a6e6d 0%, #14b8a6 45%, #7dd3c8 100%);
}

.hero-inner { width: min(860px, 92%); margin: 0 auto; padding: 5rem 0; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--blanc);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 2.2rem;
  opacity: 0.95;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero réduit pour les pages internes */
.hero.hero-page { min-height: 38vh; }
.hero.hero-page .hero-inner { padding: 3.5rem 0; }

/* ---------- Sections génériques ---------- */

.section { padding: 4.5rem 0; }
.section.alt { background: var(--blanc); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head .kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--corail);
  margin-bottom: 0.5rem;
}
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.8rem; }
.section-head p { color: var(--gris); }

/* ---------- Grilles de cartes ---------- */

.grid { display: grid; gap: 1.8rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--blanc);
  border-radius: var(--rayon);
  overflow: hidden;
  box-shadow: var(--ombre);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(31, 45, 61, 0.16); }

.card-media {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--blanc);
}

/* Dégradés placeholders en attendant les vraies photos */
.media-lagon   { background: linear-gradient(135deg, #0e9594, #4fd1c5); }
.media-sunset  { background: linear-gradient(135deg, #f97316, #fbbf24); }
.media-jungle  { background: linear-gradient(135deg, #166534, #4ade80); }
.media-mer     { background: linear-gradient(135deg, #0369a1, #38bdf8); }
.media-plage   { background: linear-gradient(135deg, #d4a373, #fde68a); }
.media-temple  { background: linear-gradient(135deg, #7c2d12, #f59e0b); }
.media-corail  { background: linear-gradient(135deg, #be185d, #fb7185); }
.media-nuit    { background: linear-gradient(135deg, #1e1b4b, #6366f1); }

.card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card-body h3 { font-size: 1.2rem; }
.card-body p { color: var(--gris); font-size: 0.95rem; flex: 1; }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--gris);
  border-top: 1px solid var(--sable-fonce);
  padding-top: 0.8rem;
}

.price { color: var(--corail); font-weight: 700; font-size: 1.1rem; }

.badge {
  display: inline-block;
  background: var(--sable-fonce);
  color: var(--turquoise-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  width: fit-content;
}

/* ---------- Atouts / features ---------- */

.feature {
  text-align: center;
  padding: 1.5rem 1rem;
}
.feature .icon { font-size: 2.6rem; margin-bottom: 0.8rem; }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature p { color: var(--gris); font-size: 0.92rem; }

/* ---------- Témoignages ---------- */

.testimonial {
  background: var(--blanc);
  border-radius: var(--rayon);
  padding: 1.8rem;
  box-shadow: var(--ombre);
}
.testimonial .stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 0.6rem; }
.testimonial p { color: var(--gris); font-style: italic; margin-bottom: 1rem; }
.testimonial .author { font-weight: 600; color: var(--encre); font-size: 0.95rem; }

/* ---------- Bandeau CTA ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--turquoise-dark), var(--lagon));
  color: var(--blanc);
  text-align: center;
  padding: 4rem 0;
}
.cta-band h2 { color: var(--blanc); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
.cta-band p { margin-bottom: 1.8rem; opacity: 0.92; }

/* ---------- Page excursion (détail) ---------- */

.tour-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: start; }

.tour-content h2 { font-size: 1.5rem; margin: 2rem 0 0.8rem; }
.tour-content h2:first-child { margin-top: 0; }
.tour-content p { color: var(--gris); margin-bottom: 1rem; }
.tour-content ul { color: var(--gris); padding-left: 1.3rem; margin-bottom: 1rem; }
.tour-content li { margin-bottom: 0.4rem; }

.tour-sidebar {
  background: var(--blanc);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1.8rem;
  position: sticky;
  top: 95px;
}
.tour-sidebar .price { font-size: 1.8rem; display: block; margin-bottom: 0.3rem; }
.tour-sidebar .price small { font-size: 0.9rem; color: var(--gris); font-weight: 400; }
.tour-sidebar ul { list-style: none; margin: 1.2rem 0; }
.tour-sidebar li {
  display: flex;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sable-fonce);
  font-size: 0.93rem;
  color: var(--gris);
}
.tour-sidebar li:last-child { border-bottom: none; }
.tour-sidebar .btn { width: 100%; text-align: center; }

.timeline { list-style: none; padding-left: 0 !important; }
.timeline li {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 1.1rem;
  border-left: 2px solid var(--sable-fonce);
  margin-left: 0.5rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--corail);
}
.timeline .time { font-weight: 600; color: var(--encre); display: block; }

/* ---------- Galerie ---------- */

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery-item {
  height: 230px;
  border-radius: var(--rayon);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: var(--blanc);
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.03); }

/* ---------- FAQ ---------- */

.faq-item {
  background: var(--blanc);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--corail); }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 1.5rem 1.3rem; color: var(--gris); }

/* ---------- Formulaires ---------- */

.form-card {
  background: var(--blanc);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 2.2rem;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sable-fonce);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--sable);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  background: var(--blanc);
}

.form-note { font-size: 0.85rem; color: var(--gris); margin-top: 1rem; }

/* ---------- Infos contact ---------- */

.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.3rem;
  color: var(--gris);
}
.contact-info-list .icon { font-size: 1.4rem; }
.contact-info-list strong { color: var(--encre); display: block; }

/* ---------- Tableaux (infos pratiques) ---------- */

.table-wrap { overflow-x: auto; }
table.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--blanc);
  border-radius: var(--rayon);
  overflow: hidden;
  box-shadow: var(--ombre);
}
.info-table th, .info-table td { padding: 0.9rem 1.2rem; text-align: left; font-size: 0.95rem; }
.info-table th { background: var(--turquoise); color: var(--blanc); font-weight: 600; }
.info-table tr:nth-child(even) { background: var(--sable); }
.info-table td { color: var(--gris); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--encre);
  color: #cbd5e1;
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer h4 { color: var(--blanc); font-size: 1.05rem; margin-bottom: 1rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: #cbd5e1; font-size: 0.93rem; }
.site-footer a:hover { color: var(--lagon); }
.site-footer p { font-size: 0.93rem; }

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 0.8rem;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanc);
    box-shadow: 0 12px 24px rgba(31, 45, 61, 0.12);
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
  }
  .main-nav li { border-bottom: 1px solid var(--sable-fonce); }
  .main-nav li:last-child { border-bottom: none; }
  .main-nav a { display: block; padding: 0.9rem 1.5rem; border-bottom: none; }
  .main-nav .btn-nav { margin: 0.8rem 1.5rem; text-align: center; }

  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}

/* ============================================
   V2 — Filtres, WhatsApp, stats, éthique
   ============================================ */

/* Barre de filtres (page excursions) */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--blanc);
  border: 1.5px solid var(--sable-fonce);
  color: var(--gris);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--turquoise); color: var(--turquoise); }
.filter-btn.active {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--blanc);
}
.card.hidden-by-filter { display: none; }

/* Bouton WhatsApp flottant */
.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--blanc);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: translateY(-3px); color: var(--blanc); background: #1ebe5b; }
.whatsapp-float .wa-icon { font-size: 1.2rem; }

/* Bandeau de chiffres clés */
.stats-band {
  background: var(--encre);
  color: var(--blanc);
  padding: 2.8rem 0;
}
.stats-band .grid { text-align: center; }
.stat .num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--lagon);
  display: block;
}
.stat .label { color: #cbd5e1; font-size: 0.92rem; }

/* Encadré engagements / éthique */
.ethics {
  background: var(--blanc);
  border-left: 5px solid var(--lagon);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 2rem;
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
}
.ethics .icon { font-size: 2.2rem; }
.ethics h3 { margin-bottom: 0.4rem; }
.ethics p { color: var(--gris); font-size: 0.95rem; }

/* Ruban "dès" sur les prix */
.price small.des { font-size: 0.75rem; color: var(--gris); font-weight: 400; display: block; line-height: 1; }

/* Sélecteur de langue */
.lang-switch {
  border: 1.5px solid var(--sable-fonce);
  border-radius: 50px;
  padding: 0.35rem 0.8rem !important;
  font-size: 0.85rem !important;
  border-bottom-width: 1.5px !important;
}
.lang-switch:hover { border-color: var(--turquoise); }

/* ============================================
   V3 — REDESIGN : header transparent, logo,
   animations, menu overlay, effets wow
   ============================================ */

/* ---------- Header transparent -> verre dépoli ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header .logo,
.site-header .main-nav a {
  color: var(--blanc);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.site-header .logo .accent { color: #7ef0e4; transition: color 0.4s ease; }
.site-header .lang-switch { border-color: rgba(255, 255, 255, 0.5); }

.site-header .main-nav a:hover { color: #7ef0e4; }
.site-header .main-nav a.active { color: #7ef0e4; border-bottom-color: var(--corail); }
.site-header .btn-nav { text-shadow: none; }
.site-header .nav-toggle { color: var(--blanc); }

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(31, 45, 61, 0.12);
}
.site-header.scrolled .logo,
.site-header.scrolled .main-nav a { color: var(--encre); text-shadow: none; }
.site-header.scrolled .logo .accent { color: var(--turquoise); }
.site-header.scrolled .main-nav a:hover { color: var(--turquoise); }
.site-header.scrolled .main-nav a.active { color: var(--turquoise); }
.site-header.scrolled .lang-switch { border-color: var(--sable-fonce); }
.site-header.scrolled .btn-nav { color: var(--blanc) !important; }
.site-header.scrolled .nav-toggle { color: var(--encre); }

/* Soulignement animé des liens */
.main-nav a:not(.btn-nav):not(.lang-switch) {
  position: relative;
  border-bottom: none;
}
.main-nav a:not(.btn-nav):not(.lang-switch)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--corail), #ffd166);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.main-nav a:not(.btn-nav):not(.lang-switch):hover::after,
.main-nav a.active:not(.btn-nav)::after { transform: scaleX(1); }

/* Le héro passe sous le header fixe */
.hero { padding-top: 72px; }

/* ---------- Logo ---------- */

.logo { gap: 0.7rem; }
.logo-mark { display: block; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25)); }
.logo-text { line-height: 1.05; letter-spacing: 0.5px; }
.logo-text small {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- Héro d'accueil plein écran + Ken Burns ---------- */

.hero-home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--encre);
}

.hero-bg {
  position: absolute;
  inset: -4%;
  background-position: center;
  background-size: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.14) translateY(-2.5%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(6, 45, 60, 0.72) 0%, rgba(14, 149, 148, 0.35) 55%, rgba(6, 45, 60, 0.55) 100%);
}

.hero-home .hero-inner { position: relative; z-index: 2; }

.hero-kicker {
  display: inline-block;
  color: #ffd166;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* Entrées animées du héro */
.hero-home .hero-inner > * {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-home .hero-inner > *:nth-child(1) { animation-delay: 0.15s; }
.hero-home .hero-inner > *:nth-child(2) { animation-delay: 0.35s; }
.hero-home .hero-inner > *:nth-child(3) { animation-delay: 0.55s; }
.hero-home .hero-inner > *:nth-child(4) { animation-delay: 0.75s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Indicateur de scroll */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 84px;
  transform: translateX(-50%);
  z-index: 3;
  width: 30px; height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%; top: 9px;
  width: 5px; height: 10px;
  margin-left: -2.5px;
  border-radius: 3px;
  background: #ffd166;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Vague de transition sous le héro */
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 2;
  display: block;
  width: 100%;
  height: 70px;
}

/* ---------- Apparitions au scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Micro-interactions ---------- */

.card { overflow: hidden; }
.card .card-media {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card-media { transform: scale(1.07); }

.btn-primary { box-shadow: 0 8px 22px rgba(255, 107, 87, 0.35); }
.btn-primary:hover { box-shadow: 0 12px 30px rgba(255, 107, 87, 0.5); }

.cta-band {
  background: linear-gradient(120deg, var(--turquoise-dark), var(--lagon), #0d7d7c, var(--turquoise-dark));
  background-size: 280% 280%;
  animation: ctaFlow 14s ease infinite;
}
@keyframes ctaFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.stats-band { position: relative; overflow: hidden; }
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(20, 184, 166, 0.25), transparent 55%),
              radial-gradient(ellipse at 85% 100%, rgba(255, 107, 87, 0.16), transparent 55%);
}
.stats-band .container { position: relative; }

/* ---------- Menu mobile : overlay plein écran ---------- */

@media (max-width: 1280px) {
  .nav-toggle { display: block; position: relative; z-index: 220; }

  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 210;
    background: linear-gradient(160deg, rgba(6, 48, 58, 0.97), rgba(10, 110, 109, 0.96));
    backdrop-filter: blur(10px);
    box-shadow: none;
  }
  .main-nav.open { display: flex; align-items: center; justify-content: center; }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
  }
  .main-nav li { border-bottom: none; opacity: 0; transform: translateY(18px); }
  .main-nav.open li { animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
  .main-nav.open li:nth-child(1)  { animation-delay: 0.05s; }
  .main-nav.open li:nth-child(2)  { animation-delay: 0.1s; }
  .main-nav.open li:nth-child(3)  { animation-delay: 0.15s; }
  .main-nav.open li:nth-child(4)  { animation-delay: 0.2s; }
  .main-nav.open li:nth-child(5)  { animation-delay: 0.25s; }
  .main-nav.open li:nth-child(6)  { animation-delay: 0.3s; }
  .main-nav.open li:nth-child(7)  { animation-delay: 0.35s; }
  .main-nav.open li:nth-child(8)  { animation-delay: 0.4s; }
  .main-nav.open li:nth-child(9)  { animation-delay: 0.45s; }
  .main-nav.open li:nth-child(10) { animation-delay: 0.5s; }
  .main-nav.open li:nth-child(11) { animation-delay: 0.55s; }

  .main-nav a {
    display: block;
    padding: 0.55rem 1.4rem;
    font-size: 1.25rem;
    color: var(--blanc) !important;
    text-shadow: none;
  }
  .main-nav .btn-nav { margin-top: 0.8rem; text-align: center; }
  .main-nav .lang-switch { margin-top: 0.4rem; font-size: 1rem !important; }

  body.menu-open { overflow: hidden; }
}

/* ---------- Accessibilité : réduire les animations ---------- */

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .cta-band { animation: none !important; }
  .hero-home .hero-inner > *, .scroll-cue { animation: none !important; opacity: 1 !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Correctif : le menu desktop ne doit jamais passer sur deux lignes */
.main-nav a { white-space: nowrap; }
.main-nav ul { gap: 1.15rem; }
.main-nav a { font-size: 0.92rem; }
.site-header .btn-nav { padding: 0.5rem 1.05rem !important; }

@media (max-width: 1500px) {
  .logo-text small { display: none; }
}

/* ============================================
   V4 — Bandeau CTA, footer premium, page Tours
   ============================================ */

/* ---------- Bandeau CTA décoré ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(255, 209, 102, 0.18), transparent 45%),
    radial-gradient(ellipse at 88% 85%, rgba(255, 107, 87, 0.22), transparent 50%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M21.5 44c1.5-12 2-20 1-28' stroke='%23ffffff' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3Cpath d='M22.5 16c-6-5-12-5-16-1 6 0 11 1 16 1z M22.5 16c-1-7-6-11-11-11 4 4 8 7 11 11z M22.5 16c2-7 8-10 13-9-5 3-9 5-13 9z M22.5 16c7-3 13 0 16 5-6-3-11-4-16-5z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(8deg);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.cta-band p { font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
  background: #25d366;
  color: var(--blanc);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #1ebe5b; color: var(--blanc); transform: translateY(-2px); }

/* ---------- Footer premium ---------- */

.site-footer {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(20, 184, 166, 0.12), transparent 50%),
    linear-gradient(180deg, #17222f 0%, #0e1620 100%);
  padding: 4.5rem 0 0;
}
.footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }

.footer-brand .logo { margin-bottom: 0.9rem; }
.footer-brand .logo-text { color: var(--blanc); font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 700; }
.footer-brand .logo-text .accent { color: var(--lagon); }
.footer-brand p { color: #9fb0c1; font-size: 0.92rem; margin-bottom: 1.3rem; }

.socials { display: flex; gap: 0.7rem; }
.socials a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #cbd5e1;
  transition: var(--transition);
}
.socials a svg { width: 18px; height: 18px; fill: currentColor; }
.socials a:hover { background: var(--lagon); border-color: var(--lagon); color: var(--blanc); transform: translateY(-3px); }

.site-footer h4 { position: relative; padding-bottom: 0.7rem; margin-bottom: 1.1rem; }
.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--corail), #ffd166);
}
.site-footer ul a { display: inline-block; transition: var(--transition); }
.site-footer ul a:hover { color: var(--lagon); transform: translateX(4px); }

.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; color: #9fb0c1; font-size: 0.92rem; margin-bottom: 0.75rem; }
.footer-contact .fc-icon { flex: none; opacity: 0.9; }
.footer-contact a { color: #cbd5e1; }
.footer-contact a:hover { color: var(--lagon); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.4rem 0;
  text-align: left;
}
.footer-bottom a { color: #94a3b8; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--lagon); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { justify-content: center; text-align: center; } }

/* ---------- Page Tours ---------- */

.breadcrumb { font-size: 0.88rem; margin-bottom: 1rem; color: rgba(255, 255, 255, 0.85); }
.breadcrumb a { color: rgba(255, 255, 255, 0.85); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: #ffd166; }

.tour-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--blanc);
  border-radius: var(--rayon);
  overflow: hidden;
  box-shadow: var(--ombre);
  margin-bottom: 2.6rem;
}
.tf-media { position: relative; min-height: 400px; overflow: hidden; }
.tf-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.tour-feature:hover .tf-media img { transform: scale(1.05); }
.tf-flag {
  position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2;
  background: var(--corail); color: var(--blanc);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 0.35rem 0.95rem; border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.tf-body { padding: 2.6rem; display: flex; flex-direction: column; gap: 1rem; }
.tf-body h2 { font-size: 1.7rem; }
.tf-body > p { color: var(--gris); }
.tf-meta { display: flex; gap: 1.4rem; flex-wrap: wrap; color: var(--gris); font-size: 0.9rem; }
.tf-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--sable-fonce); }
.tf-footer .price { font-size: 1.5rem; }
.tf-footer .price small { display: block; font-size: 0.72rem; color: var(--gris); font-weight: 400; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  font-size: 0.78rem; font-weight: 600;
  color: var(--turquoise-dark);
  background: var(--sable);
  border: 1px solid var(--sable-fonce);
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
}

.tour-card .card-media-wrap { position: relative; height: 235px; overflow: hidden; }
.tour-card .card-media-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.tour-card:hover .card-media-wrap img { transform: scale(1.08); }
.tour-card .card-media-wrap .tf-flag { font-size: 0.72rem; }
.tour-card .duration-tag {
  position: absolute; right: 0.9rem; bottom: 0.9rem; z-index: 2;
  background: rgba(10, 30, 40, 0.72); color: var(--blanc);
  backdrop-filter: blur(4px);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 50px;
}

.seo-block { max-width: 780px; margin: 0 auto; color: var(--gris); }
.seo-block h2 { font-size: 1.45rem; margin: 1.8rem 0 0.7rem; color: var(--encre); }
.seo-block p { margin-bottom: 1rem; }

@media (max-width: 900px) {
  .tour-feature { grid-template-columns: 1fr; }
  .tf-media { min-height: 260px; }
  .tf-body { padding: 1.8rem; }
}

/* Les filtres masquent aussi la carte vedette */
.tour-feature.hidden-by-filter { display: none; }

/* Éviter que le bouton WhatsApp flottant ne recouvre le bas du footer */
@media (min-width: 641px) {
  .footer-bottom { padding-right: 170px; }
}

/* ============================================
   V5 — Fiches excursions complètes
   ============================================ */

/* Barre d'infos rapides sous le titre du héro */
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.4rem;
}
.qf {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  color: var(--blanc);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

/* Points forts */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.6rem;
  margin: 1rem 0 0.5rem;
}
.hl {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--blanc);
  border: 1px solid var(--sable-fonce);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
}
.hl .ic { font-size: 1.5rem; line-height: 1.2; }
.hl p { margin: 0 !important; font-size: 0.92rem; }
.hl strong { display: block; color: var(--encre); font-size: 0.95rem; }

/* Timeline améliorée */
.timeline li {
  border-left: 2px solid #cfe8e5;
  padding-bottom: 1.3rem;
}
.timeline li::before {
  background: var(--blanc);
  border: 3px solid var(--corail);
  width: 13px; height: 13px;
  left: -8px;
}
.timeline .time {
  color: var(--turquoise-dark);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Inclus / non inclus */
.inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.inc-exc h3 { font-size: 1.05rem; margin-bottom: 0.7rem; }
.inc-exc ul { list-style: none; padding-left: 0 !important; margin-bottom: 0 !important; }
.inc-exc li { position: relative; padding-left: 1.7rem; margin-bottom: 0.5rem; }
.inc li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #16a34a; font-weight: 700;
}
.exc li::before {
  content: "✕"; position: absolute; left: 0; top: 0;
  color: #dc2626; font-weight: 700;
}

/* Bon à savoir */
.gtk {
  background: #fef8ec;
  border-left: 5px solid #ffd166;
  border-radius: var(--rayon);
  padding: 1.4rem 1.6rem;
  margin: 1.4rem 0;
}
.gtk h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.gtk p { font-size: 0.93rem; margin-bottom: 0.4rem !important; }

/* Mini-galerie */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin: 1.2rem 0;
}
.photo-strip img {
  width: 100%; height: 170px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.photo-strip img:hover { transform: scale(1.04); }

/* Sidebar de réservation enrichie */
.tour-sidebar { top: 92px; }
.tour-sidebar .btn { display: block; text-align: center; }
.tour-sidebar .btn + .btn { margin-top: 0.6rem; }
.trust-list { list-style: none; margin-top: 1rem !important; }
.trust-list li {
  border-bottom: none !important;
  padding: 0.25rem 0 !important;
  font-size: 0.85rem !important;
  color: var(--gris);
}

/* Excursions similaires */
.related-card .card-media-wrap { height: 170px; }
.related-card h3 { font-size: 1.05rem; }

@media (max-width: 700px) {
  .highlight-grid, .inc-exc { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 220px; }
}

/* ============================================
   V6 — Private tours & Contact/Booking
   ============================================ */

/* Étapes numérotées */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.step {
  position: relative;
  background: var(--blanc);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 2.2rem 1.6rem 1.8rem;
  text-align: center;
}
.step-num {
  width: 54px; height: 54px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--corail), #ffd166);
  color: var(--blanc);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 107, 87, 0.35);
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.step p { color: var(--gris); font-size: 0.92rem; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* Panneau contact (colonne gauche) */
.contact-panel {
  background: linear-gradient(160deg, var(--turquoise-dark), var(--lagon));
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  color: var(--blanc);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}
.contact-panel::after {
  content: "";
  position: absolute; right: -30px; bottom: -40px;
  width: 190px; height: 190px;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M21.5 44c1.5-12 2-20 1-28' stroke='%23ffffff' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3Cpath d='M22.5 16c-6-5-12-5-16-1 6 0 11 1 16 1z M22.5 16c-1-7-6-11-11-11 4 4 8 7 11 11z M22.5 16c2-7 8-10 13-9-5 3-9 5-13 9z M22.5 16c7-3 13 0 16 5-6-3-11-4-16-5z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
  pointer-events: none;
}
.contact-panel h2 { color: var(--blanc); font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-panel > p { opacity: 0.92; font-size: 0.95rem; margin-bottom: 1.4rem; }
.cp-list { list-style: none; position: relative; z-index: 1; }
.cp-list li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.93rem;
}
.cp-list li:last-child { border-bottom: none; }
.cp-list .ic { font-size: 1.2rem; }
.cp-list strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.cp-list a { color: var(--blanc); text-decoration: underline; text-underline-offset: 3px; }
.contact-panel .btn-whatsapp { display: block; text-align: center; margin-top: 1.3rem; position: relative; z-index: 1; }

/* En-tête du formulaire */
.form-card h2 { display: flex; align-items: center; gap: 0.6rem; }
.form-note-badge {
  display: inline-block;
  background: #e8f7f1;
  color: #0f766e;
  font-size: 0.8rem; font-weight: 600;
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.2rem;
}

/* ============================================
   V7 — Galerie lightbox, dernières pages
   ============================================ */

.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-figure {
  position: relative;
  margin: 0;
  border-radius: var(--rayon);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--ombre);
}
.gallery-figure img {
  width: 100%; height: 250px;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.gallery-figure:hover img { transform: scale(1.06); }
.gallery-figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: var(--blanc);
  font-size: 0.9rem; font-weight: 600;
}
@media (max-width: 900px) { .gallery-masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-masonry { grid-template-columns: 1fr; } }

.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(8, 20, 28, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 3vh 3vw;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.show { opacity: 1; }
.lightbox img {
  max-width: 100%; max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox figcaption {
  position: absolute; bottom: 3vh; left: 0; right: 0;
  text-align: center; color: var(--blanc); font-size: 0.95rem;
}
.lightbox .lb-close {
  position: absolute; top: 1.2rem; right: 1.6rem;
  background: none; border: none;
  color: var(--blanc); font-size: 2rem; cursor: pointer;
  opacity: 0.85;
}
.lightbox .lb-close:hover { opacity: 1; }

/* Méta des articles de blog */
.post-meta { color: var(--gris); font-size: 0.9rem; margin-bottom: 1.4rem; }

/* Correctif iOS : le backdrop-filter du header piège le menu fixe.
   Quand le menu est ouvert, on coupe l'effet verre du header. */
body.menu-open .site-header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  transition: none !important;
}
.site-header.scrolled { -webkit-backdrop-filter: blur(14px); }
.main-nav { -webkit-backdrop-filter: blur(10px); }
.qf { -webkit-backdrop-filter: blur(6px); }

/* ============================================
   V8 — Polish mobile (la majorité du trafic !)
   ============================================ */

@media (max-width: 700px) {
  /* Héros */
  .hero { padding-top: 64px; }
  .hero-inner { padding: 3rem 0; }
  .hero.hero-page { min-height: 46vh; }
  .quick-facts { gap: 0.45rem; }
  .qf { font-size: 0.78rem; padding: 0.35rem 0.75rem; }
  .breadcrumb { font-size: 0.8rem; }

  /* Carte vedette (page Tours) */
  .tf-body { padding: 1.5rem 1.2rem; gap: 0.8rem; }
  .tf-meta { gap: 0.5rem 1rem; font-size: 0.85rem; }
  .tf-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .tf-footer .btn { width: 100%; }
  .tf-media { min-height: 230px; }

  /* Cartes & méta */
  .card-meta { flex-wrap: wrap; gap: 0.6rem; }
  .card-meta .btn { flex: 1; text-align: center; }
  .chips { gap: 0.4rem; }
  .chip { font-size: 0.74rem; }

  /* Chiffres clés : 2 x 2 plutôt qu'une colonne */
  .stats-band .grid-4 { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .stat .num { font-size: 1.7rem; }
  .stat .label { font-size: 0.82rem; }

  /* Bandeaux CTA : boutons pleine largeur */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .cta-band { padding: 3.5rem 0; }
  .cta-band::after { width: 180px; height: 180px; right: -30px; bottom: -30px; }

  /* Fiches excursions */
  .tour-sidebar { position: static; }
  .timeline li { padding-left: 1.6rem; }
  .gtk { padding: 1.1rem 1.2rem; }
  .inc-exc { gap: 1.1rem; }

  /* Galerie */
  .gallery-figure img { height: 230px; }

  /* Divers */
  .section-head { margin-bottom: 2.2rem; }
  .form-card { padding: 1.5rem 1.2rem; }
  .contact-panel { padding: 1.6rem 1.3rem; }
  .step { padding: 1.7rem 1.3rem 1.4rem; }
  .whatsapp-float { padding: 0.65rem 1rem; font-size: 0.88rem; }
  .footer-bottom { padding-right: 0; }
}
