:root {
  color-scheme: light;
  --bg: #1d1d1d;
  --panel: #292929;
  --soft: #f5f6f4;
  --white: #ffffff;
  --text: #181818;
  --muted: #60646a;
  --line: #e2e2dc;
  --yellow: #fd761a;
  --yellow-strong: #fd761a;
  --orange: #fd761a;
  --surface-blue: #f0f3f6;
  --radius: 6px;
  --shadow: 0 14px 34px rgba(24, 24, 24, .10);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #fbfbfa;
  font-size: 16px;
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(29, 29, 29, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 184, 0, .22);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 168px;
}

.brand img { width: 70px; height: auto; }
.brand span { font-family: "Montserrat", Arial, sans-serif; font-weight: 800; letter-spacing: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, .88);
}

.nav-links a:hover { color: var(--yellow-strong); }

.nav-phone,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.1;
}

.nav-phone,
.btn-primary {
  background: var(--yellow-strong);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}

.btn-dark {
  background: var(--bg);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 4px;
  padding: 8px 10px;
  font: inherit;
}

.hero {
  background: var(--bg);
  color: var(--white);
}

.hero-authentic {
  min-height: calc(100svh - 67px);
  background-image:
    linear-gradient(90deg, rgba(18,18,18,.92) 0%, rgba(18,18,18,.80) 38%, rgba(18,18,18,.30) 70%, rgba(18,18,18,.08) 100%),
    url("/assets/images/depelec74-camion-local.webp");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  min-height: calc(100svh - 67px);
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.16));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 86px 22px 42px;
  display: block;
}

.hero-copy { max-width: 620px; }

.hero-logo {
  width: 118px;
  margin-bottom: 26px;
}

.local-photo-note {
  color: rgba(255,255,255,.66);
  font-size: 14px;
  margin-top: 14px;
}

.hero h1,
.page-hero h1,
h2,
h3 {
  font-family: "Montserrat", Arial, sans-serif;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.02em;
  font-weight: 800;
}

.hero p {
  max-width: 610px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.65;
}

.hero-panel {
  max-width: none;
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  border-top: 4px solid var(--yellow);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
}

.hero-panel strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.hero-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.hero-panel li {
  padding-left: 20px;
  position: relative;
  font-weight: 600;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 8px;
  height: 8px;
  background: var(--yellow);
}

.quick-actions {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.quick-actions a {
  background: rgba(255,255,255,.12);
  border-top: 3px solid var(--yellow);
  padding: 20px;
  text-decoration: none;
}

.quick-actions strong,
.quick-actions span {
  display: block;
}

.quick-actions strong {
  color: var(--yellow);
  font-size: 18px;
  line-height: 1.1;
}

.quick-actions span {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  margin-top: 4px;
}

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

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-band {
  padding: 0 22px;
  background: transparent;
  color: var(--text);
  margin-top: -38px;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-grid div,
.trust-grid a {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--yellow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.05;
}

.trust-grid span {
  color: var(--muted);
  font-size: 15px;
}

.google-proof {
  display: block;
  text-decoration: none;
  background: #fff8f1;
}

.google-proof:hover strong,
.google-review-link:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.google-stars {
  color: var(--yellow);
  letter-spacing: .08em;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 7px;
}

.proof {
  background: rgba(255,255,255,.08);
  padding: 20px;
  border-top: 3px solid var(--yellow);
}

.proof strong {
  display: block;
  color: var(--yellow-strong);
  font-size: 24px;
  line-height: 1;
}

.proof span { color: rgba(255,255,255,.78); font-size: 15px; }

section { padding: 76px 22px; }
.section-dark { background: var(--bg); color: var(--white); }
.section-soft { background: var(--soft); }

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head-row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.section-head-row > div {
  max-width: 760px;
}

.text-link {
  flex: 0 0 auto;
  font-weight: 700;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -.01em;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.section-head p,
.lead { color: var(--muted); font-size: 18px; margin: 0; }
.section-dark .section-head p,
.section-dark .lead { color: rgba(255,255,255,.74); }

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

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 26px 0;
  box-shadow: none;
}

.service-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.service-item p {
  margin: 0 0 8px;
  color: var(--muted);
}

.service-item a {
  font-weight: 700;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
}

.service-irve {
  grid-column: span 2;
  border: 1px solid #ffd5bb;
  border-left: 4px solid var(--yellow);
  background: #fff7f1;
  padding: 24px;
  margin-top: 8px;
}

.service-icon-text {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--white);
  font-weight: 800;
  border-radius: 6px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: none;
}

.card.highlight {
  border-color: var(--yellow);
  box-shadow: inset 0 4px 0 var(--yellow);
}

.card p { margin: 0; color: var(--muted); }
.card a { font-weight: 700; text-decoration-color: var(--yellow); text-underline-offset: 4px; }

.clim-section {
  padding-top: 0;
}

.clim-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 34px;
}

