@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin-ext.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin-ext.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   RENOVAM — Design system
   Palette : bleu marine / blanc / or (couleurs du logo Renovam)
   Typo    : Fraunces (titres) + Archivo (texte)
   ============================================================ */

:root {
  --paper:      #FAFAF7;
  --paper-2:    #F0F2F8;
  --ink:        #16204A;
  --ink-soft:   #3A4468;
  --stone:      #5F6883;
  --oak:        #C79A33;
  --oak-deep:   #9C7820;
  --oak-pale:   #EFE3C2;
  --line:       #E1E4ED;
  --dark:       #131C3F;
  --dark-2:     #202C5C;
  --paper-on-dark: #F4F5F9;
  --stone-on-dark: #A9B2CE;
  --radius: 2px;
  --wrap: 1160px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Base ---------- */

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }

a { color: inherit; }

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

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

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

::selection { background: var(--oak-pale); }

/* ---------- Boutons ---------- */

.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--oak-deep); border-color: var(--oak-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-large { padding: 1.05rem 2rem; font-size: 1rem; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-img { height: 54px; width: auto; display: block; }
.logo-img-footer { height: 76px; width: auto; display: block; }

@media (max-width: 720px) {
  .logo-img { height: 44px; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
.site-nav a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink-soft);
  transition: color 180ms ease;
}
.site-nav a:not(.btn):hover { color: var(--oak-deep); }
.site-nav a.actif:not(.btn) {
  color: var(--ink);
  border-bottom: 2px solid var(--oak);
  padding-bottom: 2px;
}
.nav-cta { padding: 0.65rem 1.15rem; font-size: 0.9rem; }

.nav-tel {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  white-space: nowrap;
}
.nav-tel svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  box-sizing: border-box;
  background: var(--oak-pale);
  border-radius: 999px;
  fill: none;
  stroke: var(--oak-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.nav-tel:hover { color: var(--oak-deep); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
}
.menu-toggle-bar,
.menu-toggle-bar::before,
.menu-toggle-bar::after {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}
.menu-toggle-bar { position: relative; }
.menu-toggle-bar::before, .menu-toggle-bar::after { content: ""; position: absolute; left: 0; }
.menu-toggle-bar::before { top: -8px; }
.menu-toggle-bar::after  { top:  8px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar::before { transform: rotate(-90deg) translateX(-8px); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar::after { opacity: 0; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: grid;
  align-items: center;
  padding-block: clamp(4rem, 10vh, 7rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-voile {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(9, 15, 38, 0.90) 0%,
    rgba(9, 15, 38, 0.68) 52%,
    rgba(9, 15, 38, 0.34) 100%);
  border-bottom: 4px solid var(--oak);
}

.hero-contenu {
  position: relative;
  width: 100%;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.9em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E4C883;
  margin-bottom: 1.6rem;
}
.hero-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--oak);
  flex-shrink: 0;
}

.hero-coin {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(199, 154, 51, 0.9);
  z-index: 1;
  pointer-events: none;
}
.hero-coin-hd { top: 28px; right: 28px; border-left: none; border-bottom: none; }
.hero-coin-bg { bottom: 28px; left: 28px; border-right: none; border-top: none; }

.accent-or { color: var(--oak-deep); }
.section-dark .accent-or, .chiffres .accent-or, .hero .accent-or { color: var(--oak); }

.hero h1 {
  font-size: clamp(3rem, 6.4vw, 5rem);
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #FFFFFF;
}

.hero-lede {
  font-size: 1.15rem;
  color: rgba(244, 245, 249, 0.88);
  max-width: 52ch;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.btn-or {
  background: var(--oak);
  border-color: var(--oak);
  color: #10193B;
}
.btn-or:hover { background: #D9B45C; border-color: #D9B45C; }

.btn-blanc {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #FFFFFF;
}
.btn-blanc:hover { background: #FFFFFF; border-color: #FFFFFF; color: var(--ink); }

/* ---------- Entête de page intérieure ---------- */

.page-entete {
  background: var(--dark);
  color: var(--paper-on-dark);
  padding-block: clamp(3rem, 7vh, 5rem);
  border-bottom: 4px solid var(--oak);
}
.page-entete h1 {
  font-size: clamp(2.4rem, 4.7vw, 3.7rem);
  color: #FFFFFF;
  margin-bottom: 0.35em;
}
.page-entete p {
  color: #A9B2CE;
  max-width: 62ch;
  margin: 0;
  font-size: 1.08rem;
}

/* ---------- Prestations détaillées (page Services) ---------- */

.prestations { display: grid; gap: clamp(2rem, 4vh, 3rem); }

.prestation {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 4vh, 3rem);
  border-top: 1px solid var(--line);
}
.prestation-swatch { height: 12px; border-radius: var(--radius); margin-top: 0.6rem; }
.prestation h2 { font-size: 1.7rem; margin-bottom: 0.4em; }
.prestation p { margin: 0; color: var(--ink-soft); max-width: 65ch; }

@media (max-width: 720px) {
  .prestation { grid-template-columns: 1fr; gap: 0.8rem; }
}

/* ---------- Bandeau confiance ---------- */

.trust {
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: 2rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.trust-item svg {
  width: 30px; height: 30px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--oak-deep);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 0.15rem;
}
.trust-item p { margin: 0; display: grid; gap: 0.1rem; line-height: 1.35; }
.trust-item strong { font-weight: 600; font-size: 0.98rem; }
.trust-item span { font-size: 0.88rem; color: var(--stone); }

/* ---------- Chiffres clés (engagements) ---------- */

.chiffres {
  background: var(--dark);
  color: var(--paper-on-dark);
  border-bottom: 4px solid var(--oak);
}

.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: clamp(2.8rem, 6vh, 4.2rem);
  text-align: center;
}

.chiffre-nb {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1;
  color: var(--oak);
}
.chiffre-unite {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--oak);
  margin-left: 0.15em;
}
.chiffre p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: #A9B2CE;
}

@media (max-width: 720px) {
  .chiffres-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Visionneuse d'images (lightbox) ---------- */

.realisation-cadre { position: relative; cursor: zoom-in; }
.realisation-cadre::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: #FFFFFF;
  background: rgba(9, 15, 38, 0.45);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}
.realisation-cadre:hover::after { opacity: 1; }

.visionneuse {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(9, 15, 38, 0.94);
  padding: clamp(1rem, 4vw, 3rem);
}
.visionneuse.est-ouverte { display: grid; }
.visionneuse img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid var(--dark-2);
  border-radius: var(--radius);
}
.visionneuse figcaption {
  margin-top: 1rem;
  text-align: center;
  color: var(--paper-on-dark);
}
.visionneuse figcaption strong { display: block; font-size: 1.15rem; }
.visionneuse figcaption span { color: #A9B2CE; font-size: 0.92rem; }
.visionneuse-fermer {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.4rem;
}
.visionneuse-fermer:hover { color: var(--oak); }

/* ---------- Sections communes ---------- */

.section { padding-block: clamp(4.5rem, 10vh, 7.5rem); }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.section-head h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
}
.section-head p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.4rem;
  transition: border-color 220ms ease, transform 220ms ease;
}
.service-card:hover { border-color: var(--oak); }

.service-swatch {
  height: 10px;
  margin-bottom: 1.4rem;
  border-radius: var(--radius);
}
.swatch-carrelage{ background: repeating-linear-gradient(90deg, #98A2BE 0 30px, #E1E4ED 30px 32px, #98A2BE 32px 62px); }
.swatch-parquet  { background: repeating-linear-gradient(90deg, #9C7820 0 26px, #C79A33 26px 52px, #B08A2A 52px 78px); }
.swatch-sols     { background: linear-gradient(90deg, #9AA0AF, #C3C7D1 55%, #A6ABBA); }
.swatch-demolition { background: repeating-linear-gradient(45deg, #3A4468 0 12px, #5F6883 12px 24px); }
.swatch-transformation { background: linear-gradient(90deg, #16204A 0 33%, #202C5C 33% 66%, #C79A33 66%); }
.swatch-support  { background: repeating-linear-gradient(45deg, #C9CEDD 0 10px, #EDEFF5 10px 20px); }

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45em;
}
.service-card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

/* ---------- Process ---------- */

.process { background: var(--paper); padding-top: 0; }

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.process-steps li {
  border-top: 2px solid var(--ink);
  padding-top: 1.3rem;
}

.process-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--oak);
  display: block;
  margin-bottom: 0.5rem;
}

.process-steps h3 { font-size: 1.25rem; margin-bottom: 0.4em; }
.process-steps p { margin: 0; font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Réalisations (section sombre) ---------- */

.section-dark {
  background: var(--dark);
  color: var(--paper-on-dark);
}
.section-dark .section-head p { color: #A9B2CE; }

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.2rem);
}

.realisation { margin: 0; }

.realisation-cadre {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--dark-2);
}

.realisation-visual {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease;
}
.realisation:hover .realisation-visual { transform: scale(1.05); }

.realisation figcaption {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.15rem;
}
.realisation strong { font-weight: 600; font-size: 1.02rem; }
.realisation span { font-size: 0.9rem; color: #A9B2CE; }

.section-lien {
  margin: clamp(2.5rem, 5vh, 3.5rem) 0 0;
  text-align: center;
}

/* ---------- Manifeste & valeurs ---------- */

.valeurs-manifeste {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto clamp(3rem, 6vh, 4.5rem);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
}

.valeur h3 {
  font-size: 1.3rem;
  border-top: 2px solid var(--oak);
  padding-top: 1rem;
  margin-bottom: 0.5em;
}
.valeur p { margin: 0; font-size: 0.97rem; color: var(--ink-soft); }

/* ---------- Pourquoi Renovam (liste numérotée bauV) ---------- */

.pourquoi {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 54rem;
}
.pourquoi li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding-block: clamp(1.6rem, 3.5vh, 2.4rem);
  border-top: 1px solid var(--line);
}
.pourquoi li:first-child { border-top: none; }
.pourquoi-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
  color: var(--oak);
  letter-spacing: 0.04em;
}
.pourquoi h3 { font-size: 1.45rem; margin-bottom: 0.35em; }
.pourquoi p { margin: 0; color: var(--ink-soft); max-width: 58ch; }

@media (max-width: 540px) {
  .pourquoi li { grid-template-columns: 56px 1fr; }
}

/* ---------- Liste à coches dorées ---------- */

.coches {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
}
.coches li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-weight: 500;
}
.coches li::before {
  content: "✓";
  display: grid;
  place-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--oak);
  border-radius: 999px;
  color: var(--oak-deep);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.05rem;
}

/* ---------- Bande CTA ---------- */

.cta-bande {
  background: var(--oak-pale);
  border-block: 1px solid #E2D3AC;
}

.cta-bande-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: 2.2rem;
}

.cta-bande p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
}

/* ---------- Conseils : liste d'articles ---------- */

.conseils-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.2rem);
}

.conseil-carte {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 220ms ease;
}
.conseil-carte:hover { border-color: var(--oak); }
.conseil-carte > a { display: block; }
.conseil-carte img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; display: block; }

.conseil-carte-corps {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.conseil-meta { font-size: 0.82rem; color: var(--stone); }
.conseil-carte h2 { font-size: 1.5rem; margin: 0; line-height: 1.2; }
.conseil-carte h2 a { text-decoration: none; }
.conseil-carte h2 a:hover { color: var(--oak-deep); }
.conseil-carte-corps > p { margin: 0; color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.lien-article {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--oak-deep);
  text-decoration: none;
}
.lien-article::after {
  content: "›";
  margin-left: 0.4em;
  display: inline-block;
  transition: transform 220ms ease;
}
.lien-article:hover { text-decoration: underline; }
.lien-article:hover::after { transform: translateX(4px); }

/* ---------- Article ---------- */

.article-corps { max-width: 46rem; margin-inline: auto; }
.article-visuel {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}
.article-meta { font-size: 0.88rem; color: var(--stone); margin-bottom: 2rem; }
.article-corps > p:first-of-type { font-size: 1.1rem; }
.article-corps h2 { font-size: 1.95rem; margin-top: 2em; }
.article-corps h3 { font-size: 1.4rem; margin-top: 1.6em; }
.article-corps p, .article-corps li { color: var(--ink-soft); }
.article-corps ul { padding-left: 1.2rem; }
.article-corps li { margin-bottom: 0.4em; }

.table-scroll { overflow-x: auto; margin: 1.6rem 0; }
.tableau-prix { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.tableau-prix th, .tableau-prix td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.tableau-prix th { font-weight: 600; color: var(--ink); background: var(--paper-2); }
.tableau-prix td:last-child, .tableau-prix th:last-child { text-align: right; white-space: nowrap; }

.encadre {
  background: var(--oak-pale);
  border-left: 3px solid var(--oak);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin: 2rem 0;
  font-size: 0.94rem;
}
.encadre p { margin: 0; color: var(--ink); }

/* ---------- La société ---------- */

.societe-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.societe h2 { font-size: clamp(2.2rem, 4.2vw, 3.3rem); }

.societe-lede {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  max-width: 40ch;
}
.societe-text p:not(.societe-lede) { color: var(--ink-soft); max-width: 58ch; }

.societe-points {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
}
.societe-points li {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.societe-points strong { font-weight: 600; color: var(--ink); }

/* ---------- Devis / Contact ---------- */

.section-contrast {
  background: var(--dark);
  color: var(--paper-on-dark);
}

.devis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.devis-intro h1,
.devis-intro h2 { font-size: clamp(2.2rem, 4.2vw, 3.3rem); color: #FFFFFF; }
.devis-intro > p { color: #A9B2CE; font-size: 1.08rem; }

.devis-contacts {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--dark-2);
}
.devis-contacts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--dark-2);
  font-size: 0.97rem;
}
.devis-contact-label { color: #A9B2CE; }
.devis-contacts a {
  color: var(--paper-on-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--oak);
  transition: color 180ms ease;
}
.devis-contacts a:hover { color: var(--oak); }

.hp-field { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }

.devis-faq-lien { margin: 1.6rem 0 0; font-size: 0.92rem; color: #A9B2CE; }
.devis-faq-lien a { color: var(--paper-on-dark); text-decoration: none; border-bottom: 1px solid var(--oak); }
.devis-faq-lien a:hover { color: var(--oak); }

.a-completer {
  font-style: italic;
  color: #D9B45C;
}

.devis-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field { display: grid; gap: 0.4rem; }

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  transition: border-color 180ms ease;
  width: 100%;
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--oak);
  box-shadow: 0 0 0 3px var(--oak-pale);
}
.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid { border-color: #B3402A; }

.form-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--stone);
  cursor: pointer;
}
.form-consent input { margin-top: 0.25rem; accent-color: var(--oak-deep); }

.form-status { margin: 0; font-size: 0.95rem; min-height: 1.4em; }
.form-status.is-error { color: #B3402A; }
.form-status.is-ok { color: var(--oak-deep); font-weight: 600; }

/* ---------- FAQ & zone d'intervention ---------- */

.aide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.faq h2, .zone-bloc h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  transition: color 180ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--oak-deep); }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--oak);
  flex-shrink: 0;
  transition: transform 250ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  max-width: 60ch;
}

