/* =====================================================================
   PurpleShine Detailing — Feuille de style
   Palette : violet #7B2FBE · rose/magenta #C850C0 · texte #1A1A1A
   Fond : dégradé blanc → violet léger → rose léger
   Typo : Montserrat
   ===================================================================== */

/* ----------------------------- Variables ---------------------------- */
:root {
  --purple: #7B2FBE;
  --pink:   #C850C0;
  --ink:    #1A1A1A;
  --white:  #FFFFFF;

  --grad: linear-gradient(135deg, #7B2FBE 0%, #C850C0 100%);
  /* Fond de page : dégradé horizontal violet clair → blanc → rose clair */
  --grad-soft: linear-gradient(to right, #E8D5F5 0%, #FFFFFF 50%, #F5D5F0 100%);

  --muted: #5c5470;
  --border: rgba(123, 47, 190, 0.12);
  --shadow-sm: 0 6px 20px rgba(123, 47, 190, 0.08);
  --shadow-md: 0 18px 45px rgba(123, 47, 190, 0.15);
  --radius: 20px;

  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ----------------------------- Reset -------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0; /* l'offset est géré par scroll-margin-top sur les sections */
  overflow-x: hidden;
  /* Même dégradé fixe que le body (couvre toute la hauteur au scroll) */
  background: linear-gradient(
    to bottom,
    #F3EAFA 0%,
    #FFFFFF 50%,
    #FAE8F5 100%
  ) !important;
  background-attachment: fixed !important;
  min-height: 100vh;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  /* Dégradé vertical unique, FIXE pendant le scroll :
     violet quasi-blanc en haut → blanc au centre → rose quasi-blanc en bas */
  background: linear-gradient(
    to bottom,
    #F3EAFA 0%,
    #FFFFFF 50%,
    #FAE8F5 100%
  ) !important;
  background-attachment: fixed !important;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ----------------------------- Layout ------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 800px; }

/* Sections transparentes : le dégradé du body reste visible partout.
   Padding généreux pour une page continue et aérée, sans séparateur. */
.section {
  padding: 120px 0;
  max-width: 100%;
  overflow: hidden;
}
/* Toutes les sections 100% transparentes : le dégradé fixe du body reste
   visible partout, du haut (violet) au bas (rose) de la page. */
.hero,
.section,
#packs,
#pourquoi,
#a-propos,
#galerie,
#avis,
#faq,
.section-alt {
  background: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
}

/* Offset de scroll : les titres de section ne passent plus sous la navbar
   quand on clique sur un lien de la navbar. */
#packs,
#pourquoi,
#a-propos,
#galerie,
#avis,
#faq {
  scroll-margin-top: 100px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* Mot accentué des titres : violet uni (pas de dégradé sur les titres) */
.grad-text {
  color: var(--purple);
}

/* Accent rose (rose exact du logo PurpleShine) — utilisé dans le hero */
.text-rose {
  color: #CC2E8F;
}

/* ----------------------------- Boutons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: 2px; /* boutons rectangulaires */
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}

/* Bouton principal : violet uni, hover rose uni */
.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(123, 47, 190, .28);
}
.btn-primary:hover {
  background: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(200, 80, 192, .38);
}

/* Bouton outline : contour violet, hover fond violet uni */
.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(123, 47, 190, .3);
}
/* Variante avec texte noir (garde le contour violet, texte blanc au hover) */
.btn-dark-text { color: var(--ink); }

.btn-full { width: 100%; margin-top: auto; }
.btn-inline { padding: 8px 20px; margin-left: 8px; }

/* ----------------------------- Logo --------------------------------- */
.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 120px;         /* logo agrandi, entier, non coupé, dans la navbar */
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform .3s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.04); }

/* Logo dans le footer */
.footer-logo-img { height: 125px; }

/* =====================================================================
   1. NAVBAR
   ===================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;   /* transparent en haut de page */
  transition: all 0.3s ease; /* transition douce au scroll */
}
/* Au scroll : fond blanc + ombre légère */
.navbar.scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 138px; /* hauteur adaptée au logo 120px */
  padding: 8px 0;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  transition: color .25s;
}
.nav-links a:not(.btn):hover { color: var(--purple); }
/* soulignement animé */
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width .3s var(--ease);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-cta-mobile { display: none; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--purple);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =====================================================================
   2. HERO
   ===================================================================== */
.hero {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(123, 47, 190, .08);
  color: var(--purple);
  font-weight: 600;
  font-size: .85rem;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 480px; margin-bottom: 32px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
/* Boutons de la section "Le lavage vient à vous" côte à côte */
.hero-actions-inline { flex-wrap: nowrap; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .9rem;
}
.hero-trust strong { color: var(--purple); font-size: 1.05rem; }

/* Blobs décoratifs supprimés : ils créaient des zones colorées indésirables */
.hero-blob,
.blob-1,
.blob-2 { display: none !important; }

/* =====================================================================
   PLACEHOLDERS (fond dégradé violet/rose + texte)
   ===================================================================== */
.placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  font-weight: 600;
  background: var(--grad);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  line-height: 1.4;
}
.placeholder small { display: block; font-weight: 500; opacity: .85; font-size: .78rem; margin-top: 4px; }

