/* ============================================================
   Accompagnement Transition énergétique — site de marque
   Direction artistique : « maison d'ingénierie française »
   Élégance éditoriale · lumière · typographie souveraine
   Fond crème #FAF7F0 · encre navy #0B1430 · or profond #B8923D
   Fraunces (titres) · Inter (corps) · animations CSS seules
   ============================================================ */

:root {
  --cream: #FAF7F0;
  --paper: #FFFDF8;
  --navy: #0B1430;
  --navy-2: #111C3F;
  --ink: #1A2138;
  --ink-soft: #4C5470;
  --gold: #B8923D;
  --gold-soft: #C9A45C;
  --gold-pale: rgba(201, 164, 92, 0.34);
  --gold-ghost: rgba(184, 146, 61, 0.16);
  --line: #E4DCC8;
  --cream-on-navy: rgba(250, 247, 240, 0.82);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 5.5rem; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.68;
  font-size: 1.03rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--gold); }
a:hover { color: var(--navy); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--cream); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 860px; }

/* ---------- Typographie ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.35rem; line-height: 1.18; }

h1 em, h2 em, h3 em, .t-em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before { content: ""; width: 2.6rem; height: 1px; background: var(--gold); flex: 0 0 auto; }

.lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 42em; }

/* Lien texte souligné animé */
.link-under {
  display: inline-block;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 0.3rem;
  transition: background-size 0.35s ease, color 0.2s ease;
}
.link-under:hover { color: var(--gold); background-size: 32% 1px; }

/* L'unique vrai bouton du site (page contact) */
.btn-solid {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 1.05rem 2.6rem;
  border: 1px solid var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-solid:hover { background: transparent; color: var(--navy); }

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

.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.brand {
  font-family: var(--serif);
  font-weight: 640;
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}
.brand:hover { color: var(--navy); }
.brand .brand-accent { font-style: italic; font-weight: 500; color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.3s ease, color 0.2s ease;
}
.site-nav a:hover { color: var(--navy); background-size: 100% 1px; }
.site-nav a[aria-current="page"] { color: var(--navy); background-size: 100% 1px; }

.header-tel {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header-tel:hover { color: var(--gold); }

@media (max-width: 940px) {
  .header-inner { flex-wrap: wrap; row-gap: 0.2rem; }
  .site-nav { order: 3; flex: 0 0 100%; gap: 1.3rem; padding: 0.35rem 0 0.55rem; overflow-x: auto; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .brand { font-size: 0.98rem; }
  .header-tel { font-size: 0.98rem; }
}

/* ---------- Hero éditorial (split 55/45, fond crème) ---------- */

.hero { padding: clamp(3rem, 7vh, 5.5rem) 0 clamp(3.5rem, 8vh, 6rem); overflow-x: clip; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 2rem; }

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  max-width: 10.5em;
  text-wrap: balance;
}

.hero-lead {
  margin-top: 1.8rem;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: var(--ink-soft);
  max-width: 33em;
}

.hero-line {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 3rem;
}

.hero-tel {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.01em;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero-tel:hover { color: var(--gold); }
.hero-tel small {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

/* Photo portrait, cadre or décalé */
.hero-visual { position: relative; }

.hero-photo { position: relative; margin-right: 14px; }
.hero-photo::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.hero-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% 50%;
}

/* Tampon circulaire — avis Google */
.stamp {
  position: absolute;
  left: -3.4rem;
  bottom: -2.6rem;
  width: 9.5rem;
  height: 9.5rem;
  display: block;
  color: var(--navy);
  z-index: 2;
  transition: color 0.2s ease;
}
.stamp:hover { color: var(--gold); }
.stamp svg { width: 100%; height: 100%; display: block; }
.stamp .stamp-bg { fill: var(--cream); stroke: var(--gold); stroke-width: 1; }
.stamp .stamp-ring text {
  font-family: var(--sans);
  font-size: 10.6px;
  font-weight: 600;
  letter-spacing: 0.22em;
  fill: currentColor;
}
.stamp .stamp-star { font-size: 30px; fill: var(--gold); }
.stamp .stamp-ring {
  transform-origin: 70px 70px;
  animation: stamp-spin 24s linear infinite;
}
@keyframes stamp-spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .hero { padding-top: 2.4rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 1.4rem; max-width: 26rem; }
  .hero-photo img { aspect-ratio: 4 / 4.4; }
  .stamp { width: 7.2rem; height: 7.2rem; left: -0.6rem; bottom: -1.8rem; }
}

/* ---------- Bande chiffres navy ---------- */

.stats-band { background: var(--navy); color: var(--cream); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat { padding: clamp(2.2rem, 4vw, 3.4rem) 1.4rem; text-align: center; }
.stat + .stat { border-left: 1px solid var(--gold-pale); }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.stat-num sup { font-size: 45%; color: var(--gold-soft); font-weight: 500; }
.stat-cap {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream-on-navy);
}

@media (max-width: 760px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1.8rem 1rem; }
  .stat:nth-child(even) { border-left: 1px solid var(--gold-pale); }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--gold-pale); }
}

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

