:root {
  --black: #080808;
  --ink: #141414;
  --muted: #6d6a64;
  --line: rgba(255,255,255,.16);
  --paper: #f5efe5;
  --paper-2: #ebe2d5;
  --white: #fffaf2;
  --red: #b71e23;
  --gold: #c8b28a;
  --shadow: 0 24px 80px rgba(0,0,0,.22);
  --radius: 28px;
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 36px), var(--container)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--white); color: var(--black); padding: .75rem 1rem; z-index: 1000; }
.skip-link:focus { left: 1rem; top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, rgba(5,5,5,.82), rgba(5,5,5,.66));
  backdrop-filter: blur(14px);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header.is-scrolled {
  background: rgba(7,7,7,.92);
  backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,.13);
}
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .95rem; color: var(--white); min-width: 285px; position: relative; }
.brand img { width: 50px; height: auto; filter: drop-shadow(0 8px 20px rgba(0,0,0,.45)); }
.brand strong { display: block; text-transform: uppercase; letter-spacing: .105em; font-size: .78rem; line-height: 1.1; }
.brand em { display: block; font-style: normal; letter-spacing: .09em; font-size: .68rem; color: rgba(255,250,242,.70); margin-top: .24rem; }
.main-nav { display: flex; align-items: center; gap: .18rem; color: var(--white); }
.main-nav a { padding: .62rem .78rem; border-radius: 999px; font-family: var(--serif); font-size: 1rem; letter-spacing: -.01em; color: rgba(255,250,242,.82); transition: background .2s ease, color .2s ease, border-color .2s ease; }
.main-nav a:hover { background: rgba(255,255,255,.10); color: var(--white); }
.main-nav .nav-social { border: 1px solid rgba(255,255,255,.16); color: rgba(255,250,242,.78); }
.main-nav .nav-cta { background: var(--red); color: #fff; font-family: var(--sans); font-size: .9rem; font-weight: 800; letter-spacing: .04em; padding-inline: 1rem; box-shadow: 0 14px 34px rgba(183,30,35,.23); }
.nav-toggle { display: none; background: transparent; border: 0; padding: .5rem; }
.nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--white); margin: 5px 0; }
.section { padding: 104px 0; }
.section-dark { color: var(--white); background: var(--black); }
.hero { position: relative; min-height: 860px; display: grid; align-items: center; overflow: hidden; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center right; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.66) 42%, rgba(0,0,0,.20) 100%), linear-gradient(180deg, rgba(0,0,0,.40), rgba(0,0,0,.75)); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 3rem; align-items: end; padding-top: 110px; }
.eyebrow { margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .20em; font-size: .76rem; font-weight: 850; color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; font-family: var(--serif); font-weight: 500; font-size: clamp(3.2rem, 7vw, 6.9rem); line-height: .88; letter-spacing: -.055em; margin-bottom: 1.6rem; }
.lead { max-width: 650px; font-size: clamp(1.08rem, 2vw, 1.35rem); color: rgba(255,250,242,.82); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .85rem 1.2rem; border-radius: 999px; font-weight: 800; letter-spacing: .03em; border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 14px 34px rgba(183,30,35,.26); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.06); }
.btn-dark { background: var(--black); color: var(--white); }
.microcopy { margin-top: 1.4rem; color: rgba(255,250,242,.67); font-size: .95rem; }
.hero-card { align-self: stretch; padding: 2rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(8,8,8,.56); backdrop-filter: blur(18px); box-shadow: var(--shadow); }
.card-kicker { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--gold); margin-bottom: 1rem; }
.hero-card ul { padding-left: 1.1rem; margin: 0 0 1.5rem; color: rgba(255,250,242,.82); }
.text-link, .contact-link { color: var(--gold); font-weight: 800; border-bottom: 1px solid currentColor; }
.contact-link { display: inline-block; margin-bottom: 1.35rem; }
.statement { background: var(--black); color: var(--white); padding: 70px 0; border-top: 1px solid rgba(255,255,255,.08); }
.statement-inner { border-left: 3px solid var(--red); padding-left: 2rem; }
.statement p { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.1; max-width: 1080px; margin: 0; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading h2, .visual-copy h2, .split-copy h2, .contact h2, .page-hero h1, .teaser h2, .teaser-page h2 { font-family: var(--serif); font-size: clamp(2.3rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.04em; margin-bottom: 1rem; }
.section-heading p:not(.eyebrow), .split-copy p, .visual-copy p, .contact p, .teaser p, .teaser-page p { color: var(--muted); font-size: 1.05rem; }
.service-grid, .package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.service-card, .package-card, .teaser-card { border-radius: var(--radius); padding: 2rem; background: var(--white); border: 1px solid rgba(20,20,20,.08); box-shadow: 0 20px 58px rgba(20,20,20,.08); min-height: 290px; }
.service-number { display: inline-flex; color: var(--red); font-weight: 900; letter-spacing: .18em; margin-bottom: 2.5rem; }
.service-card h3, .timeline-item h3, .teaser-card h3 { font-family: var(--serif); font-size: 1.9rem; line-height: 1.05; margin-bottom: 1rem; }
.service-card p, .package-card li, .timeline-item p { color: var(--muted); }
.visual-break { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.visual-break picture, .visual-break img { position: absolute; inset: 0; width: 100%; height: 100%; }
.visual-break img { object-fit: cover; object-position: 72% center; filter: saturate(.88) brightness(.72); }
.visual-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 42%, rgba(0,0,0,.36) 100%); }
.visual-copy { position: relative; z-index: 1; max-width: 700px; }
.visual-copy-box {
  max-width: 620px;
  padding: 2rem 2.1rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(0,0,0,.62), rgba(0,0,0,.36));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
}
.visual-copy h2 { text-shadow: 0 8px 30px rgba(0,0,0,.40); }
.visual-copy p { color: rgba(255,250,242,.82); }
.package-card { background: #fffaf2; min-height: 360px; display: flex; flex-direction: column; }
.package-card.featured { background: var(--black); color: var(--white); transform: translateY(-16px); }
.package-label { text-transform: uppercase; letter-spacing: .18em; font-weight: 900; color: var(--red); font-size: .78rem; }
.featured .package-label { color: var(--gold); }
.package-label span { display: block; width: fit-content; margin-top: .75rem; letter-spacing: .08em; color: var(--white); background: var(--red); border-radius: 999px; padding: .3rem .62rem; }
.package-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; margin-bottom: 1.5rem; }
.package-card h3 strong { display: block; font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.05em; }
.package-card ul { padding-left: 1.1rem; margin: auto 0 0; }
.featured li { color: rgba(255,250,242,.76); }
.split-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.2rem; align-items: center; }
.split-grid.reverse { grid-template-columns: 1.15fr .85fr; }
.split-grid-compact { grid-template-columns: .95fr 1.05fr; gap: 2rem; }
.split-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 520px; background: #ddd; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image-compact { min-height: 390px; }
.split-compact { padding: 72px 0; }
.price-box { margin-top: 2rem; display: inline-grid; gap: .1rem; border: 1px solid rgba(183,30,35,.35); padding: 1.2rem 1.4rem; border-radius: 18px; background: rgba(255,255,255,.38); }
.price-box-compact { margin-top: 1.35rem; padding: 1rem 1.2rem; }
.price-box span { text-transform: uppercase; color: var(--red); font-weight: 900; letter-spacing: .14em; font-size: .78rem; }
.price-box strong { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; }
.price-box em { font-style: normal; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: .75rem; }
.teaser-dark {
  background:
    radial-gradient(circle at top right, rgba(183,30,35,.13), transparent 30%),
    linear-gradient(135deg, #0a0a0a 0%, #15110f 100%);
  color: var(--white);
}
.teaser-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: stretch; }
.teaser .teaser-lead, .teaser-page .lead { color: rgba(255,250,242,.76); }
.teaser-card { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.12); color: var(--white); backdrop-filter: blur(12px); }
.teaser-card p { color: rgba(255,250,242,.72); }
.teaser-page { background: var(--paper-2); }
.method { background: radial-gradient(circle at top left, rgba(183,30,35,.20), transparent 34%), var(--black); }
.method .section-heading p:not(.eyebrow) { color: rgba(255,250,242,.68); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; }
.timeline-item { background: #101010; padding: 2rem; min-height: 330px; }
.timeline-item span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: var(--red); color: #fff; font-weight: 900; margin-bottom: 2rem; }
.timeline-item h3 { color: var(--white); }
.timeline-item p { color: rgba(255,250,242,.68); }
.radon-note { background: var(--paper-2); }
.radon-note .split-grid { grid-template-columns: .78fr 1fr; }
.radon-note .split-image { background: #e9dfd0; min-height: auto; align-self: center; box-shadow: 0 24px 70px rgba(20,20,20,.16); }
.radon-note .split-image img { height: auto; object-fit: contain; }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.area-grid span { background: var(--white); border: 1px solid rgba(20,20,20,.08); padding: 1rem 1.2rem; border-radius: 999px; font-weight: 800; text-align: center; }
.contact { background: linear-gradient(135deg, #080808 0%, #15100d 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 430px; gap: 3rem; align-items: center; }
.contact p { color: rgba(255,250,242,.72); }
.contact-panel { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 2rem; }
.contact-line { display: block; font-family: var(--serif); font-size: 2rem; line-height: 1.1; margin-bottom: 1rem; color: var(--white); }
.page-hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 138px 0 72px;
  background: radial-gradient(circle at top right, rgba(183,30,35,.14), transparent 25%), linear-gradient(135deg, #090909 0%, #15110f 100%);
}
.page-hero-thermo { position: relative; overflow: hidden; }
.page-hero-thermo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.03), transparent 38%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 860px; }
.site-footer { background: #050505; color: rgba(255,250,242,.70); padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .88rem; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.footer-links a { color: rgba(255,250,242,.82); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (max-width: 1100px) {
  .main-nav a { font-size: .95rem; padding: .58rem .62rem; }
  .brand { min-width: 245px; }
  .brand strong { font-size: .72rem; }
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 82px 18px auto 18px; display: grid; gap: .2rem; padding: 1rem; border-radius: 20px; background: rgba(8,8,8,.95); border: 1px solid rgba(255,255,255,.14); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s ease; }
  .main-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .hero { min-height: auto; padding: 142px 0 76px; }
  .hero-grid, .split-grid, .split-grid.reverse, .split-grid-compact, .contact-grid, .teaser-grid, .radon-note .split-grid { grid-template-columns: 1fr; }
  .service-grid, .package-grid, .timeline, .area-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .split-image { min-height: 380px; }
  .visual-copy-box { padding: 1.5rem; }
}
@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { height: 78px; }
  .brand span { display: none; }
  .brand img { width: 48px; }
  .main-nav { inset-top: 78px; }
  .section { padding: 76px 0; }
  .hero { padding-top: 128px; }
  h1 { font-size: clamp(3rem, 17vw, 4.3rem); }
  .hero-card, .service-card, .package-card, .timeline-item, .contact-panel, .teaser-card { padding: 1.35rem; }
  .visual-break { min-height: 560px; }
  .visual-copy-box { padding: 1.25rem; border-radius: 22px; }
  .footer-inner, .footer-links { display: block; }
  .footer-links a, .footer-links span { display: block; margin-top: .35rem; }
  .contact-line { font-size: 1.55rem; }
  .split-image-compact { min-height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
.page-hero-thermo-minimal {
  min-height: 74vh;
  background:
    radial-gradient(circle at top right, rgba(183,30,35,.16), transparent 22%),
    linear-gradient(135deg, #090909 0%, #140e0d 52%, #090909 100%);
}
.page-hero-thermo-minimal .lead {
  max-width: 520px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: rgba(255,250,242,.86);
}
.thermo-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.thermo-visual::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 520px;
  height: 320px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 80px rgba(0,0,0,.26);
}
.thermo-unit {
  position: relative;
  width: min(92%, 430px);
  height: 128px;
  border-radius: 26px 26px 18px 18px;
  background: linear-gradient(180deg, #f7f2ea 0%, #ece4d8 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  z-index: 1;
}
.thermo-unit::before {
  content: "";
  position: absolute;
  inset: 14px 18px auto 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20,20,20,.04), rgba(20,20,20,.10), rgba(20,20,20,.04));
}
.thermo-slot {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,0,0,.20), rgba(0,0,0,.08));
}
.thermo-led {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c61f24;
  box-shadow: 0 0 0 8px rgba(198,31,36,.10);
}
.thermo-shadow {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.22) 0%, rgba(0,0,0,0) 72%);
}
.teaser-page-minimal {
  background: var(--paper-2);
}
.teaser-grid-minimal {
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}
.teaser-page-minimal .teaser-card {
  min-height: auto;
}
@media (max-width: 980px) {
  .page-hero-grid,
  .teaser-grid-minimal {
    grid-template-columns: 1fr;
  }
  .thermo-visual {
    min-height: 260px;
  }
}

