/* ============================================================
   Pro Maintenance Energies — Design noir & cuivre
   ============================================================ */

:root {
  --ink:        #0e0e10;   /* noir profond */
  --ink-2:      #161619;   /* charbon (panneaux sombres) */
  --ink-3:      #202024;
  --cream:      #f7f4ef;   /* fond clair chaud */
  --cream-2:    #efe9e1;
  --line:       #e4ddd2;
  --line-dark:  rgba(255,255,255,.10);
  --copper:     #c47a45;   /* cuivre */
  --copper-2:   #d98b4e;   /* cuivre clair (sur fond noir) */
  --copper-dk:  #a8612f;
  --txt:        #1a1916;
  --txt-soft:   #56514a;
  --txt-mut:    #8a8278;
  --txt-light:  rgba(247,244,239,.72);
  --shadow:     0 1px 2px rgba(14,14,16,.05), 0 8px 22px rgba(14,14,16,.07);
  --shadow-lg:  0 16px 38px rgba(14,14,16,.16);
  --glow:       0 0 0 1px rgba(196,122,69,.4), 0 14px 36px rgba(196,122,69,.2);
  --serif:      "Poppins", system-ui, -apple-system, sans-serif;
  --sans:       "Inter", system-ui, -apple-system, sans-serif;
  --maxw:       1180px;
  --radius:     6px;
  --ease:       cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 3px; }
.site-header :focus-visible, .hero :focus-visible { outline-color: var(--copper-2); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); font-size: 17px; line-height: 1.7;
  color: var(--txt); background: var(--cream); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.015em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.32rem; }
p  { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section { padding: 100px 0; }
.section--ink { background: var(--ink); color: var(--cream); }
.section--cream2 { background: var(--cream-2); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--copper); display: inline-block; }
.text-center .eyebrow::after { content: ""; width: 26px; height: 1.5px; background: var(--copper); display: inline-block; }
.section--ink .eyebrow { color: var(--copper-2); }
.lead { font-size: 1.15rem; color: var(--txt-soft); max-width: 60ch; }
.section--ink .lead { color: var(--txt-light); }
.text-center .lead { margin-inline: auto; }