.ph-hero { aspect-ratio: 4 / 3.4; font-size: 1.05rem; }
.ph-split { aspect-ratio: 4 / 3; font-size: 1.05rem; }

/* Vraies photos (hero + section "vient à vous") */
.hero-visual img,
.split-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.hero-visual img { aspect-ratio: 4 / 3.4; }
.split-visual img { aspect-ratio: 4 / 3; }

/* =====================================================================
   3. PACKS
   ===================================================================== */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.pack-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pack-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

/* Carte mise en avant (centre) : bordure violette + légère élévation */
.pack-card.featured {
  border: 2px solid var(--purple);
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(123, 47, 190, .22);
}
.pack-card.featured:hover { transform: translateY(-16px); box-shadow: 0 30px 60px rgba(123, 47, 190, .28); }

.pack-badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--grad);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(200, 80, 192, .35);
  letter-spacing: .02em;
}
.badge-value { background: var(--ink); }

.pack-head { margin-bottom: 22px; }
.pack-head h3 { font-size: 1.4rem; font-weight: 700; }
.pack-price {
  margin: 8px 0 2px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--purple);
}
.pack-duration {
  display: inline-block;
  margin-top: 8px;
  color: var(--purple);
  font-weight: 600;
  font-size: .9rem;
  background: rgba(123, 47, 190, .07);
  padding: 4px 12px;
  border-radius: 999px;
}

/* Petit titre de sous-liste (Extérieur : / Intérieur :) dans le pack featured */
.pack-sublist-title {
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--purple);
  margin-bottom: 12px;
}
.pack-sublist-title + .pack-list { margin-bottom: 22px; }

.pack-list { margin-bottom: 28px; display: grid; gap: 12px; }
.pack-list li {
  position: relative;
  padding-left: 30px;
  font-size: .95rem;
  color: #3a3546;
}
.pack-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
}

.packs-note {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: .98rem;
}
.packs-note strong { color: var(--ink); font-weight: 600; }

/* =====================================================================
   4. POURQUOI NOUS
   ===================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(123, 47, 190, .08);
  color: var(--purple);
  margin-bottom: 22px;
}
.why-icon svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.why-card p { color: var(--muted); font-size: .96rem; }

/* =====================================================================
   5. SPLIT (Le lavage vient à vous)
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-text .section-title { text-align: left; }
.split-text p { color: var(--muted); margin: 22px 0 30px; font-size: 1.05rem; }

/* =====================================================================
   5b. NOS RÉALISATIONS — grille 2 rangées (3 photos puis 2 photos)
   ===================================================================== */
.realisations { display: grid; gap: 18px; }
.realisations-row { display: grid; gap: 18px; }
.realisations-row-3 { grid-template-columns: repeat(3, 1fr); } /* 3 photos */
.realisations-row-2 { grid-template-columns: repeat(2, 1fr); } /* 2 photos, moitié/moitié */

.realisations-row img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.realisations-row-3 img { aspect-ratio: 3 / 4; } /* portrait uniforme */
.realisations-row-2 img { aspect-ratio: 3 / 2; } /* paysage uniforme */
.realisations-row img:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

@media (max-width: 700px) {
  .realisations-row-3,
  .realisations-row-2 { grid-template-columns: 1fr; }
  /* Sur mobile, toutes les photos ont la même taille (format paysage uniforme) */
  .realisations-row-3 img,
  .realisations-row-2 img { aspect-ratio: 3 / 2; }
}

/* =====================================================================
   6. GALERIE AVANT / APRÈS
   ===================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ba-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ba-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ph-ba {
  aspect-ratio: 3 / 4;
  font-size: .95rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #9d63cf, #b070c9);
}
.ph-ba-after { background: var(--grad); }

/* =====================================================================
   7. AVIS CLIENTS
   ===================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: .98rem; color: #3a3546; margin-bottom: 22px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}
.review-author strong { display: block; font-size: .95rem; }
.review-author small { color: var(--muted); }

/* =====================================================================
   8. RÉSERVATION (Calendly)
   ===================================================================== */
