/* =========================================================
   LES CLÉS DU CLOS - Direction « Le Trousseau »
   Palette ivoire / ocre doré / lie-de-vin - premium confidentiel
   Trame livrée pour reprise dans Cursor.
   ========================================================= */

/* ---------- 1. VARIABLES ---------- */
:root {
  --ivoire:      #F4EEE4;  /* fond dominant */
  --ivoire-warm: #EDE4D5;
  --ocre:        #C0895A;  /* accent (logo) */
  --ocre-dark:   #A06E42;
  --bordeaux:    #5A2231;  /* ponctuation lie-de-vin */
  --encre:       #2A2622;  /* texte */
  --encre-soft:  #6A6158;

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body:    "Switzer", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1320px;
  --pad:  clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--encre);
  background: var(--ivoire);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain papier discret sur tout le fond */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--ocre);
  outline-offset: 4px;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 10000;
  padding: 10px 16px; background: var(--encre); color: var(--ivoire);
  transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  color: var(--ocre-dark);
  font-weight: 500;
}

.section-title { font-size: clamp(40px, 6vw, 84px); color: var(--encre); }
.section-title em { color: var(--ocre); }

/* ---------- 3. BOUTONS & LIENS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-body);
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 2px;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease), transform .3s var(--ease);
  will-change: transform;
}
.btn--solid { background: var(--encre); color: var(--ivoire); }
.btn--solid:hover { background: var(--ocre); }
.btn--ghost { border: 1px solid rgba(42,38,34,.35); color: var(--encre); }
.btn--ghost:hover { border-color: var(--ocre); color: var(--ocre-dark); }
.btn--line { border: 1px solid var(--ocre); color: var(--ocre-dark); }
.btn--line:hover { background: var(--ocre); color: var(--ivoire); }
.btn--nav { padding: 12px 22px; background: transparent; border: 1px solid rgba(42,38,34,.3); }
.btn--nav:hover { background: var(--encre); color: var(--ivoire); border-color: var(--encre); }

/* ---------- 4. CURSEUR CUSTOM ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ocre);
  pointer-events: none; transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease);
  mix-blend-mode: multiply;
}
.cursor__label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ivoire); opacity: 0; white-space: nowrap; font-family: var(--ff-body);
}
.cursor--active { width: 84px; height: 84px; background: var(--bordeaux); }
.cursor--active .cursor__label { opacity: 1; transition: opacity .3s .1s; }
@media (hover: none) { .cursor { display: none; } }

/* ---------- 5. NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav--scrolled {
  padding: 12px var(--pad);
  background: rgba(244,238,228,.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(42,38,34,.08);
}
.nav--menu-open {
  background: rgba(244,238,228,.98);
  backdrop-filter: blur(10px);
}
.nav__logo img { height: 50px; width: auto; transition: filter .4s var(--ease); }
.nav--scrolled .nav__logo img, .nav--menu-open .nav__logo img { filter: brightness(0) saturate(100%); }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: .9rem; letter-spacing: .09em; text-transform: uppercase; color: var(--encre);
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--ocre); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__toggle, .nav__mobile { display: none; }

/* ---------- 6. HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  /* padding-top réserve l'espace de la nav : le titre ne la recouvre jamais */
  padding: 130px var(--pad) clamp(48px, 8vh, 96px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: -8% 0 0 0; z-index: -2; }
.hero__bg img { width: 100%; height: 116%; object-fit: cover; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(24,21,18,.72) 0%, rgba(24,21,18,.48) 34%, rgba(24,21,18,.12) 62%, transparent 78%),
    linear-gradient(0deg, rgba(24,21,18,.28) 0%, transparent 42%);
}
.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__title {
  font-size: clamp(38px, 5.8vw, 80px);
  margin: 18px 0 24px; color: var(--ivoire);
}
.hero__title span, .hero__title em { display: block; }
.hero__title em { color: var(--ocre); }
.hero__sub { max-width: 520px; font-size: 1.05rem; color: rgba(255,255,255,.88); }
.hero .eyebrow { color: rgba(255,255,255,.78); }
.hero .btn--ghost { border-color: rgba(255,255,255,.55); color: var(--ivoire); }
.hero .btn--ghost:hover { border-color: var(--ocre); color: var(--ocre); }
.hero__actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

