/* =========================================================
   Les Meublés de Luchon — Design System
   Marque : teal thermal (#026878) + corail (#ff705c)
   Typo : Unna (titres) + Open Sans (corps)
   ========================================================= */

:root {
  /* Couleurs de marque */
  --brand:        #026878;
  --brand-dark:   #00444f;
  --brand-2:      #3ab0b3;
  --brand-tint:   #e8f2f3;
  --brand-tint-2: #f2f8f8;
  --accent:       #ff705c;
  --accent-dark:  #e8543f;

  /* Neutres */
  --ink:      #17272b;
  --body:     #435055;
  --muted:    #6b7a7e;
  --line:     #e3e9ea;
  --line-2:   #eef3f3;
  --bg:       #ffffff;
  --surface:  #f6f9f9;
  --surface-2:#eef4f4;
  --white:    #ffffff;

  /* Étoile / notes */
  --star:     #f4b740;

  /* Typo */
  --font-display: 'Unna', Georgia, 'Times New Roman', serif;
  --font-body:    'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Rayons / ombres */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(2, 68, 79, .06);
  --shadow:    0 10px 30px rgba(2, 68, 79, .10);
  --shadow-lg: 0 24px 60px rgba(2, 68, 79, .16);

  /* Layout */
  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --header-h: 76px;
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; font-weight: 700; margin: 0 0 .5em; letter-spacing: .2px; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }
li { margin: .3rem 0; }
:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 2px; border-radius: 4px; }

/* ---------- Lien d'évitement (accessibilité) ---------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--brand); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 var(--r-sm) 0; font-weight: 700; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Utilitaires ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tint { background: var(--surface); }
.section--brand { background: var(--brand-dark); color: #d7e7e9; }
.section--brand h2, .section--brand h3 { color: #fff; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
  color: var(--brand); margin-bottom: .8rem;
}
.section--brand .eyebrow { color: var(--brand-2); }
.lead { font-size: 1.15rem; color: var(--body); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  text-align: center; line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(255,112,92,.35); }
.btn:hover { transform: translateY(-2px); }
.btn--primary:hover { background: var(--accent-dark); color: #fff; box-shadow: 0 12px 26px rgba(255,112,92,.45); }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--ghost:hover { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn--light { background: #fff; color: var(--brand-dark); }
.btn--light:hover { background: var(--brand-tint); color: var(--brand-dark); box-shadow: var(--shadow); }
.btn--dark { background: var(--brand-dark); color: #fff; box-shadow: 0 8px 20px rgba(0,68,79,.25); }
.btn--dark:hover { background: var(--brand); color: #fff; box-shadow: 0 12px 26px rgba(0,68,79,.35); }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--brand-dark); line-height: 1.05; }
.brand__name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-2); }
.nav__links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-weight: 600; color: var(--ink); padding: .45rem .55rem; border-radius: 999px;
  font-size: .9rem; white-space: nowrap; transition: background .2s, color .2s;
}
.nav { gap: .5rem; }
.nav__links { gap: .1rem; }
.nav__links a:hover, .nav__links a[aria-current="page"] { background: var(--brand-tint); color: var(--brand-dark); }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__cta .btn--primary { padding: .6rem 1.2rem; font-size: .85rem; white-space: nowrap; box-shadow: none; }
.nav__cta .btn--primary:hover { box-shadow: 0 6px 16px rgba(255,112,92,.3); }
.nav__langsw { display: flex; align-items: center; gap: 0; font-size: .78rem; font-weight: 700; }
.nav__langsw a { padding: .3rem .4rem; color: var(--muted); border-radius: 5px; }
.nav__langsw a:hover { color: var(--brand-dark); background: var(--brand-tint); }
.nav__langsw a[aria-current="true"] { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 3px; }
.nav__phone { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--brand-dark); white-space: nowrap;
  padding: .45rem; border-radius: 999px; transition: background .2s; }
.nav__phone:hover { background: var(--brand-tint); }
/* le numéro est repris dans la barre mobile, le footer et la page Contact */
.nav__phone-num { display: none; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; }
.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;
  background: linear-gradient(180deg, rgba(0,44,51,.35) 0%, rgba(0,44,51,.55) 55%, rgba(0,44,51,.78) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-top: clamp(3.5rem, 9vw, 7rem); padding-bottom: clamp(2rem,5vw,3rem); }