.zone-bloc {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}
.zone-chips li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.zone-note { margin: 0; font-size: 0.9rem; color: var(--stone); }

@media (max-width: 980px) {
  .aide-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--paper-on-dark);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 2rem;
  padding-block: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.site-footer p { margin: 0 0 0.5rem; color: #A9B2CE; }
.site-footer a { color: var(--paper-on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--oak); }

/* ---------- Rideau d'ouverture ---------- */

.rideau {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--dark);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
  transition: transform 750ms cubic-bezier(0.7, 0, 0.2, 1);
}
.rideau img {
  height: 74px;
  width: auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 550ms ease 150ms, transform 550ms ease 150ms;
}
.rideau-trait {
  width: 0;
  height: 2px;
  background: var(--oak);
  transition: width 650ms cubic-bezier(0.2, 0.6, 0.2, 1) 500ms;
}
.rideau.anime img { opacity: 1; transform: none; }
.rideau.anime .rideau-trait { width: 190px; }
.rideau.leve { transform: translateY(-101%); }
body.rideau-actif { overflow: hidden; }
.rideau img, .rideau .rideau-trait { position: relative; z-index: 2; }

/* ---------- Plan d'appartement qui se dessine ---------- */

.plan-appart path {
  fill: none;
  stroke: var(--oak);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.plan-txt {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  fill: var(--oak);
  opacity: 0;
}
@keyframes tracerPlan { to { stroke-dashoffset: 0; } }
@keyframes apparaitreTxt { to { opacity: 0.85; } }

.rideau .plan-appart {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(580px, 84vw);
  height: auto;
  opacity: 0.5;
}
.rideau.anime .plan-appart path {
  animation: tracerPlan 650ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: calc(var(--i) * 55ms + 150ms);
}
.rideau.anime .plan-txt {
  animation: apparaitreTxt 400ms ease forwards;
  animation-delay: 1250ms;
}

/* ---------- Titre cinéma (mot à mot) ---------- */

.titre-cine .mot { display: inline-block; overflow: hidden; vertical-align: bottom; }
.titre-cine .mot > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 850ms cubic-bezier(0.2, 0.7, 0.2, 1) calc(var(--i) * 95ms);
}
body.is-loaded .titre-cine .mot > span { transform: none; }