.clim-panel p:not(.lead) {
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 780px;
}

.clim-points {
  display: grid;
  gap: 12px;
}

.clim-points article {
  background: #fbfbfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.clim-points strong,
.clim-points span {
  display: block;
}

.clim-points strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.15;
}

.clim-points span {
  color: var(--muted);
  margin-top: 6px;
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-quote p:not(.lead) {
  color: rgba(255,255,255,.78);
  font-size: 18px;
}

.realisations-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: transparent;
  border: 0;
  margin-top: 24px;
}

.realisations-strip article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.realisations-strip strong,
.realisations-strip span {
  display: block;
}

.realisations-strip strong {
  font-size: 21px;
  line-height: 1.1;
}

.realisations-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.realisation-feature {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.work-showcase {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch;
}

.work-feature,
.work-side article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.work-feature {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
}

.work-feature img,
.work-side img {
  width: 100%;
  object-fit: cover;
}

.work-feature img {
  height: 100%;
  min-height: 320px;
}

.work-feature div {
  padding: 24px;
}

.work-feature span:first-child {
  display: inline-block;
  color: #6b4300;
  background: #fff4d4;
  border: 1px solid #f4dc9a;
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}

.work-feature p {
  color: var(--muted);
  margin: 0 0 12px;
}

.work-feature a {
  font-weight: 700;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
}

.work-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.work-side article {
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.work-side img {
  aspect-ratio: 4 / 3;
}

.work-side strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  padding: 14px 14px 0;
}

.work-side span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 5px 14px 14px;
}

.realisation-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.realisation-feature .card {
  border-top: 4px solid var(--yellow);
}

.photo-proof-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.compact-gallery {
  margin-top: 22px;
  margin-bottom: 34px;
}

.photo-proof {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-proof img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-proof div {
  padding: 16px 18px 18px;
}

.photo-proof strong,
.photo-proof span {
  display: block;
}

.photo-proof strong {
  font-size: 19px;
  line-height: 1.15;
}

.photo-proof span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

.check-list {
  padding: 0;
  margin: 24px 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--yellow);
  position: absolute;
  left: 0;
  top: .55em;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.city-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.city-list a,
.city-list span {
  display: inline-flex;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

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

.review strong { display: block; margin-top: 16px; }
.review span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}
.stars { color: var(--yellow); letter-spacing: .08em; font-size: 18px; }

.google-review-link {
  flex: 0 0 230px;
  display: grid;
  gap: 5px;
  align-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-decoration: none;
}

.google-review-link strong {
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.google-review-link small {
  color: var(--muted);
  font-weight: 700;
}

.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: var(--panel);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
}

.contact-card a { color: var(--yellow-strong); }

form {
  display: grid;
  gap: 14px;
}

.form-alert {
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--orange);
  background: #fff4ec;
  color: #5d2812;
  font-weight: 700;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
}

textarea { min-height: 140px; resize: vertical; }

.page-hero {
  background: var(--bg);
  color: var(--white);
  padding: 68px 22px;
}