.section { padding: clamp(4.2rem, 9vh, 6.5rem) 0; }

.sec-head { max-width: 46em; margin-bottom: clamp(2.6rem, 5vh, 3.8rem); }
.sec-head .eyebrow { margin-bottom: 1.3rem; }
.sec-head p:not(.eyebrow) { color: var(--ink-soft); margin-top: 1rem; font-size: 1.06rem; max-width: 40em; }

/* ---------- Services : liste éditoriale numérotée ---------- */

.svc-list { border-top: 1px solid var(--line); }

.svc-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr 11rem 3rem;
  align-items: center;
  gap: 2rem;
  padding: 2.3rem 1.6rem;
  margin: 0 -1.6rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background-color 0.3s ease;
}

.svc-num {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 2.9rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  transition: color 0.3s ease;
}

.svc-main .svc-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.svc-main h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); transition: color 0.3s ease; }
.svc-main p { color: var(--ink-soft); font-size: 0.96rem; margin-top: 0.45rem; max-width: 36em; transition: color 0.3s ease; }

.svc-visual {
  justify-self: end;
  width: 11rem;
  opacity: 0;
  transform: translateX(-0.6rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.svc-visual img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.svc-mono {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1;
  text-align: right;
  color: var(--gold-soft);
}

.svc-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  justify-self: end;
  transition: transform 0.3s ease, color 0.3s ease;
}

.svc-row:hover { background-color: var(--navy); }
.svc-row:hover .svc-num { color: var(--gold-soft); -webkit-text-stroke: 0; }
.svc-row:hover .svc-main h3 { color: var(--cream); }
.svc-row:hover .svc-main p { color: var(--cream-on-navy); }
.svc-row:hover .svc-visual { opacity: 1; transform: translateX(0); }
.svc-row:hover .svc-arrow { color: var(--gold-soft); transform: translateX(0.4rem); }

.services-note { margin-top: 2rem; color: var(--ink-soft); font-size: 0.96rem; }
.services-note a { color: var(--gold); }

@media (max-width: 860px) {
  .svc-row { grid-template-columns: 3.4rem 1fr 2rem; gap: 1.1rem; padding: 1.8rem 1rem; margin: 0 -1rem; }
  .svc-num { font-size: 1.9rem; }
  .svc-visual { display: none; }
}

/* ---------- Terrain : composition de revue ---------- */

.section-paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.terrain-grid {
  display: grid;
  grid-template-columns: 13rem 1.25fr 1fr;
  gap: clamp(1.6rem, 3vw, 2.8rem);
  align-items: start;
}

.terrain-margin { display: grid; gap: 1.7rem; align-content: start; padding-top: 0.4rem; }
.mnote {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.75;
  padding-top: 0.8rem;
  border-top: 1px solid var(--gold-pale);
}
.mnote .mnum {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}
.mnote-temp strong {
  display: block;
  font-family: var(--serif);
  font-weight: 560;
  font-size: 1.9rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 0.2rem;
}

.terrain-photo { margin: 0; }
.terrain-photo img { width: 100%; object-fit: cover; }
.t-large img { aspect-ratio: 4 / 4.4; }
.terrain-side { display: grid; gap: clamp(1.6rem, 3vw, 2.8rem); }
.terrain-side .t-first { margin-top: 3.2rem; }
.t-small img { aspect-ratio: 16 / 10.5; }

.terrain-video {
  margin-top: clamp(3rem, 6vh, 4.5rem);
  background: var(--navy);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  max-width: 62rem;
}
.terrain-video .eyebrow { color: var(--gold-soft); margin-bottom: 1.2rem; }
.terrain-video .eyebrow::before { background: var(--gold-soft); }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) {
  .terrain-grid { grid-template-columns: 1fr; }
  .terrain-margin { grid-template-columns: 1fr; gap: 1.1rem; margin-bottom: 0.6rem; }
  .terrain-side .t-first { margin-top: 0; }
}

