/* =========================================================
   GÎTES DE GROUPE ALSACE-VOSGES — Maquette refonte
   Direction : maison de famille, papier-craft, éditorial chaleureux
   ========================================================= */

/* ---------- 1. Variables ---------- */
:root {
  /* Palette — articulée autour du BLEU FACADE des maisons */
  --cream: #f4ede0;          /* fond principal, papier crème */
  --cream-deep: #e9dfc9;     /* fond alterné */
  --paper: #fbf6ec;          /* paper, plus clair */
  --ink: #1a2f44;            /* texte principal (teinte bleutée) */
  --ink-soft: #3f5366;       /* texte secondaire */
  --ink-muted: #6e8294;      /* gris-bleu doux */

  /* BLEUS — au coeur de l'identité */
  --bleu-facade: #7aafd4;    /* le bleu pastel des façades */
  --bleu-facade-soft: #a4c6dd;
  --bleu-facade-pale: #d8e7f1;
  --bleu-logo: #1858a8;      /* le bleu vif du logo, pour CTAs */
  --bleu-logo-dark: #0f3f7e; /* hover, accents profonds */
  --bleu-nuit: #102849;      /* footer, sections sombres */

  /* Accents secondaires (réduits) */
  --terracotta: #b85a32;     /* la tuile alsacienne, accent rare */
  --sapin: #2d4a3e;          /* la forêt, accent secondaire */
  --or: #c89b4a;             /* doré chaud, signal positif */
  --tilleul: #a8b89a;
  --white: #ffffff;

  --shadow-soft: 0 4px 24px -8px rgba(16, 40, 73, 0.14);
  --shadow-medium: 0 12px 48px -16px rgba(16, 40, 73, 0.22);
  --shadow-card: 0 2px 12px -4px rgba(16, 40, 73, 0.08), 0 12px 32px -12px rgba(16, 40, 73, 0.12);

  /* Alias de compat pour ancien code (à supprimer plus tard) */
  --terracotta-dark: #934527;
  --sapin-light: #486b5d;
  --tilleul-pale: #d8dfcf;

  /* Typo */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Bricolage Grotesque", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hand: "Caveat", "Brush Script MT", cursive;

  /* Layout */
  --container: 1280px;
  --container-narrow: 980px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  /* Alias fond galerie pièce */
  --paper-soft: #f7f3ec;
}

/* ---------- 2. Reset et base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Texture papier subtile — teintes bleu et tuile */
  background-image:
    radial-gradient(circle at 20% 10%, rgba(122, 175, 212, 0.07) 0%, transparent 35%),
    radial-gradient(circle at 80% 90%, rgba(184, 90, 50, 0.04) 0%, transparent 35%);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.handwritten {
  font-family: var(--font-hand);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bleu-logo);
  display: inline-block;
  margin-bottom: 1rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- 3. Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 227, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 42, 54, 0.08);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.logo__mark {
  height: 84px;
  width: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
/* Variante texte (fallback ou contexte clair) */
.logo__mark--text {
  border-radius: 50%;
  background: var(--bleu-logo);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
}
.logo__tagline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.logo__since {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: capitalize;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
/* Caché en desktop, visible uniquement dans le panneau mobile */
.nav-mobile-footer { display: none; }
.main-nav a {
  padding: 10px 14px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--ink); background: rgba(31, 42, 54, 0.04); }
.main-nav a.active { color: var(--bleu-logo); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--bleu-logo);
  border-radius: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Dropdown Séjours */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: " ▾";
  font-size: 0.7em;
  opacity: 0.6;
}
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--paper);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(31,42,54,0.13);
  min-width: 210px;
  padding: 8px;
  z-index: 200;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: flex;
}
.nav-dropdown__menu a {
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.15s;
  background: none;
}
.nav-dropdown__menu a:hover {
  background: rgba(31,42,54,0.05);
  color: var(--ink);
}
.nav-dropdown__menu a.active {
  color: var(--bleu-logo);
  font-weight: 500;
}
.nav-dropdown__sep {
  height: 1px;
  background: rgba(31,42,54,0.08);
  margin: 4px 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
}
.btn--primary {
  background: var(--bleu-logo);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--bleu-logo-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(24, 88, 168, 0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(31, 42, 54, 0.15);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(31, 42, 54, 0.04);
}
.btn--dark {
  background: var(--ink);
  color: var(--cream);
}
.btn--dark:hover { background: #0e1620; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.menu-toggle svg { width: 26px; height: 26px; }
.nav-mobile-close { display: none; }

/* ---------- 4. Hero ---------- */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero__copy {
  position: relative;
}
.hero__hand {
  font-family: var(--font-hand);
  font-size: 1.7rem;
  color: var(--bleu-logo);
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: 12px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--bleu-logo);
}
.hero__title .underline {
  text-decoration: underline;
  text-decoration-color: var(--bleu-facade);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.08em;
  text-decoration-skip-ink: none;
}
.hero__lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__metrics {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(31, 42, 54, 0.1);
}
.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--bleu-logo);
  line-height: 1;
}
.metric span {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 4px;
  display: block;
}