/* ---------- Carte de spécialités flottante ---------- */

.specialites {
  position: relative;
  z-index: 5;
  margin-top: -74px;
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.specialites-carte {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 26px 60px rgba(19, 28, 63, 0.16);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}

.spec-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.75rem;
  padding: 1.7rem 0.8rem 1.5rem;
  background: none;
  border: none;
  border-left: 1px solid var(--line);
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}
.spec-item:first-child { border-left: none; }
.spec-item:hover { background: var(--paper-2); }
.spec-item.est-actif {
  background: var(--paper-2);
  box-shadow: inset 0 -3px 0 var(--oak);
}

.specialites-carte svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  box-sizing: border-box;
  background: var(--oak-pale);
  border-radius: 999px;
  fill: none;
  stroke: var(--oak-deep);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 250ms ease;
}
.spec-item:hover svg, .spec-item.est-actif svg { transform: translateY(-3px); }

.spec-detail {
  grid-column: 1 / -1;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.spec-detail.ouvert { max-height: 340px; }
.spec-detail-int { padding: clamp(1.3rem, 3vw, 1.8rem) clamp(1.3rem, 4vw, 2.4rem); }
.spec-panneau p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  max-width: 75ch;
}

@media (max-width: 980px) {
  .specialites-carte { grid-template-columns: repeat(3, 1fr); }
  .spec-item { border-top: 1px solid var(--line); }
  .spec-item:nth-child(-n+3) { border-top: none; }
  .spec-item:nth-child(3n+1) { border-left: none; }
}
@media (max-width: 540px) {
  .specialites { margin-top: -56px; }
  .specialites-carte { grid-template-columns: repeat(2, 1fr); }
  .spec-item { border-top: 1px solid var(--line); }
  .spec-item:nth-child(-n+2) { border-top: none; }
  .spec-item:nth-child(odd) { border-left: none; }
}