.hero h1 { color: #fff; max-width: 24ch; font-size: clamp(1.9rem, 3.6vw, 2.9rem); text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero__sub { font-size: 1.2rem; max-width: 52ch; color: #eaf3f4; margin-bottom: 1.8rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.6rem; font-weight: 600; font-size: .95rem; }
.hero__badges span { display: inline-flex; align-items: center; gap: .5rem; }

/* ---------- Widget de réservation ---------- */
.booking {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 1.2rem; display: grid; gap: .8rem;
  grid-template-columns: 1fr 1fr 1fr auto; align-items: end;
}
.booking--stack { grid-template-columns: 1fr; }
.booking__field { display: flex; flex-direction: column; gap: .3rem; text-align: left; }
.booking__field label, .booking__flabel { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.booking__field select, .booking__field input {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  height: 52px; padding: 0 .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; width: 100%; line-height: normal; box-sizing: border-box;
}
.booking__field input:focus, .booking__field select:focus { border-color: var(--brand-2); outline: none; }
.booking .btn { height: 52px; padding: 0 1.8rem; white-space: nowrap; justify-self: start; }
.booking__note { grid-column: 1 / -1; font-size: .82rem; color: var(--muted); margin: 0; text-align: left; }

/* Champs Arrivée / Départ : bouton qui ouvre le calendrier */
.booking { position: relative; }
.booking__pickbtn {
  font-family: var(--font-body); font-size: 1rem; color: var(--muted); text-align: left;
  height: 52px; padding: 0 .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; width: 100%; box-sizing: border-box; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.booking__pickbtn svg { flex: none; color: var(--muted); }
.booking__pickbtn [data-cal-label].is-set { color: var(--ink); font-weight: 600; }
.booking__pickbtn:hover { border-color: var(--brand-2); }
.booking__pickbtn:focus-visible { border-color: var(--brand-2); outline: none; }
.booking.cal-open .booking__pickbtn[aria-expanded="true"] { border-color: var(--brand-2); }

/* Dates dans un formulaire classique (demande de tarif cure) */
.form__dates { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; align-items: end; }
.form__dates .booking__flabel { font-size: .72rem; }

/* Calendrier */
.cal {
  position: absolute; z-index: 40; top: calc(100% - .8rem); left: 1.2rem;
  background: #fff; color: var(--ink); text-align: left;
  border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.6rem 1.1rem;
}
.cal[hidden] { display: none; }
.cal__heading { font-family: var(--font-title); font-size: 1.3rem; margin: 0 0 1rem; }
.cal__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .4rem; }
.cal__title { margin: 0; font-weight: 700; font-size: .95rem; }
.cal__nav {
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); cursor: pointer; flex: none;
  display: flex; align-items: center; justify-content: center; transition: border-color .15s, color .15s;
}
.cal__nav:hover:not(:disabled) { border-color: var(--brand-2); color: var(--brand-2); }
.cal__nav:disabled { opacity: .3; cursor: not-allowed; }
.cal__months { display: flex; gap: 2rem; }
.cal__month { min-width: 266px; }
.cal__mname { text-align: center; font-weight: 700; margin: .6rem 0 .8rem; font-size: 1rem; }
.cal__dow, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal__dow span { text-align: center; font-size: .75rem; font-weight: 700; color: var(--muted); padding-bottom: .4rem; }
.cal__day {
  aspect-ratio: 1; border: 0; background: none; font-family: var(--font-body); font-size: .95rem;
  color: var(--ink); cursor: pointer; border-radius: 50%; padding: 0;
  display: flex; align-items: center; justify-content: center; transition: background .12s, color .12s;
}
.cal__day--empty { cursor: default; }
.cal__day:hover:not(:disabled):not(.cal__day--empty) { background: var(--line-2); }
.cal__day:disabled { color: var(--line); text-decoration: line-through; cursor: not-allowed; }
.cal__day.is-in { background: rgba(255, 122, 89, .14); border-radius: 0; }
.cal__day.is-start, .cal__day.is-end { background: var(--brand-2); color: #fff; font-weight: 700; }
.cal__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-2);
}
.cal__clear {
  background: none; border: 0; padding: 0; font-family: var(--font-body); font-size: .95rem;
  color: var(--ink); text-decoration: underline; cursor: pointer;
}
.cal__done {
  background: var(--ink); color: #fff; border: 0; border-radius: 999px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  padding: .7rem 1.6rem; cursor: pointer;
}
.cal__done:hover { opacity: .85; }