/* Hero visual : collage cartes postales */
.hero__visual {
  position: relative;
  height: 600px;
}
.postcard {
  position: absolute;
  background: var(--paper);
  padding: 14px 14px 18px;
  border-radius: 4px;
  box-shadow: var(--shadow-medium);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.postcard:hover { box-shadow: 0 16px 40px -8px rgba(16,40,73,0.28); }
.postcard img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  min-height: 0;
}
/* Pour fallback placeholder s'il existe */
.postcard .img-placeholder { flex: 1; }
.postcard__caption {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  text-align: center;
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.postcard--1 {
  top: 0;
  left: 4%;
  width: 48%;
  height: 58%;
  transform: rotate(-3deg);
  z-index: 3;
}
.postcard--2 {
  top: 10%;
  right: 0;
  width: 48%;
  height: 56%;
  transform: rotate(4deg);
  z-index: 2;
}
.postcard--3 {
  bottom: 0;
  left: 14%;
  width: 50%;
  height: 48%;
  transform: rotate(-1.5deg);
  z-index: 4;
}
.postcard--4 {
  bottom: 0;
  right: 1%;
  width: 36%;
  height: 40%;
  transform: rotate(5deg);
  z-index: 5;
}
.postcard--1:hover { transform: rotate(-1deg) translateY(-6px); z-index: 8; }
.postcard--2:hover { transform: rotate(2deg) translateY(-6px); z-index: 8; }
.postcard--3:hover { transform: rotate(1deg) translateY(-6px); z-index: 8; }
.postcard--4:hover { transform: rotate(3deg) translateY(-6px); z-index: 8; }

/* Logo centré sur le coin haut-droit du polaroid bas-gauche */
.hero__visual-logo {
  position: absolute;
  top: calc(52% + 25px);
  left: calc(64% - 50px);
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(16,40,73,0.18), 0 2px 8px rgba(16,40,73,0.10);
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.hero__visual-logo img {
  width: 72px;
  height: auto;
}

/* Image placeholder (sans vraies photos) */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bleu-facade-pale) 0%, var(--bleu-facade-soft) 50%, var(--bleu-facade) 100%);
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.2), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.1), transparent 50%);
}
.img-placeholder--terra,
.img-placeholder--bleu {
  background: linear-gradient(135deg, var(--bleu-facade-soft) 0%, var(--bleu-logo) 100%);
}
.img-placeholder--sapin {
  background: linear-gradient(135deg, var(--bleu-logo) 0%, var(--bleu-nuit) 100%);
}
.img-placeholder--cream {
  background: linear-gradient(135deg, #efe1c8 0%, #d4b88c 100%);
  color: var(--ink);
}
.img-placeholder__label {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
}

/* ---------- 5. Quiz "Quel gîte pour vous ?" ---------- */
.matcher {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}
.matcher::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--bleu-logo) 0%, transparent 70%);
  opacity: 0.25;
}
.matcher__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.matcher h2 { color: var(--cream); }
.matcher h2 em { color: var(--or); font-style: italic; }
.matcher p { color: rgba(246, 239, 227, 0.75); }
.matcher__questions {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.matcher__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.matcher__label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 600;
}
.matcher__options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.matcher__opt {
  padding: 10px 18px;
  background: rgba(246, 239, 227, 0.08);
  border: 1px solid rgba(246, 239, 227, 0.15);
  border-radius: 50px;
  color: var(--cream);
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.matcher__opt:hover { background: rgba(246, 239, 227, 0.15); }
.matcher__opt.is-active {
  background: var(--bleu-logo);
  border-color: var(--bleu-logo);
}
.matcher__result {
  margin-top: 12px;
  padding: 20px 24px;
  background: rgba(246, 239, 227, 0.06);
  border-left: 3px solid var(--or);
  border-radius: 8px;
  font-size: 0.95rem;
  min-height: 80px;
  display: flex;
  align-items: center;
}
.matcher__result strong { color: var(--or); font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }

/* ---------- 6. Section title commune ---------- */
.section { padding: 80px 0; }
.section--cream { background: var(--cream-deep); }
.section-head { max-width: 740px; margin: 0 auto 56px; text-align: center; }
.section-head--left { text-align: left; margin-left: 0; margin-right: 0; }
.section-head h2 em { color: var(--bleu-logo); font-style: italic; }

/* ---------- 7. Cartes gîtes ---------- */
.gites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.gite-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.gite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(31, 42, 54, 0.25);
}
.gite-card__img {
  position: relative;
  overflow: hidden;
}
.gite-card__img .img-placeholder {
  border-radius: 0;
}
.gite-card__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gite-card:hover .gite-card__img img {
  transform: scale(1.04);
}
.gite-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-soft);
}
.gite-card__capa {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gite-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gite-card__loc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gite-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}
.gite-card__desc {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 0.97rem;
}
.gite-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.feature-pill {
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  border: 1px solid rgba(31, 42, 54, 0.08);
}
.gite-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px dashed rgba(31, 42, 54, 0.15);
  margin-top: auto;
}
.gite-card__price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.gite-card__price strong {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 500;
}
.gite-card__link {
  color: var(--bleu-logo);
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.gite-card__link:hover { gap: 12px; }

/* ---------- 8. Occasions ---------- */
.occasions {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.occasions::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 175, 212, 0.18), transparent 60%);
}
.occasions h2 { color: var(--cream); }
.occasions h2 em { color: var(--bleu-facade); font-style: italic; }
.occasions p { color: rgba(246, 239, 227, 0.7); }
.occasions .eyebrow { color: var(--or); }

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.occasion-card {
  background: rgba(246, 239, 227, 0.04);
  border: 1px solid rgba(246, 239, 227, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.occasion-card:hover {
  background: rgba(246, 239, 227, 0.08);
  border-color: var(--or);
  transform: translateY(-4px);
}
.occasion-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bleu-logo);
  display: grid;
  place-items: center;
  color: var(--cream);
  margin-bottom: 20px;
}
.occasion-card__icon svg { width: 26px; height: 26px; }
.occasion-card h3 {
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.occasion-card p {
  font-size: 0.93rem;
  margin-bottom: 16px;
}
.occasion-card__link {
  color: var(--or);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

/* ---------- 9. Photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 0;
}
.photo-strip__cell {
  aspect-ratio: 1;
  overflow: hidden;
}
.photo-strip__cell .img-placeholder { border-radius: 0; }
.photo-strip__cell img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- 10. Témoignages ---------- */
/* ---------- Trust'Home badge ---------- */
.section-head__trust {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 8px;
}
.trusthome-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1.5px solid rgba(200, 155, 74, 0.35);
  border-radius: 48px;
  padding: 10px 22px 10px 10px;
  box-shadow: 0 2px 12px rgba(16,40,73,0.08);
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}
/* .trusthome-badge:hover {
  box-shadow: 0 4px 20px rgba(16,40,73,0.14);
  border-color: rgba(200, 155, 74, 0.65); */
}
.trusthome-badge__logo {
  width: 44px;
  height: 52px;
  flex-shrink: 0;
}
.trusthome-badge__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trusthome-badge__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.trusthome-badge__label strong {
  color: var(--bleu-logo-dark);
}
.trusthome-badge__score {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trusthome-badge__stars {
  color: #c89b4a;
  font-size: 0.85rem;
  letter-spacing: -1px;
}
.trusthome-badge__count {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-muted);
}