/* ---------- Boutons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .94rem; font-weight: 600; letter-spacing: .02em;
  padding: 16px 32px; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s;
  isolation: isolate;
}
.btn::after { /* reflet qui balaie */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .6s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(130%); }
.btn--primary { background: var(--copper); color: #fff; box-shadow: 0 12px 28px rgba(196,122,69,.34); }
.btn--primary:hover { background: var(--copper-dk); box-shadow: 0 18px 40px rgba(196,122,69,.42); }
.btn--ghost { background: transparent; color: var(--txt); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--call { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(217,139,78,.6); }
.btn--call:hover { background: rgba(217,139,78,.16); border-color: var(--copper-2); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* Bouton d'appel flottant (mobile) */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; display: none; place-items: center;
  color: #fff; background: linear-gradient(145deg, var(--copper-2), var(--copper-dk));
  box-shadow: 0 10px 26px rgba(196,122,69,.5); cursor: pointer;
}
.call-fab svg { width: 26px; height: 26px; }
@media (prefers-reduced-motion: no-preference) {
  .call-fab::before {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(217,139,78,.5); animation: callPulse 2.2s infinite;
  }
  @keyframes callPulse { 70% { box-shadow: 0 0 0 16px rgba(217,139,78,0); } 100% { box-shadow: 0 0 0 0 rgba(217,139,78,0); } }
}
@media (max-width: 720px) { .call-fab { display: grid; } }

/* ============================================================
   Header — sombre & animé
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(14,14,16,.62);
  border-bottom: 1px solid var(--line-dark);
  transition: background .3s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; transition: height .3s var(--ease); }
.site-header.scrolled { background: rgba(14,14,16,.95); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.site-header.scrolled .container { height: 66px; }

.brand { display: flex; align-items: center; gap: 13px; cursor: pointer; }
.brand__mark { width: 44px; height: 46px; flex: none; display: grid; place-items: center; }
.brand__logo { width: 100%; height: 100%; object-fit: contain; transition: transform .4s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.08) translateY(-1px); }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; line-height: 1.05; color: #fff; }
.brand__name small {
  display: block; font-family: var(--sans); font-size: .6rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--copper-2); margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; font-size: .94rem; font-weight: 500; color: rgba(247,244,239,.78);
  padding: 10px 18px; cursor: pointer; transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; width: 0; height: 2px;
  background: var(--copper-2); transform: translateX(-50%); transition: width .3s var(--ease);
  border-radius: 2px;
}
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a.is-active::after { width: 22px; }
.nav a.is-active { color: #fff; }
.nav .nav__cta {
  margin-left: 12px; color: #fff;
  background: linear-gradient(145deg, var(--copper-2), var(--copper-dk));
  padding: 11px 22px; border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(196,122,69,.35); transition: transform .25s var(--ease), box-shadow .25s;
}
.nav .nav__cta::after { display: none; }
.nav .nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(196,122,69,.55); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 46px; height: 46px; padding: 11px; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; transition: .3s var(--ease); border-radius: 2px; }

/* ============================================================
   Hero — image plein écran
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 80% at 82% 14%, rgba(196,122,69,.22), transparent 56%),
    radial-gradient(55% 70% at 8% 104%, rgba(196,122,69,.10), transparent 60%),
    linear-gradient(155deg, #1b1b22 0%, #131318 48%, #0b0b0d 100%);
}
.hero__bg::after { /* filigrane : le logo réel, agrandi et en opacité réduite */
  content: ""; position: absolute; right: 7%; bottom: 14%;
  width: min(30vw, 360px); height: min(46vh, 460px); pointer-events: none;
  background: url("assets/logo.svg") center / contain no-repeat;
  opacity: 0.16;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(9,9,11,.55) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 80px; }
.hero__inner { max-width: 760px; }
.hero h1 { color: #fff; font-size: clamp(2.8rem, 7vw, 5rem); }
.hero h1 .accent { color: var(--copper-2); display: inline-block; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--copper-2); margin-bottom: 1.6rem;
  padding: 8px 16px; border: 1px solid rgba(217,139,78,.4); border-radius: 100px;
  background: rgba(217,139,78,.08);
}
.hero__kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--copper-2); box-shadow: 0 0 0 0 rgba(217,139,78,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(217,139,78,.55);} 70%{box-shadow:0 0 0 9px rgba(217,139,78,0);} 100%{box-shadow:0 0 0 0 rgba(217,139,78,0);} }
.hero__sub { font-size: 1.2rem; color: rgba(255,255,255,.86); max-width: 46ch; margin: 0 0 2.2rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* stats sous le hero */
.hero__stats {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(14,14,16,.5);
}
.hero__stats .container { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; }
.stat { flex: 1; min-width: 150px; }
.hero__stats .container { align-items: baseline; }
.stat b { font-family: var(--serif); font-size: clamp(1.45rem, 1.9vw, 1.65rem); color: var(--copper-2); display: block; line-height: 1.1; letter-spacing: -.01em; white-space: nowrap; }
.stat > span { font-size: .82rem; letter-spacing: .04em; color: rgba(255,255,255,.7); }
/* Mobile : la barre de stats passe sous le contenu (plus de chevauchement) */
@media (max-width: 720px) {
  .hero { min-height: auto; flex-direction: column; align-items: stretch; }
  .hero .container { padding-top: 120px; padding-bottom: 36px; }
  .hero__stats { position: static; background: rgba(14,14,16,.4); }
  .hero__stats .container { padding-top: 26px; padding-bottom: 26px; }
}

/* entrées animées du hero */
.fade-up { opacity: 0; transform: translateY(26px); animation: fadeUp .9s var(--ease) forwards; }
.d1 { animation-delay: .15s; } .d2 { animation-delay: .3s; } .d3 { animation-delay: .45s; } .d4 { animation-delay: .6s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* Titre hero : accent cuivre (la montée ligne par ligne est gérée plus bas) */
.hero__title .line { display: block; }
.hero__title .accent { color: var(--copper-2); }

@media (prefers-reduced-motion: no-preference) {
  /* Montée du titre, ligne par ligne */
  .hero__title .line { overflow: hidden; padding-bottom: .12em; margin-bottom: -.12em; }
  .hero__title .line > span { display: block; transform: translateY(115%); animation: lineRise 1s var(--ease) forwards; }
  .hero__title .line:nth-child(1) > span { animation-delay: .12s; }
  .hero__title .line:nth-child(2) > span { animation-delay: .30s; }
  @keyframes lineRise { to { transform: translateY(0); } }

  /* Balayage lumineux cuivré sur « depuis 30 ans. » à l'arrivée */
  .hero__title .accent {
    background: linear-gradient(110deg,
      var(--copper-2) 0%, var(--copper-2) 42%,
      #ffe7c6 50%,
      var(--copper-2) 58%, var(--copper-2) 100%);
    background-size: 220% 100%; background-position: 0% 0;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  /* l'accent monte (lineRise) ET reçoit le balayage (accentSheen) */
  .hero__title .line > span.accent {
    animation: lineRise 1s var(--ease) .30s forwards, accentSheen 1.5s var(--ease) 1s both;
  }
  @keyframes accentSheen {
    from { background-position: 0% 0; }
    to   { background-position: 165% 0; }
  }

  /* Lueur cuivre ambiante qui dérive lentement en fond de hero */
  .hero__bg::before {
    content: ""; position: absolute; inset: -15%; z-index: 0; pointer-events: none;
    background:
      radial-gradient(38% 48% at 24% 30%, rgba(196,122,69,.20), transparent 60%),
      radial-gradient(44% 54% at 82% 72%, rgba(217,139,78,.13), transparent 62%);
    animation: heroGlow 22s ease-in-out infinite alternate; will-change: transform;
  }
  @keyframes heroGlow {
    from { transform: translate3d(-3%, -2%, 0) scale(1); }
    to   { transform: translate3d(3%, 2.5%, 0) scale(1.1); }
  }

  /* Filigrane logo qui flotte doucement */
  .hero__bg::after { animation: floatLogo 10s ease-in-out infinite; }
  @keyframes floatLogo { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(2deg); } }

  /* Reflet automatique périodique sur le CTA principal du hero */
  .hero__actions .btn--primary::after { animation: autoShine 6s ease-in-out 2s infinite; }
  .hero__actions .btn--primary:hover::after { animation: none; }
  @keyframes autoShine { 0% { transform: translateX(-130%); } 16%, 100% { transform: translateX(130%); } }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; animation: none; }
  .hero__title .line > span { transform: none; }
}

/* ============================================================
   Accroche artisan (image + citation)
   ============================================================ */
.pledge .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pledge__media { position: relative; }
.pledge__media img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lg); width: 100%; }
.pledge__media::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border: 1.5px solid var(--copper); border-radius: var(--radius);
}
.pledge__badge {
  position: absolute; right: -22px; bottom: 28px;
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 18px 24px; box-shadow: var(--shadow-lg); text-align: center;
}
.pledge__badge b { font-family: var(--serif); font-size: 2.2rem; color: var(--copper-2); display: block; line-height: 1; }
.pledge__badge span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.pledge blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.4; }
.pledge .quote-mark { font-family: var(--serif); font-size: 3.4rem; color: var(--copper); line-height: .4; display: block; margin-bottom: .4rem; }
.pledge .sign { margin-top: 1.4rem; font-style: normal; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--copper); font-weight: 600; }

