/* ==========================================================================
   Espace Saint Jean : espacesaintjean.fr
   ========================================================================== */

/* ---- Polices auto-hébergées (sous-ensemble latin) ---- */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/cormorant-garamond-400.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/cormorant-garamond-500.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/cormorant-garamond-600.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/cormorant-garamond-700.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/cormorant-garamond-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url('fonts/cormorant-garamond-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 600; font-display: swap; src: url('fonts/cormorant-garamond-600-italic.woff2') format('woff2'); }
@font-face { font-family: 'Hanken Grotesk'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/hanken-grotesk-400.woff2') format('woff2'); }
@font-face { font-family: 'Hanken Grotesk'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/hanken-grotesk-500.woff2') format('woff2'); }
@font-face { font-family: 'Hanken Grotesk'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/hanken-grotesk-600.woff2') format('woff2'); }
@font-face { font-family: 'Hanken Grotesk'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/hanken-grotesk-700.woff2') format('woff2'); }
@font-face { font-family: 'Yellowtail'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/yellowtail-400.woff2') format('woff2'); }

/* ---- Variables & base ---- */
:root {
  --navy: #16365c;
  --navy-dark: #102844;
  --navy-deep: #0d1e34;
  --blue: #4f93cf;
  --blue-ink: #2f6db0;
  --ink: #1f3a52;
  --ink-2: #21405b;
  --muted: #50697f;
  --muted-2: #5a7088;
  --muted-3: #46627a;
  --faded: #7a8ca0;
  --bg-soft: #eef4fb;
  --bg-card: #f4f8fc;
  --border: #dde9f4;
  --border-input: #cfdeed;
  --gold: #e8a33d;
  --green: #6f9c7d;
  --green-soft: #a7cbb2;
  /* Versions foncees, obligatoires des que la couleur porte du texte :
     #4f93cf donne 3,3:1 et #6f9c7d 3,1:1 sur blanc, sous le seuil AA de 4,5:1. */
  --green-ink: #42704f;
  --gold-ink: #a86a12;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --script: 'Yellowtail', cursive;
  --ease-lift: cubic-bezier(0.16, 0.8, 0.24, 1);
  --pad-x: clamp(20px, 5vw, 64px);
  --pad-section: clamp(56px, 8vw, 120px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: #ffffff;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
  text-decoration: none; font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ---- Boutons ---- */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  border-radius: 999px; font-weight: 600; font-size: 15px;
  padding: 15px 28px; border: none; cursor: pointer; font-family: inherit;
  transition: transform 0.25s var(--ease-lift), box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { box-shadow: 0 10px 24px rgba(22, 54, 92, 0.32); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { box-shadow: 0 10px 24px rgba(13, 30, 52, 0.25); }
.btn--blue { background: var(--blue-ink); color: #fff; }
.btn--blue:hover { box-shadow: 0 10px 24px rgba(79, 147, 207, 0.4); }
.btn--green { background: var(--green-ink); color: #fff; }
.btn--green:hover { box-shadow: 0 10px 24px rgba(111, 156, 125, 0.4); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); font-weight: 500; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--sm { padding: 13px; font-size: 14px; display: block; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid #dce8f3;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 11px; line-height: 1; }
.brand img { height: 40px; width: auto; display: block; }
.brand span { font-family: var(--script); font-size: 28px; color: var(--navy); }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); font-size: 14px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-links a { text-decoration: none; color: #3a5773; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { text-decoration: none; color: #fff; background: var(--navy); padding: 11px 20px; border-radius: 999px; font-weight: 600; }
.nav-tel { text-decoration: none; color: var(--navy); font-weight: 600; white-space: nowrap; }
.nav-tel:hover { text-decoration: underline; }
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 10px;
  background: none; border: 1px solid var(--border); border-radius: 10px; cursor: pointer;
}
.nav-burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 69px; left: 0; right: 0; z-index: 49;
  background: rgba(255,255,255,0.98);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid #dce8f3;
  padding: 10px var(--pad-x) 22px;
  flex-direction: column;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--ink-2); font-size: 17px; font-weight: 500;
  padding: 14px 4px; border-bottom: 1px solid var(--bg-soft);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: min(90vh, 900px); display: flex; align-items: center;
  padding: clamp(28px, 5vw, 80px); overflow: hidden;
}
.hero picture, .hero-bg { position: absolute; inset: 0; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,30,52,0.86) 0%, rgba(13,30,52,0.66) 38%, rgba(13,30,52,0.18) 72%, rgba(13,30,52,0.05) 100%);
}
.hero-inner { position: relative; max-width: 760px; color: #fff; }
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 6.2vw, 84px); line-height: 1.02;
  margin: 0 0 22px; letter-spacing: -0.5px;
}
.hero-sub { font-size: clamp(15px, 1.5vw, 19px); line-height: 1.6; max-width: 560px; margin: 0 0 34px; color: #e4eef7; }
.hero-sub strong { font-weight: 600; color: #fff; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.kicker { display: inline-block; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--blue-ink); }
.kicker--light { color: #bcd8f0; margin-bottom: 22px; }
.kicker--navy-bg { color: #9cc4e8; }

/* ---- Bandeau chiffres ---- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); background: var(--blue); }
.stat { padding: clamp(26px, 3.4vw, 44px) 28px; border-right: 1px solid rgba(255,255,255,0.22); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 600; line-height: 1; color: #fff; }
.stat-label { font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; margin-top: 12px; color: #0e2a4d; font-weight: 600; }

/* ---- Sections ---- */
.section { padding: var(--pad-section) var(--pad-x); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #fff; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-inner--narrow { max-width: 1100px; }
.section-inner--faq { max-width: 880px; }
.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 60px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2, .h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(32px, 4.6vw, 56px); line-height: 1.06;
  margin: 16px 0 18px; letter-spacing: -0.5px; color: var(--navy);
}
.section--navy .section-head h2 { color: #fff; }
.section-head p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0; }
.section--soft .section-head p { color: var(--muted-3); }
.section--navy .section-head p { color: #b3cce4; font-size: 15.5px; }

/* ---- Cartes espaces ---- */
.spaces-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }
.space-card {
  border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column; background: #fff;
  transition: transform 0.35s var(--ease-lift), box-shadow 0.35s ease;
}
.space-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(22, 54, 92, 0.15); }
.space-body { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; flex: 1; }
.space-body h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3vw, 38px); margin: 0 0 4px; color: var(--navy); letter-spacing: -0.3px; }
.space-specs { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--blue-ink); margin: 0 0 16px; }
.space-specs .sep { color: var(--muted-2); }
.space-desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 18px; }
.space-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.space-list li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); }
.space-list li::before { content: "›"; color: var(--blue-ink); font-weight: 700; }
.space-specs--green { color: var(--green-ink); }
.space-list--green li::before { color: var(--green-ink); }
.zen-note { text-align: center; font-size: 13px; font-weight: 600; color: var(--green-ink); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.chip { font-size: 12px; background: var(--bg-soft); color: var(--navy); padding: 6px 12px; border-radius: 999px; }
.space-actions { margin-top: auto; display: grid; gap: 10px; }
.plan-link { text-decoration: none; text-align: center; font-size: 13px; font-weight: 600; color: var(--navy); }
.plan-link:hover { text-decoration: underline; }

/* ---- Carrousel ---- */
.carousel { position: relative; }
.car-track {
  display: flex; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; aspect-ratio: 16 / 10;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track picture { min-width: 100%; width: 100%; height: 100%; scroll-snap-align: start; }
.car-track img { width: 100%; height: 100%; object-fit: cover; display: block; }
.car-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(13, 30, 52, 0.82); color: #fff;
  font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
}
.car-badge--blue { background: rgba(47, 109, 176, 0.95); }
.car-badge--green { background: rgba(66, 112, 79, 0.96); }
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, 0.92); color: var(--navy);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.car-btn:hover { background: #fff; }
.car-btn--prev { left: 12px; }
.car-btn--next { right: 12px; }
.car-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; gap: 7px; justify-content: center; z-index: 2; }
.car-dots button {
  width: 10px; height: 10px; padding: 0; border-radius: 50%; border: none;
  background: #fff; cursor: pointer; opacity: 0.5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: opacity 0.2s, transform 0.2s;
}
.car-dots button.is-active { opacity: 1; transform: scale(1.3); }

/* ---- Usages ---- */
.usages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 18px; }
.usage-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 26px 24px 28px;
  transition: transform 0.35s var(--ease-lift), box-shadow 0.35s ease;
}
.usage-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(22, 54, 92, 0.12); }
.usage-icon {
  width: 46px; height: 46px; border-radius: 12px; background: #eaf2fb;
  display: flex; align-items: center; justify-content: center; color: var(--blue-ink);
}
.usage-card h3 { font-family: var(--serif); font-weight: 600; font-size: 23px; margin: 18px 0 8px; letter-spacing: -0.2px; color: var(--navy); }
.usage-card p { font-size: 14px; line-height: 1.55; color: var(--muted-2); margin: 0; }

