:root {
  --navy: #071525;
  --navy-2: #0b2340;
  --navy-3: #123056;
  --navy-soft: #1a3d66;
  --orange: #f4a24a;
  --orange-2: #ffc07a;
  --orange-deep: #e87820;
  --cream: #fff7ee;
  --paper: #f4f7fb;
  --muted: #8aa0b8;
  --text: #e8eef6;
  --ink: #102033;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(7, 21, 37, 0.28);
  --max: 1180px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
.stats {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  z-index: 80;
}

.topbar {
  background: #050f1b;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--orange);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 37, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244, 162, 74, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.logo__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--orange-deep);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.05em;
  border-radius: 4px;
  font-size: 15px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo__text strong {
  font-size: 16px;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.logo__text small {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--orange);
}

.nav__cta {
  background: var(--orange);
  color: var(--navy) !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.header__tel {
  color: var(--orange) !important;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--orange);
  margin: 6px 0;
  transition: 0.2s;
}

.eyebrow {
  color: var(--orange-deep);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 37, 0.88) 0%, rgba(7, 21, 37, 0.55) 48%, rgba(7, 21, 37, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 21, 37, 0.15) 0%, rgba(7, 21, 37, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 56px 0 64px;
  max-width: 760px;
  margin-left: max(20px, calc((100% - var(--max)) / 2));
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  margin: 0 0 16px;
}

.hero__lead {
  font-size: 18px;
  max-width: 58ch;
  color: #d7e3f0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.hero__chips li {
  border: 1px solid rgba(255, 177, 90, 0.45);
  color: var(--orange);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
}

.btn--orange {
  background: var(--orange);
  color: var(--navy);
}

.btn--orange:hover {
  background: var(--orange-2);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.stats {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0 48px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats article {
  border-top: 2px solid var(--orange);
  padding-top: 16px;
}

.stats strong {
  display: block;
  font-size: 36px;
  letter-spacing: -0.04em;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
}

.intro,
.metiers,
.install,
.valeurs,
.equipe {
  padding: 96px 0;
}

.intro {
  background: var(--white);
}

.intro__grid,
.logistique__grid,
.install__grid,
.direction__grid,
.contact__grid,
.equipe__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.intro h2,
.metiers h2,
.logistique h2,
.renew h2,
.install h2,
.direction h2,
.valeurs h2,
.contact h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.intro__media img,
.logistique__media img,
.install__media img,
.direction figure img,
.equipe figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.intro__media img {
  height: 480px;
  object-position: 50% 50%;
}

.equipe {
  background: var(--cream);
}

.equipe figure img {
  height: 520px;
  object-position: 50% 22%;
}

.direction figure img {
  height: 620px;
  object-position: 50% 12%;
}

.intro__media figcaption,
.renew figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: #5c738c;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.checks li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 3px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head--light {
  color: var(--white);
}

.section-head--light .eyebrow {
  color: var(--orange);
}

.section-head--light p:last-child {
  color: #c9d7e6;
}

.metiers {
  background: #eef3f8;
}

.metiers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 21, 37, 0.08);
}

.card__img {
  height: 220px;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__img img {
  transform: scale(1.06);
}

.card__body {
  padding: 22px 24px 26px;
}

.card__num {
  color: var(--orange-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.card a {
  color: var(--navy-2);
  font-weight: 700;
  text-decoration: none;
}

.logistique {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0;
}

.logistique .eyebrow {
  color: var(--orange);
}

.logistique p,
.logistique li {
  color: #d3deea;
}

.split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.split-list h3 {
  color: var(--orange);
  font-size: 16px;
}

.split-list ul {
  padding-left: 18px;
  margin: 0;
}

.renew {
  background:
    linear-gradient(180deg, var(--navy-2), var(--navy));
  color: var(--white);
  padding: 96px 0;
}

.renew__split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-bottom: 28px;
}

.renew__split img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.renew__split figure:last-child img {
  height: 360px;
}

.pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pills article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 177, 90, 0.22);
  border-radius: 16px;
  padding: 22px;
}

.pills h3 {
  color: var(--orange);
  font-size: 18px;
}

.install {
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.timeline > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--orange);
  font-weight: 800;
  border-radius: 10px;
}

.timeline h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.timeline p {
  margin: 0;
  color: #51657c;
}

.install__media img {
  min-height: 520px;
  object-fit: cover;
}

.direction {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0;
}

.direction .eyebrow {
  color: var(--orange);
}

.role {
  color: var(--orange);
  font-weight: 700;
  margin-top: -8px;
}

.direction p {
  color: #d5e0ec;
}

.direction blockquote {
  margin: 24px 0;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--orange);
  font-weight: 600;
  color: var(--white);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.facts dt {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.facts dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.valeurs {
  background: var(--cream);
}

.valeurs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.valeurs article {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  border-top: 3px solid var(--orange);
}

.valeurs h3 {
  font-size: 20px;
}

.contact {
  background: var(--white);
  padding: 96px 0;
}

.contact__details {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.contact__details span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 700;
}

.contact__details a,
.contact__details address,
.contact__details p {
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  margin: 0;
}

.form {
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  border-radius: 22px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--orange);
}

.form input,
.form select,
.form textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-2);
  color: var(--white);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--orange);
}

.form__status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--orange);
  font-weight: 600;
}

.footer {
  background: #050f1b;
  color: #9fb3c8;
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.to-top {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  .stats__grid,
  .intro__grid,
  .logistique__grid,
  .install__grid,
  .direction__grid,
  .contact__grid,
  .equipe__grid,
  .metiers__grid,
  .renew__split,
  .pills,
  .valeurs__grid,
  .facts,
  .form__row,
  .split-list {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 18px 24px 28px;
    display: none;
    align-items: flex-start;
  }

  .nav.is-open {
    display: flex;
  }

  .hero {
    min-height: calc(100vh - 110px);
  }

  .hero__img {
    object-position: 70% 50%;
  }

  .equipe figure img,
  .intro__media img {
    height: 320px;
  }

  .install__media img {
    min-height: 280px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero__content {
    padding-bottom: 48px;
  }

  .intro,
  .metiers,
  .install,
  .valeurs,
  .equipe,
  .logistique,
  .renew,
  .direction,
  .contact {
    padding: 64px 0;
  }
}