/* Badge footer (compact) */
.footer-trusthome {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-trusthome img {
  width: 24px;
  height: 28px;
  opacity: 0.9;
  filter: brightness(1.4);
}
.footer-trusthome span {
  font-size: 0.78rem;
  color: rgba(246, 239, 227, 0.55);
}
.footer-trusthome strong {
  color: rgba(200, 155, 74, 0.85);
  font-weight: 600;
}

.testimonials {
  background: var(--cream);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial {
  background: var(--paper);
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--bleu-logo);
  line-height: 0.6;
  margin-bottom: 12px;
  opacity: 0.5;
}
.testimonial__text {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 42, 54, 0.08);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bleu-facade);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--paper);
  font-weight: 500;
  font-size: 1rem;
}
.testimonial__avatar--2 { background: var(--bleu-logo); }
.testimonial__avatar--3 { background: var(--or); color: var(--ink); }
.testimonial__meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.3;
}
.testimonial__meta strong {
  color: var(--ink);
  display: block;
  font-weight: 600;
}
.testimonial__stars {
  color: var(--or);
  margin-bottom: 14px;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* ---------- 10b. Carrousel d'avis ---------- */
.testimonials-carousel {
  position: relative;
}
.tc-track {
  overflow: hidden;
}
/* Override grid → flex quand le carrousel est actif */
.testimonials-carousel .testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  margin-top: 0;
}
.testimonials-carousel .testimonial {
  flex: 0 0 calc((100% - 2 * 28px) / 3);
  min-width: 0;
}
/* Boutons prev / next */
.tc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(16,40,73,0.15);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 14px rgba(16,40,73,0.10);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
}
.tc-btn:hover:not(:disabled) { background: var(--bleu-logo); color: #fff; border-color: var(--bleu-logo); }
.tc-btn:disabled { opacity: 0.25; cursor: default; }
.tc-btn--prev { left: -23px; }
.tc-btn--next { right: -23px; }
/* Points */
.tc-dots {
  display: flex; gap: 7px; justify-content: center;
  margin-top: 28px;
}
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(16,40,73,0.18);
  cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.tc-dot.is-active { background: var(--bleu-logo); transform: scale(1.35); }
/* Mobile : 1 avis à la fois */
@media (max-width: 720px) {
  .testimonials-carousel .testimonial { flex: 0 0 100%; }
  .tc-btn--prev { left: -4px; }
  .tc-btn--next { right: -4px; }
}

/* ---------- 11. Carte région ---------- */
.region {
  padding: 100px 0;
  background: var(--cream-deep);
}
.region__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.region__map {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-medium);
}
.region__map .gites-map {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  border: none;
}
.region__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.region__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.region__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--bleu-logo);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ---------- 12. Les hôtes ---------- */
.hosts {
  padding: 100px 0;
  background: var(--cream);
}
.hosts__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.hosts__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}
.hosts__photo .img-placeholder { border-radius: 0; }
.hosts__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hosts__sticker {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bleu-logo);
  color: var(--cream);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  font-family: var(--font-hand);
  font-size: 1.5rem;
  line-height: 1.2;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-medium);
}
.hosts h2 em { color: var(--bleu-logo); font-style: italic; }
.hosts__signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.hosts__signature .handwritten {
  font-size: 1.6rem;
  color: var(--bleu-logo);
}

/* ---------- 13. CTA final ---------- */
.cta-final {
  padding: 100px 0 120px;
  text-align: center;
  background: var(--cream);
  position: relative;
}
.cta-final__inner {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-logo-dark) 100%);
  color: var(--cream);
  padding: 72px 48px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.cta-final__inner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--or) 0%, transparent 70%);
  opacity: 0.22;
  top: -200px;
  right: -100px;
}
.cta-final__inner::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--bleu-facade) 0%, transparent 70%);
  opacity: 0.3;
  bottom: -150px;
  left: -50px;
}
.cta-final h2 {
  color: var(--cream);
  position: relative;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.cta-final h2 em { color: var(--or); font-style: italic; }
.cta-final p {
  color: rgba(246, 239, 227, 0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  position: relative;
}
.cta-final__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}
.cta-final .btn--primary { background: var(--or); color: var(--ink); }
.cta-final .btn--primary:hover { background: #d8a85a; }

/* ---------- 14. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(246, 239, 227, 0.7);
  padding: 72px 0 32px;
  font-size: 0.92rem;
}
.site-footer a { color: rgba(246, 239, 227, 0.8); transition: color 0.2s; }
.site-footer a:hover { color: var(--or); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo__text { flex-direction: row; align-items: baseline; gap: 6px; flex-wrap: wrap; min-width: 0; }
.footer-brand .logo__name { color: var(--cream); }
.footer-brand .logo__tagline { color: var(--cream); margin-top: 0; }
.footer-brand .logo__since { display: none; }
.footer-brand p { color: rgba(246, 239, 227, 0.6); max-width: 320px; }
.footer-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(246, 239, 227, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(246, 239, 227, 0.5);
}
.footer-credit {
  font-size: 0.78rem;
  color: rgba(246, 239, 227, 0.4);
}
.footer-credit a {
  color: rgba(246, 239, 227, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--cream); }
.footer-brand .social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-brand .social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(246, 239, 227, 0.08);
  display: grid;
  place-items: center;
  transition: all 0.2s;
  color: rgba(246, 239, 227, 0.6);
}
.footer-brand .social a:hover {
  background: var(--or);
  color: var(--ink);
}

/* ---------- 15. Page Gîte (détail) ---------- */
.gite-hero {
  padding: 40px 0 60px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.breadcrumb a:hover { color: var(--bleu-logo); }
.gite-hero__head {
  margin-bottom: 36px;
}
/* Grille desktop : titre à gauche, rating à droite, loc pleine largeur */
.gite-hero__title-block {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 40px;
  align-items: end;
}
.gite-hero__title-block .eyebrow {
  grid-column: 1; grid-row: 1; align-self: end;
}
.gite-hero__title-block h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 12px;
  grid-column: 1; grid-row: 2; align-self: end;
}
.gite-hero__title-block .gite-hero__meta {
  grid-column: 2; grid-row: 1 / 3; align-self: end;
}
.gite-hero__title-block .gite-hero__tagline {
  grid-column: 1; grid-row: 3;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--bleu-logo);
  margin: -6px 0 8px;
}
.gite-hero__title-block .gite-hero__loc {
  grid-column: 1 / -1; grid-row: 4;
}
.gite-hero__loc {
  font-size: 1rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
/* Saut de ligne entre localisation et infos : le 1er · devient un item invisible pleine-largeur */
.gite-hero__loc > span:not([style]):first-of-type + span[style] {
  flex-basis: 100%;
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
}
.gite-hero__loc strong { color: var(--ink); font-weight: 600; }
.gite-hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.gite-hero__meta .rating {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  column-gap: 5px;
  row-gap: 2px;
}
.rating__stars { color: var(--or); font-size: 0.9rem; }
.rating__score { font-size: 1.4rem; font-weight: 700; color: var(--ink); line-height: 1; }
.rating__count { flex-basis: 100%; font-size: 0.8rem; color: var(--ink-soft); text-align: right; }

.gite-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.gite-gallery__cell { overflow: hidden; position: relative; }
.gite-gallery__cell .img-placeholder { border-radius: 0; }
.gite-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gite-gallery__cell:hover img { transform: scale(1.04); }
.gite-gallery__main {
  grid-column: 1;
  grid-row: 1 / 3;
}
.gite-gallery__viewall {
  text-align: center;
  margin-bottom: 80px;
}
.gite-gallery__viewall a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(31,42,54,0.25);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.gite-gallery__viewall a:hover { color: var(--bleu-logo); border-color: var(--bleu-logo); }
/* Carrousel mobile — masqués par défaut sur desktop */
.gal-prev, .gal-next, .gal-dots { display: none; }

.gite-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.gite-content__main h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  margin-top: 48px;
}
.gite-content__main h2:first-child { margin-top: 0; }
.gite-content__main p { font-size: 1.05rem; }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 32px 0;
}
.equip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 42, 54, 0.08);
  font-size: 0.97rem;
}
.equip-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.equip-item__icon svg { width: 20px; height: 20px; color: var(--bleu-logo); }