/* Page Thermopompes, version premium courte */
.btn-quiet {
  color: rgba(255,250,242,.82);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}
.thermo-landing {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 146px 0 86px;
  background:
    radial-gradient(circle at 84% 24%, rgba(183,30,35,.22), transparent 24%),
    radial-gradient(circle at 16% 88%, rgba(200,178,138,.10), transparent 26%),
    linear-gradient(135deg, #070707 0%, #130f0d 54%, #070707 100%);
}
.thermo-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.52) 48%, rgba(0,0,0,.16) 100%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 30%);
  z-index: 1;
}
.thermo-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.thermo-content h1 {
  max-width: 760px;
  margin-bottom: 1rem;
}
.thermo-content .lead {
  max-width: 560px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: rgba(255,250,242,.88);
}
.thermo-note {
  max-width: 560px;
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  border-left: 2px solid var(--red);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
}
.thermo-note span {
  display: block;
  margin-bottom: .3rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 900;
  color: var(--gold);
}
.thermo-note p {
  margin: 0;
  color: rgba(255,250,242,.78);
}
.thermo-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.thermo-ambient::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 10vh;
  width: min(64vw, 860px);
  height: min(64vw, 860px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,250,242,.11) 0%, rgba(255,250,242,.035) 36%, transparent 67%);
}
.thermo-wall-unit {
  position: absolute;
  right: clamp(1rem, 8vw, 10rem);
  top: 28vh;
  width: min(42vw, 560px);
  height: 160px;
  border-radius: 34px 34px 22px 22px;
  background: linear-gradient(180deg, rgba(255,250,242,.96), rgba(232,224,211,.92));
  box-shadow: 0 34px 110px rgba(0,0,0,.45);
  opacity: .92;
  transform: perspective(900px) rotateY(-10deg) rotateX(2deg);
}
.thermo-wall-unit::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 24px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,0,0,.035), rgba(0,0,0,.12), rgba(0,0,0,.035));
}
.thermo-line {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,.08));
}
.thermo-light {
  position: absolute;
  right: 34px;
  top: 28px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(183,30,35,.12), 0 0 30px rgba(183,30,35,.35);
}
.thermo-wall-unit::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.35) 0%, transparent 70%);
}
@media (max-width: 980px) {
  .thermo-landing {
    min-height: auto;
    padding: 136px 0 82px;
  }
  .thermo-wall-unit {
    position: relative;
    top: auto;
    right: auto;
    width: min(86vw, 460px);
    margin: 0 auto;
    transform: none;
    opacity: .36;
  }
  .thermo-ambient {
    display: grid;
    align-items: end;
    padding-bottom: 34px;
  }
}