.calendly-embed {
  max-width: 900px;
  margin: 0 auto;
}
.calendly-placeholder {
  border: 2px dashed var(--purple);
  border-radius: var(--radius);
  background: rgba(123, 47, 190, .04);
  padding: 70px 30px;
  text-align: center;
}
.cal-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.calendly-placeholder p { color: var(--ink); }
.cal-note { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.cal-note code {
  background: rgba(123, 47, 190, .1);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: .85rem;
}

/* =====================================================================
   9. FAQ
   ===================================================================== */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .25s;
}
.faq-q:hover { color: var(--purple); }
.faq-plus {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--purple);
  transition: transform .35s var(--ease);
}
.faq-item.active .faq-plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: .96rem; }

/* =====================================================================
   10. CONTACT & FOOTER
   ===================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-ic {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(123, 47, 190, .08);
  color: var(--purple);
  margin-bottom: 10px;
}
.contact-ic svg { width: 26px; height: 26px; }
/* Accent WhatsApp (vert) pour bien identifier l'option */
.contact-ic-wa { background: rgba(37, 211, 102, .12); color: #1ebe57; }
.contact-card { color: var(--ink); text-decoration: none; }
.contact-card strong { font-size: 1.05rem; }
.contact-card span:last-child { color: var(--muted); font-size: .95rem; }

.socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.social {
  font-weight: 600;
  font-size: .9rem;
  color: var(--purple);
  border: 2px solid var(--purple);
  padding: 10px 24px;
  border-radius: 999px;
  transition: all .3s var(--ease);
}
.social:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }

.footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBEFF7 100%);
  color: var(--ink);
  padding: 64px 0 34px;
  border-top: 1px solid var(--border);
}

/* Trois colonnes (horaires / contact / zones d'intervention) */
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto 46px;
}

/* Zones d'intervention : communes en gras, sur 2 sous-colonnes */
.footer-areas { grid-template-columns: 1fr 1fr; gap: 7px 22px; }
.footer-areas li { justify-content: center; font-size: .9rem; font-weight: 600; color: var(--ink); }
.footer-col { text-align: center; }
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #CC2E8F;
  margin-bottom: 16px;
}
.footer-info { display: grid; gap: 10px; color: var(--muted); font-size: .95rem; }
.footer-info li { display: flex; justify-content: center; gap: 10px; }
.footer-info a { color: var(--ink); font-weight: 600; transition: color .25s; }
.footer-info a:hover { color: var(--purple); }
/* Horaires : libellés normaux, valeurs en gras (comme l'email) */
.footer-hours { gap: 16px; }
.footer-hours strong { font-weight: 600; color: var(--ink); }

/* Logo + réseaux, centrés */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}
.footer-socials { display: flex; gap: 14px; }
.footer-social {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.footer-social:hover { transform: translateY(-3px); background: var(--purple); }
.footer-social svg { width: 20px; height: 20px; }

/* Bas de page */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: .9rem;
  color: var(--muted);
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: .9rem; transition: color .25s; }
.footer-links a:hover { color: var(--purple); }

/* =====================================================================
   BOUTON FIXE MOBILE (barre d'action en bas d'écran)
   Caché sur desktop, affiché seulement sur mobile.
   ===================================================================== */

/* =====================================================================
   ANIMATIONS AU SCROLL (reveal)
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-visual { order: -1; }
  .packs-grid,
  .why-grid,
  .gallery-grid,
  .reviews-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .pack-card.featured { transform: none; }
  .pack-card.featured:hover { transform: translateY(-8px); }
}

@media (max-width: 760px) {
  .section { padding: 68px 0; }

  /* Header compacté sur mobile : libère de la place en haut d'écran */
  .logo-img { height: 66px; }
  .nav-inner { min-height: 84px; }

  /* Hero mobile compact : texte + bouton + LE HAUT DE LA PHOTO visibles
     dès l'arrivée sur le site (sans scroller). */
  .hero { padding: 18px 0 46px; }
  .hero-grid { gap: 24px; }
  .hero-title { font-size: 2.05rem; margin-bottom: 14px; }
  .hero-sub { font-size: 1rem; margin-bottom: 22px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { order: 0; }
  .hero-visual img { aspect-ratio: 16 / 11; }

  /* Menu mobile déroulant */
  .nav-links {
    position: fixed;
    inset: 84px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(14px);
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(123,47,190,.12);
    transform: translateY(-140%);
    opacity: 0;
    visibility: hidden;          /* totalement invisible quand le menu est fermé */
    transition: transform .4s var(--ease), opacity .3s var(--ease), visibility .3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { width: 100%; padding: 10px 0; font-size: 1.02rem; }
  .nav-links a:not(.btn)::after { display: none; }
  .burger { display: flex; }

  /* Footer : une seule colonne, logo et réseaux toujours centrés */
  .footer-cols { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions-inline { flex-wrap: wrap; }

  /* Le bouton "Réserver" de la navbar disparaît sur mobile… */
  .nav-cta { display: none; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .btn { padding: 13px 22px; font-size: .92rem; }
  .hero-actions .btn { width: 100%; }
}
