/* =========================================================
   Neuchâtel Boat — Feuille de style premium, mobile-first
   Palette lac / sable / WhatsApp
   ========================================================= */

:root {
  --blue-dark: #0B2D4D;
  --blue: #0E6BA8;
  --blue-light: #E8F6FF;
  --green: #25D366;
  --green-dark: #1da851;
  --sand: #F6E7C8;
  --sand-deep: #EAD3A0;
  --white: #FFFFFF;
  --text: #102033;
  --text-soft: #45566b;

  --radius-lg: 28px;
  --radius: 24px;
  --radius-sm: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(11, 45, 77, 0.06);
  --shadow: 0 12px 36px rgba(11, 45, 77, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 45, 77, 0.16);

  --maxw: 1140px;
  --gap: clamp(16px, 4vw, 28px);

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--blue-dark);
  text-wrap: balance;
}

p { text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(18px, 5vw, 40px);
}

section { position: relative; }

/* ----------------------------- Buttons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1;
  padding: 17px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-wa {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37,211,102,.4); }

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid rgba(11,45,77,.18);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn-outline-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 26px rgba(14,107,168,.3);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-lg { padding: 19px 32px; font-size: 1.08rem; }

.wa-ico { width: 20px; height: 20px; flex: none; }

/* ----------------------------- Header ---------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(11,45,77,.07);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(11,45,77,.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--blue-dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 13px;
  flex: none;
  box-shadow: 0 6px 16px rgba(14,107,168,.35);
}
.brand-mark svg { width: 23px; height: 23px; }

/* Desktop nav */
.nav-desktop { display: none; align-items: center; gap: 4px; }
.nav-desktop a {
  font-weight: 600;
  font-size: .96rem;
  color: var(--text);
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  transition: background .15s ease, color .15s ease;
}
.nav-desktop a:hover { background: var(--blue-light); color: var(--blue); }
.nav-desktop a.lang { color: var(--text-soft); font-weight: 700; padding-inline: 9px; }
.nav-desktop a.active { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Round WhatsApp button (header) */
.wa-round {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  flex: none;
  box-shadow: 0 8px 20px rgba(37,211,102,.4);
  transition: transform .18s ease;
}
.wa-round svg { width: 24px; height: 24px; }
.wa-round:hover { transform: translateY(-2px) scale(1.04); }

.burger {
  width: 46px; height: 46px;
  border-radius: 13px;
  border: 1px solid rgba(11,45,77,.12);
  background: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  flex: none;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  position: relative;
  transition: transform .25s ease, opacity .2s ease;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 2px; background: var(--blue-dark); border-radius: 2px;
  transition: transform .25s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  inset: 70px 0 0 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  padding: 24px clamp(18px,5vw,40px) 40px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  overflow-y: auto;
}
.nav-mobile.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--blue-dark);
  padding: 16px 4px;
  border-bottom: 1px solid rgba(11,45,77,.08);
}
.nav-mobile a::after { content: "→"; color: var(--blue); opacity: .5; font-family: var(--font-body); }
.nav-mobile .lang-row { display: flex; gap: 10px; margin-top: 18px; }
.nav-mobile .lang-row a {
  flex: 1; justify-content: center; font-size: 1rem; font-family: var(--font-body);
  border: 1px solid rgba(11,45,77,.14); border-radius: var(--radius-sm); border-bottom: 1px solid rgba(11,45,77,.14);
}
.nav-mobile .lang-row a::after { content: ""; }
.nav-mobile .btn { margin-top: 22px; }

/* ----------------------------- Hero ------------------------------ */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(48px, 9vw, 96px) 0 clamp(56px,10vw,104px);
  background: var(--blue-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,45,77,.55) 0%, rgba(11,45,77,.35) 35%, rgba(11,45,77,.82) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 8vw, 4.3rem);
  max-width: 16ch;
  margin-bottom: 18px;
}
.hero .lead {
  font-size: clamp(1.05rem, 3.6vw, 1.4rem);
  font-weight: 500;
  color: rgba(255,255,255,.92);
  max-width: 30ch;
  margin-bottom: 26px;
}
.hero .lead strong { color: var(--sand); font-weight: 700; }

.badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
}
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 9px 15px; border-radius: var(--radius-pill);
  font-size: .9rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.badge svg { width: 16px; height: 16px; color: var(--sand); flex: none; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* trust strip under hero */
.trust-strip {
  background: var(--blue-dark);
  color: rgba(255,255,255,.8);
}
.trust-strip .container {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  padding-bottom: clamp(40px, 7vw, 64px);
  font-size: .92rem; font-weight: 600;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip svg { width: 17px; height: 17px; color: var(--sand); }

/* ----------------------------- Sections -------------------------- */
.sec { padding: clamp(54px, 9vw, 100px) 0; }
.sec-tint { background: var(--blue-light); }
.sec-sand { background: linear-gradient(180deg, #fdf8ee 0%, var(--sand) 100%); }

.sec-head { max-width: 640px; margin-bottom: clamp(30px,5vw,48px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.sec h2 { font-size: clamp(1.9rem, 5.5vw, 3rem); margin-bottom: 14px; }
.sec-head p { font-size: 1.1rem; color: var(--text-soft); }

/* ----------------------------- Cards grid ------------------------ */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,45,77,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-ico {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--blue-light);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card-ico svg { width: 27px; height: 27px; color: var(--blue); }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: .98rem; }

.reassurance .card { text-align: left; }

/* ----------------------------- Pricing --------------------------- */
.pricing { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(11,45,77,.06);
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.feature {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-lg);
}
.price-card.feature h3, .price-card.feature .price { color: #fff; }
.price-tag {
  position: absolute; top: 22px; right: 24px;
  background: var(--sand); color: var(--blue-dark);
  font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 13px; border-radius: var(--radius-pill);
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.price-card .duration { font-size: .98rem; font-weight: 600; opacity: .75; margin-bottom: 18px; }
.price { font-family: var(--font-head); font-size: 3rem; font-weight: 600; line-height: 1; margin-bottom: 4px; }
.price .cur { font-size: 1.3rem; font-weight: 600; }
.price-card .per { font-size: .95rem; opacity: .7; margin-bottom: 22px; }
.slots { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.slot {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .98rem;
  background: rgba(11,45,77,.04); border-radius: var(--radius-sm);
  padding: 11px 15px;
}
.price-card.feature .slot { background: rgba(255,255,255,.13); }
.slot svg { width: 18px; height: 18px; color: var(--blue); flex: none; }
.price-card.feature .slot svg { color: var(--sand); }
.price-card .btn { margin-top: auto; }

.price-note {
  margin-top: 26px;
  text-align: center;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: var(--blue-dark);
  font-weight: 600;
}
.price-note strong { color: var(--blue); }
.price-note .caution { display: block; font-size: 1.2rem; margin-bottom: 6px; font-family: var(--font-head); }

/* ----------------------------- Experiences ----------------------- */
.exp-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.exp {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 180px;
  display: flex; align-items: flex-end;
  color: #fff;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease;
}
.exp:hover { transform: scale(1.015); }
.exp::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,45,77,0) 30%, rgba(11,45,77,.78) 100%);
}
.exp span {
  position: relative; z-index: 2;
  padding: 18px; font-family: var(--font-head); font-weight: 600; font-size: 1.18rem;
}
.exp.tall { grid-row: span 2; min-height: 100%; }

/* ----------------------------- Why (split) ----------------------- */
.split { display: grid; gap: clamp(28px,5vw,56px); align-items: center; grid-template-columns: 1fr; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3.4;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow);
  position: relative;
}
.media-tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  border-radius: var(--radius-sm); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-sm);
}
.media-tag .num { font-family: var(--font-head); font-size: 1.6rem; color: var(--blue); line-height: 1; }
.media-tag small { font-size: .82rem; color: var(--text-soft); font-weight: 600; }

.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.feature-list li { display: flex; align-items: flex-start; gap: 13px; font-weight: 600; }
.feature-list .tick {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--green); display: grid; place-items: center; margin-top: 1px;
}
.feature-list .tick svg { width: 14px; height: 14px; color: #fff; }

/* ----------------------------- Steps ----------------------------- */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }
.step {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,45,77,.05);
}
.step-num {
  width: 44px; height: 44px; border-radius: 13px; flex: none;
  background: var(--blue-dark); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 600;
}
.step h3 { font-size: 1.12rem; margin-bottom: 3px; }
.step p { color: var(--text-soft); font-size: .96rem; }

