/* ============================================================
   La Closerie de Manou — DA Minimaliste éditorial
   Palette « Pierre & montagne du Sancy » :
   neutres pierre/crème · signature vert mousse-lichen · secondaire prune/bruyère
   ============================================================ */

:root {
  --bg:          #EDE9E1;   /* crème pierre chaud */
  --surface:     #E3DDD1;   /* pierre plus profonde, pour alterner */
  --ink:         #262420;   /* presque-noir chaud */
  --ink-soft:    #6C665C;   /* gris-brun, texte secondaire */
  --accent:      #6E7A52;   /* vert mousse / lichen d'Auvergne — signature */
  --accent-deep: #545E3C;   /* hover de l'accent */
  --accent-2:    #82566B;   /* prune / bruyère — secondaire, parcimonie */
  --accent-soft: #DED6C6;   /* fond de bloc teinté clair */
  --bar:         #23261D;   /* vert-pierre très sombre : navbar sombre / footer */
  --bar-ink:     #EEEBE2;   /* texte sur fond sombre */
  --line:        rgba(38, 36, 32, .14);
  --line-light:  rgba(238, 235, 226, .16);

  --gutter:      clamp(20px, 4vw, 72px);
  --content-max: 1240px;
  --section-y:   clamp(72px, 11vw, 160px);

  --fs-display:  clamp(2.5rem, 6vw, 5rem);
  --fs-h2:       clamp(1.9rem, 4.2vw, 3.3rem);
  --fs-h3:       clamp(1.15rem, 1.8vw, 1.5rem);
  --fs-body:     clamp(1rem, 1.05vw, 1.125rem);
  --fs-label:    0.78rem;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
/* Lenis (smooth scroll) — pas de scroll-behavior:smooth pour éviter le double lissage */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: calc(var(--content-max) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--alt { background: var(--surface); }
.section--dark { background: var(--bar); color: var(--bar-ink); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

/* ---------- Type ---------- */
.eyebrow {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: #b7bd97; }
.eyebrow--alt { color: var(--accent-2); }

.h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.h2 em, .hero__title em { font-style: italic; color: var(--accent-deep); }
.h2--light { color: var(--bar-ink); }
.h2--light em { color: #b7bd97; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 48ch;
}

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
.btn--pill {
  padding: .6rem 1.3rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 30%, var(--surface));
  color: var(--ink);
}
.btn--pill:hover { background: color-mix(in srgb, var(--accent) 52%, var(--surface)); }
.btn--solid {
  padding: .9rem 1.7rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bar-ink);
}
.section--dark .btn--solid { background: var(--bar-ink); color: var(--ink); }
.btn--solid:hover { background: var(--accent-deep); color: #fff; }
.section--dark .btn--solid:hover { background: var(--accent); color: #fff; }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  color: var(--accent-deep);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .01em;
}
.link-arrow span { transition: transform .25s ease; }
.link-arrow:hover span { transform: translateX(5px); }
.link-arrow--light { color: #cdd2b0; }

.ph-inline { color: var(--accent-2); font-style: italic; }

/* ============ NAVBAR ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 90%, #fff);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav.is-scrolled { box-shadow: 0 1px 18px rgba(38, 36, 32, .07); }
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  height: 68px;
}
.nav__brand { display: inline-flex; align-items: center; gap: .55rem; }
.nav__mark { width: 24px; height: 24px; color: var(--accent-deep); flex: none; }
.nav__word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(.8rem, 2vw, 2rem);
}
.nav__links a {
  font-size: .93rem;
  color: var(--ink);
  position: relative;
  padding-block: .3rem;
  white-space: nowrap;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__end { display: flex; align-items: center; gap: .8rem; justify-self: end; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span {
  width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* mobile menu */
.menu {
  position: fixed;
  inset: 68px 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  z-index: 49;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
.menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.menu__links {
  display: flex;
  flex-direction: column;
  padding: var(--gutter);
  gap: 1.1rem;
}
.menu__links a { font-size: 1.15rem; font-family: var(--serif); }
.menu__cta { align-self: flex-start; font-family: var(--sans); margin-top: .5rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: min(90vh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  padding-block: clamp(48px, 9vw, 110px);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,24,18,.78) 0%, rgba(22,24,18,.35) 46%, rgba(22,24,18,.20) 100%);
}
.hero__inner { position: relative; }
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-display);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 16ch;
  margin-bottom: 1.3rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero__title em { color: #e7e9cd; }
.hero__lead {
  max-width: 54ch;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: rgba(255,255,255,.92);
  margin-bottom: 2rem;
}
.hero__cta { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.hero__cta .btn--solid { background: #fff; color: var(--ink); }
.hero__cta .btn--solid:hover { background: var(--accent); color: #fff; }
.hero__meta {
  position: relative;
  margin-top: clamp(28px, 5vw, 54px);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.8);
}

/* ============ BANDEAU PREUVE ============ */
.proof { background: var(--bar); color: var(--bar-ink); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-light);
  border-block: 1px solid var(--line-light);
  padding-block: 0;
}
.proof__item {
  background: var(--bar);
  padding: clamp(1.8rem, 3.5vw, 2.8rem) 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: center;
}
.proof__n {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  color: #fff;
}
.proof__l {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #a6ab89;
  max-width: 16ch;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ============ LA MAISON ============ */
.maison__lead { margin-block: 1.1rem; }
.maison__p { color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 52ch; }
.maison__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(150px, 22vh);
  gap: clamp(12px, 1.6vw, 18px);
}
.maison__img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.maison__img--a { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 16 / 9; height: auto; }

/* ============ SIMULATEUR ============ */
.sim { margin-top: clamp(36px, 5vw, 56px); }
.sim__grid {
  display: grid;
  grid-template-columns: 1fr 1fr .9fr;
  gap: clamp(20px, 2.5vw, 34px);
  align-items: start;
}
.sim__panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.4rem, 2.2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
}
.sim__step {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-deep);
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line);
}
.sim__step span { text-transform: none; letter-spacing: 0; color: var(--ink-soft); font-size: .85em; }
.sim__dates { gap: .9rem; }
.sim__nights {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  padding: .55rem 0;
}
.stepper { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.stepper__label {
  font-size: .8rem; letter-spacing: .04em; color: var(--ink-soft);
  text-transform: uppercase;
}
.stepper__ctrl { display: inline-flex; align-items: center; gap: .3rem; }
.stepper__btn {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.stepper__btn:hover { background: color-mix(in srgb, var(--accent) 22%, var(--surface)); border-color: var(--accent); }
.stepper__val { font-family: var(--serif); font-size: 1.5rem; min-width: 2ch; text-align: center; }
.stepper__hint { font-size: .8rem; color: var(--ink-soft); }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  font-family: inherit;
  font-size: .9rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover { border-color: var(--accent); }
.chip.is-on { background: var(--accent); color: #fff; border-color: var(--accent); }
.sim__msg { margin-top: .4rem; }

.sim__recap {
  background: var(--bar);
  color: var(--bar-ink);
  border-radius: 8px;
  padding: clamp(1.5rem, 2.2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  height: 100%;
}
.sim__recap-eyebrow {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #a6ab89;
}
.sim__recap-list { list-style: none; display: flex; flex-direction: column; }
.sim__recap-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0;
  border-top: 1px solid var(--line-light);
  font-size: .92rem;
}
.sim__recap-list li:last-child { border-bottom: 1px solid var(--line-light); }
.sim__recap-list span { color: #a6ab89; }
.sim__recap-list b { font-weight: 500; text-align: right; }
.sim__recap-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-top: .4rem;
}
.sim__recap-price em { font-style: italic; color: #b7bd97; }
.sim__recap-note { font-size: .8rem; color: #a6ab89; margin-bottom: .3rem; }
.sim__contactrow label { color: #a6ab89 !important; }
.sim__contactrow input {
  background: color-mix(in srgb, var(--bar) 60%, #000 5%);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: .7rem .8rem;
  color: var(--bar-ink);
  font-family: inherit;
  font-size: .95rem;
  width: 100%;
}
.sim__contactrow input:focus { border-color: var(--accent); outline: none; }
.sim__contactrow input.is-bad { border-color: #c98a7a; }
.sim__recap .btn--solid { margin-top: .4rem; background: var(--bar-ink); color: var(--ink); }
.sim__recap .btn--solid:hover { background: var(--accent); color: #fff; }
.sim__err { color: #e0a68f; font-size: .85rem; }
.sim__ok { color: #b7bd97; font-size: .88rem; }

/* ============ CHAMBRES ============ */
.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(36px, 5vw, 56px);
}
.room {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.room__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.room__body {
  padding: 1.1rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.room__t { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; }
.room__d { font-size: .82rem; color: var(--ink-soft); letter-spacing: .02em; }

/* ============ JARDIN ============ */
.jardin__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; min-height: clamp(320px, 44vw, 520px); }
.jardin__body .eyebrow { margin-top: 0; }
.jardin__body .h2 { margin-bottom: .4rem; }
.jardin__note { margin-top: 1.6rem; font-size: .9rem; color: var(--ink-soft); font-style: italic; }
.steps { list-style: none; margin-top: 1.8rem; }
.step {
  display: flex;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-deep);
  flex: none;
  padding-top: .15rem;
}
.step__t { font-size: var(--fs-h3); font-weight: 500; margin-bottom: .35rem; }
.step__d { color: var(--ink-soft); font-size: .98rem; }

/* ============ SERVICES ============ */
.services { list-style: none; margin-top: clamp(36px, 5vw, 56px); }
.service {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 2.6rem);
  align-items: baseline;
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-2);
}
.service__t { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h3); margin-bottom: .3rem; }
.service__d { color: var(--ink-soft); font-size: .98rem; max-width: 60ch; }
.service__meta {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-2);
  text-align: right;
  white-space: nowrap;
}
.services__cta { margin-top: clamp(32px, 4vw, 48px); }

/* ============ RÉGION ============ */
.region__head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 60px); }
.region__head .h2 { margin-block: 1rem; }
.region__lead { max-width: 62ch; }
.region__split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.places { list-style: none; }
.place {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: baseline;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.place:first-child { border-top: 0; padding-top: 0; }
.place__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-deep);
}
.place__t { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h3); margin-bottom: .3rem; }
.place__d { color: var(--ink-soft); font-size: .96rem; max-width: 46ch; }
.place__meta {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-deep);
  text-align: right;
  white-space: nowrap;
}
.region__fig { position: sticky; top: 92px; }
.region__fig img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; }
.region__fig figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: .8rem; font-style: italic; }

/* ============ AVIS ============ */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(36px, 5vw, 56px);
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.4rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review__stars { color: var(--accent-deep); letter-spacing: .18em; font-size: .95rem; }
.review blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
}
.review figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: auto; }
.review__src { color: var(--accent-deep); }
.reviews__note { margin-top: 2rem; font-size: .85rem; color: var(--ink-soft); max-width: 74ch; }
.reviews__note strong { color: var(--accent-deep); font-weight: 500; }