.booking-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 100px;
  border: 1px solid rgba(31, 42, 54, 0.06);
}
.booking-card__price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(31, 42, 54, 0.08);
}
.booking-card__price-from {
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.booking-card__price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin: 4px 0;
}
.booking-card__price-unit { font-size: 0.9rem; color: var(--ink-soft); }
.booking-card__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  font-weight: 600;
}
.field input:not([type="checkbox"]), .field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(31, 42, 54, 0.22);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  color-scheme: light;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a2f44' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.field input:not([type="checkbox"]):focus, .field select:focus {
  outline: none;
  border-color: var(--bleu-logo);
  box-shadow: 0 0 0 3px rgba(24, 88, 168, 0.12);
}
/* iOS anti-zoom : font-size minimum 16px sur mobile */
@media (max-width: 768px) {
  .field input, .field select, .field textarea,
  .resa-form textarea, .contact-form textarea {
    font-size: 1rem;
  }
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.booking-card__btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}
.booking-card__contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 42, 54, 0.08);
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.booking-card__contact a { color: var(--bleu-logo); font-weight: 600; }

/* Side info */
.side-info {
  margin-top: 16px;
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.side-info svg { color: var(--bleu-logo); flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;}

/* ---------- 16. Disponibilités calendrier mini ---------- */
.availability {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 56px 0;
}
.availability__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.availability__head h3 { margin: 0; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cal-month {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(31,42,54,0.06);
}
.cal-month__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cal-month__name .status {
  font-family: var(--font-body);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status--free { background: rgba(45, 74, 62, 0.1); color: var(--sapin); }
.status--partial { background: rgba(200, 155, 74, 0.18); color: #8a6a2b; }
.status--full { background: rgba(184, 90, 50, 0.12); color: var(--terracotta-dark); }
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
/* .cal-day — styles déplacés dans disponibilites.html pour éviter conflits */
.cal-day { display: flex; align-items: center; justify-content: center; }

/* ---------- 16b. Galerie complète par espace — onglets ---------- */
.room-gallery { padding: 80px 0; background: var(--paper-soft); }
.room-gallery .section-head { margin-bottom: 32px; }

/* Barre d'onglets */
.room-gallery__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(31,42,54,0.1);
  padding-bottom: 20px;
}
.room-gallery__nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(31,42,54,0.12);
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  background: transparent;
  user-select: none;
}
.room-gallery__nav a:hover {
  border-color: var(--bleu-logo);
  color: var(--bleu-logo);
}
.room-gallery__nav a.is-active {
  background: var(--bleu-logo);
  border-color: var(--bleu-logo);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(24,88,168,0.4);
}

/* Sections : cachées par défaut, visibles si .is-active */
.room-gallery__room {
  display: none;
  animation: fadeUp 0.3s ease backwards;
}
.room-gallery__room.is-active { display: block; }
.room-gallery__room:last-child { margin-bottom: 0; }
.room-gallery__room h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.room-gallery__room h3 span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink-muted);
}
.room-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.room-gallery__grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md, 10px);
  cursor: zoom-in;
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}
.room-gallery__grid img:hover { transform: scale(1.02); opacity: 0.92; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 26, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(246,239,227,0.12);
  border: none;
  color: var(--cream, #f6efe3);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.15s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(246,239,227,0.25); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(246,239,227,0.7);
  font-size: 0.85rem;
}
@media (max-width: 720px) {
  .room-gallery__grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .room-gallery__grid img { height: 110px; }
  .lightbox__prev, .lightbox__next { width: 36px; height: 36px; font-size: 1.1rem; }
}

/* ---------- Plan de masse — afficher les plans en entier ---------- */
#sect-plan-de-masse .room-gallery__grid img {
  object-fit: contain;
  background: var(--surface, #f5f2ed);
  height: 220px;
}

/* ---------- 16c. Focus-visible (accessibilité clavier) ---------- */
:focus-visible {
  outline: 2px solid var(--bleu-logo);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Supprimer l'outline natif quand :focus-visible est supporté */
:focus:not(:focus-visible) {
  outline: none;
}

/* ---------- 17. Responsive ---------- */
@media (max-width: 1024px) {
  .matcher__inner, .region__grid, .hosts__grid, .gite-content { grid-template-columns: 1fr; gap: 40px; }
  .gites-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-card { position: static; }
  /* gite-gallery : garder 3 colonnes jusqu'à 860px via règle séparée ci-dessous */
}
@media (max-width: 860px) {
  .gite-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 140px 140px 140px;
    height: auto;
  }
  .gite-gallery__main { grid-column: 1 / 3; grid-row: 1; }
}
@media (max-width: 400px) {
  .container, .container--narrow { padding: 0 16px; }
  .site-header__inner { padding: 12px 16px; }
}
@media (max-width: 960px) {
  /* backdrop-filter crée un containing block et casse position:fixed sur les enfants.
     On le supprime sur mobile — le panel du menu remplace l'effet de toute façon. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--paper);
  }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    z-index: 900;
    padding: 80px 24px 40px;
    overflow-y: auto;
    gap: 2px;
    box-shadow: 0 0 0 100vmax rgba(16,40,73,0.45);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a,
  .main-nav .nav-dropdown > a {
    font-size: 1.05rem;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(31,42,54,0.06);
    border-radius: 0;
    width: 100%;
  }
  .main-nav .nav-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-nav .nav-dropdown > a::after {
    content: "▾";
    position: static;
    bottom: auto; left: auto; right: auto;
    height: auto; width: auto;
    background: none;
    border-radius: 0;
    font-size: 0.75em;
    opacity: 0.6;
    flex-shrink: 0;
  }
  .main-nav .nav-dropdown.is-expanded > a::after { content: "▴"; }
  .main-nav .nav-dropdown {
    display: flex;
    flex-direction: column;
  }
  .main-nav .nav-dropdown:hover .nav-dropdown__menu,
  .main-nav .nav-dropdown:focus-within .nav-dropdown__menu { display: none; }
  .main-nav .nav-dropdown.is-expanded .nav-dropdown__menu {
    display: flex;
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 4px 0 4px 16px;
    border-left: 3px solid var(--bleu-facade);
    background: none;
    min-width: 0;
    margin-bottom: 4px;
  }
  .main-nav .nav-dropdown.is-expanded .nav-dropdown__menu a {
    padding: 10px 12px;
    font-size: 0.95rem;
    border-bottom: none;
  }
  .main-nav .nav-dropdown__sep { display: none; }
  .nav-mobile-close {
    display: flex;
    position: fixed;
    top: 18px; right: 18px;
    z-index: 910;
    background: rgba(31,42,54,0.06);
    border: none;
    border-radius: 50%;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--ink);
    line-height: 1;
  }
  .nav-mobile-close:hover { background: rgba(31,42,54,0.1); }
  .menu-toggle { display: block; }
  .nav-cta .btn:not(.menu-toggle) { display: none; }
  .nav-cta .lang-switcher { display: none; }
  .logo__name { font-size: 0.95rem; letter-spacing: 0.03em; }
  .logo__tagline { font-size: 0.95rem; margin-top: 3px; }
  /* Désactiver le soulignement actif desktop dans le panel mobile */
  .main-nav a.active::after { display: none; }
  /* Footer mobile dans le panel nav */
  .nav-mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(31,42,54,0.10);
  }
  .nav-mobile-cta {
    display: block; text-align: center; padding: 14px 20px;
    background: var(--bleu-logo); color: #fff !important;
    border-radius: var(--radius); font-weight: 700; font-size: 1rem;
    text-decoration: none !important; border-bottom: none !important;
  }
  .nav-mobile-cta:hover { background: var(--bleu-facade) !important; color: var(--ink) !important; }
  /* Segmented control langue */
  .nav-mobile-langs {
    display: flex;
    gap: 0;
    background: rgba(31,42,54,0.07);
    border-radius: 12px;
    padding: 4px;
  }
  .nav-ml-btn {
    flex: 1;
    border: none;
    background: none;
    border-radius: 9px;
    padding: 10px 6px 8px;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--ink-soft);
    transition: background 0.18s, box-shadow 0.18s;
    position: relative;
  }
  .nav-ml-btn--active {
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 1px 5px rgba(0,0,0,0.13);
  }
  .nav-ml-btn--soon { opacity: 0.45; cursor: default; }
  .nav-ml-flag { font-size: 1.3rem; line-height: 1; }
  .nav-ml-code { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1; }
  .nav-ml-soon {
    position: absolute;
    top: 4px; right: 4px;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(31,42,54,0.12);
    color: var(--ink-soft);
    border-radius: 4px;
    padding: 1px 4px;
    line-height: 1.4;
  }
}
@media (max-width: 720px) {
  .hero { padding: 32px 0 48px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    pointer-events: none !important;
  }
  .hero__visual-logo { display: none !important; visibility: hidden !important; }
  .hero .postcard, .hero .postcard img, .postcard__caption {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: fixed !important;
    left: -9999px !important;
    top: -9999px !important;
    pointer-events: none !important;
  }
  .hero__ctas { margin-bottom: 0; }
  /* ---- Héro gîte mobile compact ---- */
  .gite-hero { padding: 20px 0 32px; }
  /* Colonne unique : tout empilé — eyebrow, titre, rating, loc */
  .gite-hero__title-block {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 2px;
  }
  .gite-hero__title-block .eyebrow,
  .gite-hero__title-block h1,
  .gite-hero__title-block .gite-hero__meta,
  .gite-hero__title-block .gite-hero__loc {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
  }
  .gite-hero__title-block h1 { font-size: clamp(2rem, 9vw, 2.8rem); margin-bottom: 2px; }
  .gite-hero__title-block .eyebrow { font-size: 0.62rem; letter-spacing: 0.06em; }
  /* Rating horizontal compact une seule ligne */
  .gite-hero__meta { align-items: flex-start; }
  .gite-hero__meta .rating { flex-direction: row; flex-wrap: nowrap; align-items: baseline; gap: 5px; }
  .rating__stars { font-size: 0.75rem; letter-spacing: 1px; }
  .rating__score { font-size: 1.1rem; }
  .rating__count { flex-basis: auto; white-space: nowrap; font-size: 0.78rem; }
  /* Loc : masquer séparateurs orphelins et icône pin */
  .gite-hero__loc { font-size: 0.82rem; gap: 4px; row-gap: 1px; margin-top: 4px; }
  .gite-hero__loc svg { display: none !important; }
  .gite-hero__loc > span[style] { display: none; } /* masque les · séparateurs */
  /* Localisation sur sa propre ligne, infos en dessous */
  .gite-hero__loc > span:not([style]):first-of-type { flex-basis: 100%; font-size: 0.85rem; }
  .gites-grid, .testimonials-grid, .occasions-grid, .footer-grid, .photo-strip, .region__list, .equip-grid { grid-template-columns: 1fr; }
  .matcher, .cta-final__inner { padding: 24px 20px; margin: 0; }
  .section { padding: 36px 0; }
  .hero { padding: 20px 0 28px; }
  .occasions, .testimonials, .region, .hosts, .cta-final { padding: 40px 0; }
  .map-section { padding: 40px 0; }
  .newsletter { padding: 36px 0; }
  .section-head { margin-bottom: 28px; }
  .calendar-grid { grid-template-columns: 1fr 1fr; }
  /* Galerie hero → carrousel */
  .gite-gallery {
    display: block;
    overflow: hidden;
    height: 300px;
    position: relative;
  }
  .gite-gallery__cell {
    position: absolute !important;
    inset: 0;
    height: 100% !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .gite-gallery__cell.is-slide-active {
    opacity: 1;
    pointer-events: auto;
  }
  /* Flèches */
  .gal-prev, .gal-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.30);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s;
  }
  .gal-prev { left: 10px; }
  .gal-next { right: 10px; }
  .gal-prev:hover, .gal-next:hover { background: rgba(0,0,0,0.55); }
  /* Points */
  .gal-dots {
    display: flex;
    gap: 5px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
  }
  .gal-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .gal-dot.is-active { background: #fff; transform: scale(1.25); }
  .field-row { grid-template-columns: 1fr; }
  .hero__metrics { gap: 20px; flex-wrap: wrap; }
  .hosts__sticker { right: 10px; bottom: -10px; font-size: 1.2rem; padding: 16px 22px; }
}