/* Sélecteur voyageurs (adultes / enfants / bébés) */
.booking__field--guests { position: relative; }
.booking__guests-btn {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); text-align: left;
  height: 52px; padding: 0 .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; width: 100%; box-sizing: border-box; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.booking__guests-btn:focus-visible { border-color: var(--brand-2); outline: none; }
.booking__field--guests.is-open .booking__guests-btn { border-color: var(--brand-2); }
.booking__chev { flex: none; color: var(--muted); transition: transform .2s; }
.booking__field--guests.is-open .booking__chev { transform: rotate(180deg); }

.guests__panel {
  position: absolute; z-index: 30; top: calc(100% + .5rem); left: 0; right: 0; min-width: 300px;
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-2); padding: .4rem 1.2rem 1rem;
  color: var(--ink); text-align: left; /* le hero force du blanc : on rétablit */
}
.guests__panel[hidden] { display: none; }
.guests__row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 0; border-bottom: 1px solid var(--line-2);
}
.guests__row strong { display: block; font-size: 1rem; }
.guests__row span { display: block; font-size: .82rem; color: var(--muted); }
.guests__stepper { display: flex; align-items: center; gap: .7rem; flex: none; }
.guests__stepper output { min-width: 1.4rem; text-align: center; font-weight: 700; font-size: 1rem; }
.guests__btn {
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font-size: 1.15rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: border-color .15s, color .15s;
}
.guests__btn:hover:not(:disabled) { border-color: var(--brand-2); color: var(--brand-2); }
.guests__btn:disabled { opacity: .35; cursor: not-allowed; }
.guests__close {
  display: block; margin: .9rem 0 0 auto; background: none; border: 0; padding: 0;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  text-decoration: underline; cursor: pointer;
}

/* ---------- Grilles / cartes ---------- */
.grid { display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card__media img { transform: scale(1.05); }
.card__media--portrait { aspect-ratio: 3/4; }
.card__tag {
  position: absolute; top: .8rem; left: .8rem; background: rgba(255,255,255,.95);
  color: var(--brand-dark); font-weight: 700; font-size: .78rem; padding: .3rem .7rem;
  border-radius: 999px; display: inline-flex; gap: .3rem; align-items: center; z-index: 3;
}

/* ---------- Carrousel photos (cartes logement) ---------- */
.card__slider { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.card__slides { display: flex; height: 100%; transition: transform .5s ease; }
.card__slide { flex: 0 0 100%; height: 100%; display: block; }
.card__slide img { width: 100%; height: 100%; object-fit: cover; }
.card__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px;
  border-radius: 50%; border: none; background: rgba(255,255,255,.85); color: var(--brand-dark);
  font-size: 1.5rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  opacity: 0; transition: opacity .2s, background .2s; z-index: 3; padding: 0;
}
.card__slider:hover .card__arrow, .card__slider:focus-within .card__arrow { opacity: 1; }
.card__arrow:hover { background: #fff; }
.card__arrow--prev { left: .6rem; }
.card__arrow--next { right: .6rem; }
.card__dots { position: absolute; bottom: .7rem; left: 0; right: 0; display: flex; gap: .4rem; justify-content: center; z-index: 3; }
.card__dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.6); cursor: pointer; padding: 0; transition: width .2s, background .2s; }
.card__dot[aria-current="true"] { background: #fff; width: 22px; border-radius: 4px; }
@media (hover: none) { .card__arrow { opacity: 1; background: rgba(255,255,255,.9); } }
.card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .3rem; font-size: 1.25rem; }
.feature h3, .card h3 { font-size: 1.25rem; }
.card__tagline { font-weight: 700; color: var(--brand); font-size: .95rem; margin: .1rem 0 .7rem; }
.card__meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; color: var(--muted); font-size: .9rem; font-weight: 600; margin-bottom: .8rem; }
.card__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; }
.card__price { font-weight: 700; color: var(--ink); }
.card__price small { display: block; font-weight: 600; color: var(--muted); font-size: .78rem; }