/* Ajustements finaux v6 */
.page-thermopompes .site-header {
  background: linear-gradient(180deg, rgba(5,5,5,.90), rgba(5,5,5,.74));
}
.page-thermopompes .brand img {
  width: 48px;
}
.page-thermopompes .main-nav a {
  color: rgba(255,250,242,.86);
}
.thermo-landing {
  min-height: 84vh;
  padding: 184px 0 96px;
}
.thermo-content {
  max-width: 660px;
  padding-top: 1rem;
}
.thermo-content .eyebrow {
  margin-bottom: .65rem;
}
.thermo-content h1 {
  max-width: 680px;
  font-size: clamp(3.7rem, 8vw, 6rem);
  line-height: .90;
  letter-spacing: -.05em;
  margin-bottom: 1.1rem;
}
.thermo-content .lead {
  max-width: 640px;
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
}
.thermo-note {
  max-width: 600px;
  margin-top: 1.6rem;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,.045);
}
.thermo-note p {
  font-size: 1rem;
}
.thermo-content .hero-actions {
  margin-top: 1.7rem;
}
.thermo-ambient::before {
  right: -8vw;
  top: 8vh;
  width: min(56vw, 760px);
  height: min(56vw, 760px);
}
.thermo-wall-unit {
  right: clamp(1.5rem, 8vw, 8rem);
  top: 26vh;
  width: min(34vw, 450px);
  height: 134px;
  opacity: .84;
}
@media (max-width: 980px) {
  .thermo-landing {
    padding: 138px 0 76px;
  }
  .thermo-content {
    padding-top: 0;
  }
  .thermo-content h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }
  .thermo-note,
  .thermo-content .lead {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .thermo-content h1 {
    font-size: clamp(2.9rem, 17vw, 4.1rem);
  }
  .thermo-note {
    padding: .95rem 1rem;
  }
}