/* ----------------------------- Location -------------------------- */
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.map-visual {
  aspect-ratio: 16/8;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.5), transparent 40%),
    linear-gradient(135deg, #cfe9f7 0%, #8fc4e3 45%, #0E6BA8 100%);
  position: relative;
  display: grid; place-items: center;
}
.map-pin {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--blue-dark); text-align: center;
}
.map-pin .pin {
  width: 54px; height: 54px; border-radius: 50% 50% 50% 4px;
  background: var(--green); transform: rotate(45deg);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  animation: bob 2.4s ease-in-out infinite;
}
.map-pin .pin svg { transform: rotate(-45deg); width: 26px; height: 26px; color: #fff; }
@keyframes bob { 50% { transform: rotate(45deg) translateY(-7px); } }
.map-pin strong { font-family: var(--font-head); font-size: 1.25rem; background: rgba(255,255,255,.85); padding: 4px 14px; border-radius: var(--radius-pill); }
.map-info { padding: 24px 26px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.map-info .addr { display: flex; align-items: center; gap: 12px; }
.map-info .addr svg { width: 22px; height: 22px; color: var(--blue); }
.map-info h3 { font-size: 1.15rem; }
.map-info p { color: var(--text-soft); font-size: .94rem; }

/* ----------------------------- FAQ accordion --------------------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border-radius: var(--radius);
  border: 1px solid rgba(11,45,77,.07);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 21px 24px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--blue-dark);
}
.faq-q .chev {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--blue-light); display: grid; place-items: center;
  transition: transform .3s ease, background .2s ease;
}
.faq-q .chev svg { width: 16px; height: 16px; color: var(--blue); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--blue); }
.faq-item.open .faq-q .chev svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--text-soft); }

/* ----------------------------- CTA band -------------------------- */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(56px,9vw,96px) 0;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,45,77,.78), rgba(14,107,168,.82));
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(2rem,6vw,3.2rem); margin-bottom: 14px; max-width: 18ch; margin-inline: auto; }
.cta-band p { font-size: 1.15rem; color: rgba(255,255,255,.9); margin-bottom: 30px; max-width: 40ch; margin-inline: auto; }
.cta-band .btn { box-shadow: 0 14px 40px rgba(37,211,102,.45); }

/* ----------------------------- Generic page hero ----------------- */
.page-hero {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: #fff;
  padding: clamp(48px,8vw,84px) 0 clamp(40px,7vw,72px);
}
.page-hero .eyebrow { color: var(--sand); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem,6.5vw,3.6rem); max-width: 18ch; margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,.9); max-width: 52ch; }
.breadcrumb { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 18px; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }

/* prose for SEO/FAQ pages */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem,4.5vw,2.3rem); margin: 38px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 8px; }
.prose p { color: var(--text-soft); margin-bottom: 14px; }
.prose ul.bullets { margin: 8px 0 18px; display: flex; flex-direction: column; gap: 10px; }
.prose ul.bullets li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-soft); }
.prose ul.bullets li::before { content: "•"; color: var(--blue); font-weight: 800; }
.inline-cta { margin: 30px 0; }

/* included / not included lists */
.incl-grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
.incl-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(11,45,77,.05); }
.incl-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; margin-bottom: 16px; }
.incl-card ul li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid rgba(11,45,77,.06); font-weight: 500; }
.incl-card ul li:last-child { border-bottom: none; }
.incl-card .mk { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; margin-top: 2px; }
.incl-card .mk.yes { background: var(--green); }
.incl-card .mk.no { background: #e7ccc6; }
.incl-card .mk svg { width: 12px; height: 12px; color: #fff; }
.incl-card .mk.no svg { color: #b5503e; }

/* ----------------------------- Footer ---------------------------- */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.75);
  padding: clamp(48px,7vw,72px) 0 130px;
}
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.footer-about { font-size: .96rem; max-width: 36ch; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .95rem; }
.footer-col a:hover { color: var(--sand); }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: #fff; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 40px; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-disclaimer { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 14px; max-width: 60ch; }

/* ----------------------------- Floating WA ----------------------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 84px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  z-index: 95;
  box-shadow: 0 12px 30px rgba(37,211,102,.5);
  animation: pulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,.5); }
  50% { box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,0); }
}

/* ----------------------------- Mobile bottom bar ----------------- */
.bottom-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 96;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(11,45,77,.08);
  display: flex;
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -6px 24px rgba(11,45,77,.08);
}
.bottom-bar a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: .68rem; font-weight: 700; color: var(--text-soft);
  padding: 5px 2px; border-radius: 12px;
  min-height: 44px; justify-content: center;
}
.bottom-bar a svg { width: 21px; height: 21px; }
.bottom-bar a.book {
  color: #fff; background: var(--green);
  margin: -10px 4px 0; border-radius: 16px;
  box-shadow: 0 8px 18px rgba(37,211,102,.4);
}
.bottom-bar a.book svg { width: 23px; height: 23px; }
.bottom-bar a:not(.book):active { background: var(--blue-light); color: var(--blue); }