.stars { color: var(--star); letter-spacing: 1px; font-size: .95rem; }

/* ---------- Feature blocks ---------- */
.feature { text-align: center; padding: 1.5rem; }
.feature__icon {
  width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--brand-tint); color: var(--brand);
}
.feature__icon svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.feature p { font-size: .98rem; margin: 0; }

/* ---------- Split (image + texte) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
/* Diaporama dans un bloc split : mêmes proportions et mêmes arrondis qu'une photo seule */
.split__media .diapo { aspect-ratio: 5/4; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.split__media .diapo img { border-radius: 0; box-shadow: none; aspect-ratio: auto; }
.split__body h2 { margin-bottom: .8rem; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery__item { border-radius: var(--r); overflow: hidden; cursor: pointer; aspect-ratio: 1; background: var(--surface-2); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,30,35,.94); z-index: 200; display: none; place-items: center; padding: 2rem; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.15); color: #fff; border: none; cursor: pointer; width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; display: grid; place-items: center; transition: background .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Amenities list ---------- */
.amenities { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem 1.5rem; }
.amenities li { display: flex; align-items: center; gap: .6rem; margin: 0; font-weight: 600; color: var(--ink); }
.amenities svg { width: 20px; height: 20px; color: var(--brand-2); flex-shrink: 0; }

/* ---------- Avis ---------- */
.review { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review__stars { margin-bottom: .6rem; font-size: 1.05rem; letter-spacing: 1px; }
.review__stars span { color: var(--line-2); }
.review__stars span.is-on { color: var(--star); }
.review__text { font-style: italic; color: var(--body); margin-bottom: .6rem;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review.is-open .review__text { -webkit-line-clamp: unset; overflow: visible; }
.review__more { align-self: flex-start; background: none; border: none; padding: 0; margin: 0 0 .9rem;
  color: var(--brand); font-family: var(--font-body); font-weight: 700; font-size: .88rem;
  cursor: pointer; text-decoration: underline; }
.review__more:hover { color: var(--brand-dark); }
.review__author { font-weight: 700; color: var(--ink); margin-top: auto; }
.review__flag { margin-right: .45rem; font-size: 1.05rem; line-height: 1; vertical-align: -1px; }
.review__date { color: var(--muted); font-size: .85rem; font-weight: 400; }

/* Bandeau note globale */
.rating-banner { display: inline-flex; align-items: center; gap: 1rem; background: var(--brand-tint); border-radius: 999px; padding: .7rem 1.6rem; font-weight: 700; color: var(--brand-dark); letter-spacing: .01em; }

/* ---------- Avis défilants (accueil) ---------- */
.avis-marquee { overflow: hidden; position: relative; padding: .5rem 0; }
.avis-marquee::before, .avis-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.avis-marquee::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.avis-marquee::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }
.avis-marquee__track { display: flex; gap: 1.2rem; width: max-content; animation: avis-scroll 80s linear infinite; }
.avis-marquee:hover .avis-marquee__track { animation-play-state: paused; }
.avis-marquee .review { width: 330px; flex: 0 0 330px; }
@keyframes avis-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .avis-marquee__track { animation: none; } .avis-marquee { overflow-x: auto; } }

/* ---------- Étapes / How-to ---------- */
.steps { counter-reset: step; display: grid; gap: 1.5rem; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step__num { counter-increment: step; flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: .2rem; }
.step p { margin: 0; }
/* Version compacte horizontale (en tête de la page Appartements) */
.steps-inline { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.steps-inline li { display: flex; gap: .7rem; align-items: flex-start; }
.steps-inline__n { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; font-size: .9rem; display: grid; place-items: center; margin-top: .1rem; }
.steps-inline strong { display: block; font-size: .98rem; line-height: 1.25; }
.steps-inline div span { display: block; font-size: .82rem; color: var(--muted); margin-top: .15rem; }
@media (max-width: 760px) { .steps-inline { grid-template-columns: 1fr 1fr; gap: 1.1rem; } }
@media (max-width: 430px) { .steps-inline { grid-template-columns: 1fr; } }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--line-2); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: .8rem 0; font-size: .88rem; }
.breadcrumb li { display: flex; align-items: center; gap: .4rem; margin: 0; color: var(--muted); }
.breadcrumb li::after { content: "›"; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb li[aria-current="page"] { color: var(--brand-dark); font-weight: 700; }

/* ---------- Page hero (sous-pages) ---------- */
.page-hero { position: relative; color: #fff; padding: clamp(2.5rem,6vw,4.5rem) 0; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: linear-gradient(120deg, var(--brand-dark), var(--brand)); z-index:0; }
.page-hero.has-img::before { background: rgba(0,44,51,.6); }
.page-hero__img { position:absolute; inset:0; z-index:-1; }
.page-hero__img img { width:100%; height:100%; object-fit:cover; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .4rem; }
.page-hero p { color: #dcecee; max-width: 90ch; margin: 0; font-size: 1.1rem; }
/* l'eyebrow est un <p> : .page-hero p écrasait sa taille → on la rétablit (comme l'accueil) */
.page-hero .eyebrow { font-size: .78rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: .8rem; overflow: hidden; background: #fff; }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 1.1rem 1.3rem; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__q::after { content: "+"; font-size: 1.5rem; color: var(--brand); transition: transform .2s; }
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.3rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq__a[data-open="true"] { padding: 0 1.3rem 1.2rem; max-height: 400px; }
.faq__a p { margin: 0; }

/* ---------- Guides / FAQ groupées ---------- */
.faq-group { margin-bottom: 1rem; border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; }
.faq-group h2 { font-size: 1.5rem; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--brand-tint); }
.faq-group__head {
  width: 100%; display: flex; align-items: center; gap: .8rem; text-align: left; cursor: pointer;
  background: var(--brand-tint-2); border: 0; padding: 1.1rem 1.3rem;
  font-family: var(--font-title); font-size: 1.25rem; color: var(--brand-dark);
}
.faq-group__head:hover { background: var(--brand-tint); }
.faq-group__title { flex: 1; }
.faq-group__count { font-family: var(--font-body); font-size: .8rem; font-weight: 700; color: #fff;
  background: var(--brand); border-radius: 999px; padding: .1rem .55rem; }
.faq-group__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-group__icon::before, .faq-group__icon::after {
  content: ""; position: absolute; background: var(--brand-dark); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%); transition: opacity .2s;
}
.faq-group__icon::before { width: 14px; height: 2.5px; }        /* barre horizontale */
.faq-group__icon::after { width: 2.5px; height: 14px; }         /* barre verticale (le +) */
.faq-group__head[aria-expanded="true"] .faq-group__icon::after { opacity: 0; }  /* devient − */
.faq-group__body { padding: .4rem 1.3rem 1.3rem; }
.faq-group__body[hidden] { display: none; }
.faq-group__body .faq-group h2 { display: none; }
.guides-nav { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.guides-nav li { margin: 0; }
.guides-nav li a { display: inline-block; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.3rem; font-weight: 700; color: var(--brand-dark); }
.guides-nav li a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff; border-radius: var(--r-xl); padding: clamp(2.2rem,5vw,3.5rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e4f3f4; max-width: 54ch; margin: 0 auto 1.6rem; }
/* Lien secondaire vers la FAQ, sous le bandeau CTA (sur le fond de page) */
.cta-band__more { margin: 1.4rem auto 0; text-align: center; font-size: .95rem; color: var(--muted); }
.cta-band__more a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cta-band__more a:hover { color: var(--brand-2); }

/* ---------- Partners ---------- */
.partners { display: flex; flex-wrap: wrap; gap: 2rem 3rem; align-items: center; justify-content: center; }
.partners img { height: 64px; width: auto; opacity: .85; filter: grayscale(20%); transition: opacity .2s, filter .2s; }
.partners img:hover { opacity: 1; filter: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); }
.info-list { list-style: none; padding: 0; }
.info-list li { display: flex; gap: .9rem; margin-bottom: 1.1rem; align-items: flex-start; }
.info-list svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; margin-top: 3px; }
.info-list strong { display: block; color: var(--ink); }
.form { display: grid; gap: 1rem; }
.form label { font-weight: 700; color: var(--ink); font-size: .92rem; display: block; margin-bottom: .3rem; }
.form input, .form textarea, .form select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--brand-2); outline: none; }

