:root {
  --navy: #26365f;
  --navy-dark: #101a33;
  --orange: #f37021;
  --orange-dark: #d85e12;
  --ink: #101522;
  --muted: #5d6472;
  --line: #e6e9ef;
  --paper: #f6f7f9;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(16, 26, 51, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--orange);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(38, 54, 95, 0.12);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 270px;
  max-height: 68px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu a {
  position: relative;
  display: inline-block;
  padding: 28px 0;
}

.menu a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.menu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 16px;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: var(--navy);
  border-radius: var(--radius);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 82px));
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 26, 51, 0.92) 0%, rgba(16, 26, 51, 0.74) 47%, rgba(16, 26, 51, 0.34) 100%),
    linear-gradient(0deg, rgba(16, 26, 51, 0.52), rgba(16, 26, 51, 0.04));
}

.hero-grid {
  position: relative;
  display: flex;
  min-height: min(760px, calc(100vh - 82px));
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding: 48px 0 86px;
}

.hero-copy {
  flex: 1 1 680px;
  min-width: 0;
}

.hero-card {
  flex: 0 1 340px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
}

.hero-lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof div {
  padding: 22px;
  background: rgba(16, 26, 51, 0.62);
}

.hero-proof dt {
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-proof dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  padding: 30px;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.94);
  border-top: 6px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card p {
  max-width: 220px;
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-card a {
  display: block;
  margin-top: 18px;
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.hero-mascot {
  position: absolute;
  right: 18px;
  bottom: 12px;
  width: 92px;
  opacity: 0.88;
}

.service-strip {
  position: relative;
  margin-top: -74px;
  padding-bottom: 54px;
}

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

.service-grid article {
  min-height: 214px;
  padding: 28px;
  background: var(--white);
}

.service-grid span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-grid h2 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.service-ravalement {
  position: relative;
  background:
    linear-gradient(180deg, rgba(243, 112, 33, 0.08), rgba(255, 255, 255, 1) 62%) !important;
}

.service-ravalement::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--orange);
}

.service-ravalement h2 {
  color: var(--orange-dark);
}

.service-feature {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 54, 95, 0.96), rgba(16, 26, 51, 1)) !important;
}

.service-feature h2 {
  color: var(--white);
}

.service-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 94px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 70px;
}

.section-copy h2,
.contact-copy h2,
.team-grid h2 {
  max-width: 620px;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.section-copy p,
.contact-copy p {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
}

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

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

.check-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 14px;
  height: 3px;
  content: "";
  background: var(--orange);
}

.work-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 18px;
}

.chantier-carousel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 26px 0;
  perspective: 1200px;
}

.chantier-carousel::before,
.chantier-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  content: "";
  pointer-events: none;
}

.chantier-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.chantier-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.chantier-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: chantier-scroll 70s linear infinite;
  transform-style: preserve-3d;
}

.chantier-carousel:hover .chantier-track {
  animation-play-state: paused;
}

.chantier-slide {
  position: relative;
  width: min(34vw, 340px);
  min-width: 260px;
  height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(16, 26, 51, 0.2);
  transform: rotateY(-10deg) rotateX(2deg);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.chantier-slide:nth-child(3n + 2) {
  transform: rotateY(8deg) translateY(18px);
}

.chantier-slide:nth-child(3n) {
  transform: rotateY(-4deg) translateY(-8px);
}

.chantier-slide:hover {
  z-index: 3;
  transform: rotateY(0deg) rotateX(0deg) translateY(-10px) scale(1.035);
  box-shadow: 0 34px 78px rgba(16, 26, 51, 0.3);
}

.chantier-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 540ms ease, filter 540ms ease;
}

.chantier-slide:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.chantier-slide figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  color: var(--white);
  background: rgba(16, 26, 51, 0.78);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chantier-slide figcaption span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 5px 8px;
  color: var(--navy-dark);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1;
}

.chantier-slide-avant figcaption span {
  color: var(--white);
  background: var(--navy);
}

.chantier-slide-pendant figcaption span {
  color: var(--navy-dark);
  background: #ffd7bd;
}

.chantier-slide-apres figcaption span {
  color: var(--white);
  background: var(--orange);
}

