/* ================================================================
   Éla'Gus — refonte 2026
   Contrat: DESIGN.md (tokens gelés — ne pas hardcoder de valeurs)
   ================================================================ */

:root {
  --pine-950: #102217;
  --pine-900: #16301F;
  --pine-700: #235C38;
  --pine-500: #3E7D4E;
  --paper: #F1F3EA;
  --surface: #FFFFFF;
  --ink: #1B2A1F;
  --muted: #57675A;
  --line: #D8DECE;
  --orange: #D95B18;
  --orange-dk: #B94A10;
  --on-dark: #F4F6EF;
  --on-dark-muted: #B9C4B4;
  --on-dark-eyebrow: #9FBF8E;
  --radius: 10px;
  --shadow-img: 0 20px 40px -24px rgba(16, 34, 23, .4);
  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.25; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--pine-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--pine-500); }

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

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--pine-700);
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange);
  flex: none;
}

.lede { font-size: 1.1875rem; color: var(--muted); max-width: 60ch; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 600 1rem var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn svg { flex: none; }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dk); color: #fff; transform: translateY(-1px); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--pine-700); color: var(--pine-700); }
.btn--light { border-color: rgba(244, 246, 239, .35); color: var(--on-dark); background: transparent; }
.btn--light:hover { border-color: var(--on-dark); color: #fff; }
.btn--dark { background: var(--pine-950); color: var(--on-dark); }
.btn--dark:hover { background: var(--pine-700); color: #fff; transform: translateY(-1px); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--pine-950);
  border-bottom: 1px solid rgba(244, 246, 239, .08);
}
.header-in {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  line-height: 1;
}
.brand:hover { color: #fff; }
.brand .brand-mark { flex: none; }
.brand .brand-g { color: #7CB56B; }

.nav { margin-left: auto; }
.nav ul { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; }
.nav a {
  display: inline-block;
  padding: 10px 14px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--on-dark-muted);
  text-decoration: none;
  border-radius: 6px;
}
.nav a:hover { color: #fff; }
.nav a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.header-cta { flex: none; }
.header-cta .btn { padding: 10px 20px; min-height: 44px; font-size: .9375rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 48px; height: 48px;
  border: 1px solid rgba(244, 246, 239, .25);
  border-radius: 8px;
  background: transparent;
  color: var(--on-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle .icon-close { display: none; }

@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--pine-950);
    padding: 32px 24px;
    overflow: auto;
  }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; gap: 4px; }
  .nav a { display: block; font-size: 1.375rem; font-family: var(--font-display); font-weight: 700; padding: 14px 8px; }
  .nav .nav-contact-mobile { margin-top: 24px; border-top: 1px solid rgba(244,246,239,.12); padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
  body.nav-locked { overflow: hidden; }
}
@media (min-width: 900px) {
  .nav-contact-mobile { display: none; }
}

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

.hero {
  position: relative;
  background: var(--pine-950);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% 30%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(78deg, rgba(16, 34, 23, .96) 0%, rgba(16, 34, 23, .82) 42%, rgba(16, 34, 23, .35) 75%, rgba(16, 34, 23, .55) 100%);
}
.hero-in {
  position: relative;
  padding-block: clamp(96px, 14vh, 168px);
  max-width: 700px;
}
.hero .eyebrow { color: var(--on-dark-eyebrow); }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero .lede { color: var(--on-dark-muted); margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0; list-style: none; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(244, 246, 239, .22);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--on-dark);
  background: rgba(16, 34, 23, .45);
}
.chip svg { color: #7CB56B; flex: none; }

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

.section { padding-block: 96px; }
.section--paper { background: var(--paper); }
.section--white { background: var(--surface); border-block: 1px solid var(--line); }
.section--dark { background: var(--pine-950); color: var(--on-dark); }
.section--dark .eyebrow { color: var(--on-dark-eyebrow); }
.section--dark h2 { color: #fff; }
.section--dark .lede { color: var(--on-dark-muted); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }

@media (max-width: 700px) {
  .section { padding-block: 64px; }
  .section-head { margin-bottom: 40px; }
}

/* ---------- Cartes service ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .18s ease, transform .18s ease;
}
.service-card:hover { border-color: var(--pine-500); transform: translateY(-3px); color: var(--ink); }
.service-card figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.service-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover figure img { transform: scale(1.04); }
.service-card .sc-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-card h3 { margin: 0; }
.service-card p { color: var(--muted); font-size: .9375rem; margin: 0; }
.service-card .sc-more {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--pine-700);
}
.service-card:hover .sc-more { color: var(--orange); }

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

/* ---------- Bande "pourquoi" ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.feature h3 { font-size: 1.125rem; margin: 16px 0 8px; }
.feature p { color: var(--muted); font-size: .9375rem; margin: 0; }
.feature .f-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--pine-950);
  color: #7CB56B;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- À propos ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo { position: relative; margin: 0; }
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-img);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.about-photo figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  background: rgba(16, 34, 23, .88);
  color: var(--on-dark);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-photo figcaption svg { color: var(--orange); flex: none; }
.about-copy blockquote {
  margin: 0 0 24px;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
  font-size: 1.1875rem;
  color: var(--ink);
}
.about-copy .sig { display: flex; align-items: baseline; gap: 12px; margin-top: 28px; }
.about-copy .sig strong { font-family: var(--font-display); font-size: 1.25rem; }
.about-copy .sig span { color: var(--muted); font-size: .9375rem; }

@media (max-width: 1023px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 460px; }
}

/* ---------- Processus ---------- */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.step { counter-increment: step; position: relative; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 14px;
}
.step h3 { font-size: 1.0625rem; margin-bottom: 6px; color: #fff; }
.step p { font-size: .9rem; color: var(--on-dark-muted); margin: 0; }
.step::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 52px;
  right: 8px;
  border-top: 2px dashed rgba(244, 246, 239, .18);
}
.step:last-child::after { display: none; }

@media (max-width: 1023px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
}
@media (max-width: 599px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Galerie ---------- */

.gallery-grid {
  columns: 3;
  column-gap: 20px;
}
.gallery-grid.gallery-grid--preview { columns: 3; }
.g-item {
  display: block;
  margin: 0 0 20px;
  border: 0;
  padding: 0;
  background: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  width: 100%;
  break-inside: avoid;
  position: relative;
}
.g-item img { width: 100%; border-radius: var(--radius); transition: transform .4s ease; }
.g-item:hover img { transform: scale(1.03); }
.g-item:focus-visible { outline-offset: 3px; }

@media (max-width: 899px) { .gallery-grid, .gallery-grid.gallery-grid--preview { columns: 2; column-gap: 14px; } .g-item { margin-bottom: 14px; } }
@media (max-width: 520px) { .gallery-grid { columns: 1; } .gallery-grid.gallery-grid--preview { columns: 2; } }

.gallery-more { margin-top: 40px; text-align: center; }

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox[open] { display: flex; }
.lightbox::backdrop { background: rgba(10, 20, 14, .92); }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  margin: auto;
}
.lb-btn {
  position: fixed;
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(244, 246, 239, .3);
  background: rgba(16, 34, 23, .7);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-btn:hover { background: var(--pine-700); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--on-dark-muted);
  font-size: .875rem;
  letter-spacing: .08em;
}

/* ---------- Zone d'intervention ---------- */

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.zone-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.zone-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.zone-list svg { color: var(--orange); flex: none; }
.zone-note { margin-top: 24px; color: var(--muted); font-size: .9375rem; }
.zone-map {
  background: var(--pine-950);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-img);
}
.zone-map svg { display: block; width: 100%; height: auto; border-radius: 6px; }

@media (max-width: 899px) {
  .zone-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 820px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.0625rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { flex: none; color: var(--pine-700); transition: transform .18s ease; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--muted); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: var(--pine-950);
  color: var(--on-dark);
  overflow: hidden;
}
.cta-band .topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(244, 246, 239, .06);
}
.cta-in {
  position: relative;
  padding-block: 96px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-in h2 { color: #fff; margin-bottom: 12px; }
.cta-in p { color: var(--on-dark-muted); margin: 0; max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }
@media (max-width: 899px) {
  .cta-in { grid-template-columns: 1fr; padding-block: 64px; }
}

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

.site-footer {
  background: var(--pine-950);
  color: var(--on-dark-muted);
  border-top: 1px solid rgba(244, 246, 239, .08);
  font-size: .9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-block: 72px;
}
.site-footer .brand { font-size: 1.375rem; margin-bottom: 16px; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--on-dark-eyebrow);
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: var(--on-dark-muted); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer li { display: flex; gap: 10px; align-items: flex-start; }
.site-footer li svg { flex: none; color: #7CB56B; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(244, 246, 239, .1);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: space-between;
  font-size: .875rem;
}
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-block: 56px; } }

/* ---------- Page hero (pages internes) ---------- */

.page-hero {
  position: relative;
  background: var(--pine-950);
  color: var(--on-dark);
  overflow: hidden;
}
.page-hero .hero-bg img { object-position: center 40%; }
.page-hero .hero-bg::after {
  background: linear-gradient(78deg, rgba(16, 34, 23, .95) 0%, rgba(16, 34, 23, .75) 55%, rgba(16, 34, 23, .45) 100%);
}
.page-hero-in { position: relative; padding-block: 88px; max-width: 760px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero .lede { color: var(--on-dark-muted); }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: .875rem;
}
.breadcrumb a { color: var(--on-dark-muted); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: rgba(244, 246, 239, .35); }
.breadcrumb [aria-current] { color: var(--on-dark-eyebrow); }

/* ---------- Prestations détaillées ---------- */

.presta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.presta + .presta { margin-top: 96px; }
.presta figure { margin: 0; position: sticky; top: 104px; }
.presta figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-img);
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.presta--flip figure { order: 2; }
.presta h2 { margin-bottom: 20px; }
.presta .lede { margin-bottom: 32px; }

