/* ==========================================================
   VARIABLES & RESET
   ========================================================== */
:root {
  --orange: #f28e16;
  --orange2: #e67a00;
  --red: #d32f2f;
  --ink: #1e293b;
  --slate: #3a3d40;
  --paper: #f7f7f5;
  --line: #e4e5e3;
  --white: #fff;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, sans-serif;
  background: var(--paper);
  font-size: 15px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

/* ==========================================================
   HEADER / NAV
   ========================================================== */
.topline {
  background: #202326;
  color: #c9cbd0;
  font-size: 11px;
  letter-spacing: .03em;
}

.topinner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topinner a {
  color: #fff;
}

.topinner i {
  color: var(--orange);
  margin-right: 6px;
}

.header {
  height: 82px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 205px;
}

.logo-mark {
  font-family: 'Barlow Condensed';
  font-weight: 900;
  font-size: 55px;
  line-height: .7;
  letter-spacing: -.08em;
  color: var(--orange);
}

.logo-mark span {
  color: var(--red);
}

.logo strong {
  display: block;
  font-size: 16px;
  letter-spacing: .06em;
  line-height: 1.1;
}

.logo small {
  display: block;
  color: #7b7f81;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-top: 3px;
}

.nav nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
}

.nav nav a:hover {
  color: var(--orange2);
}

.header-call {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: #fff;
  border-radius: 7px;
  padding: 9px 11px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.header-call small {
  display: block;
  color: #b9bec4;
  font-size: 9px;
  font-weight: 500;
}

.header-call b {
  color: var(--orange);
  font-size: 11px;
  border-left: 1px solid #59606a;
  padding-left: 10px;
}

.pulse {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

.menu-btn {
  display: none;
  background: none;
  font-size: 21px;
}

/* ==========================================================
   HERO / BLOC 1
   ========================================================== */
.hero {
  background: var(--slate);
  color: #fff;
  min-height: 590px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 55%, rgba(242,142,22,.08) 55% 75%, transparent 75%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,.025) 23px 24px);
}

.hero-inner {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
}

.hero-copy {
  padding: 45px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}

.eyebrow > span {
  display: inline-block;
  width: 25px;
  height: 3px;
  background: var(--orange);
}

.eyebrow.dark2 > span {
  display: inline-block;
  width: 25px;
  height: 3px;
  background: var(--ink);
}

.eyebrow.dark {
  color: var(--orange2);
}

.eyebrow.dark2 {
  color: var(--ink);
}

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  margin: 0;
  line-height: .94;
  letter-spacing: -.025em;
}

h1 {
  font-size: clamp(64px, 8vw, 108px);
  margin: 24px 0 20px;
  letter-spacing: -.04em;
}

h1 em, h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 510px;
  color: #cdd1d2;
  font-size: 16px;
}

.hero-lead strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 5px;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  transition: .25s transform, .25s background;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(242,142,22,.25);
}

.btn-orange:hover {
  background: var(--orange2);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  font-size: 10px;
}

.avatars {
  display: flex;
}

.avatars i {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d4d9d8;
  color: #687076;
  border: 2px solid var(--slate);
  margin-left: -5px;
}

.avatars i:first-child {
  margin-left: 0;
  background: var(--orange);
  color: #fff;
}

.hero-proof b, .hero-proof small {
  display: block;
}

.hero-proof small {
  color: #aeb3b6;
}

.rating {
  color: var(--orange);
  letter-spacing: 1px;
  margin-left: 15px;
}

.rating b {
  color: #fff;
  display: inline;
  margin-left: 6px;
}

.hero-visual {
  height: 480px;
  position: relative;
}

.hero-photo {
  position: absolute;
  left: 8%;
  top: 5%;
  width: 90%;
  height: 90%;
  overflow: hidden;
  border: 7px solid #e09030;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
}

