/* ==========================================================================
   SRL Couverture & Rénovation — feuille de style principale
   Palette dérivée du logo : orange/ambre + anthracite + zinc
   ========================================================================== */

/* ---------- Polices auto-hébergées ---------- */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Variables ---------- */
:root {
  --orange: #ef7a17;
  --orange-deep: #d9630a;
  --amber: #fba92c;
  --ink: #1b1d22;
  --charcoal: #16181d;
  --charcoal-2: #20232b;
  --zinc: #3d4654;
  --zinc-light: #6a7585;
  --muted: #5c616b;
  --bg: #fbfaf8;
  --surface: #ffffff;
  --cream: #f4efe7;
  --border: #e7e1d8;
  --shadow: 0 18px 40px -22px rgba(22, 24, 29, .35);
  --shadow-sm: 0 8px 22px -16px rgba(22, 24, 29, .4);
  --radius: 4px;
  --maxw: 1180px;
  --gut: clamp(1.1rem, 4vw, 2.2rem);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1.1rem; }
ul { margin: 0; padding: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
section { padding-block: clamp(3.2rem, 8vw, 6rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--charcoal); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Accent labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--orange); display: inline-block; }
.eyebrow--light { color: var(--amber); }

.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  min-height: 48px; line-height: 1;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 22px -12px rgba(239,122,23,.9); }
.btn--primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--charcoal); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--charcoal); }
.btn--light:hover { background: var(--cream); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: #fff; transform: translateY(-2px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,248,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 88px; }
.brand { display: flex; align-items: center; gap: .65rem; }
.brand img { width: 78px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.brand-text span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a.navlink {
  font-weight: 600; font-size: .97rem; color: var(--ink); padding: .4rem 0; position: relative;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--orange); transition: width .2s ease;
}
.nav a.navlink:hover::after, .nav a.navlink[aria-current="page"]::after { width: 100%; }
.nav a.navlink[aria-current="page"] { color: var(--orange-deep); }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-family: 'Manrope', sans-serif; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--orange-deep); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink); margin: 5px 0; transition: .25s; border-radius: 2px; }
.nav-close { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { background: radial-gradient(120% 120% at 88% 8%, #fff, var(--bg) 55%); position: relative; overflow: hidden; display: flex; flex-direction: column; padding-block: 0; }
.hero-grid {
  display: grid; grid-template-columns: 0.8fr 1.42fr; gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: stretch; min-height: clamp(500px, 64vh, 700px);
}
.hero-copy { align-self: center; padding-block: clamp(2rem, 5vw, 3.6rem); }
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
.hero h1 .hl { color: var(--orange-deep); }
.hero-sub { font-size: 1.18rem; color: var(--muted); max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--ink); line-height: 1; }
.hero-stats .stat span { font-size: .9rem; color: var(--muted); }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 6px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.hero-badge {
  position: absolute; left: -18px; bottom: 26px;
  background: var(--charcoal); color: #fff; padding: .9rem 1.15rem; border-radius: 5px;
  box-shadow: var(--shadow); max-width: 215px;
}
.hero-badge strong { color: var(--amber); font-family: 'Manrope', sans-serif; display: block; font-size: 1.05rem; }
.hero-badge span { font-size: .85rem; color: #d7d9de; }

/* trust strip */
.trust-strip { background: var(--charcoal); color: #cfd2d8; }
.trust-strip .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; justify-content: space-between; padding-block: 1.1rem; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .95rem; }
.trust-item svg { width: 20px; height: 20px; color: var(--amber); flex: none; }
.trust-item strong { color: #fff; font-family: 'Manrope', sans-serif; }

/* ==========================================================================
   SECTIONS GÉNÉRIQUES
   ========================================================================== */
.section-head { max-width: 62ch; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.bg-cream { background: var(--cream); }
.bg-dark { background: var(--charcoal); color: #e8e9ed; }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark .lead, .bg-dark p { color: #c3c7cf; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.service {
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px;
  padding: 1.7rem 1.6rem; position: relative; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #d8d0c4; }
.service .ico {
  width: 52px; height: 52px; border-radius: 8px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--amber)); color: #fff; margin-bottom: 1.1rem;
}
.service .ico svg { width: 28px; height: 28px; }
.service h3 { margin-bottom: .4rem; }
.service p { font-size: .98rem; color: var(--muted); margin-bottom: 0; }
.service--feature { grid-column: span 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.service--feature .sf-body { padding: 2rem 1.9rem; }
.service--feature img { height: 100%; width: 100%; object-fit: cover; min-height: 220px; }

/* ---------- Split / asymétrique ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.split.alt { grid-template-columns: .9fr 1.1fr; }
.split-media img { border-radius: 6px; box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split-media.stack { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.split-media.stack img:first-child { grid-column: span 2; aspect-ratio: 16/10; }
.check-list { list-style: none; display: grid; gap: .7rem; margin: 1.3rem 0 1.6rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-list svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 2px; }

/* ---------- Stats band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.statband .s strong { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); color: var(--amber); display: block; line-height: 1; }
.statband .s span { font-size: .95rem; color: #c3c7cf; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.7rem 1.5rem; position: relative; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--orange);
  display: block; margin-bottom: .6rem;
}
.step h3 { margin-bottom: .35rem; }
.step p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 6px; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .7rem;
  background: linear-gradient(transparent, rgba(22,24,29,.82)); color: #fff;
  font-size: .85rem; font-weight: 600; opacity: 0; transform: translateY(8px); transition: .25s;
}
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption { opacity: 1; transform: none; }
.gallery .tall { grid-row: span 2; }
.gallery .tall img { aspect-ratio: 3/4; height: 100%; }

/* ---------- Zone d'intervention ---------- */
.zones { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.zones li { list-style: none; }
.zones .zone {
  display: inline-block; background: var(--surface); border: 1px solid var(--border);
  padding: .5rem .95rem; border-radius: 40px; font-size: .92rem; font-weight: 600;
}
.zones .zone.is-base { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.6rem; border-top: 4px solid var(--orange); }
.review .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: .6rem; }
.review p { font-style: italic; color: var(--ink); }
.review .who { font-weight: 700; font-family: 'Manrope', sans-serif; font-style: normal; color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--charcoal) 60%, var(--zinc)); color: #fff; border-radius: 8px; padding: clamp(2rem, 5vw, 3.2rem); }
.cta-band .wrap-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; max-width: 18ch; margin: 0; }
.cta-band p { color: #c8ccd4; margin: .5rem 0 0; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 5vw, 3.5rem); align-items: start; }
.contact-info { display: grid; gap: 1.2rem; }
.info-row { display: flex; gap: .9rem; align-items: flex-start; }
.info-row .ico { width: 44px; height: 44px; border-radius: 8px; background: var(--cream); display: grid; place-items: center; flex: none; }
.info-row .ico svg { width: 22px; height: 22px; color: var(--orange-deep); }
.info-row strong { font-family: 'Manrope', sans-serif; display: block; font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.info-row a, .info-row span { font-size: 1.08rem; font-weight: 600; }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem .9rem; border: 1px solid var(--border); border-radius: 5px;
  font: inherit; font-size: 1rem; background: var(--bg); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); outline: none; background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.field-check input { width: auto; margin-top: 4px; flex: none; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .8rem; }
.alert { padding: .9rem 1rem; border-radius: 5px; margin-bottom: 1.2rem; font-size: .95rem; }
.alert--err { background: #fdecea; color: #a4271a; border: 1px solid #f3c0b9; }
.alert--ok { background: #eaf7ee; color: #1d6b36; border: 1px solid #bce3c8; }

/* ==========================================================================
   PAGE HEADER (sous-pages)
   ========================================================================== */
.page-hero { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,24,29,.96), rgba(22,24,29,.7)), url('../images/hero/toiture-zinc-paris.webp') center/cover; opacity: .35; z-index: 0; }
.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(3rem, 7vw, 5rem); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: #cdd0d7; max-width: 56ch; margin: 0; }
.crumbs { font-size: .85rem; color: #9aa0ab; margin-bottom: 1rem; }
.crumbs a:hover { color: var(--amber); }

/* prose (pages légales) */
.prose { max-width: 75ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p, .prose li { color: #3a3e46; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--orange-deep); text-decoration: underline; }
.todo { background: #fff7e6; border: 1px dashed var(--amber); padding: .15rem .45rem; border-radius: 3px; font-size: .9em; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--charcoal); color: #b9bdc6; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand img { width: 78px; height: auto; margin-bottom: .8rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .95rem; max-width: 32ch; }
.site-footer h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: 1rem; margin-bottom: 1rem; }
.footer-links { list-style: none; display: grid; gap: .55rem; }
.footer-links a:hover { color: var(--amber); }
.footer-contact { display: grid; gap: .6rem; font-size: .95rem; }
.footer-contact a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.3rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #8a8f99; }
.footer-bottom a:hover { color: var(--amber); }

/* ==========================================================================
   FLOATING WHATSAPP + COOKIE
   ========================================================================== */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 26px -8px rgba(37,211,102,.7);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }

#cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 95;
  max-width: 460px; background: var(--charcoal); color: #e6e7eb;
  padding: 1.1rem 1.2rem; border-radius: 8px; box-shadow: var(--shadow);
  font-size: .9rem;
}
#cookie-banner p { margin: 0 0 .8rem; }
#cookie-banner a { color: var(--amber); text-decoration: underline; }
#cookie-banner .cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
#cookie-banner button { font-size: .9rem; padding: .55rem 1rem; min-height: 40px; }
[hidden] { display: none !important; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.4rem; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; margin-left: auto; order: 3; }
  .header-cta { order: 2; }
  .nav {
    position: fixed; inset: 88px 0 auto 0; flex-direction: column; align-items: flex-start;
    background: var(--surface); padding: 1.2rem var(--gut); gap: .2rem;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow); transform: translateY(-120%);
    transition: transform .3s ease; max-height: calc(100vh - 88px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav-close {
    display: block; align-self: flex-end; background: none; border: 0; cursor: pointer;
    font-family: 'Manrope', sans-serif; font-size: 2rem; line-height: 1; color: var(--ink);
    padding: .2rem .6rem; margin: -.3rem -.3rem .2rem 0;
  }
  .nav a.navlink { width: 100%; padding: .7rem 0; border-bottom: 1px solid var(--border); }
  .nav .btn { margin-top: .6rem; }
  .header-cta .header-phone { display: none; }
  .hero-grid, .split, .split.alt, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding: 1.8rem 0 0; }
  .hero { display: flex; flex-direction: column; }
  .hero-roof { position: relative; width: 100%; order: 2; margin: 0; font-size: 0; }
  .hero-roof img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; object-position: center bottom; display: block; }
  .hero-inner2 { min-height: auto; order: 1; display: block; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16/11; }
  .hero-badge { left: auto; right: 14px; }
  .services, .steps, .reviews, .statband { grid-template-columns: 1fr; }
  .service--feature { grid-column: auto; grid-template-columns: 1fr; }
  .service--feature img { min-height: 200px; }
  .statband { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .tall { grid-row: auto; }
  .gallery .tall img { aspect-ratio: 4/3; }
  .cta-band .wrap-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .services { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem 2rem; }
  .brand-text span { display: none; }
}

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

/* ---------- Service cards : image icons (illustrations) ---------- */
.service .ico--img{background:none;border-radius:0;width:60px;height:60px;padding:0;margin-bottom:1.1rem}
.service .ico--img img{width:100%;height:100%;object-fit:contain}
.service--feature .ico--img{width:60px;height:60px}
/* Hero : grande image de toiture (bord droit) */
.hero-media--float{align-self:stretch;margin-right:calc(-1 * var(--gut))}
.hero-media--float img{width:100%;height:100%;aspect-ratio:auto;object-fit:contain;object-position:right center;border:0;border-radius:0;box-shadow:none}
.hero-roof{position:relative;width:100%;order:2;margin:0;font-size:0;z-index:0}
.hero-roof img{width:100%;height:auto;object-fit:contain;object-position:center bottom;display:block}
.hero-inner2{position:relative;z-index:2;order:1;display:block;min-height:auto}
.hero-inner2 .hero-copy{max-width:none}
.hero-inner2 .hero-sub{max-width:none}
@media(max-width:860px){.hero-media--float{margin-right:0}.hero-media--float img{min-height:0;height:auto;aspect-ratio:16/11}.hero{display:flex;flex-direction:column}.hero-roof{position:relative;inset:auto;width:100%;order:2;margin:0;font-size:0}.hero-roof img{width:100%;height:auto;aspect-ratio:auto;object-fit:contain;object-position:center bottom;display:block}.hero-inner2{min-height:auto;order:1;display:block}.hero-inner2 .hero-copy{padding:1.6rem 0 1.6rem;max-width:none}.hero-inner2 .hero-sub{max-width:none}}
/* Hero full-bleed (accueil) */
.hero--full{color:#fff;background:var(--charcoal);position:relative;overflow:hidden}
.hero--full .hero-bg{position:absolute;inset:0;z-index:0}
.hero--full .hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center}
.hero--full::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(20,22,26,.9),rgba(20,22,26,.58) 52%,rgba(20,22,26,.22))}
.hero--full .hero-inner{position:relative;z-index:2;display:flex;align-items:center;min-height:clamp(500px,72vh,740px);padding-block:clamp(2rem,6vw,4rem)}
.hero--full .hero-copy{max-width:640px}
.hero--full .eyebrow{color:var(--amber)}
.hero--full h1{color:#fff}.hero--full h1 .hl{color:var(--amber)}
.hero--full .hero-sub{color:#e8e3db;max-width:46ch}
.hero--full .hero-stats{border-top:1px solid rgba(255,255,255,.2);padding-top:1.4rem}
.hero--full .hero-stats .stat span{color:#c9c4bb}
.hero--full .btn--ghost{color:#fff;border-color:rgba(255,255,255,.5)}
.hero--full .btn--ghost:hover{background:#fff;color:var(--charcoal);border-color:#fff}
@media(max-width:860px){.hero--full::after{background:linear-gradient(180deg,rgba(20,22,26,.6),rgba(20,22,26,.85))}.hero--full .hero-inner{min-height:clamp(440px,78vh,560px)}}