/* ==========================================================================
   LACUSTRA — feuille de styles v2 « lumière du lac »
   Réf. HarborSide Yacht : clair, premium, marine + bleu lac, photos XXL.
   ========================================================================== */

/* ---- Polices auto-hébergées : Poppins (titres) + Inter (texte) ------------ */
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---- Design tokens --------------------------------------------------------- */
:root {
  /* couleurs — thème chaleureux familial (crème + bleu lac + corail) */
  --navy: #123a52;          /* texte fort, bandes sombres */
  --navy-2: #1b4c6a;
  --azure: #1287bd;         /* bleu lac (liens, sélections) */
  --azure-dark: #0e6f9c;
  --lake: #2ab3c4;          /* turquoise lac */
  --coral: #e2603a;         /* accent CTA chaleureux */
  --coral-dark: #c74f2d;
  --bg: #faf6ef;            /* fond crème */
  --surface: #ffffff;
  --tint: #f3ead9;          /* sections alternées sable */
  --ink: #22303a;
  --ink-soft: #5a6b74;
  --line: #e6ddcc;
  --success: #2c9a5b;

  /* typo */
  --f-display: "Poppins", "Segoe UI", sans-serif;
  --f-body: "Inter", -apple-system, sans-serif;
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);

  /* espacement */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 16px; --sp-4: 24px; --sp-5: 32px;
  --sp-6: 48px; --sp-7: 64px; --sp-8: 96px; --sp-9: 128px;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -24px rgba(18, 58, 82, 0.22);
  --shadow-sm: 0 8px 24px -12px rgba(18, 58, 82, 0.16);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

/* ---- Base -------------------------------------------------------------------- */
body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.18; letter-spacing: -0.01em; font-weight: 600; color: var(--navy); }
/* signature Lacustra : mots-clés soulignés d'une vague corail */
em { font-style: normal; color: var(--azure); }
.cta-band em { color: var(--lake); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--azure); outline-offset: 2px; }

