/* ===========================================================
   AnnecyVan — feuille de style
   Palette : lac (teal profond), pierre/sable, accent coucher de soleil
   =========================================================== */

:root {
  --lake-900: #06302f;
  --lake-800: #0b4441;
  --lake-700: #0f5c56;
  --lake-600: #16776e;
  --lake-100: #dbeeea;

  --sun-600: #c85f26;
  --sun-500: #e07a3f;
  --sun-100: #fdeee3;

  --ink: #16211f;
  --muted: #5c6b68;
  --line: #e2ddd3;
  --paper: #faf7f2;
  --paper-2: #f2ede4;
  --white: #ffffff;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(6, 48, 47, .06), 0 4px 12px rgba(6, 48, 47, .06);
  --shadow-md: 0 8px 30px rgba(6, 48, 47, .12);
  --maxw: 1160px;

  --ff-title: "Fraunces", "Iowan Old Style", Georgia, serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--ff-title);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }

p { margin: 0 0 1em; }

a { color: var(--lake-700); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

section { padding-block: clamp(60px, 8vw, 110px); }
section.tight { padding-block: clamp(40px, 5vw, 64px); }

.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lake-600);
  margin-bottom: 14px;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--sun-500); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--sun-600); box-shadow: var(--shadow-md); }

.btn-dark { background: var(--lake-800); color: #fff; }
.btn-dark:hover { background: var(--lake-900); }

.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn-outline { background: transparent; color: var(--lake-800); border-color: var(--line); }
.btn-outline:hover { border-color: var(--lake-700); background: var(--white); }

.btn-wa { background: #25d366; color: #08331b; }
.btn-wa:hover { background: #1fbe5a; }

.btn-block { width: 100%; justify-content: center; }

/* ---------- En-tête ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.02em;
  transition: color .3s ease;
}
.brand svg { flex: none; }
.brand b { font-weight: 600; }
.brand span { opacity: .75; font-weight: 400; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover { background: rgba(255,255,255,.14); color: #fff; }
.nav .btn { margin-left: 10px; padding: 11px 20px; }

.site-header.scrolled {
  background: rgba(250, 247, 242, .92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.site-header.scrolled .brand { color: var(--lake-900); }
.site-header.scrolled .brand span { color: var(--muted); }
.site-header.scrolled .nav a { color: var(--ink); }
.site-header.scrolled .nav a:hover { background: var(--paper-2); }
.site-header.scrolled .nav a.btn { color: #fff; }
.site-header.scrolled .burger span { background: var(--ink); }

.burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  padding: 11px 9px;
}
.burger span {
  display: block; height: 2px; border-radius: 2px;
  background: #fff; margin: 4px 0;
  transition: background .3s ease, transform .3s ease, opacity .3s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Héros ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 130px 0 56px;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  /* Deux voiles : un vertical pour l'en-tête et le bas, un latéral pour lire le texte
     par-dessus la carrosserie claire du van. */
  background:
    linear-gradient(100deg, rgba(6,48,47,.82) 0%, rgba(6,48,47,.48) 42%, rgba(6,48,47,.06) 72%),
    linear-gradient(190deg, rgba(6,48,47,.5) 0%, rgba(6,48,47,.18) 32%, rgba(6,48,47,.85) 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  font-size: .85rem; font-weight: 500;
  margin-bottom: 22px;
}
.hero h1 { max-width: 15ch; margin-bottom: .35em; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero-lead {
  max-width: 54ch;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.92);
  margin-bottom: 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-stats div strong {
  display: block;
  font-family: var(--ff-title);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
}
.hero-stats div span { font-size: .88rem; color: rgba(255,255,255,.72); }

/* ---------- Bandeau confiance ---------- */
.trust { background: var(--lake-900); color: rgba(255,255,255,.9); padding-block: 20px; }
.trust ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px;
  font-size: .93rem;
}
.trust li { display: flex; align-items: center; gap: 9px; }
.trust svg { flex: none; color: var(--sun-500); }

/* ---------- Grilles ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--paper-2);
  aspect-ratio: 4 / 3;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Cartes ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }

.icon-badge {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--lake-100);
  color: var(--lake-700);
  margin-bottom: 16px;
}

/* ---------- Spécifications ---------- */
.specs { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.specs li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: .97rem;
}
.specs li:last-child { border-bottom: 0; }
.specs dt, .specs .k { color: var(--muted); }
.specs .v { font-weight: 600; text-align: right; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.chips li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 500;
}
.chips svg { color: var(--lake-600); flex: none; }

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery button {
  padding: 0; border: 0; cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.gallery button:hover img { transform: scale(1.06); }
.gallery button:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery button:nth-child(6) { grid-column: span 2; }
@media (max-width: 780px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery button:nth-child(1) { grid-column: span 2; }
  .gallery button:nth-child(6) { grid-column: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6,48,47,.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: 10px; object-fit: contain; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid; place-items: center;
}
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Tarifs ---------- */
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.price-card.featured { border-color: var(--lake-700); border-width: 2px; box-shadow: var(--shadow-md); }
.price-card .tag {
  position: absolute; top: -13px; left: 30px;
  background: var(--lake-700); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
}
.price-card h3 { margin-bottom: 2px; }
.price-card .season { color: var(--muted); font-size: .9rem; margin-bottom: 18px; min-height: 3.4em; }
.price-card .amount { font-family: var(--ff-title); font-size: 2.9rem; font-weight: 600; line-height: 1; color: var(--lake-800); }
.price-card .amount small { font-family: var(--ff-body); font-size: .95rem; font-weight: 500; color: var(--muted); }
.price-card ul { list-style: none; margin: 20px 0 0; padding: 0; font-size: .94rem; }
.price-card ul li { padding: 7px 0 7px 26px; position: relative; color: var(--muted); }
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--lake-600); border-bottom: 2px solid var(--lake-600);
  transform: rotate(-45deg);
}

.notes { margin-top: 34px; display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.note {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: .92rem;
  color: var(--muted);
}
.note strong { display: block; color: var(--ink); font-size: .95rem; margin-bottom: 2px; }

/* ---------- Étapes ---------- */
.steps { counter-reset: step; display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step { position: relative; padding-top: 12px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--ff-title);
  font-size: 2.6rem;
  color: var(--lake-100);
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.step h3 { margin-bottom: .3em; }
.step p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Itinéraires ---------- */
.trip {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.trip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trip .thumb { aspect-ratio: 16 / 10; background: var(--paper-2); }
.trip .thumb img { width: 100%; height: 100%; object-fit: cover; }
.trip .body { padding: 22px; }
.trip .meta { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--sun-600); margin-bottom: 8px; }
.trip h3 { font-size: 1.15rem; margin-bottom: .3em; }
.trip p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- Avis ---------- */
.reviews { background: var(--lake-900); color: #fff; }
.reviews .section-head p { color: rgba(255,255,255,.75); }
.reviews .eyebrow { color: var(--sun-500); }
.review {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 26px;
}
.review .stars { color: var(--sun-500); letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-size: .99rem; color: rgba(255,255,255,.9); }
.review footer { font-size: .87rem; color: rgba(255,255,255,.6); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
}
.faq details[open] { border-color: var(--lake-600); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 30px 16px 0;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--lake-600);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); font-size: .96rem; padding-bottom: 14px; margin: 0; }

/* ---------- Contact / formulaire ---------- */
.contact { background: var(--paper-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-side .direct { display: grid; gap: 12px; margin: 28px 0; }
.contact-side .direct a {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease;
}
.contact-side .direct a:hover { border-color: var(--lake-600); transform: translateX(3px); }
.contact-side .direct span { display: block; font-size: .8rem; color: var(--muted); }
.contact-side .direct strong { font-size: 1rem; }

form.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: .97rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--lake-600);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .row2 { grid-template-columns: 1fr; } }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--muted); margin-bottom: 20px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; }

.estimate {
  background: var(--lake-100);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 20px;
  font-size: .93rem;
  color: var(--lake-900);
}
.estimate .top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.estimate .total { font-family: var(--ff-title); font-size: 1.9rem; font-weight: 600; }
.estimate .detail { color: var(--lake-800); opacity: .85; font-size: .86rem; margin-top: 6px; }
.estimate.warn { background: var(--sun-100); color: #7a3a12; }

.form-status { font-size: .93rem; margin-top: 14px; padding: 12px 14px; border-radius: 10px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--lake-100); color: var(--lake-900); }
.form-status.err { background: var(--sun-100); color: #8a3c12; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--lake-900); color: rgba(255,255,255,.7); padding-block: 56px 32px; font-size: .92rem; }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .85rem;
}

/* ---------- Barre mobile flottante ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 45;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; padding: 13px 12px; font-size: .93rem; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px 20px 22px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { color: var(--ink) !important; padding: 13px 12px; border-radius: 10px; }
  .nav .btn { margin: 8px 0 0; justify-content: center; color: #fff !important; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  html { scroll-padding-top: 90px; }
}

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

/* Apparition au scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Pages secondaires (mentions, conditions) ---------- */
.subpage { padding-top: 130px; }
.subpage .prose { max-width: 760px; }
.subpage .prose h2 { font-size: 1.5rem; margin-top: 2em; }
.subpage .prose h3 { font-size: 1.05rem; margin-top: 1.6em; }
.subpage .prose ul { color: var(--muted); padding-left: 20px; }
.subpage .prose li { margin-bottom: 6px; }
.subpage .prose .placeholder { background: var(--sun-100); color: #8a3c12; padding: 1px 7px; border-radius: 5px; font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; font-size: .93rem; margin-bottom: 28px; }

/* ---------- Photo principale + encart (section « Le van ») ---------- */
.media-pair { position: relative; margin-bottom: 44px; }
.media-inset {
  position: absolute;
  left: -28px;
  bottom: -44px;
  width: 46%;
  aspect-ratio: 4 / 3;
  border: 7px solid var(--paper);
  box-shadow: var(--shadow-md);
}
@media (max-width: 860px) {
  .media-pair { margin-bottom: 0; }
  .media-inset {
    position: static;
    width: 62%;
    margin: -46px 0 0 auto;
    border-color: var(--paper);
  }
}

/* ---------- Bandeau photo pleine largeur ---------- */
.band {
  position: relative;
  padding: 0;
  height: clamp(240px, 34vw, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 26%; }
.band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,48,47,.15) 0%, rgba(6,48,47,.15) 45%, rgba(6,48,47,.86) 100%);
}
.band .wrap { position: relative; z-index: 1; padding-bottom: 34px; }
.band p {
  margin: 0;
  max-width: 22ch;
  color: #fff;
  font-family: var(--ff-title);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}

/* ---------- Chiffres clés du propriétaire ---------- */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.facts .review { padding: 22px; }
.facts .review h3 { color: #fff; font-size: 1.5rem; margin-bottom: .1em; }
.facts .review p { margin: 0; font-size: .92rem; }
@media (max-width: 480px) { .facts { grid-template-columns: 1fr; } }