/* ----------------------------- Scroll reveal --------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float, .map-pin .pin { animation: none; }
}

/* ----------------------------- Scenes (placeholders gradients) --- */
/* Dégradés premium évoquant lac, eau, coucher de soleil — toujours rendus,
   sans dépendance externe. Remplaçables par de vraies photos si besoin. */
.scene-lake {
  background:
    radial-gradient(95% 70% at 78% 8%, rgba(255,221,158,.85), rgba(255,221,158,0) 46%),
    radial-gradient(60% 45% at 80% 12%, rgba(255,178,120,.6), transparent 55%),
    linear-gradient(175deg, #2f73a4 0%, #0E6BA8 30%, #0d4e84 55%, #0B2D4D 100%);
}
.scene-sunset {
  background:
    radial-gradient(80% 60% at 70% 18%, rgba(255,205,130,.9), transparent 50%),
    linear-gradient(170deg, #f0a25e 0%, #d96e6a 26%, #8e4f86 50%, #1f4f86 76%, #0B2D4D 100%);
}
.scene-swim {
  background:
    radial-gradient(70% 50% at 30% 18%, rgba(255,255,255,.5), transparent 55%),
    linear-gradient(160deg, #8fe0e0 0%, #3fb6cf 42%, #0E6BA8 100%);
}
.scene-dusk {
  background:
    radial-gradient(70% 55% at 75% 20%, rgba(255,210,150,.95), transparent 55%),
    linear-gradient(165deg, #f4a261 0%, #d76d70 45%, #5a4a86 80%, #213f6b 100%);
}
.scene-family {
  background:
    radial-gradient(75% 55% at 25% 18%, rgba(255,238,205,.7), transparent 55%),
    linear-gradient(160deg, #f6d99a 0%, #6fb6cf 55%, #0E6BA8 100%);
}
.scene-apero {
  background:
    radial-gradient(70% 55% at 72% 22%, rgba(255,224,170,.95), transparent 55%),
    linear-gradient(165deg, #eab15a 0%, #c97f54 48%, #4a5d8a 100%);
}
.scene-village {
  background:
    radial-gradient(70% 50% at 30% 20%, rgba(255,255,255,.4), transparent 55%),
    linear-gradient(160deg, #9ec9a0 0%, #4d9e8f 45%, #0E6BA8 100%);
}
.scene-friends {
  background:
    radial-gradient(75% 55% at 70% 18%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(160deg, #74c4ea 0%, #2f8fc4 45%, #0d4e84 100%);
}
.scene-boat {
  background:
    radial-gradient(80% 55% at 75% 12%, rgba(255,221,158,.7), transparent 50%),
    linear-gradient(165deg, #4aa0c9 0%, #0E6BA8 45%, #0B2D4D 100%);
}

/* ----------------------------- Responsive ------------------------ */
@media (min-width: 680px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .incl-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 940px) {
  body { font-size: 18px; }
  .nav-desktop { display: flex; }
  .burger { display: none; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1.05fr 1fr; }
  .split.reverse .split-media { order: 2; }
  .steps { grid-template-columns: 1fr 1fr; }
  .wa-float { display: none; }
  .bottom-bar { display: none; }
  .site-footer { padding-bottom: 72px; }
  .footer-grid { grid-template-columns: 2.4fr 1fr 1fr 1.2fr; }
}

@media (min-width: 1100px) {
  .hero { padding-block: 110px 120px; }
}