.orange-slice {
  position: absolute;
  right: 0;
  top: 5%;
  width: 100%;
  height: 100%;
  background: var(--orange);
  clip-path: polygon(29% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-sticker {
  position: absolute;
  top: 0%;
  background: var(--red);
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: grid;
  text-align: center;
  transform: rotate(-10deg);
  box-shadow: 0 9px 18px #15171988;
}

.hero-sticker b {
  font-size: 12px;
  line-height: 1.1;
}

.hero-sticker em {
  font-style: normal;
  color: #ffd19a;
  font-size: 18px;
}

.sticker-icon {
  font-size: 19px;
  margin-bottom: -14px;
}

.geo-tag {
  position: absolute;
  right: -2%;
  bottom: 3%;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  color: var(--ink);
  padding: 11px 15px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 5px 20px #1115;
}

.geo-tag i {
  font-size: 19px;
  color: var(--orange);
}

.geo-tag b, .geo-tag small {
  display: block;
}

.geo-tag small {
  font-size: 10px;
  color: #7f8588;
}

/* ==========================================================
   FORMULAIRE DEVIS
   ========================================================== */
.request-wrap {
  margin-top: -1px;
  background: var(--orange);
  position: relative;
}

.request {
  display: grid;
  grid-template-columns: 0.6fr 1.25fr;
  gap: 70px;
  padding: 42px 0;
}

.request h2 {
  font-size: 54px;
  margin: 16px 0 12px;
}

.request h2 em {
  color: #fff;
}

.request-intro p {
  max-width: 330px;
  font-size: 13px;
}

.direct {
  font-size: 23px;
  font-weight: 900;
  font-family: 'Barlow Condensed';
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.direct i {
  font-size: 14px;
}

.quick-form {
  background: #fff;
  padding: 24px 28px;
  box-shadow: 0 14px 35px #b55c001c;
  border-radius: 8px;
}

.form-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.form-head > span {
  font-family: 'Barlow Condensed';
  color: var(--orange);
  font-size: 27px;
}

.form-head b, .form-head small {
  display: block;
}

.form-head b {
  font-size: 13px;
}

.form-head small {
  font-size: 11px;
  color: #808487;
}

.service-select {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 20px 0;
}

.service-select button {
  padding: 9px 3px 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 5px;
  color: #666;
  transition: .2s;
}

.service-select button i {
  display: block;
  color: var(--orange);
  font-size: 17px;
  margin-bottom: 3px;
}

.service-select button span {
  font-size: 9px;
  font-weight: 800;
}

.service-select button:hover,
.service-select button.selected {
  border-color: var(--orange);
  background: #fff8ef;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-row label {
  font-size: 10px;
  font-weight: 800;
  color: #697074;
}

.form-row input {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d6d8d7;
  padding: 8px 0;
  outline: 0;
  font-size: 12px;
}

.form-row input:focus {
  border-color: var(--orange);
}

.submit {
  margin-top: 18px;
  width: 100%;
  padding: 12px;
}

.form-note {
  font-size: 9px;
  color: #9ba0a1;
  text-align: center;
  margin: 10px 0 0;
}

.form-note i {
  color: #6c9f7e;
}

/* ==========================================================
   SERVICES / MÉTIERS
   ========================================================== */
.section {
  padding: 100px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2, .quality h2, .zones h2 {
  font-size: 66px;
  margin-top: 17px;
}

.section-heading > p {
  max-width: 360px;
  font-size: 13px;
  color: #687075;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-card {
  position: relative;
  background: #fff;
  padding: 27px 21px 24px;
  border: 1px solid #e8e8e5;
  min-height: 310px;
  transition: .3s;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px #1e293b12;
  border-color: #f5bf7b;
}

.service-card.featured {
  background: var(--slate);
  color: #fff;
}

.card-number {
  position: absolute;
  right: 15px;
  top: 9px;
  font: 700 35px 'Barlow Condensed';
  color: #e1e2df;
}

.featured .card-number {
  color: #64686a;
}

.service-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: #fff0dc;
  color: var(--orange2);
  font-size: 20px;
  margin-bottom: 20px;
}

.featured .service-icon {
  background: var(--orange);
  color: #fff;
}

.service-card h3 {
  font-size: 29px;
}

.service-card p {
  font-size: 11px;
  color: #767c7e;
  min-height: 44px;
}

.featured p {
  color: #c5c9cb;
}

.service-card ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid #ececeb;
  margin: 15px 0 15px;
  padding-top: 12px;
}

.featured ul {
  border-color: #596063;
}

.service-card li {
  font-size: 10px;
  margin: 7px 0;
  color: #666;
  line-height: 1.25;
}

.featured li {
  color: #c7cbcc;
}

.service-card li:before {
  content: '+';
  color: var(--orange);
  font-weight: 900;
  margin-right: 5px;
}

.card-link {
  background: none;
  color: var(--orange2);
  font-size: 10px;
  font-weight: 800;
  padding: 0;
}

.card-link i {
  margin-left: 5px;
}

/* ==========================================================
   ENGAGEMENT / QUALITÉ
   ========================================================== */
.quality {
  background: #fff;
  padding: 90px 0;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.quality-photo {
  height: 510px;
  position: relative;
  background: var(--slate);
  padding: 10px;
}

.quality-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(.15);
}

.photo-label {
  position: absolute;
  right: -30px;
  bottom: 12px;
  background: var(--orange);
  padding: 15px 21px;
  color: #fff;
  font: 22px/1.05 'Barlow Condensed';
  text-transform: uppercase;
}

.photo-label b {
  color: #fff;
}

.quality-copy h2 {
  font-size: 67px;
}

.quality-copy > p {
  color: #6c7375;
  font-size: 13px;
  max-width: 480px;
  margin: 25px 0;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.values > div {
  display: flex;
  gap: 11px;
}

.values i {
  color: var(--orange);
  font-size: 18px;
  padding-top: 2px;
}

.values b, .values small {
  display: block;
}

.values b {
  font-size: 11px;
}

.values small {
  color: #8a8f91;
  font-size: 9px;
}

/* ==========================================================
   DISPONIBILITÉS
   ========================================================== */
.availability {
  background: var(--slate);
  color: #fff;
}

.availability-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 37px 0;
}

.availability h2 {
  font-size: 40px;
  margin-top: 10px;
}

.big-clock {
  font-size: 54px;
  color: var(--orange);
  border: 1px solid #65686a;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
}

.availability-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hours {
  display: flex;
  gap: 32px;
}

.hours small, .hours b {
  display: block;
}

.hours small {
  font-size: 10px;
  color: #afb5b6;
}

.hours b {
  font-family: 'Barlow Condensed';
  font-size: 22px;
}

.hours strong {
  color: var(--orange);
  font-size: 16px;
  margin-left: 7px;
}

.emergency small {
  color: #ffbaba;
}

.emergency small i {
  font-size: 6px;
  margin-right: 4px;
}

/* ==========================================================
   ZONE / CARTE
   ========================================================== */
.zones {
  padding-bottom: 60px;
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.zones p {
  color: #6c7375;
  font-size: 13px;
  max-width: 450px;
  margin: 23px 0;
}

.zone-pills {
  display: flex;
  gap: 10px;
}

.zone-pills span {
  background: #fff;
  padding: 9px 13px;
  border: 1px solid #e6e5e1;
  font-size: 10px;
  font-weight: 800;
}

.zone-pills i {
  color: var(--orange);
  margin-right: 5px;
}

.map-card {
  height: 350px;
  background: #e6e7e3;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(30deg, transparent 47%, #d2d4cf 48%, #d2d4cf 49%, transparent 50%),
    linear-gradient(120deg, transparent 45%, #d1d4d0 46%, #d1d4d0 47%, transparent 48%);
  background-size: 80px 80px;
}

.map-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(155deg, transparent 0 50px, #d4d6d1 51px 53px, transparent 54px 85px);
  opacity: .8;
}

.map-pin {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #929b96;
  border-radius: 50%;
}

.map-pin.main {
  left: 48%;
  top: 48%;
  width: auto;
  height: auto;
  background: var(--orange);
  border-radius: 50%;
  padding: 9px;
  color: #fff;
  box-shadow: 0 0 0 7px #f28e1640;
  display: flex;
  gap: 7px;
  align-items: center;
}

.map-pin.main i {
  font-size: 20px;
}

.map-pin.main b {
  font-size: 11px;
}

.p1 { left: 23%; top: 27%; }
.p2 { right: 24%; top: 22%; }
.p3 { right: 17%; bottom: 22%; }

.map-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  padding: 9px 13px;
  border-left: 3px solid var(--orange);
}

.map-caption b, .map-caption small {
  display: block;
}

.map-caption b {
  font-size: 11px;
}

.map-caption small {
  font-size: 9px;
  color: #7c8384;
}

.partners {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8c9191;
}

.partners span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.partners b {
  font: 700 20px 'Barlow Condensed';
  color: #6e7475;
}

/* ==========================================================
   AVIS CLIENTS
   ========================================================== */
.reviews {
  background: #fff;
}

.review-score {
  text-align: right;
}

.review-score strong {
  display: block;
  font: 800 44px 'Barlow Condensed';
  line-height: 1;
}

.review-score span {
  color: var(--orange);
  letter-spacing: 2px;
}

.review-score small {
  display: block;
  font-size: 10px;
  color: #8a9091;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.review {
  background: var(--paper);
  padding: 25px;
}

.quote-mark {
  font: 900 50px/1 Georgia;
  color: var(--orange);
}

.review p {
  font-size: 13px;
  min-height: 110px;
}

.reviewer {
  border-top: 1px solid #ddd;
  padding-top: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.reviewer > span:first-child {
  background: var(--orange);
  color: #fff;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: bold;
}

.reviewer b, .reviewer small {
  font-size: 10px;
}

.reviewer small {
  display: inline;
  color: #8a9191;
  font-weight: 400;
}

.reviewer .stars {
  margin-left: auto;
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 0;
}

.dark-review {
  background: var(--slate);
  color: #fff;
}

.dark-review .reviewer {
  border-color: #5c6365;
}

.dark-review .reviewer > span:first-child {
  background: #fff;
  color: var(--slate);
}

.video-review {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #333;
}

.video-review img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  filter: brightness(.7);
}

.video-review button {
  position: absolute;
  top: 43%;
  left: 44%;
  border-radius: 50%;
  width: 53px;
  height: 53px;
  background: var(--orange);
  color: #fff;
  font-size: 17px;
  box-shadow: 0 0 0 9px #f28e1655;
}

.video-review > span {
  position: absolute;
  bottom: 17px;
  left: 18px;
  color: #fff;
  font-size: 10px;
}

.video-review > span b {
  font-size: 13px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1fr;
  gap: 40px;
  padding: 70px 0 52px;
  color: #b9bec0;
}

.footer-logo {
  color: #fff;
}

.footer-grid p {
  font-size: 12px;
  line-height: 1.8;
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 10px;
}

.socials a {
  width: 27px;
  height: 27px;
  background: #353a3c;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}

.socials span {
  margin-left: 5px;
}

.footer-grid h4 {
  color: var(--orange);
  font: 700 20px 'Barlow Condensed';
  text-transform: uppercase;
  margin: 5px 0 14px;
}

.footer-grid > div:not(:first-child) > a,
.footer-grid > div:not(:first-child) > span {
  display: block;
  font-size: 11px;
  margin: 8px 0;
}

.footer-grid a:hover {
  color: var(--orange);
}

footer {
  background: #202326;
}

.footer-phone {
  color: #fff;
  font: 700 24px 'Barlow Condensed';
}

.footer-cta {
  border-left: 1px solid #474c4e;
  padding-left: 30px;
}

.footer-cta h3 {
  font-size: 34px;
  color: #fff;
  margin: 16px 0;
}

.footer-bottom {
  border-top: 1px solid #3a3f41;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #858b8d;
}

.footer-bottom i {
  color: var(--red);
}

/* ==========================================================
   MODAL
   ========================================================== */
.modal {
  position: fixed;
  inset: 0;
  background: #101315b8;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.open {
  display: grid;
}

.modal-box {
  position: relative;
  background: #fff;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  border-top: 7px solid var(--orange);
  box-shadow: 0 20px 60px #0005;
}

.modal-box h2 {
  font-size: 55px;
  margin: 14px 0;
}

.modal-box p {
  font-size: 13px;
  color: #6d7475;
}

.modal-box ul {
  padding-left: 17px;
  font-size: 12px;
  color: #596164;
  line-height: 2;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 15px;
  background: none;
  font-size: 18px;
  color: #70787a;
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 #d32f2f80; }
  50% { box-shadow: 0 0 0 8px #d32f2f00; }
}

.reveal {
  animation: up .8s both;
}

.delay-2 {
  animation-delay: .2s;
}

@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* ==========================================================
   MEDIA QUERY — max-width: 900px
   ========================================================== */
@media (max-width: 900px) {
  .topinner { gap: 15px; }
  .topinner a { display: none; }
  .nav { gap: 15px; }
  .nav nav { gap: 13px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:last-child { grid-column: span 3; }
  .availability-inner { flex-wrap: wrap; }
  .hours { margin-left: 106px; }
  .availability-inner > .btn { margin-left: 106px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta { border: 0; padding-left: 0; }
  .hero-inner { gap: 10px; }
  .hero-visual { transform: scale(.9); transform-origin: right center; }
}

/* ==========================================================
   MEDIA QUERY — max-width: 650px
   ========================================================== */
@media (max-width: 650px) {
  .wrap { width: min(100% - 28px, 560px); }
  .topline { display: none; }
  .header { height: 68px; }
  .logo { min-width: 0; }
  .logo-mark { font-size: 44px; }
  .logo strong { font-size: 13px; }
  .logo small { font-size: 7px; }
  .menu-btn { display: block; margin-left: auto; }
  .nav nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 20px;
    box-shadow: 0 10px 20px #0002;
  }
  .nav nav.show { display: flex; flex-direction: column; }
  .header-call { padding: 7px; }
  .header-call span:nth-child(2) { font-size: 11px; }
  .header-call b { display: none; }
  .hero { min-height: auto; }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
  }
  .hero-copy { padding: 25px 0 15px; }
  .hero h1 { font-size: 76px; }
  .hero-lead { font-size: 14px; }
  .hero-visual { height: 300px; transform: none; order: -1; margin: 0 -10px; }
  .hero-photo { right: 10%; top: 5%; height: 90%; width: 90%; }
  .hero-sticker { width: 83px; height: 83px; left: 5%; }
  .hero-sticker b { font-size: 9px; }
  .hero-sticker em { font-size: 14px; }
  .geo-tag { right: 2%; bottom: 1%; }
  .request { display: block; padding: 35px 0; }
  .request h2 { font-size: 48px; }
  .request-intro { margin-bottom: 25px; }
  .quick-form { padding: 20px 15px; }
  .service-select { grid-template-columns: repeat(5, 1fr); }
  .service-select button span { font-size: 8px; }
  .section { padding: 65px 0; }
  .section-heading { display: block; }
  .section-heading h2, .quality h2, .zones h2 { font-size: 57px; }
  .section-heading > p { margin-top: 22px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 330px; }
  .service-card:last-child { grid-column: span 2; }
  .quality { padding: 60px 0; }
  .quality-grid { display: flex; flex-direction: column; gap: 50px; }
  .quality-photo { height: 360px; width: 88%; margin-left: auto; }
  .photo-label { left: -20px; }
  .values { gap: 17px; }
  .values small { font-size: 8px; }
  .availability-inner { display: block; padding: 35px 0; }
  .availability h2 { font-size: 37px; }
  .availability-title { align-items: flex-start; }
  .big-clock { width: 66px; height: 66px; font-size: 34px; }
  .hours { margin: 28px 0; display: block; }
  .hours > div { margin: 15px 0; }
  .availability-inner > .btn { margin: 0; }
  .zone-grid { display: block; }
  .map-card { height: 270px; margin-top: 35px; }
  .partners { gap: 13px; flex-wrap: wrap; margin-top: 45px; }
  .partners b { font-size: 17px; }
  .partners span { width: 100%; }
  .review-grid { grid-template-columns: 1fr; }
  .review p { min-height: 0; }
  .video-review { min-height: 260px; }
  .review-score { text-align: left; margin-top: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .footer-grid > div:first-child, .footer-cta { grid-column: span 2; }
  .footer-bottom { display: block; line-height: 2.2; }
  .footer-bottom span { display: block; }
  .modal-box { padding: 30px 24px; }
  .modal-box h2 { font-size: 48px; }
}

/* ==========================================================
   REQUESTED REFINEMENTS
   ========================================================== */
section[id], .request-wrap {
  scroll-margin-top: 88px;
}

.hero { overflow: hidden; }
.hero-inner { overflow: visible; }
.hero-copy { min-width: 0; }
.hero-visual { min-width: 0; overflow: visible; }
.hero-sticker, .geo-tag, .orange-slice { z-index: 3; }

.avatars i {
  font-style: normal;
  font-weight: 800;
  font-size: 8px;
}

/* Tabs/cards have a clear hover treatment, but no persistent grey selected state. */
.service-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

@media (max-width: 650px) {
  .hero-inner { min-height: auto; overflow: visible; }
  .hero-copy { padding-top: 34px; padding-bottom: 26px; }
  .hero h1 { font-size: clamp(58px, 17vw, 82px); overflow: visible; }
  .hero-visual { width: 100%; }
  .hero-sticker { right: 65%; }
  .geo-tag { right: 1%; }
  .request-wrap { scroll-margin-top: 74px; }
}

/* Leaflet occupies the full map card; the map remains interactive on touch and desktop. */
.map-card #map {
  height: 100%;
  width: 100%;
}

/* No static grey/selected state: every métier starts neutral and responds on hover/focus. */
.service-card.featured {
  background: #fff;
  color: var(--ink);
}
.service-card.featured p { color: #767c7e; }
.service-card.featured .card-number { color: #e1e2df; }
.service-card.featured .service-icon { background: #fff0dc; color: var(--orange2); }
.service-card.featured ul { border-color: #ececeb; }
.service-card.featured li { color: #666; }
.service-card.featured .card-link { color: var(--orange2); }

/* Partner banner spacing keeps every mark centered and breathable. */
.partners {
  padding: 28px 34px;
  margin: 64px auto 0;
  gap: 28px;
}
.partners b {
  text-align: center;
  min-width: 58px;
}
@media (max-width: 650px) {
  .partners { padding: 24px 12px; justify-content: center; }
}

/* ==========================================================
   LOGO HEADER & FOOTER — image adaptative (ratio d'origine 1000x500)
   ========================================================== */
.logo {
  display: flex;
  align-items: center;
  min-width: 180px;
}
.logo-img {
  height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

/* ==========================================================
   HERO — superposition correcte : gris (fond) < orange < image
   ========================================================== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0; /* fond gris en arrière-plan total */
}
.hero-visual {
  position: relative;
  z-index: 1;
}
.orange-slice {
  z-index: 1; /* devant le fond gris */
}
.hero-photo {
  position: relative;
  z-index: 2; /* toujours devant l'orange */
}
.hero-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-sticker,
.geo-tag {
  z-index: 3; /* éléments flottants toujours au-dessus de tout */
}

/* ==========================================================
   BLOC DEVIS — formulaire
   ========================================================== */
.tally-form-card {
  background: #ffffff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 10px;
  background: transparent;
}

.tally-form-card iframe {
  background: #ffffff;
  width: 100% !important;
  max-width: 150% !important;
  min-width: 0 !important;
  border: none !important;
  display: block !important;
  overflow: hidden !important;
}

/* ==========================================================
   BLOC QUALITÉ — vidéo portrait à la place de l'image
   ========================================================== */
.quality-photo {
  position: relative;
  border-radius: var(--radius);
}
.quality-photo video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ==========================================================
   BIG CLOCK — remplacé par une photo ronde de même taille
   ========================================================== */
.big-clock {
  overflow: hidden;
  padding: 0;
  display: block;
}
.big-clock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ==========================================================
   SECTION PROJETS & GRANDS CHANTIERS
   ========================================================== */
.projects-section {
  background: #f8f9fa;
  border-top: 1px solid #eaedf0;
  border-bottom: 5px solid #eaedf0;
  padding: 80px 0;
}

.projects-header {
  text-align: left;
  max-width: 750px;
}
.projects-header h2 {
  font-size: 66px;
  margin-top: 10px;
}
.projects-subtitle {
  font-size: 13px;
  color: #5d6568;
  line-height: 1.6;
  margin-top: 23px;
  margin-bottom: 23px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.project-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius, 8px);
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--orange, #ff5722);
  background: #fffdfb;
}

.project-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--orange, #ff5722);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.project-card:hover .project-badge {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.project-icon {
  width: 50px;
  height: 50px;
  background: #f1f4f6;
  color: var(--orange, #ff5722);
  font-size: 22px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.project-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1e20;
}

.project-card p {
  font-size: 14px;
  color: #6d7475;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed #e2e8f0;
  padding-top: 15px;
}

.project-list li {
  font-size: 13px;
  font-weight: 600;
  color: #3b4245;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-list li i {
  color: #2e7d32;
  font-size: 12px;
}

.projects-cta-box {
  background: #1a1d1e;
  border-radius: var(--radius, 8px);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #ffffff;
}

.projects-cta-box h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #ffffff;
}

.projects-cta-box p {
  font-size: 14px;
  color: #a0a7a9;
  margin: 0;
}

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; }
  .projects-cta-box { flex-direction: column; text-align: center; padding: 25px; }
}

/* ==========================================================
   PARTENAIRES — logos images au lieu du texte
   ========================================================== */
.partners img {
  height: 42px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .75;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.partners img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 650px) {
  .logo-img { height: 46px; }
  .footer-logo-img { height: 52px; }
  .partners img { height: 34px; }
}