/* ---------- Méthode : 4 étapes reliées par un filet ---------- */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}
.steps::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.step { position: relative; }
.step-num {
  position: relative;
  display: inline-block;
  font-family: var(--serif);
  font-weight: 560;
  font-size: 4.2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  background: var(--cream);
  padding-right: 1rem;
}
.step h3 { font-size: 1.22rem; margin-top: 1.1rem; }
.step p { color: var(--ink-soft); font-size: 0.94rem; margin-top: 0.5rem; }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 2.4rem; }
  .steps::before { top: 0; bottom: 0; left: 1.1rem; right: auto; width: 1px; height: auto; }
  .step { padding-left: 3.6rem; }
  .step-num {
    position: absolute;
    left: 0;
    top: -0.4rem;
    font-size: 2.6rem;
    padding: 0.4rem 0;
    background: var(--cream);
  }
  .step h3 { margin-top: 0; }
}

/* ---------- FAQ : filets, pas de boîtes ---------- */

.faq-list { max-width: 860px; border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.45rem 0.2rem;
  font-family: var(--serif);
  font-weight: 560;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--navy);
  transition: color 0.2s ease;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.25s ease;
  transform-origin: 50% 52%;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 2.6rem 1.6rem 0.2rem; color: var(--ink-soft); font-size: 0.99rem; max-width: 46em; }
.faq-answer a { color: var(--gold); font-weight: 500; }

/* ---------- Bande finale navy ---------- */

.cta-final {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(4.5rem, 10vh, 7rem) 0;
}
.cta-final .eyebrow { color: var(--gold-soft); margin-bottom: 1.6rem; }
.cta-final .eyebrow::before { background: var(--gold-soft); }
.cta-final h2 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.6rem); }
.cta-final h2 em { color: var(--gold-soft); }
.cta-tel {
  display: inline-block;
  margin-top: 2.2rem;
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.1rem, 6vw, 4rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cta-tel:hover { color: var(--gold-soft); }
.cta-lines { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.8rem 2.6rem; align-items: baseline; }
.cta-lines a {
  color: var(--cream-on-navy);
  font-size: 1rem;
  text-decoration: none;
  background-image: linear-gradient(var(--gold-soft), var(--gold-soft));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease, background-size 0.3s ease;
}
.cta-lines a:hover { color: var(--gold-soft); background-size: 32% 1px; }
.cta-note { margin-top: 1.6rem; color: var(--cream-on-navy); font-size: 0.92rem; max-width: 38em; }

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

.site-footer {
  background: var(--navy);
  color: var(--cream-on-navy);
  padding: 3.6rem 0 2.4rem;
  font-size: 0.92rem;
  border-top: 1px solid var(--gold-pale);
}
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
.footer-brand {
  font-family: var(--serif);
  font-weight: 640;
  font-size: 1.25rem;
  color: var(--cream);
  line-height: 1.2;
}
.footer-brand .brand-accent { font-style: italic; font-weight: 500; color: var(--gold-soft); }
.site-footer h3 {
  font-family: var(--sans);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-grid p { max-width: 30em; margin-top: 0.9rem; }
.site-footer ul { list-style: none; }
.site-footer li + li { margin-top: 0.45rem; }
.site-footer a { color: var(--cream-on-navy); text-decoration: none; transition: color 0.15s ease; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-legal {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--gold-pale);
  font-size: 0.8rem;
  color: rgba(250, 247, 240, 0.55);
}
.footer-legal a { color: rgba(250, 247, 240, 0.7); }

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
}

/* ---------- Fil d'Ariane ---------- */

.breadcrumb { padding-top: 1.3rem; font-size: 0.82rem; color: var(--ink-soft); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.breadcrumb li + li::before { content: "—"; margin-right: 0.5rem; color: var(--gold); }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }

/* ---------- Pages intérieures ---------- */

.page-head { padding-block: clamp(2.6rem, 6vh, 4.2rem) 0; }
.page-head .eyebrow { margin-bottom: 1.4rem; }
.page-head h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 14em; }
.page-head .lead { margin-top: 1.4rem; }

.page-body { padding-block: clamp(2.4rem, 5vh, 3.6rem) clamp(4rem, 8vh, 5.5rem); }
.page-body h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-top: 3.2rem;
  margin-bottom: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.page-body h2:first-child { margin-top: 0; }
.page-body p + p { margin-top: 0.9rem; }
.page-body ul:not([class]), .page-body ol:not([class]) { margin: 0.8rem 0 0.8rem 1.3rem; }
.page-body li + li { margin-top: 0.4rem; }

/* ---------- Frise chronologique ---------- */

.timeline { list-style: none; margin-top: 2rem; position: relative; padding-left: 2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--gold-pale);
}
.timeline li { position: relative; padding-bottom: 1.9rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
}
.timeline .tl-year {
  display: block;
  font-family: var(--serif);
  font-weight: 560;
  font-size: 1.55rem;
  color: var(--navy);
  line-height: 1.15;
}
.timeline p { color: var(--ink-soft); font-size: 0.97rem; margin-top: 0.3rem; max-width: 40em; }