/* Motif serrure - signature, en haut à droite */
.keyhole {
  position: absolute; z-index: 1;
  top: clamp(90px, 16vh, 180px); right: var(--pad);
  width: clamp(70px, 9vw, 130px); height: auto;
}
.keyhole__line {
  stroke: var(--ocre); stroke-width: 1.4; fill: none;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.keyhole--drawn .keyhole__line { stroke-dashoffset: 0; }

.hero__scroll {
  position: absolute; bottom: 26px; right: var(--pad); z-index: 2;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--encre-soft); display: flex; align-items: center; gap: 10px;
}
.hero__scroll span { width: 40px; height: 1px; background: var(--encre-soft); position: relative; overflow: hidden; }
.hero__scroll span::after {
  content: ""; position: absolute; inset: 0; background: var(--ocre);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { 0%{transform:translateX(-100%)} 60%,100%{transform:translateX(100%)} }

/* ---------- 7. MANIFESTE (split asymétrique + rupture) ---------- */
.manifeste {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 30% 1fr; gap: clamp(30px, 6vw, 90px);
  align-items: start;
  max-width: var(--maxw); margin: clamp(90px, 14vh, 180px) auto;
  padding: 0 var(--pad);
}
.manifeste__mark { position: relative; }
.manifeste__mark img { width: 100%; max-width: 240px; opacity: .9; }
.manifeste__text { max-width: 640px; }
.manifeste .lead { font-family: var(--ff-display); font-size: clamp(24px, 3vw, 40px); line-height: 1.25; margin-bottom: 28px; }
.manifeste p:not(.lead) { color: var(--encre-soft); font-size: 1.05rem; }
.dropcap {
  float: left; font-family: var(--ff-display); font-size: 5.2rem; line-height: .82;
  padding: 6px 14px 0 0; color: var(--ocre);
}

/* ---------- 8. COLLECTION - 7 biens, traitement identique ---------- */
.collection { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(80px,12vh,140px); }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 7vh, 90px); }
.section-head .section-title { margin: 14px 0 18px; }
.section-intro { color: var(--encre-soft); font-size: 1.05rem; }

.biens { display: flex; flex-direction: column; gap: clamp(120px, 18vh, 220px); }

/* Carte bien : split asymétrique, alternance gauche/droite.
   La photo occupe TOUJOURS la colonne large (1.15fr) : tous les biens
   ont des visuels de taille identique, seul le côté alterne. */
.bien {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 4vw, 64px); align-items: center;
}
.bien:nth-child(even) { grid-template-columns: .85fr 1.15fr; }
.bien:nth-child(even) .bien__media { order: 2; }
.bien:nth-child(even) .bien__body  { order: 1; }

.bien__media { position: relative; overflow: hidden; border-radius: 2px; }
/* Volet de reveal au scroll (glisse pour dévoiler la galerie) */
.bien__media::after {
  content: ""; position: absolute; inset: 0; z-index: 5; background: var(--ivoire);
  transform: scaleX(0); transform-origin: right;
  transition: transform 1s var(--ease); pointer-events: none;
}
.js-ready .bien__media::after { transform: scaleX(1); }
.reveal-img.is-visible::after { transform: scaleX(0); }