/* ---- Le lieu ---- */
.lieu-photo { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 24px; display: block; }
.lieu-carousel { border-radius: 24px; overflow: hidden; }
.lieu-carousel .car-track { aspect-ratio: 16 / 9; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 28px; }
.feature {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px;
}
.feature::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 7px;
}
.feature span { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); }

/* ---- Atouts ---- */
.atouts-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: center; }
.atouts-intro p { font-size: 15.5px; line-height: 1.65; color: var(--muted-3); margin: 0 0 30px; max-width: 480px; }
.atouts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 22px 26px; }
.atout-num { font-family: var(--serif); font-size: 17px; color: var(--blue-ink); margin-bottom: 8px; }
.atout h3 { font-size: 15.5px; font-weight: 600; margin: 0 0 5px; color: var(--navy); }
.atout p { font-size: 13.5px; line-height: 1.5; color: var(--muted-2); margin: 0; }
.atouts-figures { display: grid; gap: 14px; }
.atouts-figures figure { margin: 0; position: relative; border-radius: 20px; overflow: hidden; }
/* height: auto explicite : sans lui, l'attribut height= de la balise <img> l'emporte
   sur aspect-ratio et la photo s'affiche en pleine hauteur naturelle. */
.atouts-figures img { width: 100%; height: auto; aspect-ratio: 16 / 11; object-fit: cover; display: block; }
.atouts-figures figcaption {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(13, 30, 52, 0.78); color: #fff;
  font-size: 12px; letter-spacing: 0.5px; padding: 6px 12px; border-radius: 999px;
}