/* Dépôt d'avis : étoiles cliquables (façon Google) */
.stars-input { display: inline-flex; flex-direction: row-reverse; gap: .25rem; }
.stars-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.stars-input label { color: var(--line); cursor: pointer; line-height: 1; transition: color .12s; margin: 0; }
.stars-input label:hover, .stars-input label:hover ~ label,
.stars-input input:checked ~ label { color: #e8b04b; }
.stars-input input:focus-visible + label { outline: 2px solid var(--brand-2); outline-offset: 2px; border-radius: 4px; }
.review-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.review-form__note { font-size: .88rem; color: var(--muted); margin: 0; }
.required-star { color: #d33; font-weight: 700; }
.review-form__ok { text-align: center; background: var(--brand-tint); border-radius: var(--r-lg); padding: 2.5rem 1.5rem; }
.review-form__ok h2 { color: var(--brand-dark); }
/* le bouton d'envoi est un élément de grille : sans ça il s'étire sur toute la largeur */
.form button[type="submit"] { justify-self: start; }
@media (max-width: 560px) { .form button[type="submit"] { justify-self: stretch; } }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--r-lg); }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-dark); color: #b9d2d5; padding: clamp(3rem,6vw,4.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .9fr 1.6fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.site-footer a { color: #b9d2d5; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin: .4rem 0; }
/* Liste contact : icône alignée en haut, texte à hauteur (indent pendante) */
.footer-contact li { display: flex; gap: .55rem; align-items: flex-start; }
.footer-contact li .fc-ico { flex-shrink: 0; line-height: 1.6; }
.footer-contact li a, .footer-contact li span:last-child { overflow-wrap: anywhere; min-width: 0; }
.footer-contact li a[href^="mailto"] { font-size: .92rem; }
.footer__brand img { height: 74px; width: auto; margin-bottom: 1rem; background: #fff; padding: 8px; border-radius: 16px; box-shadow: var(--shadow-sm); }
.footer__social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; }
.footer__social a:hover { background: var(--accent); }
.footer__social svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .85rem; color: #8fb0b4; }