.container { max-width: 1240px; margin-inline: auto; padding-inline: var(--sp-4); }
.section { padding-block: var(--sp-8); }
@media (max-width: 768px) { .section { padding-block: var(--sp-6); } }
.section--tint { background: var(--tint); }
.section--dark { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: #dcebf5; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark em { color: var(--lake); }

.section-head { max-width: 660px; margin-bottom: var(--sp-6); }
.section-head--center { max-width: 720px; margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--azure); margin-bottom: var(--sp-2);
}
.section--dark .eyebrow { color: var(--lake); }
.section-title { font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.9rem); margin-bottom: var(--sp-3); }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }
.section--dark .lead { color: #b6cddd; }
.prose { max-width: 65ch; }
.prose p + p { margin-top: var(--sp-3); }

/* ---- Boutons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 15px 28px;
  border-radius: 999px; font-weight: 600; font-size: 0.98rem; border: 2px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--copper { background: var(--coral); color: #fff; box-shadow: 0 12px 28px -12px rgba(226, 96, 58, 0.65); }
.btn--copper:hover { background: var(--coral-dark); }
.btn--ghost { background: transparent; border-color: currentColor; }
.section--dark .btn--ghost, .hero .btn--ghost { color: #fff; }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover { background: rgba(255,255,255,0.12); }
.section:not(.section--dark) .btn--ghost { border-color: var(--navy); color: var(--navy); }
.section:not(.section--dark) .btn--ghost:hover { background: rgba(10,42,67,0.06); }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }
.mt-cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-5); align-items: center; }
.section-head--center .mt-cta { justify-content: center; }

/* ---- Header -------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; }
.topbar { background: var(--navy); color: #bcd6e6; font-size: 0.82rem; }
.topbar__row { display: flex; justify-content: space-between; align-items: center; padding-block: 8px; gap: var(--sp-3); }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__item svg { width: 14px; height: 14px; }
.topbar__right { display: flex; gap: var(--sp-4); align-items: center; }

.navbar { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.navbar__row { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; gap: var(--sp-4); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: auto; height: 38px; display: block; }
.brand__mark { width: 34px; height: 34px; color: var(--azure); }
.brand__mark svg { width: 100%; height: 100%; }
/* wordmark typographié comme le lockup officiel */
.brand__name { letter-spacing: 0.14em; font-weight: 700; }
.brand__name--onDark { color: #fff; }
.footer__logo { width: auto; height: 54px; display: block; margin-bottom: 10px; filter: brightness(0) invert(1); opacity: 0.92; }
.brand__name { font-family: var(--f-display); font-size: 1.45rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.brand__name--lg { font-size: 1.7rem; color: #fff; }
.brand__name--lg svg { width: 28px; height: 28px; color: var(--lake); }

.nav { display: flex; align-items: center; gap: var(--sp-5); }
.nav__link { font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); position: relative; padding-block: 4px; }
.nav__link:hover, .nav__link.is-active { color: var(--navy); }
.nav__link.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--azure); }
.nav-toggle { display: none; background: none; border: none; width: 40px; height: 40px; color: var(--navy); }
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--navy); color: #fff; display: flex; flex-direction: column; }
.mobile-menu[hidden] { display: none; }
.mobile-menu__head { display: flex; justify-content: space-between; align-items: center; padding: var(--sp-4); border-bottom: 1px solid rgba(255,255,255,0.15); }
.mobile-menu__head .brand__name { color: #fff; }
.mobile-menu__head .nav-toggle { display: block; color: #fff; }
.mobile-nav { display: flex; flex-direction: column; padding: var(--sp-4); gap: var(--sp-2); overflow-y: auto; flex: 1; }
.mobile-nav > a { padding: 12px 0; font-size: 1.15rem; font-family: var(--f-display); border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav__label { padding-top: 12px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lake); }
.mobile-nav__sub { display: flex; flex-direction: column; }
.nav__sublink { padding: 8px 0 8px 12px; color: #bcd6e6; font-size: 0.95rem; border-left: 2px solid rgba(255,255,255,0.15); }
.mobile-menu__foot { padding: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); border-top: 1px solid rgba(255,255,255,0.15); }

@media (max-width: 980px) {
  .nav > .nav__link, .nav > .nav__cta { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .topbar__row { font-size: 0.72rem; }
  .topbar__item span { display: none; }
  .topbar__right .topbar__item span { display: inline; }
}

/* ---- Hero — bannière 100% image ---------------------------------------------------- */
.hero--photo {
  position: relative; display: flex; align-items: flex-end;
  min-height: 92vh; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.site-photo.site-photo--full {
  position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; border: none;
  box-shadow: none; background: var(--navy);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(18,58,82,0) 30%, rgba(18,58,82,0.55) 72%, rgba(18,58,82,0.85) 100%);
}
.hero--photo .container { position: relative; z-index: 2; }
.hero__inner { max-width: 700px; padding-block: var(--sp-7); }
.hero--photo h1 { color: #fff; text-shadow: 0 2px 24px rgba(18,58,82,0.4); }
.hero--photo h1 em { color: #ffd9a8; }
.hero--photo .hero__sub { color: #eef6fa; }
.hero--photo .hero__stat b { color: #fff; }
.hero--photo .hero__stat span { color: #cfe3ee; }
.hero--photo .hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.8); }
.hero--photo .hero__actions .btn--ghost:hover { background: rgba(255,255,255,0.15); }

/* vague signature au bas de l'image du hero */
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; pointer-events: none; color: var(--bg); }
.hero__wave svg { display: block; width: 100%; height: 48px; }
.hero__bg .hero__picture { display: block; position: absolute; inset: 0; margin: 0; }
.hero__bg .hero__picture img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Composition dédiée aux très grands écrans : texte lisible à gauche,
   bateau visible à droite, sans agrandissement excessif du visuel 1980. */
@media (min-width: 2560px) {
  .hero--photo { min-height: 100svh; }
  .hero__inner { max-width: 790px; padding-block: clamp(80px, 10vh, 140px); }
  .hero h1 { font-size: clamp(4rem, 3.4vw, 5.8rem); }
  .hero__sub { font-size: 1.34rem; }
}

/* Tablette : image 4:3 dédiée et contenu maintenu dans la zone calme. */
@media (min-width: 769px) and (max-width: 1200px) {
  .hero--photo { min-height: calc(100svh - 78px); }
  .hero__inner { max-width: 610px; padding-block: var(--sp-6); }
  .hero__scrim {
    background: linear-gradient(90deg, rgba(6,31,43,.86) 0%, rgba(6,31,43,.58) 48%, rgba(6,31,43,.08) 82%);
  }
}

/* ---- Hero mobile : vraie composition plein écran dédiée au téléphone ------- */
@media (max-width: 768px) {
  .hero--photo { display: flex; min-height: calc(100svh - 74px); background: var(--navy); }
  .hero__bg { position: absolute; height: 100%; min-height: 0; max-height: none; }
  .hero__scrim { display: block; background: linear-gradient(0deg, rgba(6,31,43,.96) 0%, rgba(6,31,43,.72) 48%, rgba(6,31,43,.08) 80%); }
  .hero__inner { padding-block: 42vh var(--sp-5); max-width: none; }
  .hero--photo h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
  .hero--photo h1 em { color: #ffd9a8; }
  .hero--photo .hero__sub { color: #eef6fa; }
  .hero--photo .hero__stat b { color: #fff; }
  .hero--photo .hero__stat span { color: #cfe3ee; }
  .hero--photo .hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.78); }
  .hero--photo .hero__actions .btn--ghost:hover { background: rgba(255,255,255,.12); }
  .hero__stats { gap: var(--sp-4); }
}
@media (max-width: 420px) {
  .hero__inner { padding-top: 34vh; }
  .hero__sub { font-size: .98rem; line-height: 1.55; }
  .hero__actions { margin-bottom: var(--sp-4); }
  .hero__stats { display: none; }
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-size: 0.85rem; margin-bottom: var(--sp-4);
  color: var(--navy); box-shadow: var(--shadow-sm);
}
.hero__badge svg { width: 15px; height: 15px; color: var(--azure); }
.hero h1 { font-size: clamp(2rem, 1.5rem + 2.6vw, 3.8rem); margin-bottom: var(--sp-3); }
.hero__sub { font-size: 1.16rem; color: var(--ink-soft); max-width: 52ch; margin-bottom: var(--sp-5); }
.hero__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-6); }
.hero__actions .btn--ghost { color: var(--navy); border-color: var(--navy); }
.hero__actions .btn--ghost:hover { background: rgba(10,42,67,0.06); }
.hero__stats { display: flex; gap: var(--sp-6); flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat b { font-family: var(--f-display); font-size: 1.6rem; color: var(--navy); }
.hero__stat span { font-size: 0.82rem; color: var(--ink-soft); }
.section--dark .hero__stat b { color: var(--lake); }
.section--dark .hero__stat span { color: #b6cddd; }

/* ---- Tableau des prix (« pas de sur demande ») -------------------------------------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; font-size: 0.95rem; }
.price-table thead th { background: var(--navy); color: #fff; font-family: var(--f-display); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.price-table tbody tr + tr td { border-top: 1px solid var(--line); }
.price-table td:last-child { font-family: var(--f-display); font-weight: 700; color: var(--coral-dark); white-space: nowrap; }
.price-table__wrap { overflow-x: auto; border-radius: var(--radius); }
@media (max-width: 640px) { .price-table th, .price-table td { padding: 12px 14px; font-size: 0.88rem; } }

.trust { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust__row { display: flex; flex-wrap: wrap; gap: var(--sp-5); justify-content: center; padding-block: var(--sp-3); font-size: 0.9rem; font-weight: 500; color: var(--navy); }
.trust__item { display: inline-flex; align-items: center; gap: 8px; }
.trust__item svg { width: 18px; height: 18px; color: var(--azure); }

/* ---- Grilles génériques ---------------------------------------------------------- */
.grid { display: grid; gap: var(--sp-4); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---- Cartes prestation / lac / atout ---------------------------------------------- */
.s-card, .lake-card, .a-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.s-card:hover, .lake-card:hover, .a-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.s-card__icon, .lake-card__icon, .a-card__icon {
  width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--azure), var(--lake));
  color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-2);
}
.s-card__icon svg, .lake-card__icon svg, .a-card__icon svg { width: 24px; height: 24px; }
.s-card h3, .lake-card h3, .a-card h3 { font-size: 1.25rem; }
.s-card p, .lake-card p, .a-card p { color: var(--ink-soft); font-size: 0.96rem; }
.s-card__price { font-weight: 700; color: var(--azure-dark); font-family: var(--f-display); font-size: 1.15rem; }
.s-card__link, .lake-card__link { margin-top: auto; font-weight: 600; color: var(--azure-dark); display: inline-flex; align-items: center; gap: 6px; }
.s-card__link svg, .lake-card__link svg { width: 16px; height: 16px; }
.lake-card__ports { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0; }
.lake-card__ports li { font-size: 0.78rem; background: var(--tint); padding: 4px 10px; border-radius: 999px; color: var(--navy); }

/* ---- Étapes (process) ----------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }
.process__step { position: relative; padding-top: var(--sp-3); border-top: 2px solid rgba(255,255,255,0.25); }
.process__num { font-family: var(--f-display); font-size: 2.2rem; color: var(--lake); display: block; margin-bottom: var(--sp-2); }
.process__step h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.process__step p { color: #b6cddd; font-size: 0.92rem; }

/* ---- FAQ -------------------------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--sp-2); }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: var(--sp-3) var(--sp-4); }
.faq__item summary { cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3); list-style: none; color: var(--navy); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__toggle { width: 18px; height: 18px; flex-shrink: 0; transform: rotate(90deg); transition: transform 0.2s var(--ease); color: var(--azure); }
.faq__item[open] .faq__toggle { transform: rotate(-90deg); }
.faq__item p { margin-top: var(--sp-2); color: var(--ink-soft); }

/* ---- Photos ----------------------------------------------------------------------- */
.site-photo {
  margin: 0; aspect-ratio: var(--ratio, 4/3); border-radius: var(--radius);
  background: var(--tint); position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.site-photo img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: var(--position, center);
}

.content-split {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-6); align-items: start;
}
.content-split--wide { grid-template-columns: 1fr 1.1fr; gap: var(--sp-7); align-items: center; }
.content-split--equal { grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 820px) {
  .content-split, .content-split--wide, .content-split--equal { grid-template-columns: 1fr; }
}

/* ---- Témoignages -------------------------------------------------------------------- */
.t-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.t-card__photo { display: flex; align-items: center; gap: 12px; }
.t-photo.t-photo--pending {
  background: linear-gradient(150deg, #eaf5fb, #cfe8f4); border: 1.5px dashed #8fc0da;
  display: flex; align-items: center; justify-content: center; color: var(--azure); box-shadow: none;
}
.t-photo--pending svg { width: 26px; height: 26px; }
.t-photo.t-photo--initials {
  font-family: var(--f-display); font-size: 1.15rem; font-weight: 700;
  letter-spacing: .04em; border-style: solid;
}

/* ---- Placeholder « photo à générer » + bouton copier le prompt ------------------------ */
.pending-photo {
  margin: 0; aspect-ratio: var(--ratio, 1/1); border-radius: var(--radius);
  background: linear-gradient(150deg, #eaf5fb 0%, #d3ecf6 60%, #bfe4f2 100%);
  border: 1.5px dashed #8fc0da; position: relative; overflow: hidden;
}
.pending-photo__inner {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: var(--sp-4); gap: 10px; color: var(--navy);
}
.pending-photo__inner svg { width: 30px; height: 30px; opacity: 0.7; color: var(--azure); }
.pending-photo__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--azure-dark); font-weight: 700; }
.copy-prompt {
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  padding: 6px 14px; border-radius: 999px; font-size: 0.76rem; font-weight: 600; transition: background 0.2s;
}
.copy-prompt:hover { background: var(--tint); }
.copy-prompt.is-copied { background: var(--success); border-color: var(--success); color: #fff; }

/* ---- Blog ------------------------------------------------------------------------------ */
.b-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.b-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.b-card__meta { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--azure-dark); font-weight: 700; }
.b-card h2, .b-card h3 { font-size: 1.25rem; line-height: 1.3; }
.b-card h2 a:hover, .b-card h3 a:hover { color: var(--azure-dark); }
.b-card p { color: var(--ink-soft); font-size: 0.95rem; }
.b-card .s-card__link { margin-top: auto; }

.article { max-width: 760px; margin-inline: auto; }
.article h2 { font-size: 1.5rem; margin: var(--sp-6) 0 var(--sp-3); }
.article p + p { margin-top: var(--sp-3); }
.article ul { list-style: disc; padding-left: 24px; margin-block: var(--sp-3); display: flex; flex-direction: column; gap: 8px; color: var(--ink); }
.article a { color: var(--azure-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article strong { color: var(--navy); }
.article__cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; margin-top: var(--sp-7); }
.t-photo {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: var(--tint); border: 2px solid #fff; box-shadow: var(--shadow-sm);
  display: block; object-fit: cover;
}
.t-card blockquote { margin: 0; font-size: 0.98rem; color: var(--ink); line-height: 1.55; }
.t-card footer { margin-top: auto; display: flex; flex-direction: column; }
.t-card footer b { color: var(--navy); }
.t-card footer span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---- Avant / Après (slider drag) ---------------------------------------------------- */
.ba { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: pan-y; }
.ba img { width: 100%; height: auto; display: block; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff;
  box-shadow: 0 0 0 1px rgba(10,42,67,0.15); cursor: ew-resize; z-index: 5;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; gap: 2px; color: var(--navy); font-weight: 700; font-size: 0.9rem;
}
.ba__tag { position: absolute; top: 14px; z-index: 4; background: rgba(255,255,255,0.92); color: var(--navy); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 12px; border-radius: 999px; }
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; }

/* ---- Wizard de réservation (style Tesla) --------------------------------------------- */
.wizard { display: grid; grid-template-columns: 1.65fr 1fr; gap: var(--sp-6); align-items: start; }
@media (max-width: 980px) { .wizard { grid-template-columns: 1fr; } }
/* min-width:0 : empêche le contenu (dates, grilles) de déborder de la colonne
   et de passer sous le récap sticky */
.wizard__main { min-width: 0; }

.wizard__progress { display: flex; gap: 8px; margin-bottom: var(--sp-5); flex-wrap: wrap; }
.wizard__dot {
  display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft);
  padding: 8px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line);
}
.wizard__dot.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.wizard__dot.is-done { color: var(--success); border-color: var(--success); }
.wizard__dot b { font-family: var(--f-display); }

.wizard__panel { display: none; }
.wizard__panel.is-active { display: block; animation: panelIn 0.35s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.wizard__title { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); margin-bottom: var(--sp-2); }
.wizard__hint { color: var(--ink-soft); margin-bottom: var(--sp-4); max-width: 55ch; }

.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
@media (max-width: 560px) { .opt-grid { grid-template-columns: 1fr; } }
.opt {
  position: relative; background: var(--surface); border: 2px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-4); text-align: left; display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.opt:hover { border-color: var(--azure); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.opt.is-selected { border-color: var(--azure); background: #f2f9fd; }
.opt.is-selected::after {
  content: "✓"; position: absolute; top: 12px; right: 14px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--azure); color: #fff; font-size: 0.8rem; display: flex; align-items: center; justify-content: center;
}
.opt b { font-size: 1.02rem; color: var(--navy); }
.opt small { color: var(--ink-soft); font-size: 0.85rem; }
.opt .opt__price { margin-top: 6px; font-family: var(--f-display); font-weight: 700; color: var(--azure-dark); }

/* dates & créneaux */
.slots__label { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: var(--sp-2); }
.slots__label strong { color: var(--azure-dark); }
/* Calendrier en grille : toutes les dates visibles d'un coup, aucun défilement */
.slots__dates {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px; margin-bottom: var(--sp-4);
}
@media (max-width: 480px) { .slots__dates { grid-template-columns: repeat(3, 1fr); } }
.slot-date {
  min-width: 0; background: var(--surface); border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 10px 6px; text-align: center; transition: border-color 0.2s, background 0.2s;
}
.slot-date:hover { border-color: var(--azure); }
.slot-date.is-selected { border-color: var(--azure); background: #f2f9fd; }
.slot-date b { display: block; font-size: 1.05rem; color: var(--navy); font-family: var(--f-display); }
.slot-date span { font-size: 0.72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.slots__times { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
.slot-time {
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--radius-sm); padding: 12px 8px;
  text-align: center; font-weight: 600; color: var(--navy); transition: border-color 0.2s;
}
.slot-time:hover { border-color: var(--azure); }
.slot-time.is-selected { border-color: var(--azure); background: var(--azure); color: #fff; }
.slot-time.is-taken { opacity: 0.35; text-decoration: line-through; pointer-events: none; }

.wizard__nav { display: flex; justify-content: space-between; gap: var(--sp-3); margin-top: var(--sp-5); }

/* Récap sticky (droite) */
.recap {
  position: sticky; top: 130px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-5); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--sp-3);
}
.recap h2 { font-size: 1.2rem; }
.recap__rows { display: flex; flex-direction: column; gap: 10px; }
.recap__row { display: flex; justify-content: space-between; gap: var(--sp-3); font-size: 0.92rem; padding-bottom: 10px; border-bottom: 1px dashed var(--line); }
.recap__row span:first-child { color: var(--ink-soft); }
.recap__row span:last-child { font-weight: 600; color: var(--navy); text-align: right; }
.recap__price { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding-top: var(--sp-2); }
.recap__price-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); font-weight: 700; }
.recap__price-value { font-family: var(--f-display); font-size: 2.6rem; color: var(--navy); line-height: 1; }
.recap__price-value small { font-size: 1.1rem; color: var(--ink-soft); }
.recap__note { font-size: 0.8rem; color: var(--ink-soft); display: flex; gap: 8px; align-items: flex-start; }
.recap__note svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--success); margin-top: 2px; }