.bien__body { max-width: 520px; }
.bien:nth-child(even) .bien__body { justify-self: end; }
.bien__idx {
  display: block; font-family: var(--ff-display); font-style: italic;
  font-size: clamp(34px, 4vw, 56px); color: var(--ocre); margin-bottom: 10px;
}
.bien__place { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ocre-dark); margin-bottom: 12px; }
.bien__name { font-size: clamp(28px, 3.2vw, 46px); margin-bottom: 8px; }
.bien__name em { color: var(--ocre); font-size: .7em; }
.bien__type { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--encre-soft); margin-bottom: 20px; }
.bien__desc { color: var(--encre-soft); margin-bottom: 28px; }

/* ---------- 8b. SLIDER (1 à 10 photos par bien) ---------- */
.slider { position: relative; background: var(--ivoire-warm); }
.slider__track {
  display: flex;
  transition: transform .8s var(--ease);
  will-change: transform;
}
.slider__slide { flex: 0 0 100%; aspect-ratio: 3/2; overflow: hidden; }
.slider__slide img { width: 100%; height: 100%; object-fit: cover; }

.slider__ui {
  position: absolute; z-index: 6; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(180deg, transparent, rgba(42,38,34,.35));
}
.slider__btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(244,238,228,.6); background: rgba(42,38,34,.25);
  color: var(--ivoire); font-size: 1rem; cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .3s var(--ease);
}
.slider__btn:hover { background: var(--ocre); border-color: var(--ocre); }
.slider__count {
  font-size: .72rem; letter-spacing: .2em; color: var(--ivoire);
  font-family: var(--ff-body); text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
/* À 1 seule photo, le JS masque l'UI (classe posée automatiquement) */
.slider--single .slider__ui { display: none; }

/* ---------- 9. EXPÉRIENCE (bento) ---------- */
.experience { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px,10vh,120px) var(--pad); }
.experience__head { margin-bottom: clamp(34px, 6vh, 64px); }
.experience__head .section-title { margin-top: 12px; }
.experience__head em { color: var(--ocre); }
.bento {
  display: grid; gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
}
.bento__cell {
  border: 1px solid rgba(42,38,34,.14); border-radius: 3px;
  padding: 28px; display: flex; flex-direction: column; justify-content: space-between;
  transition: background .5s var(--ease), color .5s var(--ease), transform .5s var(--ease);
}
.bento__cell:hover { background: var(--encre); color: var(--ivoire); transform: translateY(-4px); }
.bento__cell:hover p { color: rgba(244,238,228,.8); }
/* Filet éditorial */
.bento__mark {
  width: 42px;
  height: 1px;
  background: var(--ocre);
  transition: width .5s var(--ease), background .4s var(--ease);
}
.bento__cell:hover .bento__mark { width: 72px; background: #EBCBA6; }
.bento__cell h3 { font-size: 1.5rem; margin: 14px 0 8px; }
.bento__cell p { font-size: .92rem; color: var(--encre-soft); }
/* tailles variées (bento) */
.bento__cell--a { grid-column: span 2; }
.bento__cell--b { grid-column: span 2; }
.bento__cell--c { grid-column: span 2; }
.bento__cell--d { grid-column: span 2; }

/* ---------- 10. TERRITOIRE (parallax pleine largeur) ---------- */
.territoire { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.territoire__media { position: absolute; inset: -12% 0; z-index: -1; }
.territoire__media img { width: 100%; height: 124%; object-fit: cover; }
/* Scrim sombre : garantit la lisibilité du texte blanc sur la photo */
.territoire::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(30,26,22,.72) 0%, rgba(30,26,22,.45) 55%, rgba(30,26,22,.2) 100%);
}
.territoire__overlay { position: relative; z-index: 1; }
.territoire__overlay {
  max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 var(--pad);
  color: var(--ivoire);
}
.territoire__overlay blockquote {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(28px, 4.5vw, 66px); line-height: 1.15; max-width: 900px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
/* ---------- 11. PROPRIÉTAIRES ---------- */
.proprietaires { background: var(--encre); color: var(--ivoire); }
.proprietaires__grid {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(70px,12vh,140px) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); align-items: center;
}
.proprietaires .section-title { color: var(--ivoire); }
.proprietaires .section-title em { color: var(--ocre); }
.proprietaires__intro p { color: rgba(244,238,228,.72); margin: 24px 0 32px; max-width: 460px; }
.services { list-style: none; counter-reset: s; }
.services li {
  display: flex; align-items: baseline; gap: 20px;
  padding: 22px 0; border-top: 1px solid rgba(244,238,228,.16);
  font-family: var(--ff-display); font-size: clamp(20px, 2.2vw, 30px);
}
.services li:last-child { border-bottom: 1px solid rgba(244,238,228,.16); }
.services li span { font-style: italic; font-size: .8rem; color: var(--ocre); font-family: var(--ff-body); letter-spacing: .1em; min-width: 24px; }