.page-hero p {
  max-width: 780px;
  font-size: 21px;
  color: rgba(255,255,255,.78);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 42px;
  align-items: start;
}

.content-grid > article > img:first-child {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.toc {
  position: sticky;
  top: 94px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  text-decoration: none;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
}

.site-footer {
  background: #1f1f1f;
  color: rgba(255,255,255,.76);
  padding: 42px 22px 82px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

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

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.8;
}

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--bg);
  padding: 10px;
  gap: 10px;
  border-top: 1px solid rgba(255,184,0,.3);
}

@media (max-width: 940px) {
  .menu-toggle { display: inline-flex; }
  .nav { flex-wrap: wrap; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-phone { display: none; }
  .hero-grid,
  .split,
  .area-grid,
  .contact-panel,
  .content-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .proof-strip,
  .service-grid,
  .reviews,
  .quick-actions,
  .trust-grid,
  .service-list,
  .realisations-strip { grid-template-columns: 1fr 1fr; }
  .hero-panel { justify-self: stretch; max-width: none; }
  .service-irve { grid-column: span 2; }
  .realisation-feature,
  .work-showcase { grid-template-columns: 1fr; }
  .clim-panel { grid-template-columns: 1fr; }
  .photo-proof-grid { grid-template-columns: 1fr 1fr; }
  .section-head-row { align-items: start; }
  .toc { position: static; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 50px 18px; }
  .nav { padding: 8px 16px; }
  .brand img { width: 60px; }
  .hero-authentic,
  .hero-overlay { min-height: auto; }
  .hero-authentic { background-position: 58% center; }
  .hero-overlay { justify-content: flex-start; }
  .hero-grid { padding: 46px 18px 40px; gap: 30px; }
  .hero-logo { width: 88px; margin-bottom: 22px; }
  .hero h1 { font-size: 35px; line-height: 1.02; margin-bottom: 18px; }
  .hero p { font-size: 15px; line-height: 1.55; margin-bottom: 20px; }
  .local-photo-note { font-size: 12px; }
  .proof-strip,
  .service-grid,
  .reviews,
  .trust-grid,
  .service-list,
  .realisations-strip { grid-template-columns: 1fr; }
  .quick-actions { display: none; }
  .trust-band { margin-top: 0; padding-top: 18px; background: var(--white); }
  .service-item { grid-template-columns: 52px 1fr; padding: 20px; }
  .service-item img,
  .service-icon-text { width: 44px; height: 44px; }
  .service-irve { grid-column: span 1; }
  .clim-section { padding-top: 0; }
  .clim-panel { padding: 22px; }
  .hero-actions .btn { width: 100%; }
  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr; }
  .photo-proof-grid { grid-template-columns: 1fr; }
  .section-head-row { display: block; }
  .section-head-row .text-link { display: inline-block; margin-top: 14px; }
  .work-side { grid-template-columns: 1fr; }
  .work-feature { grid-template-rows: auto auto; }
  .work-feature img { min-height: 0; aspect-ratio: 4 / 3; }
  .site-footer { padding-bottom: 98px; }
}

/* 2026 visual pass: local photography, clearer hierarchy and quieter surfaces. */
:root {
  --ink: #171716;
  --ink-soft: #292824;
  --sand: #f3f1ec;
  --paper: #fcfcfa;
  --accent: #fd761a;
  --accent-dark: #c95309;
  --line-strong: #d8d4cb;
}

body { background: var(--paper); }

.site-header {
  background: rgba(23, 23, 22, .98);
  border-bottom-color: rgba(253, 118, 26, .32);
}

.nav { max-width: 1240px; min-height: 70px; }
.brand { min-width: auto; gap: 9px; }
.brand img { width: 64px; }
.brand span { font-size: 14px; }
.nav-links { gap: clamp(10px, 1.3vw, 18px); font-size: 11px; }
.nav-phone { min-height: 40px; padding: 9px 13px; font-size: 14px; }