/* Confirmation */
.confirm { text-align: center; padding: var(--sp-6); background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.confirm__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--success); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-4); }
.confirm__icon svg { width: 34px; height: 34px; }

/* ---- Formulaires ---------------------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: var(--sp-3); max-width: 560px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
@media (max-width: 560px) { .form__grid { grid-template-columns: 1fr; } }
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__row label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.form__row input, .form__row textarea, .form__row select {
  font: inherit; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--surface); color: var(--ink);
}
.form__row input:focus, .form__row textarea:focus, .form__row select:focus { border-color: var(--azure); outline: none; }
.form__hp { position: absolute; left: -9999px; }
.form__note { font-size: 0.82rem; color: var(--ink-soft); }

/* ---- Bande CTA --------------------------------------------------------------------------- */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--navy-2)); padding-block: var(--sp-7); color: #fff; text-align: center; }
.cta-band__inner h2 { color: #fff; font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem); margin-bottom: 10px; }
.cta-band__inner p { color: #b6cddd; margin-bottom: var(--sp-4); }
.cta-band__inner em { color: var(--lake); }

/* ---- Footer ------------------------------------------------------------------------------ */
.site-footer { background: var(--navy); color: #b6cddd; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--sp-6); padding-block: var(--sp-7); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__pitch { margin-top: var(--sp-3); font-size: 0.92rem; max-width: 34ch; }
.footer__col h3 { color: #fff; font-family: var(--f-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--sp-3); }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: center; gap: 8px; }
.footer__contact svg { width: 16px; height: 16px; color: var(--lake); flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bottom-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between; align-items: center; padding-block: var(--sp-3); font-size: 0.8rem; }
.footer__legal { display: flex; gap: var(--sp-3); }
.footer__legal a:hover { color: #fff; }
.footer__credit a { color: var(--lake); font-weight: 600; }

/* ---- CTA flottant (mobile) --------------------------------------------------------------- */
.float-cta {
  position: fixed; right: var(--sp-4); bottom: var(--sp-4); z-index: 90; background: var(--coral); color: #fff;
  display: flex; align-items: center; gap: 8px; padding: 14px 20px; border-radius: 999px; font-weight: 700;
  box-shadow: 0 14px 32px -12px rgba(226, 96, 58, 0.75);
}
.float-cta svg { width: 18px; height: 18px; }
@media (min-width: 981px) { .float-cta { display: none; } }

/* ---- Réductions de mouvement --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---- Page 404 ---------------------------------------------------------------------------- */
.notfound { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: var(--sp-3); padding-block: var(--sp-8); }
.notfound span { font-family: var(--f-display); font-size: 6rem; color: var(--navy); }

/* ---- Réalisations avant / après ------------------------------------------ */
.page-hero--results { background: linear-gradient(135deg, #0b2e4f, #0b4652); color: #fff; }
.page-hero--results h1, .page-hero--results .lead { color: #fff; }
.page-hero--results em { color: #ffd9a8; }
.results-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-5); }
.result-card { overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.result-card__image { position: relative; margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: #dfe8ec; }
.result-card__image img { width: 100%; height: 100%; object-fit: cover; }
.result-card__before, .result-card__after {
  position: absolute; top: 14px; padding: 6px 11px; border-radius: 999px;
  background: rgba(255,255,255,.92); color: var(--navy); font-size: .7rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
}
.result-card__before { left: 14px; }
.result-card__after { right: 14px; }
.result-card__body { padding: var(--sp-4); }
.result-card__body h2 { margin: 0 0 6px; font-size: 1.25rem; }
.result-card__body p { margin: 0; color: var(--ink-soft); }
.result-checklist { display: grid; gap: 12px; }
.result-checklist p {
  display: flex; gap: 16px; align-items: center; margin: 0; padding: 16px 18px;
  border-radius: var(--radius-sm); background: #fff; box-shadow: var(--shadow-sm);
}
.result-checklist b { color: var(--coral); font-family: var(--f-display); }
@media (max-width: 760px) {
  .results-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}


/* ---- WhatsApp ---- */
.nav__wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; background: #25d366; color: #fff;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.nav__wa:hover { transform: translateY(-2px); background: #1fb457; }
.nav__wa svg { width: 22px; height: 22px; }
@media (max-width: 980px) { .nav > .nav__wa { display: none; } }
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1fb457; }
.btn--wa svg { width: 18px; height: 18px; }
.float-wa {
  position: fixed; right: var(--sp-4); bottom: calc(var(--sp-4) + 62px); z-index: 90;
  width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -12px rgba(37, 211, 102, 0.75);
}
.float-wa svg { width: 26px; height: 26px; }
@media (max-width: 980px) { .float-wa { display: flex; } }


/* ---- Barre d'action fixée en bas (apparaît après la bannière) ---- */
.float-cta, .float-wa, .nav__wa { display: none !important; }
.action-bar {
  position: fixed; left: 50%; bottom: 16px; z-index: 90;
  display: flex; gap: 10px; padding: 8px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(10px);
  border: 1px solid var(--line); box-shadow: 0 18px 44px -16px rgba(18, 58, 82, 0.35);
  transform: translate(-50%, 130%); opacity: 0; pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.action-bar.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.action-bar a {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px;
  border-radius: 999px; font-weight: 700; font-size: 0.95rem; white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.action-bar a:hover { transform: translateY(-2px); }
.action-bar svg { width: 20px; height: 20px; }
.action-bar__wa { background: #25d366; color: #fff; }
.action-bar__wa:hover { background: #1fb457; }
.action-bar__cta { background: var(--coral); color: #fff; }
.action-bar__cta:hover { background: var(--coral-dark); }
@media (max-width: 480px) {
  .action-bar { width: calc(100% - 24px); justify-content: stretch; }
  .action-bar a { flex: 1; justify-content: center; padding: 13px 10px; }
}