/* ---------- 12. CONTACT ---------- */
.contact { background: var(--ivoire); }
.contact__inner {
  max-width: 900px; margin: 0 auto; padding: clamp(80px,14vh,160px) var(--pad);
  text-align: center;
}
.contact__logo {
  width: 320px; margin: 0 auto 30px;
}
.contact__title { font-size: clamp(40px, 6.5vw, 96px); margin-bottom: 24px; }
.contact__line { color: var(--encre-soft); font-size: 1.1rem; max-width: 560px; margin: 0 auto 38px; }
.contact__line strong { color: var(--ocre-dark); font-weight: 500; }
.contact__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- 13. FOOTER ---------- */
.footer {
  background: var(--encre); color: rgba(244,238,228,.7);
  padding: clamp(40px,7vh,70px) var(--pad);
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; text-align: center;
}
.footer__brand img { display: block; width: auto; height: 60px; margin: 0 auto; }
.footer__contact {
  display: flex; flex-direction: column; gap: 8px;
  font-style: normal; font-size: .92rem; line-height: 1.6;
}
.footer__coordinates { display: flex; justify-content: center; align-items: center; gap: 0; }
.footer__coordinates > span { margin: 0 12px; color: rgba(244,238,228,.45); }
.footer__contact a, .footer__socials a { transition: color .3s var(--ease); }
.footer__contact a:hover, .footer__socials a:hover { color: var(--ocre); }
.footer__socials { display: flex; gap: 22px; }
.footer__socials a { display: grid; place-items: center; color: var(--ivoire); }
.footer__socials svg { width: 23px; height: 23px; fill: currentColor; }
.footer__socials rect, .footer__socials circle {
  fill: none; stroke: currentColor; stroke-width: 1.8;
}
.footer__socials .social-dot { fill: currentColor; stroke: none; }
.footer__bottom {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  width: 100%; padding-top: 24px; border-top: 1px solid rgba(244,238,228,.12);
  font-size: .74rem; letter-spacing: .06em;
}
.footer__legal {
  font: inherit; color: inherit; background: none; border: 0; cursor: pointer;
}
.footer__bottom a, .footer__legal { transition: color .3s var(--ease); }
.footer__bottom a:hover, .footer__legal:hover { color: var(--ocre); }
.footer__bottom > span { color: rgba(244,238,228,.35); }