/* ---------- Bande défilante ---------- */

.defile {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding-block: 0.95rem;
}
.defile-piste {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: defile 30s linear infinite;
}
.defile-piste span {
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.defile-piste em { color: var(--oak); font-style: normal; margin: 0 0.6em; }
.defile:hover .defile-piste { animation-play-state: paused; }
@keyframes defile { to { transform: translateX(-50%); } }

/* ---------- Curseur personnalisé ---------- */

#curseur-anneau {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 2px solid var(--oak);
  border-radius: 999px;
  pointer-events: none;
  z-index: 500;
  transform: translate(-50%, -50%);
  transition: width 220ms ease, height 220ms ease, opacity 250ms ease, border-color 220ms ease;
  opacity: 0;
}
#curseur-point {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--oak);
  border-radius: 999px;
  pointer-events: none;
  z-index: 500;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 250ms ease;
}
body.curseur-actif #curseur-anneau,
body.curseur-actif #curseur-point { opacity: 1; }
#curseur-anneau.grossi { width: 58px; height: 58px; border-color: var(--oak-deep); }

/* ---------- Transitions de page ---------- */

@keyframes apparitionPage { from { opacity: 0; } to { opacity: 1; } }
body { animation: apparitionPage 350ms ease; }

.sortie-voile {
  position: fixed;
  inset: 0;
  z-index: 390;
  background: var(--dark);
  transform: translateY(101%);
  pointer-events: none;
}
.sortie-voile.balaye {
  transition: transform 320ms cubic-bezier(0.6, 0, 0.4, 1);
  transform: translateY(0);
}