/* ---------- 18. Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__hand, .hero__title, .hero__lede, .hero__ctas, .hero__metrics {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.hero__hand { animation-delay: 0.05s; }
.hero__title { animation-delay: 0.15s; }
.hero__lede { animation-delay: 0.3s; }
.hero__ctas { animation-delay: 0.45s; }
.hero__metrics { animation-delay: 0.6s; }

.postcard {
  animation: fadeUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.postcard--1 { animation-delay: 0.3s; }
.postcard--2 { animation-delay: 0.45s; }
.postcard--3 { animation-delay: 0.6s; }
.postcard--4 { animation-delay: 0.75s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* --- Bouton WhatsApp flottant --- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* --- Bouton retour en haut --- */
.scroll-top-btn {
  position: fixed;
  bottom: 96px; /* au-dessus du bouton WhatsApp */
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(26, 47, 68, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover {
  transform: scale(1.1);
}

/* --- Sélecteur de langue (déroulant) --- */
.lang-switcher {
  position: relative;
  margin-right: 8px;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(31,42,54,0.18);
  border-radius: 20px;
  padding: 5px 10px 5px 8px;
  font-size: 0.97rem;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.lang-current__code { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; }
.lang-current:hover { background: rgba(31,42,54,0.05); border-color: rgba(31,42,54,0.3); }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--paper);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(31,42,54,0.14);
  padding: 6px;
  min-width: 150px;
  flex-direction: column;
  gap: 2px;
  z-index: 300;
}
.lang-switcher.is-open .lang-menu { display: flex; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s;
}
.lang-option:hover { background: rgba(31,42,54,0.06); }
.lang-option--active {
  background: rgba(31,42,54,0.05);
  font-weight: 600;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 960px) {
  .lang-switcher { display: none; }
  .whatsapp-btn { bottom: 20px; right: 16px; width: 50px; height: 50px; }
}
/* Mobile lang links (panel nav) */
.nav-ml-btn, a.nav-ml-btn {
  text-decoration: none;
  color: inherit;
}

/* ---------- 18. Carte des gîtes ---------- */
.map-section {
  padding: 100px 0;
  position: relative;
}
.map-section .section-head {
  margin-bottom: 48px;
}
.gites-map {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  z-index: 1;
  border: 1px solid rgba(16, 40, 73, 0.08);
}
.gites-map--compact {
  height: 320px;
  border-radius: var(--radius-lg);
}

/* Bandeau d'aide sous la carte */
.map-help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding: 28px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.map-help__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--cream);
}
.map-help__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bleu-facade-pale);
  color: var(--bleu-logo);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.map-help__icon svg {
  width: 20px;
  height: 20px;
}
.map-help__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-help__item strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  display: block;
}
.map-help__text span {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .map-help { grid-template-columns: 1fr; }
}