@keyframes chantier-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 0;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.before-after-section {
  background: var(--paper);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.before-after-grid figure {
  position: relative;
  min-height: 290px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(16, 26, 51, 0.12);
}

.before-after-grid img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.before-after-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(16, 26, 51, 0.82);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.photo-card-large img {
  aspect-ratio: 4 / 3;
}

.photo-card figcaption {
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.navy-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 54, 95, 0.96), rgba(16, 26, 51, 1)),
    var(--navy);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 60px;
  align-items: center;
}

.team-grid h2 {
  color: var(--white);
}

.team-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.truck-proof {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.truck-proof img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.truck-proof figcaption {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-section {
  background: var(--paper);
}

.partners-section {
  padding: 76px 0;
  overflow: hidden;
  background: var(--white);
}

.partners-heading {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
}

.partners-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 16px;
}

.partners-marquee::before,
.partners-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(16vw, 180px);
  content: "";
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.partners-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: partners-scroll 28s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo {
  display: flex;
  width: 210px;
  height: 104px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 26, 51, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: 0 20px 46px rgba(16, 26, 51, 0.14);
}

.partner-logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.seo-section {
  background: var(--white);
}

.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.faq-list article:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(16, 26, 51, 0.12);
}

.faq-list h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.2;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: 70px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--navy);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(16, 26, 51, 0.1);
}

.google-review-card {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding: 18px 20px;
  color: var(--navy-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(16, 26, 51, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(16, 26, 51, 0.14);
}

.google-review-card span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.google-review-card strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.google-review-card em {
  color: var(--muted);
  font-style: normal;
}

.form-notice {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-notice-success {
  color: #1c4f2b;
  background: #e7f5ea;
  border: 1px solid #bfe5c8;
}

.form-notice-error {
  color: #7a1c1c;
  background: #fae8e8;
  border: 1px solid #efc1c1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8dde8;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(243, 112, 33, 0.16);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 44px;
  padding: 48px 0;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 16px;
  filter: brightness(1.08);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.54);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

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

.page-content {
  padding: 80px 0;
}

.brand img,
.nav-cta,
.button,
.hero-card,
.hero-proof div,
.service-grid article,
.photo-card,
.before-after-grid figure,
.truck-proof,
.contact-form {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    filter 220ms ease;
}

.brand:hover img {
  transform: translateY(-1px) scale(1.015);
}

.nav-cta:hover,
.button-primary:hover {
  box-shadow: 0 14px 28px rgba(243, 112, 33, 0.28);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(16, 26, 51, 0.28);
}

.hero-proof div:hover {
  background: rgba(16, 26, 51, 0.78);
  transform: translateY(-2px);
}

.service-grid article:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(16, 26, 51, 0.16);
}

.service-grid article:hover h2,
.contact-lines a:hover {
  color: var(--orange);
}

.photo-card,
.before-after-grid figure,
.truck-proof {
  isolation: isolate;
}

.photo-card img,
.before-after-grid img,
.truck-proof img,
.hero-media img {
  transition: transform 520ms ease, filter 520ms ease;
}

.photo-card:hover,
.before-after-grid figure:hover,
.truck-proof:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 68px rgba(16, 26, 51, 0.22);
}

.photo-card:hover img,
.before-after-grid figure:hover img,
.truck-proof:hover img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.03);
}

.before-after-grid figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 26, 51, 0), rgba(16, 26, 51, 0.28));
  opacity: 0;
  transition: opacity 220ms ease;
}

.before-after-grid figure:hover::after {
  opacity: 1;
}

.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(16, 26, 51, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .menu {
    display: grid;
    gap: 0;
  }

  .menu a {
    padding: 12px 0;
  }

  .menu a::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    text-align: center;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    flex-wrap: wrap;
  }

  .split-grid,
  .team-grid,
  .seo-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 92px 0 132px;
  }

  .hero-card {
    max-width: 410px;
  }

  .chantier-slide {
    width: 300px;
    height: 330px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 210px;
  }

  .hero-grid {
    padding: 48px 0 100px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-proof,
  .service-grid,
  .work-showcase,
  .before-after-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  .service-grid article {
    padding: 20px;
  }

  .section {
    padding: 68px 0;
  }

  .contact-form {
    padding: 20px;
  }

  .chantier-carousel::before,
  .chantier-carousel::after {
    width: 34px;
  }

  .chantier-slide {
    min-width: 230px;
    width: 230px;
    height: 290px;
  }

  .partner-logo {
    width: 180px;
    height: 92px;
  }
}