/* ============ CONTACT ============ */
.contact__lead { color: #cdd2b0; max-width: 42ch; margin-top: 1.2rem; }
.contact__facts { list-style: none; margin-top: 2rem; }
.contact__facts li {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding: .9rem 0;
  border-top: 1px solid var(--line-light);
  font-size: .98rem;
}
.contact__facts li:last-child { border-bottom: 1px solid var(--line-light); }
.contact__facts span:first-child { color: #a6ab89; font-size: .85rem; letter-spacing: .03em; }
.contact__facts a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.contact__addr { text-align: right; }
.contact__todo { margin-top: 1.2rem; font-size: .82rem; color: var(--accent-2); font-style: italic; }

.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--row { display: flex; gap: 1rem; }
.field--row > .field { flex: 1; }
.field label { font-size: .8rem; letter-spacing: .04em; color: var(--ink-soft); text-transform: uppercase; }
.section--dark .field label { color: #a6ab89; }
.field input, .field textarea {
  background: color-mix(in srgb, var(--bar) 60%, #000 5%);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: .8rem .9rem;
  color: var(--bar-ink);
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  transition: border-color .25s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: #85897a; }
.field input.is-bad { border-color: #c98a7a; }
.contact__form .btn--solid { margin-top: .4rem; }
.contact__err { color: #e0a68f; font-size: .88rem; }
.contact__ok { color: #b7bd97; font-size: .9rem; }

/* light-context fields (simulateur left panels) */
.sim__panel .field input, .sim__panel .field textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}
.sim__panel .field label { color: var(--ink-soft); }
.sim__panel .field input::placeholder, .sim__panel .field textarea::placeholder { color: #8f897c; }

.contact__map-wrap { margin-top: clamp(40px, 6vw, 72px); }
.contact__map {
  width: 100%;
  height: clamp(280px, 38vw, 420px);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  filter: grayscale(.3) contrast(.95);
}
.contact__map-link { display: inline-block; margin-top: 1rem; color: #cdd2b0; font-size: .9rem; }
.contact__map-link:hover { color: #fff; }

/* ============ FOOTER ============ */
.footer { background: var(--bar); color: var(--bar-ink); padding-block: clamp(48px, 7vw, 80px); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
}
.footer__word { font-family: var(--serif); font-size: 1.5rem; }
.footer__brand p { color: #a6ab89; font-size: .9rem; margin-top: .5rem; }
.footer__nav { display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; }
.footer__nav a { color: #cdd2b0; font-size: .95rem; }
.footer__nav a:hover { color: #fff; }
.footer__legal { grid-column: 1 / -1; border-top: 1px solid var(--line-light); padding-top: 1.6rem; font-size: .82rem; color: #a6ab89; }
.footer__legal a { color: #cdd2b0; text-decoration: underline; text-underline-offset: 2px; }
.footer__demo { grid-column: 1 / -1; font-size: .78rem; color: #7d8168; font-style: italic; }

/* ============ TO TOP ============ */
.totop {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bar);
  color: var(--bar-ink);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 40;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .25s ease;
}
.totop.is-show { opacity: 1; transform: translateY(0); }
.totop:hover { background: var(--accent-deep); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1040px) {
  .sim__grid { grid-template-columns: 1fr 1fr; }
  .sim__recap { grid-column: 1 / -1; }
  .rooms { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__end .btn--pill { display: none; }
  .nav__burger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .region__split { grid-template-columns: 1fr; }
  .region__fig { position: static; max-width: 480px; }
  .reviews { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .sim__grid { grid-template-columns: 1fr; }
  .rooms { grid-template-columns: 1fr; }
  .maison__gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .maison__img { aspect-ratio: 16 / 10; height: auto; }
  .maison__img--a { grid-column: auto; }
  .service { grid-template-columns: auto 1fr; }
  .service__meta { grid-column: 2; text-align: left; margin-top: .3rem; }
  .place { grid-template-columns: auto 1fr; }
  .place__meta { grid-column: 2; text-align: left; margin-top: .3rem; }
  .field--row { flex-direction: column; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__cta { gap: 1.1rem; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .link-arrow span, .nav__links a::after { transition: none !important; }
}