/* Marker custom */
.gite-marker {
  background: transparent !important;
  border: none !important;
}
.gite-marker svg {
  transition: transform 0.2s ease;
  cursor: pointer;
}
.gite-marker:hover svg {
  transform: translateY(-3px) scale(1.05);
}

/* Override Leaflet popup pour matcher la charte */
.leaflet-popup-content-wrapper {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  padding: 0;
  overflow: hidden;
}
.leaflet-popup-content {
  margin: 0;
  width: auto !important;
  min-width: 240px;
}
.leaflet-popup-tip {
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.leaflet-popup-close-button {
  color: var(--ink) !important;
  font-size: 22px !important;
  padding: 8px 10px !important;
  z-index: 10;
}

.map-popup {
  font-family: var(--font-body);
}
.map-popup__photo {
  width: 100%;
  height: 130px;
  background-size: cover;
  background-position: center;
  background-color: var(--bleu-facade-pale);
}
.map-popup__body {
  padding: 16px 18px 18px;
}
.map-popup__tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bleu-logo);
  display: block;
  margin-bottom: 4px;
}
.map-popup h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.2;
}
.map-popup__meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.map-popup__link {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bleu-logo) !important;
  color: #fff !important;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s;
}
.map-popup__link:hover {
  background: var(--bleu-logo-dark) !important;
  color: #fff !important;
}

/* Attribution Leaflet plus discret */
.leaflet-control-attribution {
  background: rgba(244, 237, 224, 0.85) !important;
  font-size: 10px !important;
  padding: 2px 6px !important;
}
.leaflet-control-attribution a {
  color: var(--ink-soft) !important;
}

/* Zoom Leaflet aux couleurs de la charte */
.leaflet-bar a {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border-color: rgba(16, 40, 73, 0.1) !important;
}
.leaflet-bar a:hover {
  background: var(--cream-deep) !important;
}

/* ---------- Pages légales (mentions, CGV, confidentialité) ---------- */
.legal-hero {
  padding: 140px 0 40px;
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.legal-hero p {
  color: var(--ink-muted);
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0 100px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.2em;
  margin-bottom: 0.6em;
  color: var(--bleu-logo-dark);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--ink-soft);
}
.legal-content ul {
  padding-left: 1.3em;
  margin: 0 0 1em;
}
.legal-content li { margin-bottom: 0.45em; }
.legal-content a { color: var(--bleu-logo); text-decoration: underline; }
.legal-content strong { color: var(--ink); }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0 1.5em;
  font-size: 0.95rem;
}
.legal-content table th, .legal-content table td {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(16, 40, 73, 0.12);
}
.legal-content table th { color: var(--ink); font-weight: 600; }

/* ---------- Section FAQ ---------- */
.faq-section { padding: 80px 0; }
.faq-section .section-head { margin-bottom: 40px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(16, 40, 73, 0.12); }
.faq-item:first-child { border-top: 1px solid rgba(16, 40, 73, 0.12); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  color: var(--bleu-logo);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 20px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 680px;
}
@media (max-width: 640px) {
  .faq-item summary { font-size: 0.97rem; padding: 16px 0; }
  .faq-answer { font-size: 0.95rem; }
}

/* ---------- Bandeau cookies RGPD ---------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--bleu-nuit);
  color: var(--cream);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
#cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(244, 237, 224, 0.85);
  margin: 0;
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--bleu-facade);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn--sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}
@media (max-width: 640px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; text-align: center; }
}

/* ---------- Liens croisés entre gîtes ---------- */
.crosslinks-section { padding: 80px 0; }
.crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.crosslink-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.crosslink-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.crosslink-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.crosslink-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.crosslink-card:hover .crosslink-card__img img {
  transform: scale(1.04);
}
.crosslink-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.crosslink-card__body strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}
.crosslink-card__cap {
  font-size: 0.82rem;
  color: var(--bleu-logo);
  font-weight: 600;
}
.crosslink-card__tag {
  font-size: 0.8rem;
  color: var(--ink-muted);
}
@media (max-width: 720px) {
  .crosslinks-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (min-width: 721px) and (max-width: 960px) {
  .crosslinks-grid { grid-template-columns: repeat(2, 1fr); }
  .crosslink-card:last-child { display: none; }
}

/* ════════════════════════════════════════════════════════════
   Formulaire de réservation — pages gîtes (js/resa-form.js)
   ════════════════════════════════════════════════════════════ */
.resa-section {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-bottom: 80px;
  scroll-margin-top: 100px;
}
.resa-section__intro { margin-bottom: 32px; }
.resa-section__intro h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }
.resa-section__intro p  { color: var(--ink-soft); max-width: 540px; }
.resa-form .field { margin-bottom: 18px; }
.resa-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(31, 42, 54, 0.22);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  resize: vertical;
  min-height: 120px;
  width: 100%;
  box-sizing: border-box;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.resa-form textarea:focus { outline: none; border-color: var(--bleu-logo); box-shadow: 0 0 0 3px rgba(24, 88, 168, 0.12); }