/* ============================================================
   En-têtes de section
   ============================================================ */
.section-head { max-width: 660px; margin: 0 auto 60px; text-align: center; }

/* ---------- Cartes services ---------- */
.cards { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px; box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.card::before { /* liseré cuivre qui apparaît en haut */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--copper-2), var(--copper)); transform: scaleX(0);
  transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__index { font-family: var(--serif); font-size: .9rem; color: var(--copper); margin-bottom: 14px; letter-spacing: .1em; }
.card__icon {
  width: 58px; height: 58px; margin-bottom: 22px; border-radius: var(--radius);
  background: var(--cream); color: var(--copper); display: grid; place-items: center;
  border: 1px solid var(--line); transition: background .35s var(--ease), color .35s, transform .35s;
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { background: var(--copper); color: #fff; transform: rotate(-6deg) scale(1.05); border-color: var(--copper); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--txt-soft); font-size: .98rem; margin-bottom: 0; }

/* ---------- Galerie réalisations ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shot { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/5; box-shadow: var(--shadow); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(14,14,16,.75)); opacity: .85; transition: opacity .4s; }
.shot figcaption {
  position: absolute; left: 20px; bottom: 18px; right: 20px; z-index: 2; color: #fff;
  font-family: var(--serif); font-size: 1.05rem; transform: translateY(6px); transition: transform .4s var(--ease);
}
.shot:hover img { transform: scale(1.08); }
.shot:hover figcaption { transform: none; }

/* ============================================================
   Confiance / engagements
   ============================================================ */
.trust__grid { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.trust__item {
  position: relative; padding: 32px 26px; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s var(--ease), background .35s, border-color .35s;
}
.trust__item::before { /* liseré cuivre au survol */
  content: ""; position: absolute; left: 0; top: 26px; bottom: 26px; width: 2px;
  background: linear-gradient(180deg, var(--copper-2), var(--copper)); border-radius: 2px;
  transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease);
}
.trust__item:hover { transform: translateY(-6px); background: rgba(255,255,255,.06); border-color: rgba(217,139,78,.35); }
.trust__item:hover::before { transform: scaleY(1); }
.trust__icon {
  width: 50px; height: 50px; margin-bottom: 18px; border-radius: var(--radius);
  display: grid; place-items: center; color: var(--copper-2);
  background: rgba(217,139,78,.10); border: 1px solid rgba(217,139,78,.28);
  transition: transform .35s var(--ease), background .35s, color .35s;
}
.trust__icon svg { width: 25px; height: 25px; }
.trust__item:hover .trust__icon { background: var(--copper); color: #fff; transform: rotate(-6deg) scale(1.05); }
.trust__item h3 { color: #fff; font-size: 1.15rem; margin-bottom: .35rem; }
.trust__item p { color: var(--txt-light); font-size: .92rem; margin-bottom: 0; }

/* ============================================================
   Bande CTA
   ============================================================ */
.cta-band { position: relative; background: var(--ink); color: #fff; text-align: center; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% 0%, rgba(196,122,69,.25), transparent 60%); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--txt-light); max-width: 50ch; margin-inline: auto; }

/* ============================================================
   Certifications & marques
   ============================================================ */
.certs { background: var(--cream); }
.certs .section-head { margin-bottom: 50px; }

/* Bandeau credentials épuré (sans boîtes), 2 rangées équilibrées */
.creds { max-width: 980px; margin: 0 auto; }
.creds__group { padding: 40px 0; }
.creds__group + .creds__group { border-top: 1px solid var(--line); }
.creds__label {
  display: block; text-align: center;
  font-size: .76rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 30px;
}
.creds__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; }
.creds__item { display: grid; place-items: center; padding: 10px 54px; }
.creds__item + .creds__item { border-left: 1px solid var(--line); }
.creds__item img {
  height: 80px; width: auto; max-width: 100%; object-fit: contain;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.creds__item:hover img { transform: translateY(-5px) scale(1.04); filter: drop-shadow(0 10px 18px rgba(14,14,16,.12)); }
/* Le logo PG a beaucoup de marge interne : on l'agrandit pour équilibrer visuellement */
.creds__item img[src*="pg"] { height: 102px; }
/* Rangée « Marques & garanties » : pas de traits verticaux (espacement à la place) */
.creds__group + .creds__group .creds__item { padding: 10px 26px; }
.creds__group + .creds__group .creds__item + .creds__item { border-left: 0; }
.creds__group + .creds__group .creds__row { gap: 18px 44px; }
/* Équilibrage optique : logos horizontaux plus courts, logos compacts plus grands */
.creds__item img[src*="frisquet"] { height: 92px; }
.creds__item img[src*="saunier"] { height: 50px; }

@media (max-width: 720px) {
  .creds__group { padding: 30px 0; }
  .creds__item { flex-basis: 100%; padding: 16px 0; }
  .creds__item + .creds__item { border-left: 0; }
  .creds__item img { height: 66px; }
}

/* ============================================================
   Page hero (sous-pages) — sombre avec image
   ============================================================ */
.page-hero {
  position: relative; padding: 180px 0 90px; text-align: center; color: #fff;
  background: var(--ink); overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; transform: scale(1.05); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 120% at 80% 0%, rgba(196,122,69,.28), transparent 55%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero .lead { margin-inline: auto; color: rgba(255,255,255,.82); }
.page-hero .eyebrow { color: var(--copper-2); }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 1.2rem; letter-spacing: .05em; }
.breadcrumb a { cursor: pointer; } .breadcrumb a:hover { color: var(--copper-2); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.info-card .card__icon { margin-bottom: 18px; }
.info-card:hover .card__icon { background: var(--copper); color: #fff; border-color: var(--copper); }
.info-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.info-card a { color: var(--copper); font-weight: 600; } .info-card a:hover { color: var(--copper-dk); }
.info-card p { color: var(--txt-soft); margin-bottom: 0; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table th, .hours-table td { text-align: left; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: .98rem; }
.hours-table th { font-weight: 600; color: var(--txt); } .hours-table td { color: var(--txt-soft); text-align: right; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.badge-closed { font-size: .78rem; font-weight: 600; color: var(--copper); background: var(--cream); padding: 3px 11px; border-radius: 20px; border: 1px solid var(--line); }

/* ============================================================
   Formulaire
   ============================================================ */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px,5vw,54px); box-shadow: var(--shadow); max-width: 780px; margin: 0 auto; }
.form-grid { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; } .field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--txt); margin-bottom: 8px; }
.field label .req { color: var(--copper); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--txt); padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--cream);
  transition: border-color .25s, background .25s, box-shadow .25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--copper); background: #fff; box-shadow: 0 0 0 4px rgba(196,122,69,.14); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c47a45' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.form-note { font-size: .85rem; color: var(--txt-mut); margin: 18px 0 0; }
.form-actions { margin-top: 28px; } .form-actions .btn { width: 100%; justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--txt-light); padding: 72px 0 32px; font-size: .95rem; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.5fr 1fr 1fr; padding-bottom: 42px; border-bottom: 1px solid var(--line-dark); }
.site-footer .brand__name { color: #fff; }
.site-footer h4 { font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.site-footer a { color: var(--txt-light); transition: color .25s; } .site-footer a:hover { color: var(--copper-2); }
.footer-list { list-style: none; padding: 0; margin: 0; } .footer-list li { margin-bottom: 11px; }
.footer-blurb { max-width: 36ch; margin-top: 14px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: .84rem; color: rgba(247,244,239,.45); }

/* ============================================================
   Révélation au défilement
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(30px) scale(.985); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
}

/* SPA (aperçu) */
.page { display: none; } .page.is-shown { display: block; animation: pageIn .5s var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Intro — le logo se scinde en deux (accueil, 1×/session)
   ============================================================ */
.intro { position: fixed; inset: 0; z-index: 1000; pointer-events: none; background: var(--ink); }
.intro.is-open { background: transparent; }
.intro__panel {
  position: absolute; top: 0; height: 100%; width: 50%;
  background: var(--ink); overflow: hidden;
  transition: transform .9s cubic-bezier(.76, 0, .24, 1);
}
.intro__panel--l { left: 0; }
.intro__panel--r { right: 0; }
.intro__logo {
  position: absolute; top: 50%; width: clamp(150px, 22vw, 240px);
  opacity: 0; transform: translate(-50%, -42%);
  transition: opacity .55s var(--ease), transform .7s var(--ease);
}
.intro__panel--l .intro__logo { left: 100%; }
.intro__panel--r .intro__logo { left: 0; }
.intro.is-ready .intro__logo { opacity: 1; transform: translate(-50%, -50%); }
.intro.is-open .intro__panel--l { transform: translateX(-100%); }
.intro.is-open .intro__panel--r { transform: translateX(100%); }
html.intro-lock { overflow: hidden; }

/* L'entrée du hero attend la fin de l'intro (uniquement si JS actif) */
html.js .fade-up,
html.js .hero__title .line > span,
html.js .hero__title .accent { animation-play-state: paused !important; }
html.intro-done .fade-up,
html.intro-done .hero__title .line > span,
html.intro-done .hero__title .accent { animation-play-state: running !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .pledge .container { grid-template-columns: 1fr; gap: 70px; }
  .pledge__media { max-width: 440px; }
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .form-grid { grid-template-columns: 1fr; } .trust__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trust__grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(14,14,16,.98); border-bottom: 1px solid var(--line-dark);
    padding: 16px 26px 24px; gap: 2px; transform: translateY(-135%); transition: transform .35s var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav a { padding: 14px 8px; } .nav a::after { display: none; }
  .nav .nav__cta { margin: 10px 0 0; text-align: center; }
  .nav-toggle { display: block; z-index: 210; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 70px 0; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pledge__badge { right: 16px; }
}