/* ---------- Barre mobile fixe ---------- */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: #fff; border-top: 1px solid var(--line); padding: .6rem .8rem; gap: .6rem; box-shadow: 0 -6px 20px rgba(2,68,79,.1); }
.mobile-bar .btn { flex: 1; padding: .8rem; }

/* ---------- Sélecteur de langue flottant (bas droite, discret) ---------- */
.langfloat { position: fixed; right: 1rem; bottom: 1rem; z-index: 140; }
.langfloat__btn {
  display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; font-size: .82rem;
  background: #fff; color: var(--brand-dark); border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem .95rem; box-shadow: var(--shadow); cursor: pointer;
}
.langfloat__btn:hover { background: var(--brand-tint); }
.langfloat__menu {
  position: absolute; bottom: calc(100% + .5rem); right: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: .4rem; display: flex; flex-direction: column;
  min-width: 110px;
}
.langfloat__menu[hidden] { display: none; }
.langfloat__menu a { padding: .5rem .7rem; border-radius: 8px; font-weight: 600; font-size: .88rem; color: var(--ink); }
.langfloat__menu a:hover { background: var(--brand-tint); color: var(--brand-dark); }
.langfloat__menu a[aria-current="true"] { color: var(--brand-dark); background: var(--brand-tint); }
/* Au-dessus de la mobile-bar (Appeler / Réserver) fixée en bas sur petit écran */
@media (max-width: 980px) { .langfloat { bottom: calc(68px + 1rem + env(safe-area-inset-bottom)); right: .75rem; } }