/* Finition v7 : header, année 2025, page thermopompes */
.site-header {
  background: linear-gradient(180deg, rgba(5,5,5,.88), rgba(5,5,5,.68));
}
.header-inner {
  height: 80px;
}
.brand {
  min-width: 270px;
}
.brand img {
  width: 46px;
}
.brand strong {
  font-size: .74rem;
  letter-spacing: .12em;
}
.brand em {
  font-size: .66rem;
}
.main-nav {
  gap: .12rem;
}
.main-nav a {
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 650;
  letter-spacing: .035em;
  padding: .58rem .72rem;
}
.main-nav .nav-social {
  padding-inline: .9rem;
}
.main-nav .nav-cta {
  padding-inline: 1.05rem;
}
.page-thermopompes .thermo-landing {
  min-height: 88vh;
  padding: 210px 0 96px;
}
.page-thermopompes .thermo-content {
  max-width: 680px;
}
.page-thermopompes .thermo-content h1 {
  font-size: clamp(3.6rem, 7.4vw, 5.55rem);
  max-width: 650px;
  margin-bottom: 1.2rem;
}
.page-thermopompes .thermo-content .lead {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}
.page-thermopompes .thermo-note {
  margin-top: 1.7rem;
  background: rgba(255,255,255,.05);
}
.page-thermopompes .thermo-wall-unit {
  top: 30vh;
  width: min(32vw, 430px);
  opacity: .76;
}
@media (max-width: 1100px) {
  .brand { min-width: 238px; }
  .main-nav a { font-size: .8rem; padding-inline: .56rem; }
}
@media (max-width: 980px) {
  .header-inner { height: 78px; }
  .page-thermopompes .thermo-landing {
    padding: 136px 0 76px;
    min-height: auto;
  }
  .page-thermopompes .thermo-content h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }
}


/* Finition légale v8 */
.thermo-note { max-width: 690px; }
.thermo-note p { line-height: 1.55; }
.teaser-card p { line-height: 1.58; }