/* ---------- MENTIONS LÉGALES ---------- */
.legal-modal {
  width: calc(100% - 48px); max-width: 860px;
  max-height: 88vh; margin: auto;
  padding: 0; border: 0; border-radius: 2px;
  color: var(--encre); background: var(--ivoire);
  box-shadow: 0 24px 80px rgba(20,17,14,.35);
  overflow: hidden;
}
.legal-modal::backdrop {
  background: rgba(20,17,14,.72);
  backdrop-filter: blur(4px);
}
.legal-modal__inner {
  display: flex; flex-direction: column;
  max-height: 88vh; padding: clamp(28px, 5vw, 52px);
}
.legal-modal__header {
  flex: 0 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 30px; padding-bottom: 24px; border-bottom: 1px solid rgba(42,38,34,.14);
}
.legal-modal__header h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1; }
.legal-modal__close {
  flex: 0 0 auto; width: 42px; height: 42px;
  border: 1px solid rgba(42,38,34,.2); background: transparent;
  color: var(--encre); font-size: 1.8rem; line-height: 1; cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.legal-modal__close:hover { border-color: var(--ocre); color: var(--ocre-dark); }
.legal-modal__content {
  overflow-y: auto; padding: 30px 18px 4px 0;
  scrollbar-color: var(--ocre) transparent;
  scrollbar-width: thin;
}
.legal-modal__content section + section { margin-top: 32px; }
.legal-modal__content h3 {
  margin-bottom: 10px; font-family: var(--ff-body); font-size: .72rem;
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ocre-dark);
}
.legal-modal__content p, .legal-modal__content address {
  font-size: .98rem; line-height: 1.75; color: var(--encre-soft);
}
.legal-modal__content p + p { margin-top: 12px; }
.legal-modal__content address { font-style: normal; }
.legal-modal__content a {
  color: var(--encre); text-decoration: underline;
  text-decoration-color: rgba(192,137,90,.55); text-underline-offset: 3px;
}

/* ---------- 14. REVEAL (scroll animations) ---------- */
.js-ready [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.js-ready .reveal-scope > * { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scope.is-visible > * { opacity: 1; transform: none; }
.reveal-scope.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-scope.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-scope.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-scope.is-visible > *:nth-child(5) { transition-delay: .32s; }

/* ---------- 15. RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 42px; height: 42px; margin-left: auto;
    border: 0; background: transparent; color: var(--encre); cursor: pointer;
  }
  .nav__toggle + .btn--nav { margin-left: 12px; }
  .nav__toggle span {
    width: 24px; height: 1px; margin: 0 auto; background: currentColor;
    transition: transform .35s var(--ease);
  }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav__mobile {
    position: absolute; top: 100%; left: 0; width: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 0;
    padding: 18px var(--pad) 24px; background: rgba(244,238,228,.98);
    border-top: 1px solid rgba(42,38,34,.1);
    box-shadow: 0 16px 30px rgba(42,38,34,.08);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s var(--ease), visibility .3s, transform .3s var(--ease);
  }
  .nav__mobile.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__mobile a {
    width: 100%; padding: 11px 0; text-align: center;
    font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  }
  .manifeste { grid-template-columns: 1fr; }
  .manifeste__mark img { max-width: 150px; }
  .bien { grid-template-columns: 1fr; gap: 26px; }
  .bien:nth-child(even) { grid-template-columns: 1fr; }
  .bien:nth-child(even) .bien__media { order: 0; }
  .bien:nth-child(even) .bien__body  { order: 0; justify-self: start; }
  .bien__body { max-width: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell--a, .bento__cell--b, .bento__cell--c, .bento__cell--d { grid-column: span 1; }
  .proprietaires__grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav { padding: 14px var(--pad); }
  .nav--scrolled { padding: 10px var(--pad); }
  .nav__logo img { height: 34px; }
  .nav > .btn--nav { display: none; }
  .btn--nav { padding: 10px 12px; font-size: .68rem; }
  .hero { padding-bottom: 60px; }
  .bento { grid-template-columns: 1fr; }
  .slider__btn { width: 38px; height: 38px; }
  .footer__contact { font-size: .82rem; }
  .footer__coordinates > span { margin: 0 8px; }
  .legal-modal { width: calc(100% - 24px); }
  .legal-modal__inner { padding: 24px 20px; }
  .legal-modal__content { padding-right: 8px; }
  .hero__scroll { display: none; }
}

/* Accessibilité : réduction des animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], .reveal-scope > * { opacity: 1; transform: none; }
  .bien__media::after { display: none; }
  .keyhole__line { stroke-dashoffset: 0; }
}