.btn,
.nav-phone {
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.btn:hover,
.nav-phone:hover { transform: translateY(-2px); }
.btn-primary:hover,
.nav-phone:hover { background: var(--accent-dark); }
.btn-dark:hover { background: #3a3934; }
.btn-secondary:hover { background: rgba(255,255,255,.12); }

.hero-authentic {
  background-image:
    linear-gradient(90deg, rgba(18,18,17,.96) 0%, rgba(18,18,17,.84) 42%, rgba(18,18,17,.29) 78%, rgba(18,18,17,.18) 100%),
    url("/assets/images/depelec74-camion-local.webp");
}

.hero-copy { max-width: 650px; }
.hero-logo { width: 130px; }
.hero h1 { letter-spacing: 0; max-width: 760px; }
.hero h1::before,
.page-hero h1::before {
  content: "DEP ELEC 74";
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
}
.hero h1::before { display: none; }

.quick-actions { gap: 1px; }
.quick-actions a { background: rgba(23,23,22,.82); transition: background-color .2s ease; }
.quick-actions a:hover { background: rgba(253,118,26,.18); }

.trust-band { background: var(--paper); }
.trust-grid { border-radius: 0; box-shadow: 0 14px 40px rgba(20,20,17,.11); }
.trust-grid div,
.trust-grid a { min-height: 106px; display: flex; flex-direction: column; justify-content: center; }
.google-proof { background: #fff5ed; }

section { padding-top: 92px; padding-bottom: 92px; }
.section-soft { background: var(--sand); }
.section-dark { background: var(--ink); }
.section-head { margin-bottom: 42px; }
.section-head p,
.lead { line-height: 1.65; }
h2 { letter-spacing: 0; }
h3 { letter-spacing: 0; }

.service-list { column-gap: 44px; }
.service-item { padding: 28px 2px; }
.service-item h3 { font-size: 21px; margin-bottom: 7px; }
.service-item:hover h3,
.service-item:hover a { color: var(--accent-dark); }
.service-irve { border-radius: 0; border-color: #f5c6a6; background: #fff7f0; }

.card,
.photo-proof,
.work-feature,
.work-side article,
.realisations-strip article { border-radius: 0; }
.card { padding: 26px; }
.card.highlight { box-shadow: inset 0 3px 0 var(--accent); }
.service-grid { gap: 16px; }

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  align-items: end;
  padding: 86px 22px 72px;
  background:
    linear-gradient(90deg, rgba(23,23,22,.96) 0%, rgba(23,23,22,.83) 48%, rgba(23,23,22,.38) 100%),
    url("/assets/images/depelec74-maison-intervention.webp") center / cover;
}

.page-hero .container { width: 100%; }
.page-hero h1 { max-width: 860px; font-size: clamp(38px, 4.7vw, 64px); letter-spacing: 0; }
.page-hero p { max-width: 700px; font-size: 18px; line-height: 1.65; margin-bottom: 26px; }

.page-hero-service {
  background-image:
    linear-gradient(90deg, rgba(23,23,22,.96) 0%, rgba(23,23,22,.82) 46%, rgba(23,23,22,.36) 100%),
    url("/assets/images/depelec74-camion-intervention.webp");
}

.page-hero-area {
  background-image:
    linear-gradient(90deg, rgba(23,23,22,.96) 0%, rgba(23,23,22,.84) 48%, rgba(23,23,22,.38) 100%),
    url("/assets/images/depelec74-maison-intervention.webp");
}

.page-hero-realisation {
  background-image:
    linear-gradient(90deg, rgba(23,23,22,.95) 0%, rgba(23,23,22,.82) 46%, rgba(23,23,22,.30) 100%),
    url("/assets/images/depelec74-chantier-patrimoine.webp");
}

.split { gap: 54px; }
.split img,
.visual-card img,
.realisation-feature img { border-radius: 0; }
.split img { box-shadow: 18px 18px 0 #efede7; }
.section-dark .visual-card img { box-shadow: 18px 18px 0 rgba(253,118,26,.2); }

.work-showcase { gap: 20px; }
.work-feature { box-shadow: none; }
.work-feature img { min-height: 360px; }
.work-feature div { padding: 28px; }
.work-side { gap: 12px; }
.work-side article { box-shadow: none; }
.work-side article:hover img,
.photo-proof:hover img { transform: scale(1.03); }
.work-side img,
.photo-proof img { transition: transform .35s ease; }
.work-side article,
.photo-proof { overflow: hidden; }

.contact-panel { gap: 44px; }
.contact-card { border-radius: 0; border-top: 4px solid var(--accent); padding: 34px; }
form { background: var(--white); border: 1px solid var(--line); padding: 28px; }
input, select, textarea { border-radius: 0; border-color: var(--line-strong); }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(253,118,26,.34); outline-offset: 2px; border-color: var(--accent); }

.toc { border-radius: 0; border-top: 3px solid var(--accent); background: var(--sand); }
.toc a:hover { color: var(--accent-dark); }
.faq details:last-child { border-bottom: 1px solid var(--line); }

.site-footer { background: var(--ink); padding-top: 56px; }
.footer-grid { border-top: 1px solid rgba(255,255,255,.16); padding-top: 28px; }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: rise-in .55s both; }
  .hero-copy > :nth-child(2) { animation-delay: .08s; }
  .hero-copy > :nth-child(3) { animation-delay: .16s; }
  .hero-copy > :nth-child(4) { animation-delay: .24s; }
  .hero-copy > :nth-child(5) { animation-delay: .32s; }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 940px) {
  section { padding-top: 72px; padding-bottom: 72px; }
  .nav-links { gap: 14px; }
  .page-hero { min-height: 340px; padding-top: 72px; padding-bottom: 58px; }
}

@media (max-width: 640px) {
  section { padding-top: 54px; padding-bottom: 54px; }
  .brand span { display: none; }
  .page-hero { min-height: 410px; padding: 64px 18px 44px; background-position: 62% center; }
  .page-hero h1 { font-size: 36px; line-height: 1.04; }
  .page-hero h1::before { margin-bottom: 14px; font-size: 10px; }
  .page-hero p { font-size: 16px; }
  .trust-grid div, .trust-grid a { min-height: 0; }
  .service-list { column-gap: 0; }
  .service-item { padding: 22px 0; }
  .split img { box-shadow: 10px 10px 0 #efede7; }
  .contact-panel { gap: 24px; }
  form { padding: 20px; }
}

/* Keep the promise and the call to action in the first viewport. */
.hero-copy { max-width: 720px; }
.hero-grid { padding-top: 38px; padding-bottom: 22px; }
.hero-logo { width: 102px; margin-bottom: 16px; }
.hero h1 { font-size: clamp(36px, 4.2vw, 56px); line-height: 1.02; margin-bottom: 16px; }
.hero p { font-size: 16px; line-height: 1.55; margin-bottom: 18px; }
.quick-actions { padding-bottom: 24px; }
.quick-actions a { padding: 13px 16px; }
.quick-actions strong { font-size: 16px; }
.quick-actions span { font-size: 13px; }

@media (max-width: 640px) {
  .hero-grid { padding-top: 46px; padding-bottom: 34px; }
  .hero-logo { width: 88px; margin-bottom: 20px; }
  .hero h1 { font-size: 35px; }
  .hero p { font-size: 15px; }
}

/* Trust-first pass: clearer choices, direct contact and a calmer customer journey. */
.nav { min-height: 76px; }
.brand img { width: 70px; }
.brand span { font-size: 15px; }
.nav-links {
  gap: clamp(16px, 1.8vw, 26px);
  font-size: 12px;
  letter-spacing: 0;
}
.nav-links a { padding: 8px 0; }
.nav-phone { padding-inline: 17px; }

.hero-authentic,
.hero-overlay { min-height: min(760px, calc(100svh - 76px)); }
.hero-grid { padding-top: 58px; padding-bottom: 34px; }
.hero-copy { max-width: 690px; }
.hero h1 { max-width: 680px; }
.hero p { max-width: 650px; font-size: 17px; }
.hero-actions .btn { min-height: 48px; }
.local-photo-note { color: rgba(255,255,255,.78); }

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: var(--accent); }

.priority-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.priority-service {
  min-height: 310px;
  padding: 30px;
  background: var(--white);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background-color .2s ease;
}
.priority-service:hover { background: #faf8f4; }
.priority-service-accent { background: #fff6ef; }
.priority-service-accent:hover { background: #ffefe3; }
.priority-service > img,
.priority-service > .service-icon-text {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  object-fit: contain;
}
.priority-service > span:not(.service-icon-text) {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.priority-service h3 { margin-bottom: 10px; font-size: 22px; }
.priority-service p { margin: 0 0 20px; color: var(--muted); }
.priority-service a {
  margin-top: auto;
  font-weight: 750;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}
.secondary-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  padding: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.secondary-services strong { color: var(--text); }
.secondary-services span { position: relative; padding-left: 14px; }
.secondary-services span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  background: var(--accent);
}

.customer-process .section-head { max-width: 820px; }
.customer-process .section-head p { color: rgba(255,255,255,.72); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.process-grid article {
  min-height: 240px;
  padding: 30px 32px 32px 0;
  border-right: 1px solid rgba(255,255,255,.18);
}
.process-grid article + article { padding-left: 32px; }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span {
  display: block;
  margin-bottom: 30px;
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}
.process-grid h3 { font-size: 23px; }
.process-grid p { margin: 0; color: rgba(255,255,255,.72); }
.process-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.page-hero-electricite {
  background-image: linear-gradient(90deg, rgba(23,23,22,.96), rgba(23,23,22,.79) 48%, rgba(23,23,22,.28)), url("/assets/images/realisation-eclairage-interieur.webp");
  background-position: center 44%;
}
.page-hero-depannage,
.page-hero-renovation {
  background-image: linear-gradient(90deg, rgba(23,23,22,.96), rgba(23,23,22,.80) 48%, rgba(23,23,22,.30)), url("/assets/images/avant-apres-tableau-electrique-2026.webp");
  background-position: center 32%;
}
.page-hero-motorisation {
  background-image: linear-gradient(90deg, rgba(23,23,22,.96), rgba(23,23,22,.79) 48%, rgba(23,23,22,.25)), url("/assets/images/realisation-portail-motorisation.webp");
  background-position: center 54%;
}
.page-hero-irve,
.page-hero-climatisation {
  background-image: linear-gradient(90deg, rgba(23,23,22,.96), rgba(23,23,22,.80) 48%, rgba(23,23,22,.30)), url("/assets/images/depelec74-maison-intervention.webp");
  background-position: center 45%;
}

.contact-card .eyebrow { color: var(--accent); }
.contact-card h2 { font-size: clamp(30px, 3vw, 40px); }

@media (max-width: 940px) {
  .priority-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article,
  .process-grid article + article {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .process-grid article:last-child { border-bottom: 0; }
  .process-grid article > span { margin-bottom: 14px; }
}

@media (max-width: 640px) {
  .nav { min-height: 64px; }
  .brand img { width: 58px; }
  .hero-authentic,
  .hero-overlay { min-height: min(650px, calc(100svh - 64px)); }
  .hero-grid { padding-top: 42px; padding-bottom: 38px; }
  .hero-logo { width: 82px; margin-bottom: 18px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div,
  .trust-grid a { min-height: 118px; padding: 18px; }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .priority-services { grid-template-columns: 1fr; }
  .priority-service { min-height: 0; padding: 24px; }
  .priority-service > img,
  .priority-service > .service-icon-text { margin-bottom: 20px; }
  .secondary-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
  .secondary-services strong { grid-column: 1 / -1; }
  .process-actions .btn { width: 100%; }
  .page-hero { min-height: 430px; }
}