/* ---------- Cookie banner (CNIL) ---------- */
.cookie {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem; max-width: 520px; z-index: 150;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 1.3rem 1.4rem; display: none;
}
.cookie.show { display: block; }
.cookie h4 { font-family: var(--font-body); font-size: 1.05rem; margin-bottom: .4rem; color: var(--ink); }
.cookie p { font-size: .9rem; margin-bottom: 1rem; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie__actions .btn { padding: .6rem 1.2rem; font-size: .9rem; }

/* ---------- Moteur de réservation intégré (Superhôte) ---------- */
.booking-engine { display: block; width: 100%; border: 0; border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); background: var(--surface); }

/* ---------- Filtres (page Activités) ---------- */
/* Intro de la page Avis (texte, pas un bouton) */
.avis-intro { max-width: 640px; margin: 0 auto; font-family: var(--font-title);
  font-size: 1.25rem; line-height: 1.5; color: var(--brand-dark); }

/* Filtres de la page Avis : recherche + langue + chips par catégorie */
.avis-filtres { margin-bottom: 2.4rem; padding: 1.2rem 1.4rem;
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); }
.avis-filtres__top { display: flex; flex-wrap: wrap; align-items: end; gap: 1rem; margin-bottom: 1.1rem; }
.avis-search { flex: 1 1 300px; }
.avis-nat { flex: 0 0 auto; min-width: 160px; display: flex; flex-direction: column; gap: .35rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; padding-top: 1.1rem; border-top: 1px solid var(--line-2); }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-body); font-size: .9rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: .5rem .95rem; cursor: pointer; transition: border-color .15s, background .15s, color .15s;
}
.chip:hover { border-color: var(--brand-2); }
.chip.is-on { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.chip__star { color: #e8b04b; flex: none; }
.chip.is-on .chip__star { color: #ffcf70; }
.chip__n { font-size: .78rem; font-weight: 700; opacity: .6; }

.filtres {
  display: flex; align-items: end; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.2rem; padding: 1.2rem 1.4rem;
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
}
.filtres__champ { display: flex; flex-direction: column; gap: .35rem; min-width: 220px; }
.filtres__label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--muted);
}
.filtres__select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  height: 48px; padding: 0 2.4rem 0 .9rem; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: #fff; width: 100%; box-sizing: border-box;
  cursor: pointer; appearance: none;
  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='%235b6b70' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center;
}
.filtres__select:hover, .filtres__select:focus-visible { border-color: var(--brand-2); outline: none; }
.filtres__vide { text-align: center; padding: 2.5rem 0; color: var(--muted); }
.filtres__vide[hidden] { display: none; }
.filtres__reset {
  margin-bottom: .8rem; background: none; border: 0; padding: 0;
  font-family: var(--font-body); font-size: .95rem;
  color: var(--ink); text-decoration: underline; cursor: pointer;
}
.filtres__reset[hidden] { display: none; }
.act[hidden] { display: none; }
/* .review est en display:flex, qui neutraliserait l'attribut hidden */
.review[hidden] { display: none; }
.filtres__champ--large { flex: 1 1 280px; }
input.filtres__select { background-image: none; padding-right: .9rem; }
input.filtres__select::-webkit-search-cancel-button { cursor: pointer; }
.act__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 .6rem; }
.act__tag {
  font-size: .75rem; font-weight: 700; letter-spacing: .02em;
  background: var(--line-2); color: var(--ink); border-radius: 999px; padding: .25rem .7rem;
}
.act__tag--sec { background: none; border: 1.5px solid var(--line); color: var(--muted); }
.act__tag--saison { background: var(--brand-tint); color: var(--brand-dark); }
.act__acces { margin: .8rem 0 0; font-size: .88rem; font-weight: 600; color: var(--brand); }
.card__media--cat {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--line-2), #fff);
  border-bottom: 1px solid var(--line-2);
}
.card__media--cat span {
  font-family: var(--font-title); font-size: 1.35rem; line-height: 1.3;
  color: var(--brand); text-align: center; padding: 0 1.5rem;
}