.field-checkbox { flex-direction: row; align-items: flex-start; gap: 10px; margin-top: 4px; }
.field-checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--bleu-logo); }
.field-checkbox label { font-size: 0.83rem; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-soft); line-height: 1.5; }
.resa-success {
  display: none;
  padding: 22px;
  background: #e8f5e9;
  border-radius: 10px;
  color: #2e7d32;
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

/* ── Flatpickr — thème site ── */
.flatpickr-calendar { font-family: var(--font-body) !important; border-radius: 12px !important; box-shadow: var(--shadow-card) !important; border: 1px solid rgba(31,42,54,0.12) !important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover, .flatpickr-day.startRange, .flatpickr-day.endRange { background: var(--bleu-logo) !important; border-color: var(--bleu-logo) !important; color: #fff !important; }
.flatpickr-day:hover:not(.flatpickr-disabled):not(.selected) { background: var(--cream-deep) !important; }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover { color: rgba(31,42,54,0.25) !important; background: transparent !important; text-decoration: none !important; cursor: default !important; }
.flatpickr-day.is-booked, .flatpickr-day.is-booked:hover { background: rgba(198,53,53,0.09) !important; color: rgba(198,53,53,0.45) !important; text-decoration: line-through !important; cursor: not-allowed !important; }
.flatpickr-day.today:not(.selected) { border-color: var(--bleu-logo) !important; }
.flatpickr-months .flatpickr-month, .flatpickr-weekdays { background: var(--bleu-logo) !important; }
.flatpickr-current-month, .flatpickr-current-month input.cur-year, .flatpickr-current-month .flatpickr-monthDropdown-months { color: #fff !important; }
span.flatpickr-weekday { color: rgba(255,255,255,0.85) !important; background: var(--bleu-logo) !important; }
.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg { fill: #fff !important; }
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg { fill: rgba(255,255,255,0.7) !important; }

@media (max-width: 640px) {
  .resa-section { padding: 28px 18px; }
}

/* Accessibilité — texte visible uniquement pour les lecteurs d'écran et les moteurs */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.footer-nav__heading { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 12px; margin-top: 0; }

/* ════════════════════════════════════════════════════════════
   Grilles responsives — pages intérieures
   ════════════════════════════════════════════════════════════ */

/* 2 colonnes → 1 colonne sur mobile */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* 2 colonnes, align-items: start (texte vs texte) */
.grid-2col-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
/* 3 colonnes → 1 colonne sur mobile */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* 4 colonnes stats → 2 col tablette, 1 col mobile */
.grid-4col-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* 2 colonnes gap réduit (photos, teambuilding) */
.grid-2col-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/* Image héro pleine largeur avec hauteur adaptative */
.img-hero-full {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .grid-2col     { grid-template-columns: 1fr; gap: 36px; }
  .grid-2col-top { grid-template-columns: 1fr; gap: 32px; }
  .grid-2col-sm  { grid-template-columns: 1fr; gap: 16px; }
  .grid-3col     { grid-template-columns: 1fr; gap: 16px; }
  .grid-4col-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .img-hero-full { height: 260px !important; }
}
@media (max-width: 480px) {
  .grid-4col-stats { grid-template-columns: 1fr 1fr; }
  .grid-3col { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   Mobile — Carte Leaflet + calendrier disponibilités
   ════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .gites-map { height: 280px !important; }
}
/* ════════════════════════════════════════════════════════════
   Mobile — Carte pleine largeur + map-help colonne unique
   ════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .map-section { overflow: hidden; }
  .map-section .gites-map {
    margin-left: -28px;
    margin-right: -28px;
    width: calc(100% + 56px);
    border-radius: 0;
  }
  .map-help { grid-template-columns: 1fr; gap: 10px; padding: 16px; }
}
@media (max-width: 400px) {
  .map-section .gites-map {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
}

/* ════════════════════════════════════════════════════════════
   Mobile — Formulaire contact padding réduit
   ════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .contact-form { padding: 20px !important; }
}

/* ════════════════════════════════════════════════════════════
   Section Newsletter
   ════════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--bleu-nuit, #102848);
  color: #fff;
  padding: 64px 0;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter .eyebrow {
  color: rgba(255,255,255,0.55);
}
.newsletter h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #fff;
  margin: 8px 0 12px;
}
.newsletter p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.65;
}
.newsletter__fields {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.newsletter__fields input[type="email"] {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--radius-md, 10px);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter__fields input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.newsletter__fields input[type="email"]:focus { border-color: rgba(255,255,255,0.5); }
.newsletter__fields .btn--primary {
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter__rgpd {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.newsletter__rgpd a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.newsletter__msg {
  margin-top: 10px;
  font-size: 0.9rem;
  display: none; /* affiché uniquement par JS après soumission */
}
.newsletter__msg--success { color: #7ee8a2; }
.newsletter__msg--error   { color: #ff8a8a; }

@media (max-width: 860px) {
  .newsletter__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .newsletter__fields { flex-direction: column; }
  .newsletter__fields .btn--primary { width: 100%; text-align: center; }
}

/* ====== UX — Notes sur les cartes gîtes ====== */
.gite-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  margin: 4px 0 10px;
}
.gite-card__rating .card-stars { color: var(--or); font-size: 0.72rem; letter-spacing: 1px; }
.gite-card__rating .card-score { font-weight: 700; color: var(--ink); }
.gite-card__rating .card-count { color: var(--ink-soft); }

/* ====== UX — Hero mobile : postcard desktop masquée, slider actif ====== */
/* hero__visual déjà masqué par display:none plus haut — rien à faire ici */

/* ====== UX — CTA mobile fixe en bas des pages gîtes ====== */
.mobile-book-bar {
  display: none;
}
@media (max-width: 720px) {
  .mobile-book-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid rgba(31,42,54,0.12);
    padding: 10px 16px 14px;
    justify-content: center;
    z-index: 300;
    box-shadow: 0 -4px 20px rgba(16,40,73,0.1);
  }
  .mobile-book-bar__cta {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  /* Décaler le bouton WhatsApp pour qu'il ne soit pas masqué par la barre */
  .whatsapp-btn { bottom: 80px; }
  /* Décaler le bouton retour en haut au-dessus du WhatsApp */
  .scroll-top-btn { bottom: 142px; }
  /* Ajouter de l'espace en bas pour ne pas cacher le contenu */
  body:has(.mobile-book-bar) { padding-bottom: 72px; }
}

/* ====== UX — Témoignages sur la page listing ====== */
.listing-testimonials {
  padding: 80px 0;
  background: var(--paper);
}
.listing-testimonials .section-head { margin-bottom: 48px; }
.listing-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.listing-testi__card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.listing-testi__stars { color: var(--or); font-size: 0.85rem; letter-spacing: 2px; }
.listing-testi__quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}
.listing-testi__quote strong { color: var(--ink); }
.listing-testi__author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}
.listing-testi__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bleu-logo);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.listing-testi__name { font-weight: 600; color: var(--ink); }
.listing-testi__gite { color: var(--ink-soft); }
.listing-testi__global {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.listing-testi__global strong { color: var(--ink); font-size: 1.05rem; }
@media (max-width: 860px) {
  .listing-testi__grid { grid-template-columns: 1fr; gap: 16px; }
  .listing-testimonials { padding: 48px 0; }
}

/* ═══════════════════════════════════════════════════
   Mobile hero slider — index.html — visible ≤ 720px
═══════════════════════════════════════════════════ */
.hero__mob-slider { display: none; }

@media (max-width: 720px) {
  .hero__mob-slider {
    display: block;
    margin-top: 10px;
  }
  .hero__mob-viewport {
    overflow: hidden;
    border-radius: 16px;
  }
  .hero__mob-track {
    display: flex;
    width: 400%;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .hero__mob-slide {
    position: relative;
    width: 25%;
    flex-shrink: 0;
    display: block;
    text-decoration: none;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  .hero__mob-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .hero__mob-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 44px 18px 16px;
    background: linear-gradient(to top, rgba(16,40,73,0.72) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .hero__mob-name {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .hero__mob-sub {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    letter-spacing: 0.01em;
  }
  .hero__mob-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
  }
  .hero__mob-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(16,40,73,0.18);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
    touch-action: manipulation;
  }
  .hero__mob-dot.is-active {
    background: var(--bleu-logo);
    transform: scale(1.4);
  }
}

/* Trust'Home badge — mobile */
@media (max-width: 600px) {
  .trusthome-badge { padding: 8px 16px 8px 8px; gap: 10px; }
  .trusthome-badge__logo { width: 36px; height: 43px; }
  .trusthome-badge__score { font-size: 0.9rem; }
  .section-head__trust { margin-top: 16px; }
}

/* ====== Mobile — cacher le bouton retour en haut ====== */
@media (max-width: 960px) {
  .scroll-top-btn { display: none !important; }
}

/* ====== Blog ====== */
.blog-hero {
  background: linear-gradient(135deg, var(--bleu-logo) 0%, #1a3a5c 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.blog-hero h1 { color: #fff; margin-bottom: 12px; }
.blog-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 560px; margin: 0 auto; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  padding: 64px 0;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.blog-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

/* Image mise en avant dans les articles */
.article-featured-img {
  margin: 0 0 40px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.article-featured-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .blog-card__img { height: 180px; }
  .article-featured-img img { height: 220px; }
}
.blog-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bleu-logo);
  background: rgba(30,74,130,0.08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 10px;
}
.blog-card__excerpt { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.blog-card__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--sand);
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.article-hero {
  background: linear-gradient(135deg, var(--bleu-logo) 0%, #1a3a5c 100%);
  color: #fff;
  padding: 72px 0 56px;
}
.article-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.article-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.article-breadcrumb a:hover { color: #fff; }
.article-breadcrumb span { margin: 0 8px; }
.article-hero h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 0 0 16px; max-width: 760px; }
.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.article-meta .blog-category { background: rgba(255,255,255,0.15); color: #fff; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--bleu-logo);
  margin: 52px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sand);
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 32px 0 12px;
}
.article-body p { margin: 0 0 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--bleu-logo); text-decoration: underline; text-decoration-color: rgba(30,74,130,0.3); }
.article-body a:hover { text-decoration-color: var(--bleu-logo); }
.article-cta-box {
  background: linear-gradient(135deg, var(--bleu-logo) 0%, var(--bleu-logo-dark) 100%);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 56px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px -8px rgba(24,88,168,0.35);
}
/* Cercle décoratif en fond */
.article-cta-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.article-cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.article-cta-box h3 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  position: relative;
}
.article-cta-box p {
  margin: 0 0 24px;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  line-height: 1.65;
  position: relative;
}
.article-cta-box .cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
/* Bouton primaire inversé (blanc sur bleu) */
.article-cta-box .btn--primary {
  background: #fff;
  color: var(--bleu-logo);
  font-weight: 600;
  text-decoration: none !important;
}
.article-cta-box .btn--primary:hover {
  background: var(--cream);
  color: var(--bleu-logo-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}
/* Bouton ghost visible sur fond bleu */
.article-cta-box .btn--ghost {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  text-decoration: none !important;
}
.article-cta-box .btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
/* Fallback si les boutons sont des <a> directs (pas dans .cta-buttons) */
.article-cta-box > .btn--primary,
.article-cta-box > .btn--ghost { text-decoration: none !important; }
@media (max-width: 600px) {
  .article-cta-box { padding: 28px 24px; }
  .article-cta-box .cta-buttons { flex-direction: column; }
  .article-cta-box .btn { text-align: center; }
}
.article-related { background: var(--sand); padding: 56px 0; }
.article-related h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bleu-logo);
  margin: 0 0 32px;
  text-align: center;
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
  .article-body { padding: 36px 16px 56px; font-size: 1rem; }
  .article-hero { padding: 48px 0 40px; }
}

/* ====== Footer accordion mobile ====== */
@media (max-width: 720px) {
  .footer-col { border-top: 1px solid rgba(246,239,227,0.1); }
  .footer-nav__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 14px 0;
    margin-bottom: 0;
    user-select: none;
  }
  .footer-nav__heading::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(246,239,227,0.5);
    transition: transform 0.25s;
    flex-shrink: 0;
  }
  .footer-col.is-expanded .footer-nav__heading::after {
    transform: rotate(45deg);
  }
  .footer-col ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin: 0;
  }
  .footer-col.is-expanded ul {
    max-height: 300px;
    margin-bottom: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════
   BLOG — Byline auteur + Sources GEO
   ═══════════════════════════════════════════════════════════ */
.article-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
}
.article-byline__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.article-sources {
  background: var(--paper);
  border-left: 3px solid var(--bleu-logo);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 40px 0 24px;
}
.article-sources h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-weight: 600;
}
.article-sources ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-sources li {
  margin-bottom: 6px;
  font-size: 0.88rem;
}
.article-sources a {
  color: var(--bleu-logo);
  text-decoration: none;
}
.article-sources a:hover {
  text-decoration: underline;
}
