/* ============================================================
   JSR IMMOBILIER — Feuille de style principale
   Créé par MATHTONSITE
   ------------------------------------------------------------
   Toutes les couleurs et polices sont centralisées dans les
   variables ci-dessous (:root). Pour changer l'identité du site,
   modifiez uniquement ces variables.
   ============================================================ */

:root {
  /* ---- Couleurs de marque ---- */
  --navy:         #17202A;   /* Bleu nuit principal (logo)        */
  --navy-800:     #1F2A38;   /* Surfaces foncées                  */
  --navy-700:     #252D3A;   /* Variante plus claire              */
  --orange:       #F5A01E;   /* Orange principal (boutons, liens) */
  --orange-deep:  #E8662A;   /* Orange secondaire (survol)        */
  --orange-bright:#FC950D;   /* Orange du logo                    */
  --cream:        #F5F0EB;   /* Fond chaud des sections           */
  --white:        #FFFFFF;

  /* ---- Texte ---- */
  --ink:          #2B3440;   /* Texte courant sur fond clair      */
  --muted:        #667180;   /* Texte secondaire                  */
  --line:         #E6E1DA;   /* Filets / bordures sur fond clair  */
  --line-dark:    #33404F;   /* Filets sur fond foncé             */

  /* ---- Typographie ---- */
  --font-display: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;

  /* ---- Rythme / mise en page ---- */
  --maxw:      1180px;
  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 10px 30px rgba(23, 32, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(23, 32, 42, 0.14);
  --gap:       clamp(1.25rem, 3vw, 2.5rem);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

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

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

/* Taille par défaut des icônes SVG (évite les flèches géantes dans les boutons/liens) */
svg { width: 1em; height: 1em; vertical-align: middle; flex: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .6em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1rem; }

a { color: var(--orange-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }

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

/* ============================================================
   UTILITAIRES DE MISE EN PAGE
   ============================================================ */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: #D9DEE6; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 0 0 .75rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: .7rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none; line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: var(--navy); }
.btn--primary:hover { background: var(--orange-deep); color: var(--white); box-shadow: 0 8px 20px rgba(232,102,42,.3); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--light { background: var(--white); color: var(--navy); }
.btn--light:hover { background: var(--cream); color: var(--navy); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: var(--white); color: var(--white); }

/* ============================================================
   EN-TÊTE / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(23,32,42,.08); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 78px;
}
.nav__logo img { height: 46px; width: auto; }

.nav__links {
  display: flex; align-items: center; gap: 1.75rem; list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  color: var(--navy); position: relative; padding: .4rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width .25s ease;
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--orange-deep); }

.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__phone {
  font-family: var(--font-display); font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
}
.nav__phone:hover { color: var(--orange-deep); }
.nav__phone svg { width: 18px; height: 18px; }

/* Bouton hamburger (mobile) */
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
  width: 44px; height: 44px; border-radius: 8px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px auto;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 78px 0 auto 0; background: var(--white);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    display: none; flex-direction: column; padding: 1.25rem 1.5rem 2rem;
    gap: 0;
  }
  .nav__menu.is-open { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links a { display: block; padding: .9rem .2rem; }
  .nav__links a::after { display: none; }
  .nav__cta { flex-direction: column; align-items: stretch; margin-top: 1.25rem; gap: .75rem; }
  .nav__cta .btn { justify-content: center; }
  .nav__phone { justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--cream); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero__title { margin-bottom: 1rem; }
.hero__title .accent { color: var(--orange-deep); }
.hero__text { font-size: 1.2rem; color: var(--muted); max-width: 46ch; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__contact {
  margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 1.5rem;
  font-family: var(--font-display); font-weight: 600; color: var(--navy);
}
.hero__contact a { color: var(--navy); display: inline-flex; align-items: center; gap: .5rem; }
.hero__contact a:hover { color: var(--orange-deep); }
.hero__contact svg { width: 18px; height: 18px; color: var(--orange-deep); }

.hero__media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--navy-700);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: 1.25rem; bottom: 1.25rem;
  background: var(--white); border-radius: var(--radius-sm); padding: .9rem 1.15rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .75rem;
}
.hero__badge .mark {
  width: 42px; height: 42px; border-radius: 10px; background: var(--navy);
  display: grid; place-items: center; flex: none;
}
.hero__badge .mark img { width: 30px; height: 30px; }
.hero__badge strong { font-family: var(--font-display); color: var(--navy); display: block; font-size: .95rem; }
.hero__badge span { color: var(--muted); font-size: .82rem; }

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; aspect-ratio: 16/10; }
}

/* ============================================================
   SECTION IMAGE + TEXTE (deux colonnes)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }

/* ============================================================
   CARTES SERVICES
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.75rem; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 58px; height: 58px; border-radius: 14px; background: var(--cream);
  display: grid; place-items: center; margin-bottom: 1.25rem; color: var(--orange-deep);
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: .75rem; }
.card__list { list-style: none; margin: .5rem 0 1.5rem; padding: 0; }
.card__list li {
  position: relative; padding-left: 1.6rem; margin-bottom: .55rem; color: var(--ink);
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--orange);
}
.card__link {
  margin-top: auto; font-family: var(--font-display); font-weight: 600; color: var(--orange-deep);
  display: inline-flex; align-items: center; gap: .4rem;
}
.card__link:hover { gap: .7rem; }
.card__link svg { width: 15px; height: 15px; }

/* ============================================================
   ENGAGEMENTS
   ============================================================ */
.commit { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .commit { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .commit { grid-template-columns: 1fr; } }
.commit__item { text-align: left; }
.commit__num {
  font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--orange);
  display: block; margin-bottom: .4rem;
}
.commit__item h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .4rem; }
.commit__item p { color: #AEB6C2; font-size: .96rem; margin: 0; }

/* ============================================================
   BANDEAU CTA (estimation)
   ============================================================ */
.cta-band { background: var(--navy); border-radius: var(--radius); padding: clamp(2rem,5vw,3.25rem); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: .4rem; }
.cta-band p { color: #AEB6C2; margin: 0; max-width: 48ch; }

/* ============================================================
   FORMULAIRE
   ============================================================ */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 820px) { .form-wrap { grid-template-columns: 1fr; } }

.form-aside__item { display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.form-aside__item .ic {
  width: 46px; height: 46px; border-radius: 12px; background: var(--cream); color: var(--orange-deep);
  display: grid; place-items: center; flex: none;
}
.form-aside__item .ic svg { width: 22px; height: 22px; }
.form-aside__item h4 { font-family: var(--font-display); margin: 0 0 .15rem; color: var(--navy); font-size: 1.05rem; }
.form-aside__item p, .form-aside__item a { margin: 0; color: var(--muted); }
.form-aside__item a:hover { color: var(--orange-deep); }

.form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .9rem; margin-bottom: .4rem; color: var(--navy); }
.field label .req { color: var(--orange-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #FCFBFA; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,160,30,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field--check { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.field--check input { width: auto; margin-top: .25rem; }
.field--check a { color: var(--orange-deep); text-decoration: underline; }
.form__note { font-size: .82rem; color: var(--muted); margin: .25rem 0 0; }
.form__status { margin-top: 1rem; padding: .85rem 1rem; border-radius: var(--radius-sm); font-size: .92rem; display: none; }
.form__status.ok  { display: block; background: #E9F6EC; color: #1F7A38; border: 1px solid #BFE6C8; }
.form__status.err { display: block; background: #FBEAEA; color: #B23A3A; border: 1px solid #F0C4C4; }

/* ============================================================
   TABLEAU HONORAIRES
   ============================================================ */
.fee-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 1.75rem; }
.fee-block__head { display: flex; align-items: center; gap: .9rem; padding: 1.25rem 1.5rem; background: var(--cream); border-bottom: 1px solid var(--line); }
.fee-block__head .n { font-family: var(--font-display); font-weight: 700; color: var(--white); background: var(--navy); width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; font-size: .95rem; }
.fee-block__head h3 { margin: 0; }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th, .fee-table td { text-align: left; padding: .85rem 1.5rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.fee-table th { font-family: var(--font-display); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); background: #FAF8F5; }
.fee-table tr:last-child td { border-bottom: 0; }
.fee-table .amount { font-family: var(--font-display); font-weight: 600; color: var(--navy); white-space: nowrap; }
.fee-table .who { color: var(--muted); font-size: .9rem; }
.fee-note { font-size: .9rem; color: var(--muted); padding: 1rem 1.5rem; background: #FAF8F5; }
@media (max-width: 620px) {
  .fee-table thead { display: none; }
  .fee-table, .fee-table tbody, .fee-table tr, .fee-table td { display: block; width: 100%; }
  .fee-table td { border: 0; padding: .35rem 1.25rem; }
  .fee-table tr { border-bottom: 1px solid var(--line); padding: .75rem 0; }
  .fee-table td[data-label]::before { content: attr(data-label); display: block; font-family: var(--font-display); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: .1rem; }
}

/* ============================================================
   PAGE HEADER (pages internes)
   ============================================================ */
.page-hero { background: var(--navy); color: #C7CDD6; padding: clamp(2.5rem,6vw,4rem) 0; }
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero p { max-width: 60ch; margin: 0; color: #AEB6C2; }
.breadcrumb { font-size: .85rem; margin-bottom: .9rem; color: #8C97A5; font-family: var(--font-display); }
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { color: var(--white); }

/* ============================================================
   CONTENU LÉGAL / TEXTE LONG
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; color: var(--navy); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.legal-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(1.5rem, 4vw, 2.5rem); max-width: 820px;
}
.legal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem 2rem; margin: 1.25rem 0; }
@media (max-width: 560px){ .legal-grid { grid-template-columns: 1fr; } }
.legal-grid dt { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.legal-grid dd { margin: .15rem 0 0; color: var(--ink); }

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.site-footer { background: var(--navy); color: #AEB6C2; padding: clamp(3rem,6vw,4.5rem) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 900px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px){ .footer__grid { grid-template-columns: 1fr; } }
.footer__brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin-bottom: .5rem; }
.footer__brand-name .o { color: var(--orange); }
.footer__brand-name .w { color: var(--white); }
.footer p { margin: 0 0 .75rem; font-size: .95rem; }
.footer h4 { font-family: var(--font-display); color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 1rem; }
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: .6rem; }
.footer__list a { color: #AEB6C2; font-size: .95rem; }
.footer__list a:hover { color: var(--orange); }
.footer__contact a { color: #AEB6C2; display: inline-flex; gap: .5rem; align-items: center; }
.footer__contact a:hover { color: var(--orange); }
.footer__contact svg { width: 16px; height: 16px; color: var(--orange); flex: none; }
.footer__social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 10px; display: grid; place-items: center; color: #AEB6C2; }
.footer__social a:hover { background: var(--orange); color: var(--navy); border-color: var(--orange); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bar { border-top: 1px solid var(--line-dark); padding: 1.5rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; font-size: .85rem; }
.footer__bar a { color: var(--orange); }
.footer__bar a:hover { color: var(--white); }

/* ============================================================
   BANDEAU COOKIES (RGPD)
   ============================================================ */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  max-width: 760px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.25rem 1.5rem;
  display: none;
}
.cookie.is-visible { display: block; animation: cookieIn .35s ease; }
@keyframes cookieIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie h4 { font-family: var(--font-display); color: var(--navy); margin: 0 0 .4rem; font-size: 1.05rem; }
.cookie p { font-size: .9rem; color: var(--muted); margin: 0 0 1rem; }
.cookie p a { color: var(--orange-deep); text-decoration: underline; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie__actions .btn { padding: .65rem 1.25rem; font-size: .9rem; }

/* Petit panneau réglages cookies */
.cookie__prefs { display: none; margin: 0 0 1rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.cookie__prefs.is-open { display: block; }
.cookie__pref { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: .5rem 0; }
.cookie__pref span { font-size: .9rem; }
.cookie__pref small { display: block; color: var(--muted); font-size: .8rem; }

/* Interrupteur */
.switch { position: relative; width: 44px; height: 24px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: var(--line); border-radius: 999px; transition: background .2s; cursor: pointer; }
.switch .track::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.switch input:checked + .track { background: var(--orange); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--orange); opacity: .5; cursor: not-allowed; }

/* ============================================================
   RÉVÉLATION AU DÉFILEMENT
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Accessibilité : lien d'évitement */
.skip { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: .75rem 1rem; z-index: 300; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; color: #fff; }