/* ---- Sur place ---- */
.surplace-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.stay-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-lift), box-shadow 0.35s ease;
}
.stay-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(22, 54, 92, 0.13); }
.stay-card img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.stay-card .car-track { aspect-ratio: 4 / 3; }
/* Dans le carrousel c'est la piste qui donne le format : l'image doit la remplir.
   height: 100% doit rester ici, sinon le height: auto de .stay-card img l'emporte
   (même spécificité, règle plus bas dans le fichier) et l'image déborde de sa carte. */
.stay-card .car-track img { aspect-ratio: auto; height: 100%; }
.stay-body { padding: 22px 24px 26px; }
.stay-body h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin: 0 0 7px; color: var(--navy); }
.stay-body p { font-size: 14px; line-height: 1.55; color: var(--muted-2); margin: 0; }
.stay-card--navy {
  background: var(--navy); color: #fff; border: none; border-radius: 18px;
  padding: 30px 28px; display: flex; flex-direction: column; justify-content: center;
  transition: transform 0.35s var(--ease-lift), box-shadow 0.35s ease;
}
.stay-card--navy:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(16, 40, 68, 0.4); }
.stay-card--navy h3 { font-family: var(--serif); font-weight: 600; font-size: 26px; margin: 0 0 10px; }
.stay-card--navy p { font-size: 14.5px; line-height: 1.6; color: #c8dcef; margin: 0 0 22px; }
.stay-card--navy .btn { align-self: flex-start; padding: 12px 22px; font-size: 14px; }

/* ---- Avis ---- */
.avis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.avis-card {
  margin: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px 26px; display: flex; flex-direction: column;
}
.avis-stars { color: var(--gold-ink); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.avis-card blockquote { margin: 0 0 18px; font-family: var(--serif); font-size: 19.5px; line-height: 1.5; color: #2f4a63; font-style: italic; }
.avis-card figcaption { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--navy); }
.avis-card figcaption span { display: block; font-weight: 400; font-size: 12.5px; color: var(--muted-2); margin-top: 2px; }
.avis-more { text-align: center; font-size: 14px; color: var(--muted-2); margin: clamp(28px, 3vw, 40px) 0 0; }
.avis-note { color: var(--navy); font-weight: 700; }
.avis-more a { color: var(--blue-ink); text-decoration: none; font-weight: 600; }
.avis-more a:hover { text-decoration: underline; }

/* ---- Tarifs ---- */
.tarifs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.tarifs-grid + .tarifs-grid { margin-top: 18px; }
.price-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); border-radius: 20px; padding: clamp(26px, 3vw, 38px); }
.price-card--accent { background: rgba(79, 147, 207, 0.14); border-color: rgba(79, 147, 207, 0.5); }
.price-card--green { background: rgba(111, 156, 125, 0.16); border-color: rgba(111, 156, 125, 0.5); }
.price-card--green .price-sub { color: var(--green-soft); }
.price-note-green { font-size: 12.5px; color: #cfe0d6; margin: 16px 0 0; }
.price-card--white { background: #fff; color: var(--navy); border: none; }
.price-card h3, .price-card .price-h { font-family: var(--serif); font-weight: 600; font-size: 30px; margin: 0 0 4px; color: #fff; }
.price-card--white h3, .price-card--white .price-h { color: var(--navy); }
.price-sub { font-size: 13px; color: #9cc4e8; margin: 0 0 20px; }
.price-card--white .price-sub { color: var(--muted-2); }
.badge-clim {
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--navy); background: #9cc4e8;
  padding: 4px 9px; border-radius: 999px; vertical-align: middle; margin-left: 6px;
}
.badge-clim--green { background: var(--green-soft); }
.ttc-note {
  display: inline-block; font-size: 13px !important; color: #d7e4f1 !important;
  margin: 18px 0 0 !important; padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}
.price-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 15px 0; border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.price-row .p-label { font-weight: 600; font-size: 15px; }
.price-row .p-window { font-size: 12.5px; color: #9db8d2; margin-top: 2px; }
.price-row .p-price { font-family: var(--serif); font-size: 30px; font-weight: 600; white-space: nowrap; }
.gite-price { display: flex; align-items: baseline; gap: 10px; }
.gite-price .big { font-family: var(--serif); font-size: 44px; font-weight: 600; line-height: 1; color: var(--navy); }
.gite-price span:last-child { font-size: 14px; color: var(--muted-2); }
.gite-note { font-size: 13px; color: var(--muted-2); margin: 16px 0 0; }
.conditions-title { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #9cc4e8; margin: 0 0 16px; }
.conditions-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.conditions-list li { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.45; color: #d7e4f1; }
.conditions-list li::before { content: "✓"; color: var(--blue-ink); font-weight: 700; }
.conditions-note { font-size: 12.5px; color: #9db8d2; margin: 16px 0 0; }
.tarifs-cta { text-align: center; margin-top: clamp(32px, 4vw, 48px); }
.tarifs-lien { margin: 18px 0 0; font-size: 14px; }
.tarifs-lien a { color: #9cc4e8; }

/* ---- Étapes ---- */
.etapes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.etape { text-align: center; }
.etape-num {
  width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: #fff;
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.etape h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--navy); margin: 0 0 8px; }
.etape p { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); margin: 0 auto; max-width: 260px; }

/* ---- FAQ ---- */
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 4px 22px; }
.faq-list summary {
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--navy);
  padding: 18px 28px 18px 0; letter-spacing: -0.2px; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 22px; font-weight: 400; color: var(--blue-ink);
  transition: transform 0.25s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { font-size: 15px; line-height: 1.65; color: var(--muted-3); margin: 0 0 18px; }

/* ---- Contact ---- */
.contact-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(36px, 5vw, 64px); }
.contact-info h2 { font-size: clamp(30px, 4.4vw, 52px); margin: 16px 0 18px; }
.contact-info > p { font-size: 16px; line-height: 1.65; color: var(--muted-3); margin: 0 0 28px; }
.contact-links { display: grid; gap: 12px; margin-bottom: 28px; }
.contact-links a { text-decoration: none; color: var(--navy); font-size: 17px; }
.contact-links a.tel { font-weight: 600; }
.contact-links a.insta { color: var(--blue-ink); font-size: 15px; font-weight: 500; }
.contact-horaires { font-size: 13px; line-height: 1.55; color: var(--muted-2); margin: -4px 0 4px; max-width: 46ch; }
.contact-links a:hover { text-decoration: underline; }

.map-box { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); height: 280px; position: relative; background: var(--bg-soft); }
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 20px;
  background:
    radial-gradient(circle at 30% 30%, rgba(79,147,207,0.14), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(22,54,92,0.10), transparent 50%),
    var(--bg-soft);
}
.map-placeholder p { margin: 0; font-size: 14px; color: var(--muted-3); max-width: 320px; }
.map-placeholder .btn { padding: 12px 22px; font-size: 14px; }
.map-consent-note { font-size: 11.5px !important; color: var(--muted-2) !important; }

.form-rgpd { font-size: 12.5px; line-height: 1.5; color: var(--muted-2); margin: 14px 0 0; }
.form-rgpd a { color: var(--blue-ink); }
.contact-form-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 22px; padding: clamp(28px, 3.5vw, 44px); }
.contact-form-box h3 { font-family: var(--serif); font-weight: 600; font-size: 28px; margin: 0 0 6px; color: var(--navy); }
.contact-form-box > p { font-size: 14.5px; color: var(--muted-2); margin: 0 0 26px; }
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: inherit; font-size: 15px; padding: 14px 16px;
  border: 1px solid var(--border-input); border-radius: 12px;
  background: #fff; color: var(--ink); min-width: 0; width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { display: none; font-size: 14.5px; line-height: 1.5; padding: 14px 16px; border-radius: 12px; margin: 0; }
.form-status.ok { display: block; background: #e5f4e8; color: #1d5c2f; border: 1px solid #bfe3c8; }
.form-status.err { display: block; background: #fdeeee; color: #8c2f2f; border: 1px solid #f2cccc; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---- Barre mobile ---- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: none; gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid #dce8f3;
}
.mobile-bar a { flex: 1; text-align: center; text-decoration: none; font-weight: 600; font-size: 15px; padding: 13px; border-radius: 999px; }
.mobile-bar .call { border: 1px solid var(--navy); color: var(--navy); }
.mobile-bar .cta { background: var(--navy); color: #fff; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-dark); color: #9db8d2; padding: clamp(44px, 5vw, 68px) var(--pad-x); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.footer-brand img { height: 54px; width: auto; display: block; margin-bottom: 12px; }
.footer-brand .script { font-family: var(--script); font-size: 30px; color: #fff; }
.footer-brand .addr { font-size: 13px; margin-top: 8px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-links { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-links a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-size: 14px; }
.footer-contact-links a:hover { text-decoration: underline; }
.footer-social { display: flex; align-items: center; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); text-decoration: none;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.18); }
.footer-legal { font-size: 13px; text-align: right; }
.footer-legal a { display: inline-block; margin-top: 8px; text-decoration: underline; color: #9db8d2; }
.footer-legal a:hover { color: #fff; }

/* ---- Page mentions légales ---- */
.legal-page { max-width: 780px; margin: 0 auto; padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(56px, 8vw, 100px); }
.legal-page h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 5vw, 52px); color: var(--navy); letter-spacing: -0.5px; margin: 0 0 10px; }
.legal-page h2 { font-family: var(--serif); font-weight: 600; font-size: 26px; color: var(--navy); margin: 36px 0 10px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.7; color: var(--muted-3); }
.legal-page a { color: var(--blue-ink); }
.back-home { display: inline-block; margin-top: 30px; text-decoration: none; font-weight: 600; color: var(--navy); }

/* ---- Animations d'apparition (activées par JS) ---- */
.reveal-init { opacity: 0; transform: translateY(26px); }
.reveal-in {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s var(--ease-lift), transform 0.7s var(--ease-lift);
  transition-delay: var(--reveal-delay, 0ms);
}

/* ---- Responsive ---- */
/* En dessous de 1000 px, la colonne de texte devient une pile de 8 avantages,
   bien plus haute que les 2 photos : centrées, elles flottaient au milieu du vide.
   On repasse donc en une seule colonne, avec les photos côte à côte dessous. */
@media (max-width: 999px) {
  .atouts-layout { grid-template-columns: 1fr; }
  .atouts-figures { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .atouts-figures { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-tel { display: none; }
  .nav-burger { display: flex; }
}
@media (min-width: 861px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
  .footer-legal { text-align: left; }
}
@media (max-width: 480px) {
  .brand span { font-size: 23px; }
  .brand img { height: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-init { opacity: 1; transform: none; }
  .btn, .space-card, .usage-card, .stay-card, .stay-card--navy { transition: none; }
}


/* ==========================================================================
   Page Tarifs
   ========================================================================== */
.page-head { padding-bottom: clamp(28px, 4vw, 44px); }
.fil-ariane { font-size: 13px; color: var(--muted-2); margin-bottom: 18px; }
.fil-ariane a { color: var(--blue-ink); text-decoration: none; }
.fil-ariane a:hover { text-decoration: underline; }
.fil-ariane span[aria-hidden] { margin: 0 6px; color: var(--muted-2); }
.page-head h1 {
  font-family: var(--serif); font-weight: 600; letter-spacing: -0.5px;
  font-size: clamp(34px, 5.2vw, 62px); line-height: 1.06;
  color: var(--navy); margin: 10px 0 18px; max-width: 20ch;
}
.page-head-intro { font-size: 16.5px; line-height: 1.65; color: var(--muted-3); max-width: 62ch; margin: 0 0 18px; }
.ttc-note--light { color: var(--muted-2) !important; background: var(--bg-soft); display: inline-block;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; margin: 0; }
.price-note { font-size: 12.5px; color: #9db8d2; margin: 16px 0 0; }
.price-card--white .price-note { color: var(--muted-2); }

.inclus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px 26px; }
.inclus h3 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.inclus h3::before { content: "✓"; color: var(--blue-ink); font-weight: 700; margin-right: 8px; }
.inclus p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

.budget-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.budget-card { background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column; }
.budget-card h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--navy); margin: 0 0 8px; }
.budget-cas { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0 0 18px; }
.budget-lignes { margin: 0 0 16px; display: grid; gap: 8px; }
.budget-lignes > div { display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  border-bottom: 1px dotted var(--border-input); padding-bottom: 8px; }
.budget-lignes dt { font-size: 14px; color: var(--ink-2); }
.budget-lignes dd { margin: 0; font-weight: 600; font-size: 15px; color: var(--navy); white-space: nowrap; }
.budget-total { margin: auto 0 0; display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding-top: 6px; }
.budget-total span { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); }
.budget-total strong { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.budget-mention { font-size: 13px; line-height: 1.6; color: var(--muted-2); margin: 26px auto 0; max-width: 70ch; text-align: center; }

.page-cta { text-align: center; max-width: 62ch; margin: 0 auto; }
.page-cta h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.6vw, 44px);
  color: var(--navy); margin: 0 0 14px; letter-spacing: -0.3px; }
.page-cta > p { font-size: 15.5px; line-height: 1.65; color: var(--muted-3); margin: 0 0 26px; }
.page-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn--bord { border: 1px solid var(--border-input); }
.page-cta-liens { font-size: 13.5px; color: var(--muted-2); margin: 26px 0 0; }
.page-cta-liens a { color: var(--blue-ink); }