.footer-seo { margin-top: 0.9rem; font-size: 0.85rem; color: #A9B2CE; line-height: 1.6; }

/* ---------- Animations au défilement ---------- */

.anim-pret {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.2, 0.6, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--anim-delai, 0ms);
}
.anim-visible {
  opacity: 1;
  transform: none;
}

/* Barre dorée des titres de section */
.section-head::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--oak);
  margin-bottom: 1.3rem;
  transform-origin: left;
}
.section-head.anim-pret::before {
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(0.2, 0.6, 0.2, 1) 250ms;
}
.section-head.anim-visible::before { transform: scaleX(1); }

/* Mot surligné du hero (coup de marqueur or) */
.surligne { position: relative; white-space: nowrap; z-index: 0; }
.surligne::before {
  content: "";
  position: absolute;
  inset: 6% -0.1em;
  background: var(--oak);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms cubic-bezier(0.2, 0.6, 0.2, 1) 900ms;
}
.surligne { transition: color 350ms ease 1250ms; }
body.is-loaded .surligne { color: #10193B; }
body.is-loaded .surligne::before { transform: scaleX(1); }

/* Micro-détails */
.site-nav a:not(.btn) { position: relative; }
.site-nav a:not(.btn):not(.actif)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--oak);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}
.site-nav a:not(.btn):not(.actif):hover::after { transform: scaleX(1); }