/* Photo verticale du chien : dans un cadre horizontal (carte 4/3, bannière large),
   un cadrage centré coupe la tête. On cadre par le haut partout où elle apparaît. */
img[src*="/services/animal.jpg"] { object-position: center top; }
/* Portrait carré dans un cadre 5/4 : sans ça, le haut du crâne est rogné. */
img[src*="/brand/nathalie.jpg"] { object-position: center top; }

/* ---------- Prose (pages légales / articles) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2rem; font-size: 1.6rem; }
.prose h3 { margin-top: 1.5rem; }
.prose a { text-decoration: underline; }

/* Lien texte discret : garder le visiteur sur la page tout en offrant l'accès au détail */
.link-more { font-weight: 600; color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.link-more:hover { color: var(--brand-2); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking { grid-template-columns: 1fr 1fr; }
  .booking__field--guests, .booking .btn { grid-column: 1 / -1; justify-self: stretch; }
  .guests__panel { min-width: 0; }
  .cal__month { min-width: 0; width: 100%; }
  .cal__heading { font-size: 1.15rem; }
}
/* Sous 760px le calendrier n'affiche qu'un mois : panneau ancré en bas d'écran,
   sinon il déborde sous la ligne de flottaison. */
@media (max-width: 759px) {
  .cal {
    position: fixed; left: 0; right: 0; bottom: 0; top: auto;
    max-height: 86vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
    border-radius: 20px 20px 0 0; border-bottom: 0;
    padding: 1.3rem 1.2rem calc(76px + env(safe-area-inset-bottom));
  }
  .cal__title { display: none; }   /* doublon avec le nom du mois quand il n'y en a qu'un */
  .cal__head { justify-content: space-between; }
  .cal__foot { position: sticky; bottom: 0; background: #fff; }
}
@media (max-width: 980px) {
  body { padding-bottom: 68px; } /* place pour mobile-bar */
  .nav__links, .nav__phone, .nav__langsw { display: none; }
  .nav__cta > .btn--primary { display: none; } /* Réserver est dans la barre mobile fixe */
  .nav__toggle { display: block; }
  .brand img { height: 40px; }
  .brand__name { font-size: 1rem; }
  .brand__name small { font-size: .58rem; }
  .site-header.nav-open .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; padding: 1rem; gap: .2rem; box-shadow: var(--shadow); border-top: 1px solid var(--line-2);
  }
  .site-header.nav-open .nav__links a { padding: .9rem 1rem; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .booking { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .mobile-bar { display: flex; }
  .hero__inner { padding-top: 2.5rem; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Réduction des animations */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