.taille-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.taille-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.taille-list h3 { font-size: 1.0625rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.taille-list h3 svg { color: var(--orange); flex: none; }
.taille-list p { color: var(--muted); font-size: .9375rem; margin: 0; }

@media (max-width: 899px) {
  .presta { grid-template-columns: 1fr; gap: 32px; }
  .presta figure { position: static; }
  .presta--flip figure { order: 0; }
  .presta + .presta { margin-top: 64px; }
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-card .c-icon {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 10px;
  background: var(--pine-950);
  color: #7CB56B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { margin: 0; color: var(--muted); font-size: .9375rem; }
.contact-card a.big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--ink);
  text-decoration: none;
}
.contact-card a.big:hover { color: var(--orange); }

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-panel h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-panel > p { color: var(--muted); font-size: .9375rem; margin-bottom: 28px; }
.quote-steps {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-steps li { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--pine-950);
  color: #7CB56B;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-steps h3 { font-size: 1rem; margin-bottom: 4px; }
.quote-steps p { margin: 0; color: var(--muted); font-size: .9375rem; }
.panel-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.panel-note { font-size: .875rem; color: var(--muted); margin-top: 20px; }

.emergency-callout {
  margin-top: 56px;
  background: #F7F1E1;
  border: 1px solid #E7DDC3;
  border-radius: 18px;
  padding: 40px 44px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.emergency-callout .e-icon { color: #C08A2D; flex: none; margin-top: 4px; }
.emergency-callout h2 { font-size: 1.375rem; margin-bottom: 8px; max-width: 32ch; }
.emergency-callout p { margin: 0 0 24px; color: var(--muted); max-width: 58ch; }

@media (max-width: 899px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-panel { padding: 28px 22px; }
  .emergency-callout { margin-top: 40px; padding: 28px 22px; gap: 18px; flex-direction: column; }
  .emergency-callout .e-icon { margin-top: 0; }
  .emergency-callout .btn { width: 100%; }
}

/* ---------- Signature : ligne de vie ---------- */

.rope-anchor { position: relative; }
@media (min-width: 1100px) {
  .rope-anchor::before {
    content: "";
    position: absolute;
    top: -48px;
    bottom: -48px;
    left: 50%;
    border-left: 2px dashed rgba(35, 92, 56, .25);
    pointer-events: none;
  }
}

/* ---------- Reveal (enhancement uniquement — visible par défaut) ---------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
html.js [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .service-card, .service-card figure img, .g-item img, .btn { transition: none; }
}

/* ---------- Divers ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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