/* ---------- Bloc fondateur ---------- */

.founder-card {
  margin-top: 1.6rem;
  padding: 0 0 0 1.8rem;
  border-left: 1px solid var(--gold);
}
.founder-card .founder-name {
  display: block;
  font-family: var(--serif);
  font-weight: 560;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.2;
}
.founder-card .founder-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.35rem 0 1rem;
}
.founder-card p { color: var(--ink-soft); }
.founder-card p + p { margin-top: 0.9rem; }

/* ---------- Méthode (à propos, liste verticale) ---------- */

.method-steps { list-style: none; counter-reset: mstep; margin-top: 1.8rem; border-top: 1px solid var(--line); }
.method-steps li {
  counter-increment: mstep;
  position: relative;
  padding: 1.5rem 0 1.5rem 5rem;
  border-bottom: 1px solid var(--line);
}
.method-steps li + li { margin-top: 0; }
.method-steps li::before {
  content: "0" counter(mstep);
  position: absolute;
  left: 0;
  top: 1.55rem;
  font-family: var(--serif);
  font-weight: 560;
  font-size: 2.1rem;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}
.method-steps strong { display: block; font-family: var(--serif); font-weight: 560; font-size: 1.18rem; color: var(--navy); margin-bottom: 0.25rem; }
.method-steps p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Encadré transparence ---------- */

.transparency {
  margin-top: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 1.9rem 2rem;
}
.transparency p { color: var(--ink); }
.transparency p + p { margin-top: 0.9rem; }

/* ---------- Avis : rangées éditoriales ---------- */

.plat-list { margin-top: 2.4rem; border-top: 1px solid var(--line); }
.plat-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, auto) 1fr 3rem;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 1.4rem;
  margin: 0 -1.4rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background-color 0.3s ease;
}
.plat-score {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.plat-score .plat-of { font-size: 45%; color: var(--gold); font-weight: 500; }
.plat-main .plat-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.plat-main strong { font-family: var(--serif); font-weight: 560; font-size: 1.3rem; color: var(--navy); transition: color 0.3s ease; }
.plat-main p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.35rem; transition: color 0.3s ease; }
.plat-arrow { font-size: 1.4rem; color: var(--gold); justify-self: end; transition: transform 0.3s ease; }
.plat-row:hover { background-color: var(--navy); }
.plat-row:hover .plat-score { color: var(--cream); }
.plat-row:hover .plat-main strong { color: var(--cream); }
.plat-row:hover .plat-main p { color: var(--cream-on-navy); }
.plat-row:hover .plat-arrow { transform: translate(0.25rem, -0.25rem); }

@media (max-width: 640px) {
  .plat-row { grid-template-columns: 1fr 2.4rem; }
  .plat-score { grid-column: 1 / -1; }
}

/* ---------- Listes valorisées (filets, pas de cartes) ---------- */

.value-list { list-style: none; margin-top: 1.6rem; border-top: 1px solid var(--line); }
.value-list li {
  padding: 1.15rem 0.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.99rem;
}
.value-list li + li { margin-top: 0; }
.value-list strong { color: var(--navy); font-weight: 600; }
.value-list strong::before { content: "— "; color: var(--gold); }

/* ---------- Contact : rangées coordonnées ---------- */

.contact-hero { text-align: left; padding-bottom: 0; }
.contact-hero .btn-solid { margin-top: 2.4rem; }
.contact-hint { margin-top: 1rem; color: var(--ink-soft); font-size: 0.9rem; }

.contact-rows { margin-top: 2.8rem; border-top: 1px solid var(--line); }
.contact-row {
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: 1.6rem;
  padding: 1.6rem 0.2rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact-row .cc-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-row .cc-value {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  color: var(--navy);
  text-decoration: none;
  word-break: break-word;
  line-height: 1.25;
}
.contact-row a.cc-value:hover { color: var(--gold); }
.contact-row p { color: var(--ink-soft); font-size: 0.93rem; margin-top: 0.3rem; }

@media (max-width: 680px) {
  .contact-row { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* ---------- 404 / pas-à-pas ---------- */

.next-steps { list-style: none; margin: 1.8rem 0 0; border-top: 1px solid var(--line); }
.next-steps li { padding: 1.15rem 0.2rem; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.next-steps li + li { margin-top: 0; }
.next-steps strong { display: block; margin-bottom: 0.15rem; }
.next-steps strong a { font-family: var(--serif); font-weight: 560; font-size: 1.15rem; color: var(--navy); text-decoration: none; }
.next-steps strong a:hover { color: var(--gold); }

/* ---------- Accessibilité mouvement ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .stamp .stamp-ring { animation: none; }
  .svc-visual { opacity: 1; transform: none; }
}