.btn { transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 200ms ease, box-shadow 200ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover, .btn-or:hover { box-shadow: 0 8px 20px rgba(19, 28, 63, 0.22); }

.hero-bg { will-change: transform; height: 120%; top: -10%; }

/* ---------- Vidéo d'ambiance du hero (chargée en différé, desktop uniquement) ---------- */

.hero-video {
  position: absolute;
  inset: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: transform;
}
.hero-video.joue { opacity: 1; }

/* ---------- Animation d'entrée (hero uniquement) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
}
body.is-loaded .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 640ms ease, transform 640ms ease;
}
body.is-loaded .reveal-1 { transition-delay: 110ms; }
body.is-loaded .reveal-2 { transition-delay: 220ms; }
body.is-loaded .reveal-3 { transition-delay: 330ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .anim-pret { opacity: 1; transform: none; transition: none; }
  .titre-cine .mot > span { transform: none; transition: none; }
  .defile-piste { animation: none; }
  body { animation: none; }
  .plan-appart path { stroke-dashoffset: 0; animation: none !important; }
  .plan-txt { opacity: 0.85; animation: none !important; }
  .surligne { color: #10193B; }
  .surligne::before { transform: scaleX(1); transition: none; }
  .section-head.anim-pret::before { transform: scaleX(1); transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .realisations-grid { grid-template-columns: repeat(2, 1fr); }
  .conseils-grid { grid-template-columns: 1fr; }
  .valeurs-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .societe-grid, .devis-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 940px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 0.8rem 0; width: 100%; }
  .site-nav a.actif:not(.btn) { border-bottom: none; color: var(--oak-deep); }
  .nav-cta { margin-top: 0.8rem; }
}

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .realisations-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .societe-points li { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ---------- Bouton flottant « Prendre rendez-vous » ---------- */

.fab-rdv {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3.5vh, 2rem);
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  background: linear-gradient(135deg, #D8AE45, var(--oak) 55%, var(--oak-deep));
  color: #10193B;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(9, 15, 38, 0.35), 0 3px 10px rgba(9, 15, 38, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fabEntree 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 1.5s both;
}
.fab-rdv::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: fabPulse 3s ease-out 2.4s infinite;
  pointer-events: none;
}
.fab-rdv svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.fab-rdv:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(9, 15, 38, 0.4), 0 4px 12px rgba(9, 15, 38, 0.25);
}
@keyframes fabEntree {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(199, 154, 51, 0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(199, 154, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(199, 154, 51, 0); }
}
@media (max-width: 640px) {
  .fab-rdv { padding: 0.95rem; }
  .fab-rdv span { display: none; }
  .fab-rdv svg { width: 21px; height: 21px; }
}
@media (prefers-reduced-motion: reduce) {
  .fab-rdv, .fab-rdv::before { animation: none; }
}

/* ---------- Pastilles des nouvelles prestations ---------- */

.swatch-douche  { background: repeating-linear-gradient(0deg, #AEB8CE 0 24px, #E7EAF1 24px 26px); }
.swatch-terrasse { background: repeating-linear-gradient(90deg, #B9B2A4 0 34px, #E9E5DC 34px 36px, #C8C2B4 36px 70px); }
.swatch-ciment  { background: conic-gradient(#16204A 25%, #E1E4ED 0 50%, #16204A 0 75%, #E1E4ED 0) 0 0 / 28px 28px; }

/* ---------- Vitrine des réalisations (défilé de photos) ---------- */

.vitrine {
  --vitrine-gauche: clamp(1.5rem, 6vw, 5.5rem);
  position: relative;
  width: 100%;
  height: min(78vh, 700px);
  overflow: hidden;
}
.vitrine-vue {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 800ms ease;
}
.vitrine-vue.est-active { opacity: 1; }
.vitrine-vue img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vitrine-vue::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 15, 38, 0.74) 0%, rgba(9, 15, 38, 0.42) 42%, rgba(9, 15, 38, 0.10) 72%, rgba(9, 15, 38, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 15, 38, 0.30) 0%, rgba(9, 15, 38, 0) 26%, rgba(9, 15, 38, 0) 70%, rgba(9, 15, 38, 0.38) 100%);
}
@media (prefers-reduced-motion: no-preference) {
  .vitrine-scene:not(.est-scene) .vitrine-vue.est-active img { animation: vitrineZoom 7s ease-out forwards; }
}
@keyframes vitrineZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
.vitrine-vue figcaption {
  position: absolute;
  left: var(--vitrine-gauche, clamp(1.5rem, 6vw, 5.5rem));
  right: 16%;
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 0.55rem;
}
.vitrine-vue figcaption strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.5vw, 4.2rem);
  line-height: 1.04;
  color: #fff;
}
.vitrine-vue figcaption span {
  color: #D9DEEE;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
}
.vitrine-compte {
  position: absolute;
  left: var(--vitrine-gauche, clamp(1.5rem, 6vw, 5.5rem));
  top: calc(50% - clamp(2.4rem, 5vw, 3.6rem));
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.8);
}
.vitrine-compte b {
  color: var(--oak);
  font-weight: 600;
}
.vitrine-outils {
  position: absolute;
  left: var(--vitrine-gauche, clamp(1.5rem, 6vw, 5.5rem));
  bottom: clamp(1.4rem, 5vh, 2.6rem);
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}
.vitrine-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(9, 15, 38, 0.35);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}
.vitrine-btn svg { width: 20px; height: 20px; }
.vitrine-btn:hover {
  background: var(--oak);
  border-color: var(--oak);
  color: #10193B;
}
@media (max-width: 640px) {
  .vitrine { height: min(88vh, 700px); }
  .vitrine-vue figcaption { right: 8%; top: 46%; }
  .vitrine-compte { top: calc(46% - 2.8rem); }
}

/* Mode « scène » : la vitrine se fige et le défilement de la page fait passer les photos */

.vitrine-scene.est-scene { height: 320vh; }
.vitrine-scene.est-scene .vitrine-colle {
  position: sticky;
  top: 0;
  height: 100vh;
}
.vitrine-scene.est-scene .vitrine { height: 100vh; }

/* En mode scène, les photos sont des panneaux qui montent du bas (pas de fondu) */
.vitrine-scene.est-scene .vitrine-vue {
  opacity: 1;
  transition: none;
  will-change: transform;
}
.vitrine-scene.est-scene .vitrine-vue:not(:first-child) { transform: translateY(100%); }
.vitrine-scene.est-scene .vitrine-vue img {
  height: 120%;
  will-change: transform;
}
