:root {
  --orange: #F2A63D;
  --navy: #1e3560;
  --ink: #1a1a1a;
  --gray: #4a4a4a;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
}

/* ---------- Header ---------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); line-height: 1.1; }
.brand-logo { height: 44px; width: auto; }
.brand-name { display: block; font-size: 1.55rem; font-weight: 800; letter-spacing: -0.5px; }
.brand-sub { display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.5em; margin-top: 2px; }
.accent { color: var(--orange); }

.menu { display: flex; gap: 40px; }
.menu a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.menu a.active { font-weight: 700; }
/* active item is underlined, not dotted */
.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
}

/* ---------- Nav dropdown ---------- */
.has-drop { position: relative; }
.drop-toggle { display: inline-flex; align-items: center; gap: 6px; }
.drop-toggle svg { transition: transform 0.2s ease; }
.has-drop:hover .drop-toggle svg,
.has-drop:focus-within .drop-toggle svg { transform: rotate(180deg); }
.has-drop:hover .drop-toggle,
.has-drop:focus-within .drop-toggle { color: var(--orange); }

.drop {
  position: absolute;
  top: 100%;
  left: -20px;
  padding-top: 14px; /* bridges the hover gap */
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.has-drop:hover .drop,
.has-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.drop a {
  display: block;
  background: #fff;
  padding: 14px 20px;
  font-size: 0.92rem;
  border-bottom: 1px solid #ececec;
  white-space: nowrap;
}
.drop a:first-child { border-radius: 10px 10px 0 0; }
.drop a:last-child { border-radius: 0 0 10px 10px; border-bottom: none; }
.drop a:hover { color: var(--orange); }
.drop { filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.13)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 8px 13px 24px;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(242, 166, 61, 0.35); }
.btn-primary .btn-arrow { background: rgba(255, 255, 255, 0.22); color: #fff; }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark .btn-arrow { background: #fff; color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #fff;
  padding: 132px 48px 0;
  overflow: hidden;
}
/* faint drawing-board grid behind the media panel */
.hero::before {
  content: "";
  position: absolute;
  top: 90px;
  right: 0;
  width: 46%;
  height: 70%;
  background:
    linear-gradient(to right, rgba(30, 53, 96, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 53, 96, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 70% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: block;
  max-width: 1360px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(0, 1fr);
  column-gap: 64px;
  align-items: center;
}
.hero-inner > .eyebrow,
.hero-inner > h1,
.hero-inner > .lead,
.hero-inner > .hero-ctas,
.hero-inner > .hero-proof { grid-column: 1; }
.hero-inner > .eyebrow { grid-row: 1; }
.hero-inner > h1 { grid-row: 2; }
.hero-inner > .lead { grid-row: 3; }
.hero-inner > .hero-ctas { grid-row: 4; }
.hero-inner > .hero-proof { grid-row: 5; }
.hero-inner > .hero-media {
  grid-column: 2;
  grid-row: 1 / span 5;
  align-self: center;
  min-width: 0;
}

.hero-inner .eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; }
.hero-inner h1 { font-size: clamp(2.1rem, 3.6vw, 3.1rem); margin-bottom: 20px; }

.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-ghost { padding: 13px 22px; border-radius: 12px; font-weight: 700; font-size: 0.88rem; }

.hero-proof {
  list-style: none;
  display: flex;
  gap: 26px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #ececec;
}
.hero-proof li { display: flex; align-items: center; gap: 10px; }
.hero-proof li + li { border-left: 1px solid #ececec; padding-left: 26px; }
.hero-proof strong {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero-proof li > span { color: var(--gray); font-size: 0.7rem; line-height: 1.35; }

/* framed media panel */
.hero-media { position: relative; }
.hero-bracket {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 110px;
  height: 110px;
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  border-radius: 0 6px 0 0;
}
.hero-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.16);
}
.hero-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-plate {
  position: absolute;
  left: 0;
  bottom: 22px;
  background: rgba(14, 14, 14, 0.88);
  border-left: 3px solid var(--orange);
  color: #fff;
  padding: 10px 22px 10px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

/* faint direction chevrons in the side margins */
.hero-chevs {
  position: absolute;
  top: 45%;
  pointer-events: none;
}
.hc-left { left: 14px; }
.hc-right { right: 14px; }

/* dashed route flowing into the media frame */
.hero-route {
  position: absolute;
  left: -182px;
  bottom: -36px;
  width: 220px;
  color: #d6d8dd;
  pointer-events: none;
}
.hero-route path { animation: route-flow 1.6s linear infinite; }
@keyframes route-flow {
  to { stroke-dashoffset: -16; }
}

/* miniature two-way road — hero + section separators site-wide */
.hero-road,
.t-road {
  position: relative;
  max-width: 1360px;
  height: 48px;
  margin: 42px auto 0;
}
.t-road { margin: 6px auto; padding: 0 48px; }
.hero-road::before,
.t-road::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 18px;
  transform: translateY(-50%);
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  background: repeating-linear-gradient(90deg, #e6e6e6 0 24px, transparent 24px 52px);
  background-size: 100% 1px;
  background-position: center;
  background-repeat: no-repeat;
}
.road-truck { position: absolute; pointer-events: none; }
.rt-1 {
  bottom: calc(50% + 8px);
  left: 22%;
  color: rgba(242, 166, 61, 0.8);
  animation: drive-r 34s linear infinite;
}
.rt-2 {
  top: calc(50% + 8px);
  right: 34%;
  color: #ced1d7;
  transform: scaleX(-1);
  animation: drive-l 46s linear infinite;
}
@keyframes drive-r {
  from { left: -40px; }
  to { left: 100%; }
}
@keyframes drive-l {
  from { right: -40px; }
  to { right: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .road-truck, .hero-route path { animation: none !important; }
}

/* side chevrons for any section (host gets .has-chevs) */
.has-chevs { position: relative; }
.sect-chevs {
  position: absolute;
  top: 44%;
  pointer-events: none;
  z-index: 0;
}
.sc-left { left: 14px; }
.sc-right { right: 14px; }
@media (max-width: 1280px) {
  .sect-chevs { display: none; }
}

/* product rail closes the hero */
.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1360px;
  margin: 0 auto;
}
.hero-rail a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px 26px;
  color: var(--orange);
}
.hero-rail a + a { border-left: 1px solid #ececec; }
.hero-rail a > svg:first-child { flex-shrink: 0; }
.hero-rail span { flex: 1; }
.hero-rail strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 3px;
  transition: color 0.15s;
}
.hero-rail small { color: var(--gray); font-size: 0.71rem; line-height: 1.4; }
.rail-chev { color: #b5b5b5; flex-shrink: 0; transition: transform 0.15s, color 0.15s; }
.hero-rail a:hover strong { color: var(--orange); }
.hero-rail a:hover .rail-chev { color: var(--orange); transform: translateX(3px); }

.eyebrow {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 22px;
}

.lead {
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 480px;
}

/* ---------- About / Qui sommes-nous ---------- */
.about {
  position: relative;
  padding: 90px 48px;
  background: #fdfcfa;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(242, 166, 61, 0.4) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle at bottom left, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at bottom left, #000 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 460px) 1fr;
  gap: 56px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
  position: relative;
}

.eyebrow-underline {
  display: inline-block;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 6px;
  margin-bottom: 20px;
}

.about-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.12;
}
.about-title .accent { text-transform: uppercase; }

.title-dash {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--orange);
  margin: 22px 0 24px;
}

.about-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.about-text strong { color: var(--ink); }
.hl { color: var(--orange); font-weight: 700; }

.cats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 26px 0;
}
.cats li {
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 10px;
  padding: 16px 8px;
  text-align: center;
  color: var(--orange);
}
.cats li span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}

.exp-card {
  display: flex;
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 12px;
  padding: 20px 8px;
  margin-bottom: 30px;
}
.exp-item {
  flex: 1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  padding: 0 14px;
  color: var(--orange);
}
.exp-item + .exp-item { border-left: 1px solid #eee7dc; }
.exp-item strong { display: block; color: var(--ink); font-size: 1.05rem; font-weight: 800; }
.exp-item small { color: var(--gray); font-size: 0.72rem; line-height: 1.35; }

.about-ctas { display: flex; align-items: center; gap: 28px; }
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}
.link-more svg { color: var(--orange); }

/* ---------- Showcase / Carousel ---------- */
.showcase {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.carousel { position: relative; border-radius: 12px; overflow: hidden; }
.carousel img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  background: #f4f2ee;
}

.car-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.car-prev { left: 16px; }
.car-next { right: 16px; }

#car-img { transition: opacity 0.22s ease, transform 0.22s ease; }
.carousel.slide-out-left #car-img { opacity: 0; transform: translateX(-28px); }
.carousel.slide-out-right #car-img { opacity: 0; transform: translateX(28px); }
.carousel.slide-in #car-img { animation: car-in 0.3s ease; }
@keyframes car-in {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: none; }
}

/* Thumbnails */
.thumbs-wrap { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.thumb-nav {
  width: 36px;
  height: 36px;
  border: 1px solid #eee;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.thumbs {
  list-style: none;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1;
}
.thumbs::-webkit-scrollbar { display: none; }
.thumbs li { flex: 0 0 calc(25% - 11px); min-width: 130px; cursor: pointer; text-align: center; }
.thumbs img {
  display: block;
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e8e8e8;
}
.thumbs li.active img { border-color: var(--orange); }
.thumbs li span {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
}

/* Feature strip */
.features {
  display: flex;
  background: #faf9f7;
  border: 1px solid #f0ece4;
  border-radius: 12px;
  margin-top: 16px;
  padding: 16px 8px;
}
.feature {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  color: var(--orange);
}
.feature + .feature { border-left: 1px solid #f0ece4; }
.feature p { color: var(--gray); font-size: 0.78rem; line-height: 1.45; }
.feature p strong { color: var(--ink); }

@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about { padding: 60px 20px; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .exp-card, .features { flex-direction: column; gap: 16px; }
  .exp-item + .exp-item, .feature + .feature { border-left: none; }
  .carousel img { height: 260px; }
}

/* ---------- Compact about (overrides) ---------- */
.about { padding: 56px 48px; }
.about-grid {
  grid-template-columns: minmax(360px, 440px) 1fr;
  gap: 40px;
  max-width: 1160px;
  align-items: stretch;
}
.about-left { display: flex; flex-direction: column; }
.about-ctas { margin-top: auto; padding-top: 20px; }
.about-title { font-size: clamp(1.5rem, 2.2vw, 2rem); }
.title-dash { margin: 16px 0 18px; }
.about-text { font-size: 0.85rem; margin-bottom: 10px; }
.eyebrow-underline { margin-bottom: 16px; }
.cats { margin: 18px 0; gap: 10px; }
.cats li { padding: 12px 6px; }
.cats li svg { width: 22px; height: 22px; }
.cats li span { font-size: 0.68rem; margin-top: 8px; }
.cats li { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.link-more { white-space: nowrap; }
.about-ctas { gap: 20px; }
.exp-card { padding: 14px 6px; margin-bottom: 0; }
.exp-item strong { font-size: 0.95rem; }
.btn { white-space: nowrap; }

.showcase { padding: 12px; border-radius: 14px; }
.carousel img { height: 300px; object-fit: contain; background: #fff; }
.thumbs img { object-fit: contain; background: #fff; border: 1px solid #f1ede6; }
.thumbs li.active img { border: 1px solid var(--orange); }
.car-nav { width: 36px; height: 36px; }
.thumbs-wrap { margin-top: 12px; }
.thumbs img { height: 60px; }
.thumbs li { min-width: 100px; }
.thumbs li span { font-size: 0.7rem; margin-top: 6px; }
.features { padding: 12px 6px; margin-top: 12px; }
.feature svg { width: 20px; height: 20px; }
.feature p { font-size: 0.72rem; }

/* ---------- Stats band ---------- */
.stats-band {
  background: #f7f7f9;
  padding: 34px 48px 26px;
  text-align: center;
}
.stats-band-row {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-big {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
}
.stat-big + .stat-big { border-left: 1px solid #e3e3e8; }
.stat-big-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.stat-big div { text-align: left; }
.stat-big strong { display: block; font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.stat-big small { color: #45507a; font-size: 0.92rem; }

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.rating strong { font-size: 0.95rem; color: var(--navy); }
.rating-stars { display: inline-flex; gap: 3px; color: var(--orange); }
.rating small { color: var(--gray); font-size: 0.75rem; }

/* ---------- Values ---------- */
.values { padding: 70px 48px; background: #fff; }
.values-grid {
  display: grid;
  grid-template-columns: minmax(340px, 460px) 1fr;
  gap: 56px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

.values-title {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.values-text { color: var(--gray); font-size: 0.9rem; line-height: 1.65; margin-bottom: 12px; }

.values-badges {
  list-style: none;
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.values-badges li {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 10px;
  padding: 12px;
  color: var(--orange);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.values-badges span { color: var(--navy); font-size: 0.76rem; line-height: 1.3; font-weight: 600; }

/* Accordion */
.acc {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(20, 33, 61, 0.07);
  margin-bottom: 18px;
  overflow: hidden;
}
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
}
.acc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}
.acc-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); flex: 1; }
.acc-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e3e6ee;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc-body p { padding: 20px 24px 22px; color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.acc-body strong { color: var(--navy); }

.acc.open .acc-head { background: var(--navy); }
.acc.open .acc-title { color: #fff; }
.acc.open .acc-icon { background: transparent; border: 1px solid rgba(255, 255, 255, 0.5); }
.acc.open .acc-chevron { background: #fff; border-color: #fff; color: var(--orange); transform: rotate(180deg); }
.acc.open .acc-body { max-height: 300px; }

@media (max-width: 1100px) {
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .stats-band { padding: 28px 20px 22px; }
  .stats-band-row { flex-direction: column; gap: 18px; }
  .stat-big + .stat-big { border-left: none; }
  .values { padding: 50px 20px; }
  .values-badges { flex-direction: column; }
}

/* ---------- Devis banner ---------- */
.mini-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mini-eyebrow.dashed::before { content: ""; width: 28px; height: 2px; background: var(--orange); }

.devis { padding: 60px 48px 30px; background: #fff; }
.devis-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 44px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 26px 56px;
  background: linear-gradient(115deg, #ffffff 45%, #f4f4f6 100%);
  border: 1px solid #f0f0f2;
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.devis-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-left: 110px solid transparent;
  border-bottom: 110px solid #f26a24;
}
.devis-img { width: 300px; flex-shrink: 0; }
.devis-text { flex: 1; }
.devis-text h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.5px; }
.devis-text .title-dash { margin: 14px 0 16px; width: 44px; }
.devis-sub { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }
.devis-btn { padding: 15px 28px; position: relative; z-index: 1; }
.devis-btn svg { color: var(--orange); }

/* ---------- Projets récents ---------- */
.projects { padding: 40px 48px 80px; background: #fff; }
.projects-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: center;
}

.projects-title { font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 800; letter-spacing: -0.5px; }
.projects-text { color: var(--gray); font-size: 0.9rem; line-height: 1.65; margin-bottom: 22px; }
.projects-left .title-dash { margin: 14px 0 16px; }

.skill-cards { list-style: none; display: flex; gap: 12px; }
.skill-cards li {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #f0eee9;
  border-radius: 10px;
  padding: 14px 12px;
  color: var(--orange);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.skill-cards span { color: var(--gray); font-size: 0.74rem; line-height: 1.35; }
.skill-cards strong { color: var(--ink); }

.project-card {
  display: flex;
  background: #fff;
  border: 1px solid #f0eee9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.07);
}
.project-card > img { width: 54%; object-fit: cover; }
.project-info { flex: 1; padding: 30px 28px; display: flex; flex-direction: column; }
.project-info h3 { color: var(--navy); font-size: 1.25rem; font-weight: 800; margin-bottom: 16px; }

.project-checks { list-style: none; margin-bottom: 22px; }
.project-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.project-checks svg { color: var(--orange); flex-shrink: 0; }

.project-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f4f2ef;
  border-radius: 8px;
  padding: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
}
.project-btn svg { color: var(--orange); }
.project-btn:hover { background: #efece7; }

@media (max-width: 1024px) {
  .devis-card { flex-direction: column; text-align: center; padding: 30px; }
  .mini-eyebrow { justify-content: center; }
  .devis-text .title-dash { margin-left: auto; margin-right: auto; }
  .projects-grid { grid-template-columns: 1fr; gap: 36px; }
  .project-card { flex-direction: column; }
  .project-card > img { width: 100%; height: 240px; }
}
@media (max-width: 640px) {
  .devis { padding: 40px 20px 20px; }
  .projects { padding: 30px 20px 60px; }
  .skill-cards { flex-direction: column; }
}

/* ---------- Recent projects ---------- */
.recent {
  position: relative;
  padding: 70px 48px 60px;
  background: #f8f8fa;
  overflow: hidden;
}
.recent::before,
.recent::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(242, 166, 61, 0.35) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  pointer-events: none;
}
.recent::before {
  left: -40px;
  bottom: -40px;
  -webkit-mask-image: radial-gradient(circle at bottom left, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at bottom left, #000 0%, transparent 70%);
}
.recent::after {
  right: -40px;
  bottom: -40px;
  -webkit-mask-image: radial-gradient(circle at bottom right, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at bottom right, #000 0%, transparent 70%);
}

.recent-head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.recent-eyebrow {
  color: #f26a24;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.recent-head h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.recent-sub { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }

.recent-slider { position: relative; max-width: 1240px; margin: 0 auto; }
.rec-track {
  list-style: none;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 4px 14px;
}
.rec-track::-webkit-scrollbar { display: none; }
.rec-track li {
  flex: 0 0 232px;
  scroll-snap-align: start;
}
.rec-track img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
}
.rec-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(20, 33, 61, 0.1);
  padding: 14px 12px;
  margin: -34px 10px 0;
  position: relative;
}
.rec-icon { color: #f26a24; flex-shrink: 0; margin-top: 2px; }
.rec-card h3 { font-size: 0.85rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.rec-card p { font-size: 0.72rem; color: var(--gray); line-height: 1.4; }

.rec-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #f26a24;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.rec-prev { left: -16px; }
.rec-next { right: -16px; }

.rec-dots { display: flex; justify-content: center; gap: 8px; margin: 18px 0 26px; }
.rec-dots button {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: #d4d4da;
  cursor: pointer;
  padding: 0;
}
.rec-dots button.active { background: #f26a24; }

.btn-projects {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  background: #f26a24;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  padding: 15px 28px;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(242, 106, 36, 0.35);
  transition: transform 0.15s ease;
}
.btn-projects:hover { transform: translateY(-1px); }

@media (max-width: 760px) {
  .recent { padding: 50px 20px 44px; }
  .rec-prev { left: -8px; }
  .rec-next { right: -8px; }
  .rec-track li { flex-basis: 200px; }
}

/* ---------- Trust section ---------- */
.trust-section {
  position: relative;
  padding: 70px 48px 90px;
  background: #fff;
  overflow: hidden;
}
.trust-grid {
  display: grid;
  grid-template-columns: minmax(300px, 360px) 1fr;
  gap: 44px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.trust-card {
  position: relative;
  background: #f8f8fa;
  border-radius: 14px;
  padding: 32px 30px;
  overflow: hidden;
}
.trust-eyebrow { color: #f26a24; font-size: 0.8rem; font-weight: 700; margin-bottom: 14px; }
.trust-card h2 {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.trust-text { color: var(--gray); font-size: 0.85rem; line-height: 1.65; margin-bottom: 22px; position: relative; z-index: 1; }
.trust-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f26a24;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.trust-shield {
  position: absolute;
  right: -30px;
  bottom: -30px;
  color: #e6e6ea;
  pointer-events: none;
}

.trust-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}
.trust-stats li { text-align: center; padding: 10px 22px; }
.trust-stats li + li { border-left: 1px solid #ececf0; }
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #f2f2f5;
  color: #f26a24;
  margin-bottom: 16px;
}
.trust-stats strong { display: block; color: #f26a24; font-size: 1.7rem; font-weight: 800; margin-bottom: 6px; }
.trust-stats h3 { font-size: 0.85rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.trust-stats p { font-size: 0.76rem; color: var(--gray); line-height: 1.5; }

.trust-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 150px;
  background: radial-gradient(circle, rgba(242, 106, 36, 0.5) 1.2px, transparent 1.2px);
  background-size: 9px 9px;
  -webkit-mask-image:
    radial-gradient(120% 90% at 20% 140%, #000 40%, transparent 62%),
    radial-gradient(120% 95% at 75% 150%, #000 42%, transparent 64%);
  mask-image:
    radial-gradient(120% 90% at 20% 140%, #000 40%, transparent 62%),
    radial-gradient(120% 95% at 75% 150%, #000 42%, transparent 64%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .trust-stats li:nth-child(3) { border-left: none; }
}
@media (max-width: 640px) {
  .trust-section { padding: 50px 20px 70px; }
  .trust-stats { grid-template-columns: 1fr; }
  .trust-stats li + li { border-left: none; }
}

/* ---------- Process section ---------- */
.process {
  position: relative;
  padding: 80px 48px 100px;
  background: #f5f5f7;
  overflow: hidden;
}
.process-grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}

.process-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.process-left .title-dash { margin: 18px 0 20px; }
.process-text { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 26px; }
.process-btn { margin: 0 0 30px; }

.spec-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 14px 38px rgba(20, 33, 61, 0.08);
}
.spec-card img { display: block; width: 100%; border-radius: 10px; }
.spec-row {
  list-style: none;
  display: flex;
  margin-top: 6px;
  padding: 10px 0 4px;
}
.spec-row li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  color: #f26a24;
}
.spec-row li + li { border-left: 1px solid #efefef; }
.spec-row small {
  display: block;
  color: var(--gray);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.spec-row strong { color: var(--ink); font-size: 0.82rem; font-weight: 800; }

/* Steps timeline */
.steps {
  list-style: none;
  position: relative;
  padding-left: 34px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 30px;
  bottom: 30px;
  border-left: 2px dotted rgba(242, 106, 36, 0.45);
}
.steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(20, 33, 61, 0.06);
}
.steps li::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f26a24;
}
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #f7f7f9;
  border: 1px solid #efeff2;
  color: #f26a24;
  flex-shrink: 0;
}
.step-num { display: block; color: #f26a24; font-weight: 800; font-size: 0.9rem; margin-bottom: 4px; }
.step-body { flex: 1; }
.step-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.step-body p { color: var(--gray); font-size: 0.82rem; line-height: 1.55; }
.step-arrow { color: #f26a24; flex-shrink: 0; }

@media (max-width: 1024px) {
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .process { padding: 50px 20px 70px; }
  .steps { padding-left: 24px; }
  .steps li { flex-direction: column; text-align: center; gap: 12px; }
  .steps li::before { left: -23px; }
  .step-arrow { display: none; }
  .spec-row { flex-wrap: wrap; gap: 12px 0; }
  .spec-row li { flex-basis: 50%; }
  .spec-row li + li { border-left: none; }
}

/* ---------- Footer ---------- */
.footer {
  background: #fff;
  border-top: 3px solid #f26a24;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 48px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 62px; width: auto; }
.footer-brand span { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.5px; color: var(--ink); }
.footer-left .title-dash { margin: 18px 0 22px; }

.footer-checks { list-style: none; }
.footer-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-checks svg { color: #f26a24; flex-shrink: 0; margin-top: 2px; }

.follow-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 26px 0 14px;
}
.socials { display: flex; gap: 14px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #f3ddc9;
  color: #f26a24;
  transition: background 0.15s ease;
}
.socials a:hover { background: #fef3e8; }

.footer-right { border-left: 1px solid #eee; padding-left: 56px; }
.footer-right .title-dash { margin: 0 0 12px; }
.footer-right h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.coords { list-style: none; }
.coords li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #f2f2f4;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  padding: 12px 16px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--ink);
}
.coord-icon {
  display: inline-flex;
  color: #f26a24;
  border-right: 1px solid #efefef;
  padding-right: 14px;
  flex-shrink: 0;
}

.footer-bottom {
  position: relative;
  background: #f0f0f2;
  text-align: center;
  padding: 22px 20px;
  overflow: hidden;
}
.footer-bottom p { font-size: 0.82rem; color: var(--ink); }
.mini-dash { display: block; width: 30px; height: 2px; background: #f26a24; margin: 10px auto; }
.footer-bottom::before,
.footer-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}
.footer-bottom::before { left: 0; }
.footer-bottom::after { right: 0; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .footer-right { border-left: none; padding-left: 0; }
}

/* ---------- Reveal ---------- */
/* Keep page content visible at all times. Scroll-triggered opacity previously
   left large blank areas on iOS Safari when the observer did not fire. */
.reveal,
.reveal.in {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .menu { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-bracket, .hero-route, .hero-chevs { display: none; }
  .hero-rail { grid-template-columns: 1fr; }
  .hero-rail a + a { border-left: none; border-top: 1px solid #ececec; }
}

@media (max-width: 640px) {
  .header { padding: 14px 20px; }
  .hero { padding: 100px 20px 0; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .hero-proof li + li { border-left: none; padding-left: 0; }
  .hero-plate { font-size: 0.6rem; padding-right: 16px; }
}


/* ---------- Products page ---------- */
/* solid header — sits in flow instead of overlaying the banner */
.header-solid {
  position: sticky;
  inset: auto;
  top: 0;
  background: #fff;
  box-shadow: 0 1px 0 #ededed, 0 6px 20px rgba(0, 0, 0, 0.05);
}

.page-banner {
  background: url("../images/ourprofuct images/ChatGPT Image Aug 1, 2026, 11_27_24 AM.jpg") center / cover no-repeat #f4f4f4;
  text-align: center;
  padding: 96px 24px 88px;
}
.page-banner h1 {
  font-family: "PT Serif", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
}
.banner-dash {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--orange);
  margin: 22px auto 0;
}

.products { padding: 80px 48px 90px; background: #fff; }
.products-grid-page {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 70px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.hatch {
  display: block;
  width: 52px;
  height: 10px;
  margin-bottom: 16px;
  background: repeating-linear-gradient(55deg, var(--orange) 0 5px, transparent 5px 9px);
}
.prod-title {
  font-family: "PT Serif", Georgia, serif;
  color: var(--orange);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 18px;
}
.prod-desc { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 26px; }

.prod-list { list-style: none; margin-bottom: 34px; }
.prod-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 6px 12px 18px;
  border-bottom: 1px solid #efefef;
  position: relative;
  transition: color 0.15s;
}
.prod-list a::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--orange);
}
.prod-list svg { margin-left: auto; color: #9a9a9a; }
.prod-list a:hover, .prod-list a:hover svg { color: var(--orange); }

.btn-voir { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; border-radius: 8px; }

.prod-cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prod-cards li {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.prod-cards img { width: 100%; height: 150px; display: block; }
.prod-card-label {
  position: relative;
  z-index: 1;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid #f0f0f0;
  color: var(--orange);
}
.prod-card-label svg { flex-shrink: 0; }
.prod-card-label span {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .products-grid-page { grid-template-columns: 1fr; gap: 44px; }
  .prod-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products { padding: 56px 20px 64px; }
  .prod-cards { grid-template-columns: 1fr; }
  .page-banner { padding: 62px 20px 56px; }
}

/* ---------- Semi-remorques ---------- */
.semi {
  position: relative;
  padding: 70px 48px 96px;
  background: #fbfbfb;
  overflow: hidden;
}
.semi::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -30px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(242, 166, 61, 0.35) 1.4px, transparent 1.4px);
  background-size: 15px 15px;
  -webkit-mask-image: radial-gradient(circle at top right, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at top right, #000 0%, transparent 70%);
  pointer-events: none;
}

.semi-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px);
  gap: 60px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: center;
  position: relative;
}

/* gallery */
.semi-gallery { position: relative; padding: 0 34px; }
.semi-panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  padding: 26px;
}

.semi-tiles {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.semi-tiles li {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.semi-tiles li:nth-child(-n + 2) { grid-column: span 2; }
.semi-tiles img { width: 100%; height: 100%; display: block; }
.semi-tiles li:nth-child(-n + 2) img { height: 270px; }
.semi-tiles li:nth-child(n + 3) img { height: 158px; }
.semi-tiles li:first-child::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--orange);
}

/* label = stamped nameplate, flush to the panel corner like the plates
   bolted on Fabrinov's own trailers — not a floating pill */
.tile-chip {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 86%;
  padding: 9px 24px 9px 14px;
  background: rgba(14, 14, 14, 0.9);
  border-left: 3px solid var(--orange);
  /* corner cut off the way a real plate is chamfered before mounting */
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
  transition: padding-right 0.25s ease, background 0.25s ease;
}
.tile-chip span {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #fff;
}
.semi-tiles li:hover .tile-chip,
.divers-tiles li:hover .tile-chip { background: #0e0e0e; padding-right: 26px; }

.semi-nav {
  position: absolute;
  top: 172px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.13);
  transition: background 0.15s, color 0.15s;
}
.semi-nav:hover { background: var(--orange); color: #fff; }
.semi-prev { left: 0; }
.semi-next { right: 0; }

.semi-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.semi-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #dcdcdc;
  cursor: pointer;
}
.semi-dots button.active { background: var(--orange); }

/* text side */
.semi-mark { display: block; color: var(--orange); margin-bottom: 14px; }
.semi-title {
  font-family: "PT Serif", Georgia, serif;
  color: var(--orange);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
}
.semi-dash { margin: 18px 0 22px; }
.semi-desc { color: var(--gray); font-size: 0.92rem; line-height: 1.75; margin-bottom: 26px; }

.semi-list { list-style: none; margin-bottom: 30px; }
.semi-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 4px;
  border-bottom: 1px solid #ececec;
  transition: color 0.15s;
}
.semi-list a > svg:first-child { color: var(--orange); flex-shrink: 0; }
.semi-chev { margin-left: auto; color: #a5a5a5; }
.semi-list a:hover, .semi-list a:hover .semi-chev { color: var(--orange); }

.semi-btn {
  padding: 15px 30px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.85rem;
}

@media (max-width: 1100px) {
  .semi-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 760px) {
  .semi { padding: 50px 20px 64px; }
  .semi-gallery { padding: 0 22px; }
  .semi-panel { padding: 16px; }
  .semi-tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .semi-tiles li:nth-child(-n + 2) { grid-column: span 2; }
  .semi-tiles li:nth-child(-n + 2) img { height: 190px; }
  .semi-tiles li:nth-child(n + 3) img { height: 120px; }
  .semi-nav { top: 122px; width: 32px; height: 32px; }
  .tile-chip span { font-size: 0.6rem; }
}

/* ---------- Produits divers ---------- */
.divers {
  position: relative;
  padding: 84px 48px 96px;
  background: #fafafa;
  overflow: hidden;
}
.divers::before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(242, 166, 61, 0.35) 1.4px, transparent 1.4px);
  background-size: 15px 15px;
  -webkit-mask-image: radial-gradient(circle at bottom left, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at bottom left, #000 0%, transparent 70%);
  pointer-events: none;
}

.divers-grid {
  display: grid;
  grid-template-columns: minmax(300px, 430px) 1fr;
  gap: 64px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: center;
  position: relative;
}

.divers-title {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.divers-desc { color: var(--gray); font-size: 0.92rem; line-height: 1.75; margin-bottom: 28px; }

.divers-list { list-style: none; margin-bottom: 32px; }
.divers-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 10px 0;
}
.divers-list li + li a { border-top: 1px solid #e8e8e8; }
.dv-badge {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: var(--orange);
  flex-shrink: 0;
}
.dv-label {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.divers-list a:hover .dv-label { color: var(--orange); }
.divers-list a:hover .dv-badge { border-color: var(--orange); }

.divers-btn { border-radius: 8px; text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.85rem; }

/* gallery: one tall tile + 2x2 */
.divers-tiles {
  list-style: none;
  display: grid;
  /* wide first column + short rows: the photos are 3:2, so this keeps the
     tall tile from swallowing the landscape frame in empty space */
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: repeat(2, 185px);
  gap: 18px;
}
.divers-tiles li {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}
.divers-tiles li:first-child { grid-row: span 2; }
.divers-tiles img { width: 100%; height: 100%; display: block; }

.divers-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 26px;
}
.divers-controls .semi-nav { position: static; }
.divers-controls .semi-dots { margin-top: 0; }

@media (max-width: 1100px) {
  .divers-grid { grid-template-columns: 1fr; gap: 42px; }
}
@media (max-width: 760px) {
  .divers { padding: 56px 20px 64px; }
  .divers-tiles { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 150px 150px; }
  .divers-tiles li:first-child { grid-row: auto; grid-column: span 2; }
}

/* ---------- Gallery tiles: whole product visible, no crop ---------- */
.prod-cards li,
.semi-tiles li,
.divers-tiles li { position: relative; isolation: isolate; }

.prod-cards img,
.semi-tiles img,
.divers-tiles img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  padding: 6px;
}
.tile-chip { z-index: 2; }

/* ---------- CTA band ---------- */
.cta { padding: 0 48px 70px; background: #fff; }
.cta-band {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(115deg, #f4f5f7 0%, #fafafa 45%, #fff 100%);
}

.cta-text { position: relative; z-index: 2; padding: 54px 20px 54px 58px; max-width: 700px; }

.cta-title {
  font-family: "PT Serif", Georgia, serif;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.35vw, 1.95rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  text-transform: capitalize;
}
.cta-sub {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  text-transform: capitalize;
}
.cta-dash { display: block; width: 62px; height: 3px; background: var(--orange); margin: 20px 0 26px; }

.cta-feats { list-style: none; display: flex; gap: 26px; margin-bottom: 30px; }
.cta-feats li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--orange);
}
.cta-feats li + li { border-left: 1px solid #dcdcdc; padding-left: 26px; }
.cta-feats span {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.cta-btn {
  border-radius: 8px;
  padding: 15px 26px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cta-btn .btn-arrow { background: none; width: auto; height: auto; }

/* photo panel, cut on the diagonal and faded into the plate */
.cta-media {
  position: absolute;
  inset: 0 0 0 auto;
  /* the source photo is square: this width keeps the whole trailer in frame
     once cover crops it to the band height */
  width: 46%;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
  filter: grayscale(0.25) contrast(1.03);
}
.cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg, #fbfbfc 0%, rgba(251, 251, 252, 0.72) 20%, rgba(251, 251, 252, 0) 48%);
}

/* keyline + soft shape, echoing the plate corners used across the site */
.cta-ring {
  position: absolute;
  top: -60px;
  right: 16%;
  width: 300px;
  height: 210px;
  border: 1.5px solid rgba(242, 166, 61, 0.75);
  border-radius: 0 0 0 90px;
  border-top: none;
  border-right: none;
  z-index: 3;
}
.cta-arc {
  position: absolute;
  left: -90px;
  top: 24%;
  width: 260px;
  height: 260px;
  border-radius: 50% 50% 50% 12%;
  background: rgba(30, 53, 96, 0.045);
  z-index: 0;
}

@media (max-width: 1024px) {
  .cta-media { width: 46%; clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%); }
  .cta-text { padding: 42px 24px 42px 34px; }
  .cta-feats { flex-wrap: wrap; gap: 16px; }
  .cta-feats li + li { border-left: none; padding-left: 0; }
}
@media (max-width: 760px) {
  .cta { padding: 0 20px 50px; }
  .cta-band { flex-direction: column; min-height: 0; }
  .cta-media { position: relative; inset: auto; width: 100%; height: 220px; clip-path: none; order: -1; }
  .cta-media::after { background: linear-gradient(to bottom, rgba(251,251,252,0) 55%, #fbfbfc 100%); }
  .cta-text { padding: 30px 24px 36px; }
  .cta-ring, .cta-arc { display: none; }
}

/* ---------- Product detail page (portes engins) ---------- */
.banner-dark {
  background-image: url("../images/ChatGPT Image Aug 3, 2026, 10_44_12 AM.jpg");
  padding: 86px 24px 78px;
}
.banner-dark h1 { color: #fff; text-transform: none; }

.detail { padding: 70px 48px 84px; background: #f7f7f8; }
.detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 56px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.detail-title {
  font-family: "PT Serif", Georgia, serif;
  color: var(--orange);
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.detail-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }

/* accordion */
.specs {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}
.spec + .spec { border-top: 1px solid #efefef; }
.spec-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}
.spec-head > svg:first-child { color: var(--orange); flex-shrink: 0; }
.spec-head span { flex: 1; }
.spec-chev { color: #9c9c9c; transition: transform 0.25s ease; }
.spec.open .spec-chev { transform: rotate(180deg); color: var(--orange); }
.spec.open .spec-head { color: var(--orange); }

/* ponytail: max-height collapse — 600px clears the longest panel (Essieux) */
.spec-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease;
}
.spec.open .spec-body { max-height: 600px; }
.spec-body p,
.spec-body ul { padding: 0 18px 16px 52px; color: var(--gray); font-size: 0.84rem; line-height: 1.65; }
.spec-body ul { list-style: none; }
.spec-body li { position: relative; padding-left: 14px; margin-bottom: 6px; }
.spec-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--orange);
}

.detail-btn { border-radius: 8px; }

/* photo + panel */
.pe-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 300px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}
.pe-shot { position: relative; background: #fff; min-height: 320px; }
.pe-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pe-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  transition: background 0.15s, color 0.15s;
}
.pe-nav:hover { background: var(--orange); color: #fff; }
.pe-prev { left: 14px; }
.pe-next { right: 20px; z-index: 2; }

/* pill so the dots stay legible over light photos too */
.pe-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  display: flex;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
}
.pe-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}
.pe-dots button.active { background: var(--orange); }

.pe-panel { padding: 30px 26px; }
.pe-badge {
  display: inline-block;
  border: 1px solid rgba(242, 166, 61, 0.55);
  border-radius: 4px;
  padding: 5px 11px;
  color: var(--orange);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pe-panel h3 {
  font-family: "PT Serif", Georgia, serif;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
}
.pe-dash { margin: 16px 0 20px; width: 48px; }

.pe-checks { list-style: none; }
.pe-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.pe-checks svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* thumbnails */
.pe-thumbs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.pe-thumbs li {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.18s ease;
}
.pe-thumbs img { width: 100%; height: 150px; object-fit: cover; display: block; }
.pe-thumbs li:hover { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16); }
.pe-thumbs li.active { outline: 2px solid var(--orange); outline-offset: -2px; }

.more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}
.more-link svg { color: var(--orange); }
.more-link:hover { color: var(--orange); }

@media (max-width: 1100px) {
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .pe-row { grid-template-columns: 1fr; }
  .pe-next { right: 14px; }
}
@media (max-width: 760px) {
  .detail { padding: 50px 20px 60px; }
  .pe-thumbs { grid-template-columns: repeat(2, 1fr); }
  .pe-thumbs img { height: 110px; }
  .spec-body p, .spec-body ul { padding-left: 18px; }
}

/* ---------- Bennes section (carousel left, specs right) ---------- */
.detail-alt { background: #fbfbfb; }

.benne-head {
  display: flex;
  align-items: flex-start;
  gap: 54px;
  max-width: 1360px;
  margin: 0 auto 30px;
}
.benne-dash { margin: 14px 0 0; width: 52px; }
.benne-intro {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 540px;
  padding-top: 30px;
}

.benne-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}
.benne-media .pe-shot {
  border-radius: 10px;
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.07);
}
.bn-prev { left: 14px; }
.bn-next { right: 14px; }

.thumbs-6 { grid-template-columns: repeat(6, 1fr); gap: 12px; }
.thumbs-6 img { height: 82px; }

/* quote band */
.quote-band {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 34px;
  max-width: 1360px;
  margin: 34px auto 0;
  padding: 24px 34px;
  background: linear-gradient(105deg, #fff 40%, #fdf4e6 100%);
  border: 1px solid #f1e7d7;
  border-radius: 14px;
}
.quote-band img { width: 100%; display: block; }
.quote-band h3 {
  font-family: "PT Serif", Georgia, serif;
  color: var(--navy);
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.quote-band p { color: var(--gray); font-size: 0.86rem; line-height: 1.6; max-width: 360px; }

.quote-actions { display: flex; gap: 14px; }
.quote-btn { border-radius: 8px; padding: 14px 22px; font-size: 0.86rem; gap: 10px; }
.btn-ghost { background: #fff; color: var(--navy); border: 1px solid #dcdcdc; }
.btn-ghost svg { color: var(--orange); }
.btn-ghost:hover { border-color: var(--orange); }

.spec-sub {
  padding: 0 18px 6px 52px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .benne-head { flex-direction: column; gap: 16px; }
  .benne-intro { padding-top: 0; }
  .benne-grid { grid-template-columns: 1fr; }
  .quote-band { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .quote-band img { max-width: 280px; }
}
@media (max-width: 760px) {
  .thumbs-6 { grid-template-columns: repeat(3, 1fr); }
  .quote-actions { flex-direction: column; width: 100%; }
  .quote-btn { justify-content: center; }
}

/* ---------- Citernes section ---------- */
.citernes { padding: 20px 48px 84px; background: #f7f7f8; }
.cit-card {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  gap: 46px;
  max-width: 1360px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
}

.cit-title {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
}
.cit-dash { margin: 16px 0 20px; width: 52px; }
.cit-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }

.cit-left .specs { background: #fcfcfc; margin-bottom: 24px; }

.cit-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.cit-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gray);
  font-size: 0.78rem;
}
.cit-trust svg { color: var(--orange); flex-shrink: 0; }

.cit-shot { border-radius: 12px; overflow: hidden; min-height: 420px; }
.cit-shot .pe-dots { bottom: 16px; }
.ct-prev { left: 16px; }
.ct-next { right: 16px; }

.cit-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(14, 14, 14, 0.82);
  color: #fff;
  border-radius: 6px;
  padding: 7px 13px;
  font-size: 0.72rem;
  font-weight: 600;
}
.cit-badge svg { color: var(--orange); }

.thumbs-5 { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.thumbs-5 img { height: 92px; }

.cit-feats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 18px;
  padding: 22px 24px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}
.cit-feats li { display: flex; gap: 10px; color: var(--orange); }
.cit-feats svg { flex-shrink: 0; width: 22px; height: 22px; }
.cit-feats strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cit-feats span { color: var(--gray); font-size: 0.73rem; line-height: 1.45; }

@media (max-width: 1100px) {
  .cit-card { grid-template-columns: 1fr; gap: 34px; padding: 28px; }
  .cit-feats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .citernes { padding: 10px 20px 60px; }
  .thumbs-5 { grid-template-columns: repeat(3, 1fr); }
  .cit-feats { grid-template-columns: 1fr; }
  .cit-shot { min-height: 240px; }
}

/* ---------- Plateaux section ---------- */
.plateaux { padding: 20px 48px 84px; background: #fff; }
.plt-grid {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 470px);
  gap: 46px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.plt-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plt-tick { display: block; width: 26px; height: 3px; background: var(--orange); }

.plt-title {
  color: var(--navy);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.plt-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; }

.plt-shot { border-radius: 12px; overflow: hidden; height: 330px; }
.pl-prev { left: 16px; }
.pl-next { right: 16px; }

/* captioned thumbnails */
.thumbs-cap li { background: #fff; border: 1px solid #ececec; }
.thumbs-cap img { height: 84px; }
.thumbs-cap span {
  display: block;
  padding: 8px 6px 10px;
  color: var(--navy);
  font-size: 0.63rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.plt-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.plt-btn {
  border-radius: 8px;
  padding: 14px 22px;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plt-trust { list-style: none; display: flex; align-items: center; gap: 22px; margin-left: 10px; }
.plt-trust li { display: flex; align-items: center; gap: 10px; color: var(--orange); }
.plt-trust li + li { border-left: 1px solid #e6e6e6; padding-left: 22px; }
.plt-trust span { color: var(--navy); font-size: 0.74rem; font-weight: 600; line-height: 1.35; }

.plt-specs { align-self: start; }

@media (max-width: 1100px) {
  .plt-grid { grid-template-columns: 1fr; gap: 34px; }
  .thumbs-cap { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .plateaux { padding: 10px 20px 60px; }
  .thumbs-cap { grid-template-columns: repeat(2, 1fr); }
  .plt-trust { flex-wrap: wrap; margin-left: 0; gap: 14px; }
  .plt-trust li + li { border-left: none; padding-left: 0; }
}

/* ---------- Plateaux extensibles ---------- */
.extensibles { padding: 20px 48px 84px; background: #fff; }
.ext-grid {
  display: grid;
  grid-template-columns: minmax(320px, 470px) 1fr;
  gap: 46px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.ext-title {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.ext-desc { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.ext-specs { margin-bottom: 24px; }
.ext-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.ext-shot { border-radius: 12px; overflow: hidden; height: 360px; }

/* thumbnails with the caption laid over the photo */
.thumbs-4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.thumbs-over li { position: relative; }
.thumbs-over img { height: 132px; }
.thumbs-over span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 53, 96, 0.92);
  color: #fff;
  padding: 8px 8px 9px;
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.ext-feats { margin-top: 18px; }

@media (max-width: 1100px) {
  .ext-grid { grid-template-columns: 1fr; gap: 34px; }
  .ext-feats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .extensibles { padding: 10px 20px 60px; }
  .thumbs-4 { grid-template-columns: repeat(2, 1fr); }
  .ext-shot { height: 230px; }
}

/* ---------- Équipements sur porteur : Bennes ---------- */
.eqp-bennes { padding: 20px 48px 84px; background: #f7f7f8; }
.eqb-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 430px);
  gap: 46px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}
.eqb-desc { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 22px; max-width: 560px; }

.eqb-shot { height: 330px; border-radius: 10px; overflow: hidden; }
.eb-prev { left: 16px; }
.eb-next { right: 16px; }
.eb-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(30, 53, 96, 0.92);
  color: #fff;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 600;
}

.eqb-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.eqb-trust { list-style: none; display: flex; gap: 22px; margin-left: auto; }
.eqb-trust li { display: flex; gap: 10px; color: var(--orange); max-width: 230px; }
.eqb-trust li + li { border-left: 1px solid #e3e3e3; padding-left: 22px; }
.eqb-trust svg { flex-shrink: 0; }
.eqb-trust strong {
  display: block;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.eqb-trust span { color: var(--gray); font-size: 0.69rem; line-height: 1.45; }

.eqb-specs { background: #fff; align-self: start; }

@media (max-width: 1240px) {
  .eqb-trust { margin-left: 0; width: 100%; }
}
@media (max-width: 1100px) {
  .eqb-grid { grid-template-columns: 1fr; gap: 34px; }
  .eqb-trust { flex-wrap: wrap; }
  .eqb-trust li + li { border-left: none; padding-left: 0; }
}
@media (max-width: 760px) {
  .eqp-bennes { padding: 10px 20px 60px; }
  .eqb-shot { height: 230px; }
}

/* ---------- Équipements sur porteur : Plateaux ---------- */
.eqp-plateaux {
  position: relative;
  padding: 40px 48px 90px;
  background: #fff;
  overflow: hidden;
}
.epl-left { position: relative; }
/* dot texture sits above the title, never behind it */
.epl-left::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -74px;
  width: 175px;
  height: 62px;
  background: radial-gradient(circle, rgba(30, 53, 96, 0.16) 1.4px, transparent 1.4px);
  background-size: 15px 15px;
  pointer-events: none;
}

.epl-grid {
  display: grid;
  grid-template-columns: minmax(300px, 430px) 1fr;
  gap: 50px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: center;
  position: relative;
}

.epl-title {
  color: var(--orange);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.epl-rule { display: block; height: 2px; background: #d9d9d9; margin: 14px 0 20px; }

/* navy bar — native <details>, no JS */
.epl-acc { margin-bottom: 26px; }
.epl-head {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #16295a;
  color: #fff;
  border-radius: 6px;
  padding: 17px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.epl-head::-webkit-details-marker { display: none; }
.epl-chev { color: var(--orange); flex-shrink: 0; transition: transform 0.2s ease; }
.epl-acc[open] .epl-chev { transform: rotate(90deg); }

.epl-specs { list-style: none; padding: 16px 6px 0 24px; }
.epl-specs li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--gray);
  font-size: 0.84rem;
  line-height: 1.6;
}
.epl-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--orange);
}

.epl-icon { color: var(--orange); display: block; margin-bottom: 14px; }
.epl-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.65; margin-bottom: 26px; }

.epl-trust { list-style: none; display: flex; gap: 20px; }
.epl-trust li { display: flex; align-items: center; gap: 10px; color: var(--orange); }
.epl-trust li + li { border-left: 1px solid #e6e6e6; padding-left: 20px; }
.epl-trust svg { flex-shrink: 0; }
.epl-trust span { color: var(--gray); font-size: 0.74rem; line-height: 1.4; }

/* photo grid */
.epl-shots {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.epl-shots li {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.epl-shots img { width: 100%; height: 215px; object-fit: cover; display: block; }

.epl-feats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.epl-feats li { display: flex; align-items: center; gap: 12px; }
.epl-fi {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f3f4f6;
  color: var(--navy);
  flex-shrink: 0;
}
.epl-feats strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.epl-feats div > span { color: var(--gray); font-size: 0.72rem; line-height: 1.4; }

@media (max-width: 1100px) {
  .epl-grid { grid-template-columns: 1fr; gap: 36px; }
  .epl-feats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .eqp-plateaux { padding: 30px 20px 60px; }
  .epl-shots { grid-template-columns: 1fr; gap: 16px; }
  .epl-feats { grid-template-columns: 1fr; }
  .epl-trust { flex-wrap: wrap; }
  .epl-trust li + li { border-left: none; padding-left: 0; }
}

/* ---------- Équipements sur porteur : Citernes ---------- */
.eqp-citernes { padding: 20px 48px 84px; background: #f7f7f8; }
.epc-grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: 46px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.epc-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.epc-eyebrow span { display: block; width: 44px; height: 1px; background: var(--orange); }

.epc-title {
  color: var(--navy);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1;
  margin-bottom: 16px;
}
.epc-desc { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 22px; }

.epc-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 20px 20px 8px;
  margin-bottom: 22px;
}
.epc-card-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.epc-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  flex-shrink: 0;
}
.epc-card-head h3 { flex: 1; color: var(--navy); font-size: 1.12rem; font-weight: 700; }
.epc-caret { color: var(--orange); }

.epc-lead {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.6;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.epc-rows { list-style: none; }
.epc-rows a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 2px;
  border-bottom: 1px solid #f0f0f0;
}
.epc-rows li:last-child a { border-bottom: none; }
.epc-rows a > svg:first-child { color: var(--navy); flex-shrink: 0; }
.epc-rows div { flex: 1; }
.epc-rows strong {
  display: block;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.epc-rows div > span { color: var(--gray); font-size: 0.73rem; line-height: 1.45; }
.epc-chev { color: #b5b5b5; flex-shrink: 0; }
.epc-rows a:hover strong { color: var(--orange); }
.epc-rows a:hover .epc-chev { color: var(--orange); }

.epc-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* photos */
.epc-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}
.epc-hero img { width: 100%; height: 300px; object-fit: cover; display: block; }
.epc-hero-badge {
  position: absolute;
  left: 0;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #16295a;
  color: #fff;
  border-radius: 0 8px 8px 0;
  padding: 12px 20px 12px 18px;
}
.epc-hero-badge > span { font-size: 0.72rem; line-height: 1.35; }
.epc-hero-badge strong { display: block; font-size: 0.82rem; font-weight: 700; }

.epc-shots {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.epc-shots li {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
}
/* only five tanker photos exist — the last tile widens so the row stays full */
.epc-shots li:last-child { grid-column: span 2; }
.epc-shots img { width: 100%; height: 145px; object-fit: cover; display: block; }
.epc-shots li > span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.epc-feats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1360px;
  margin: 26px auto 0;
  padding: 24px 30px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
}
.epc-feats li { display: flex; gap: 13px; color: var(--orange); }
.epc-feats li + li { border-left: 1px solid #ededed; padding-left: 26px; }
.epc-feats svg { flex-shrink: 0; }
.epc-feats strong {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.epc-feats span { color: var(--gray); font-size: 0.73rem; line-height: 1.45; }

@media (max-width: 1100px) {
  .epc-grid { grid-template-columns: 1fr; gap: 34px; }
  .epc-feats { grid-template-columns: repeat(2, 1fr); }
  .epc-feats li:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 760px) {
  .eqp-citernes { padding: 10px 20px 60px; }
  .epc-shots { grid-template-columns: 1fr 1fr; }
  .epc-shots li:last-child { grid-column: span 2; }
  .epc-feats { grid-template-columns: 1fr; }
  .epc-feats li + li { border-left: none; padding-left: 0; }
}

/* links are styled per component; never browser-underlined */
a { text-decoration: none; }

/* ---------- Équipements sur porteur : Ateliers mobiles ---------- */
.eqp-ateliers { padding: 20px 48px 84px; background: #fff; }
.eam-mark { background: #16295a; }
.eqp-ateliers .epc-card-head h3 { font-size: 1rem; line-height: 1.4; }

.eam-rows { list-style: none; }
.eam-rows li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 2px;
  border-bottom: 1px solid #f2f2f2;
  color: var(--navy);
  font-size: 0.79rem;
  line-height: 1.45;
}
.eam-rows li:last-child { border-bottom: none; }
.eam-rows li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.eam-rows li > span { flex: 1; }
.eam-ok { color: var(--orange); flex-shrink: 0; }

.eam-hero { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08); }
.eam-hero img { width: 100%; height: 370px; object-fit: cover; display: block; }

.eam-shots {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.eam-shots li {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
}
.eam-shots img { width: 100%; height: 145px; object-fit: cover; display: block; }

@media (max-width: 760px) {
  .eqp-ateliers { padding: 10px 20px 60px; }
  .eam-shots { grid-template-columns: 1fr 1fr; }
  .eam-hero img { height: 240px; }
}

/* ---------- Nacelles / Bennes tasseuse (spec-row layout) ---------- */
.eqp-nacelles { padding: 20px 48px 60px; background: #f7f7f8; }
.eqp-tasseuse { padding: 40px 48px 84px; background: #f7f7f8; }

.prm-head {
  flex: 1;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prm-rows { list-style: none; }
.prm-rows li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 2px;
  border-bottom: 1px solid #f2f2f2;
}
.prm-rows li:last-child { border-bottom: none; }
.prm-rows li > svg:first-child { color: var(--orange); flex-shrink: 0; }
.prm-rows strong {
  width: 42%;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}
.prm-rows li > span { flex: 1; color: var(--gray); font-size: 0.78rem; line-height: 1.4; }
.prm-plus { color: var(--orange); flex-shrink: 0; }

.nac-hero { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08); }
.nac-hero img { width: 100%; height: 240px; object-fit: cover; display: block; }

.nac-shots {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.nac-shots li {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
}
.nac-shots img { width: 100%; height: 130px; object-fit: cover; display: block; }

.nac-feats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.nac-feats li { display: flex; gap: 11px; color: var(--orange); }
.nac-feats svg { flex-shrink: 0; }
.nac-feats strong {
  display: block;
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.nac-feats span { color: var(--gray); font-size: 0.7rem; line-height: 1.5; }

/* bennes tasseuse: hero + stacked side shots */
.bt-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 16px; }
.bt-hero { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08); }
.bt-hero img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block; }
.bt-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.bt-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
}

/* ---------- orange project band ---------- */
.prj-band {
  position: relative;
  display: grid;
  grid-template-columns: 330px 1fr auto;
  align-items: center;
  gap: 34px;
  max-width: 1360px;
  margin: 0 auto 10px;
  background: var(--orange);
  border-radius: 10px;
  overflow: hidden;
}
.prj-media { height: 100%; }
.prj-media img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 76% 100%, 0 100%);
}
.prj-text { padding: 26px 0; position: relative; z-index: 1; }
.prj-text h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.prj-text p { color: rgba(255, 255, 255, 0.92); font-size: 0.85rem; }

.prj-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: 40px;
  padding: 15px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  background: #fff;
  border-radius: 6px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: transform 0.15s ease;
}
.prj-btn:hover { transform: translateY(-1px); }

.prj-dots {
  position: absolute;
  right: 18px;
  bottom: 10px;
  width: 130px;
  height: 46px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1.3px, transparent 1.3px);
  background-size: 13px 13px;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .nac-feats { grid-template-columns: repeat(2, 1fr); }
  .prj-band { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .prj-media img { clip-path: none; height: 150px; }
  .prj-text { padding: 22px 20px 0; }
  .prj-btn { margin: 18px auto 24px; border-left: none; }
  .prj-dots { display: none; }
}
@media (max-width: 760px) {
  .eqp-nacelles, .eqp-tasseuse { padding: 20px 20px 50px; }
  .nac-feats { grid-template-columns: 1fr; }
  .bt-grid { grid-template-columns: 1fr; }
  .bt-hero img { min-height: 220px; }
  .bt-side { grid-template-rows: 150px 150px; }
  .prm-rows strong { width: 46%; }
}

/* ---------- Category blocks (satellites / multi-bennes / ampliroll) ---------- */
.cat-block { padding: 26px 48px; background: #f5f5f6; border-top: 1px solid #ececec; }
.cat-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 30px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.cat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.cat-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 166, 61, 0.6);
  color: var(--orange);
  flex-shrink: 0;
}
.cat-head h2 {
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.cat-desc { color: var(--gray); font-size: 0.79rem; line-height: 1.6; margin-bottom: 16px; }

.cat-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 4px 16px;
}
.cat-card > li, .cat-det { list-style: none; }

/* link-style rows */
.cat-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 2px;
  border-bottom: 1px solid #f2f2f2;
}
.cat-card li:last-child a { border-bottom: none; }
.cat-card a > svg:first-child { color: var(--navy); flex-shrink: 0; }
.cat-card a div { flex: 1; }
.cat-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.cat-card a span { color: var(--gray); font-size: 0.71rem; line-height: 1.45; }
.cat-chev { color: #b5b5b5; flex-shrink: 0; }
.cat-card a:hover strong, .cat-card a:hover .cat-chev { color: var(--orange); }

/* collapsible rows */
.cat-det + .cat-det summary { border-top: 1px solid #f2f2f2; }
.cat-det summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 2px;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.cat-det summary::-webkit-details-marker { display: none; }
.cat-det summary > svg:first-child { color: var(--navy); flex-shrink: 0; }
.cat-det summary > span { flex: 1; }
.cat-det[open] summary { color: var(--orange); }
.cat-det[open] .cat-chev { transform: rotate(180deg); color: var(--orange); }
.cat-det p {
  padding: 0 4px 14px 43px;
  color: var(--gray);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* photo cards with caption */
.cat-shots { list-style: none; display: grid; gap: 16px; }
.cat-shots-2 { grid-template-columns: 1fr 1fr; }
.cat-shots-3 { grid-template-columns: repeat(3, 1fr); }
.cat-wide { grid-column: 1 / -1; }
.cat-shots li {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  overflow: hidden;
}
.cat-shots img { width: 100%; height: 150px; object-fit: cover; display: block; }
.cat-wide img { height: 170px; }
.cat-cap { padding: 10px 14px 12px; }
.cat-cap strong {
  display: block;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cat-cap span { display: flex; align-items: center; gap: 7px; color: var(--gray); font-size: 0.7rem; }
.cat-cap i { display: block; width: 12px; height: 2px; background: var(--orange); flex-shrink: 0; }

@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 760px) {
  .cat-block { padding: 22px 20px; }
  .cat-shots-2, .cat-shots-3 { grid-template-columns: 1fr; }
  .cat-wide { grid-column: auto; }
}

/* ---------- Every product photo: whole image visible, never cropped ---------- */
.cat-shots li,
.epc-shots li,
.eam-shots li,
.nac-shots li,
.epl-shots li,
.epc-hero,
.eam-hero,
.nac-hero,
.bt-hero,
.bt-side div,
.pe-shot {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.cat-shots img,
.epc-shots img,
.eam-shots img,
.nac-shots img,
.epl-shots img,
.epc-hero img,
.eam-hero img,
.nac-hero img,
.bt-hero img,
.bt-side div img,
.pe-shot img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  padding: 6px;
}

.cat-cap { position: relative; z-index: 1; background: #fff; }
.bt-side div { border-radius: 10px; box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07); }
.bt-side div img { border-radius: 0; box-shadow: none; height: 100%; }

/* carousel furniture stays above the photo */
.pe-nav, .pe-dots, .tile-chip, .cit-badge, .eb-badge, .epc-hero-badge, .epc-shots li > span { z-index: 3; }

/* thumbnails: whole image on a neutral tile */
.pe-thumbs img { object-fit: contain; padding: 4px; }

/* ---------- photo frames follow the photos' own shape ----------
   the source photos are 4:3 (a few 3:2), so framing the tiles 4:3 makes the
   image fill its card edge to edge instead of floating with gaps. */
.prod-cards img,
.cat-shots img,
.epc-shots img,
.eam-shots img,
.nac-shots img,
.epl-shots img,
.pe-thumbs img,
.epc-hero img,
.eam-hero img,
.nac-hero img,
.bt-hero img,
.bt-side div img,
.pe-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 0;
}

/* let the frames size to the photo instead of a fixed height */
.epc-hero,
.eam-hero,
.nac-hero,
.bt-hero,
.bt-side div,
.pe-shot,
.cit-shot,
.plt-shot,
.eqb-shot,
.ext-shot { height: auto; min-height: 0; }

.bt-grid { align-items: start; }
.bt-side { grid-template-rows: auto auto; }

/* carousel controls follow the shorter frames */
.pe-nav { top: 50%; }
.semi-nav { top: 44%; }

/* three equal tiles — a 2-column span would make a 4:3 photo tower over the row */
.cat-shots-2 { grid-template-columns: repeat(3, 1fr); }
.cat-wide { grid-column: auto; }

/* ---------- (+) rows that open ---------- */
.prm-det { border-bottom: 1px solid #f2f2f2; }
.prm-det summary {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 2px;
  cursor: pointer;
  list-style: none;
}
.prm-det summary::-webkit-details-marker { display: none; }
.prm-det summary > svg:first-child { color: var(--orange); flex-shrink: 0; }
.prm-det strong { width: 42%; color: var(--navy); font-size: 0.78rem; font-weight: 600; }
.prm-det summary > span { flex: 1; color: var(--gray); font-size: 0.78rem; }
.prm-plus { transition: transform 0.2s ease; }
.prm-det[open] .prm-plus { transform: rotate(45deg); }
.prm-det[open] strong { color: var(--orange); }
.prm-det ul { list-style: none; padding: 2px 4px 14px 31px; }
.prm-det li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 7px;
  color: var(--gray);
  font-size: 0.76rem;
  line-height: 1.55;
}
.prm-det li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--orange);
}

/* bulleted bodies inside the category cards */
.cat-det ul { list-style: none; padding: 0 4px 14px 43px; }
.cat-det ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 7px;
  color: var(--gray);
  font-size: 0.75rem;
  line-height: 1.55;
}
.cat-det ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--orange);
}

/* ---------- À propos ---------- */
.abt { padding: 54px 48px 60px; background: #fff; }
.abt-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.abt-title {
  color: var(--orange);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.abt-text p { color: var(--gray); font-size: 0.85rem; line-height: 1.7; margin-bottom: 14px; }
.abt-text strong { color: var(--navy); }

.abt-chips { list-style: none; display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.abt-chips li {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--orange);
}
.abt-chips strong { display: block; color: var(--orange); font-size: 0.95rem; font-weight: 700; }
.abt-chips span { color: var(--gray); font-size: 0.68rem; }

.abt-logo {
  display: grid;
  place-items: center;
  gap: 4px;
  background: radial-gradient(circle at 30% 20%, #2a2f36 0%, #111418 70%);
  border-radius: 12px;
  padding: 40px 24px 34px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}
.abt-logo img { width: 132px; height: auto; }
.abt-word {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.abt-word span { color: var(--orange); }
.abt-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfd3d8;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.abt-tag i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

/* Nous offrons */
.offr { padding: 46px 48px 60px; background: #f6f6f7; text-align: center; }
.offr-title { color: var(--navy); font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 800; }
.offr-dash { margin: 12px auto 34px; }

.offr-cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.offr-cards li {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding-bottom: 26px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
}
.offr-cards img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}
.offr-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: -24px auto 14px;
  position: relative;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: 3px solid #fff;
}
.offr-cards h3 { color: var(--navy); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.offr-cards p { color: var(--gray); font-size: 0.78rem; line-height: 1.6; padding: 0 22px; }

/* dark industrial band */
.indb { padding: 0 48px 70px; background: #f6f6f7; }
.indb-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(100deg, #171b21 0%, #1d222a 60%, #262c35 100%);
  border-radius: 10px;
  overflow: hidden;
  padding: 34px 0 34px 44px;
}
.indb-text { position: relative; z-index: 1; border-left: 3px solid var(--orange); padding-left: 20px; }
.indb-text h2 { color: #fff; font-size: clamp(1.1rem, 1.9vw, 1.5rem); font-weight: 800; margin-bottom: 10px; }
.indb-text p { color: #c3c8ce; font-size: 0.8rem; line-height: 1.65; margin-bottom: 18px; }
.indb-btn { border-radius: 6px; padding: 12px 8px 12px 20px; font-size: 0.85rem; }
.indb-img { width: 100%; height: auto; display: block; align-self: end; }
.indb-dots {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 120px;
  height: 92px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1.3px, transparent 1.3px);
  background-size: 13px 13px;
}

@media (max-width: 1000px) {
  .abt-grid { grid-template-columns: 1fr; gap: 34px; }
  .offr-cards { grid-template-columns: 1fr; }
  .indb-card { grid-template-columns: 1fr; padding: 28px 24px; }
  .indb-img { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .abt, .offr { padding: 36px 20px 44px; }
  .indb { padding: 0 20px 50px; }
  .abt-chips { flex-direction: column; }
}

/* ---------- navbar polish ---------- */
.brand-logo { height: 38px; }
.brand-name { font-size: 1.5rem; letter-spacing: -0.4px; }
.brand-sub { font-size: 0.58rem; letter-spacing: 0.42em; color: #6b6b6b; }
.menu { gap: 44px; }
.menu a { font-size: 0.95rem; }
.header .btn-primary {
  border-radius: 10px;
  padding: 11px 8px 11px 24px;
  box-shadow: 0 8px 22px rgba(242, 166, 61, 0.4);
}

/* ---------- Complete mobile navigation + device hardening ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body { overflow-x: clip; }
img, video, svg { max-width: 100%; }
#contact { scroll-margin-top: 84px; }

/* iOS Safari must never calculate the document wider than its viewport. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.footer {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}
.footer-grid,
.footer-bottom { max-width: 100%; }

.menu-toggle,
.menu-backdrop,
.menu-quote { display: none; }

@media (max-width: 1024px) {
  .header {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    width: 100%;
    min-height: 70px;
    gap: 14px;
    padding: 14px 24px;
    background: #fff;
    /* backdrop-filter makes fixed descendants use the header as their
       containing block in iOS Safari, clipping the mobile drawer. */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 1px 0 rgba(30, 53, 96, 0.08), 0 8px 24px rgba(30, 53, 96, 0.08);
    z-index: 1000;
  }
  .header-solid {
    position: fixed;
    min-height: 70px;
  }
  /* Solid headers used to occupy normal document flow. Replace that space
     after making them fixed so product-page banners are never covered. */
  body > .header-solid + * { margin-top: 70px; }

  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(30, 53, 96, 0.14);
    border-radius: 12px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1003;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(30, 53, 96, 0.09);
  }
  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 4px;
    background: var(--navy);
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .menu {
    display: flex;
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    bottom: auto;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    width: min(88vw, 380px);
    padding: 92px 24px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    background: #fff;
    box-shadow: -18px 0 50px rgba(9, 22, 48, 0.18);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    transform: translateX(105%);
    transition: transform 0.3s ease, visibility 0.3s;
  }
  .menu.is-open { visibility: visible; transform: none; }
  .menu > a,
  .menu .drop-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 12px 4px;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
  }
  .menu a.active::after { bottom: 5px; right: auto; width: 30px; }
  .has-drop { width: 100%; }
  .has-drop:hover .drop-toggle svg,
  .has-drop:focus-within .drop-toggle svg { transform: none; }
  .has-drop.drop-open .drop-toggle svg { transform: rotate(180deg); }
  .has-drop .drop,
  .has-drop:hover .drop,
  .has-drop:focus-within .drop {
    display: none;
    position: static;
    min-width: 0;
    padding: 0 0 6px 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    transition: none;
  }
  .has-drop.drop-open .drop { display: block; }
  .drop a {
    white-space: normal;
    padding: 12px 14px;
    border: 0;
    border-left: 2px solid #f2e0c6;
    border-radius: 0;
    background: #fffaf4;
  }
  .menu .menu-quote {
    display: inline-flex;
    justify-content: space-between;
    margin-top: 18px;
    padding: 10px 8px 10px 18px;
    border: 0;
    color: var(--ink);
  }

  .menu-backdrop {
    display: block;
    position: fixed;
    z-index: 9;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(8, 18, 38, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
  }
  .menu-open .menu-backdrop { opacity: 1; visibility: visible; }
  .menu-open { overflow: hidden; }

  .hero-frame video { width: 100%; height: 100%; object-fit: cover; }
  .footer-grid { width: 100%; }
  .coords li { overflow-wrap: anywhere; }

  /* Mobile/tablet hero: a clean, uncropped video card above the copy. */
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    overflow: visible;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
  .hero-inner {
    display: block;
    position: relative;
    z-index: auto;
    order: 2;
    max-width: 680px;
  }
  .hero-media,
  .hero-media.reveal,
  .hero-media.reveal.in {
    position: relative;
    z-index: auto;
    inset: auto;
    order: 1;
    width: 100%;
    height: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .hero-media::after { display: none; }
  .hero-frame {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(30, 53, 96, 0.1);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.14);
  }
  .hero-frame video {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center center;
    filter: none;
  }
  .hero-plate { display: block; }
  .hero-inner h1,
  .hero-inner .lead,
  .hero-proof strong,
  .hero-proof li > span {
    text-shadow: none;
  }

  /* This must come after the desktop "compact about" override. */
  .about {
    width: 100%;
    padding: 52px 24px;
  }
  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 760px;
    gap: 36px;
  }
  .about-grid > *,
  .about-left,
  .showcase,
  .carousel,
  .thumbs-wrap,
  .features {
    min-width: 0;
    max-width: 100%;
  }
  .showcase { width: 100%; }
}

@media (max-width: 760px) {
  .header {
    min-height: calc(68px + env(safe-area-inset-top));
    padding: calc(12px + env(safe-area-inset-top)) 16px 12px;
  }
  body > .header-solid + * { margin-top: calc(68px + env(safe-area-inset-top)); }
  .brand-logo { height: 34px; }
  .brand-name { font-size: 1.25rem; }
  .header > .btn-primary { display: none; }
  .menu-toggle { margin-left: auto; width: 44px; height: 44px; }

  .hero { padding-left: 16px; padding-right: 16px; }
  .hero-grid {
    gap: 26px;
    padding: 0;
    border-radius: 0;
  }
  .hero-inner { order: initial; }
  .hero-inner h1 {
    margin-bottom: 0;
    line-height: 1.06;
  }
  .hero-inner > .hero-media {
    display: block;
    margin: 24px 0 28px;
  }
  .hero-inner > .hero-media .hero-frame {
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(20, 33, 61, 0.16);
  }
  .hero-inner h1 { font-size: clamp(2rem, 10.2vw, 3rem); overflow-wrap: anywhere; }
  .hero-ctas { align-items: stretch; }
  .hero-ctas .btn { justify-content: space-between; width: 100%; }
  .hero-media { min-width: 0; }
  .hero-frame { width: 100%; }
  .hero-frame video { min-height: 0; }

  .about { padding: 44px 16px; }
  .about-grid { gap: 28px; }
  .cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .cats li { min-width: 0; }
  .exp-card,
  .features {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  .exp-item,
  .feature {
    width: 100%;
    justify-content: flex-start;
    padding: 8px 14px;
    border-left: 0 !important;
  }
  .about-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .about-ctas .btn,
  .about-ctas .link-more {
    width: 100%;
    min-width: 0;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .showcase { padding: 10px; }
  .carousel img { height: 240px; }
  .thumbs-wrap { width: 100%; gap: 7px; }
  .thumbs { min-width: 0; }
  .thumbs li { min-width: 86px; }

  /* Keep every statistic on the exact same two-column alignment. */
  .stats-band {
    width: 100%;
    padding: 30px 16px 26px;
    overflow: visible;
  }
  .stats-band-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    width: min(100%, 360px);
    margin: 0 auto;
  }
  .stat-big {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 18px;
    width: 100%;
    min-height: 68px;
    padding: 0;
    border-left: 0 !important;
  }
  .stat-big-icon { width: 64px; height: 64px; }
  .stat-big div { min-width: 0; text-align: left; }
  .stat-big strong { font-size: 2rem; }
  .stat-big small { display: block; line-height: 1.35; }
  .rating {
    width: min(100%, 360px);
    margin: 22px auto 0;
    flex-wrap: wrap;
    row-gap: 7px;
  }

  .footer-grid { padding: 38px 16px; gap: 34px; }
  .footer-brand img { height: 48px; }
  .footer-brand span { font-size: 1.65rem; }
  .footer-checks li { font-size: 0.84rem; }
  .footer-right h3 { font-size: 1.2rem; }
  .coords li { align-items: flex-start; gap: 12px; padding: 12px; font-size: 0.82rem; line-height: 1.5; }
  .coord-icon { padding-right: 11px; }
  .footer-bottom {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    min-height: 118px;
    padding: 24px 72px calc(24px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    position: relative;
    z-index: 2;
    clear: both;
  }
  .footer-bottom p,
  .footer-bottom .mini-dash {
    position: relative;
    z-index: 1;
  }
  .footer-bottom p {
    width: 100%;
    max-width: 760px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
  .footer-bottom::before,
  .footer-bottom::after {
    z-index: 0;
    opacity: 0.75;
    width: 68px;
  }
}

@media (max-width: 390px) {
  .brand-name { font-size: 1.12rem; }
  .menu { width: 92vw; padding-left: 20px; padding-right: 20px; }
  .btn { max-width: 100%; }
  .hero-inner h1 { font-size: 1.95rem; }
  .hero-inner > .hero-media { margin: 20px 0 24px; }
  .hero-inner > .hero-media .hero-plate {
    bottom: 12px;
    max-width: 92%;
    padding: 8px 16px 8px 12px;
    font-size: 0.54rem;
  }
  .cats { grid-template-columns: 1fr; }
  .semi-tiles { grid-template-columns: 1fr; }
  .semi-tiles li:nth-child(n) { grid-column: auto; }
  .semi-tiles li:nth-child(n) img { height: 170px; }
  .divers-tiles { display: flex; flex-direction: column; }
  .divers-tiles li { min-height: 170px; }
  .coords li { font-size: 0.78rem; }
  .stats-band-row,
  .rating { width: 100%; }
  .stat-big { grid-template-columns: 58px minmax(0, 1fr); gap: 14px; }
  .stat-big-icon { width: 58px; height: 58px; }
  .stat-big strong { font-size: 1.8rem; }
  .rating small { flex-basis: 100%; }
  .footer-bottom { padding-left: 54px; padding-right: 54px; }
  .footer-bottom p { font-size: 0.68rem; }
  .footer-bottom::before,
  .footer-bottom::after { width: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .menu, .menu-toggle span, .menu-backdrop { transition: none; }
}

/* ---------- Separate gallery page ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-body { background: #fff; }
.gallery-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 44px 24px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(100deg, rgba(8, 22, 41, 0.91), rgba(12, 35, 54, 0.66)),
    url("../images/gallery/12-plateau-surbaisse.webp") center 54% / cover no-repeat;
}
.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 55%, rgba(5, 16, 28, 0.22));
}
.gallery-hero-inner { position: relative; z-index: 1; }
.gallery-crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
}
.gallery-crumb a { color: var(--orange); }
.gallery-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.gallery-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.gallery-hero-inner > p:last-child {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.84rem, 1.5vw, 1rem);
}

.gallery-page {
  position: relative;
  padding: 28px 48px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 24%, rgba(242, 166, 61, 0.09) 1.5px, transparent 1.5px) 0 0 / 14px 14px,
    #fff;
}
.gallery-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, #fff 0 78%, transparent 95%);
}
.gallery-page > * { position: relative; z-index: 1; }

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 1280px;
  margin: -4px auto 34px;
  padding: 0 4px;
}
.gallery-filters button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid #e1e5eb;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font: 700 0.72rem var(--font);
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(20, 33, 61, 0.04);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.gallery-filters button:hover { transform: translateY(-2px); border-color: rgba(242, 166, 61, 0.5); }
.gallery-filters button.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(242, 166, 61, 0.28);
}
.gallery-filters svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-viewer {
  display: grid;
  grid-template-columns: 54px minmax(0, 980px) 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}
.gallery-stage {
  position: relative;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  border: 1px solid rgba(30, 53, 96, 0.08);
  border-radius: 22px;
  background: #edf0f3;
  box-shadow: 0 24px 65px rgba(15, 31, 57, 0.18);
}
.gallery-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(4, 12, 23, 0.54), transparent);
}
.gallery-stage > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease, transform 0.38s ease;
}
.gallery-stage.changing > img { opacity: 0.25; transform: scale(1.018); }
.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}
.gallery-count {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: rgba(8, 16, 28, 0.68);
  font-variant-numeric: tabular-nums;
}
.gallery-fullscreen {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 15px;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: rgba(8, 16, 28, 0.68);
  color: #fff;
  cursor: pointer;
}
.gallery-fullscreen svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.gallery-arrow,
.thumb-rail-arrow {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #e5e8ed;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(20, 33, 61, 0.09);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.gallery-arrow { width: 54px; height: 54px; }
.gallery-arrow:hover,
.thumb-rail-arrow:hover { color: var(--orange); border-color: var(--orange); transform: scale(1.04); }
.gallery-arrow svg,
.thumb-rail-arrow svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.gallery-thumbs-wrap {
  display: grid;
  grid-template-columns: 42px minmax(0, 1120px) 42px;
  justify-content: center;
  align-items: center;
  gap: 14px;
  max-width: 1240px;
  margin: 24px auto 28px;
}
.thumb-rail-arrow { width: 42px; height: 42px; }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  min-width: 0;
  padding: 4px;
  overflow-x: auto;
  list-style: none;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumbs li { flex: 0 0 145px; scroll-snap-align: center; }
.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 9px;
  background: #eef1f4;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.active {
  border-color: var(--orange);
  box-shadow: 0 5px 14px rgba(242, 166, 61, 0.24);
}
.gallery-thumb img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.gallery-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid #eef0f3;
  border-radius: 14px 14px 0 0;
  background: rgba(248, 249, 251, 0.96);
  list-style: none;
}
.gallery-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 22px;
  color: var(--navy);
}
.gallery-benefits li + li { border-left: 1px solid #e3e6eb; }
.gallery-benefits svg { width: 32px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.gallery-benefits strong { display: block; margin-bottom: 3px; font-size: 0.78rem; }
.gallery-benefits small { display: block; color: var(--gray); font-size: 0.66rem; line-height: 1.4; }

.gallery-lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
  padding: 72px 32px 32px;
  background: rgba(3, 9, 18, 0.94);
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox figure { margin: 0; text-align: center; }
.gallery-lightbox img {
  display: block;
  width: 100%;
  max-width: 1500px;
  max-height: calc(100vh - 130px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 14px;
}
.gallery-lightbox figcaption { margin-top: 12px; color: #fff; font-size: 0.86rem; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.9rem;
  cursor: pointer;
}
.lightbox-arrow {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
}
.lightbox-open { overflow: hidden; }

@media (max-width: 1100px) {
  .gallery-filters { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-viewer { grid-template-columns: 46px minmax(0, 1fr) 46px; gap: 12px; }
  .gallery-arrow { width: 46px; height: 46px; }
  .gallery-benefits { grid-template-columns: repeat(2, 1fr); }
  .gallery-benefits li:nth-child(3) { border-left: 0; }
  .gallery-benefits li:nth-child(n + 3) { border-top: 1px solid #e3e6eb; padding-top: 16px; }
}

@media (max-width: 760px) {
  .gallery-hero { min-height: 210px; padding: 34px 18px; }
  .gallery-page { padding: 20px 14px 0; }
  .gallery-filters {
    margin: 0 -14px 20px;
    padding: 2px 14px 10px;
    gap: 8px;
    scroll-snap-type: x proximity;
  }
  .gallery-filters button { min-height: 42px; padding: 9px 13px; scroll-snap-align: start; }
  .gallery-viewer { display: block; position: relative; }
  .gallery-stage { aspect-ratio: 4 / 3; border-radius: 14px; }
  .gallery-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
  }
  .gallery-arrow:hover { transform: translateY(-50%) scale(1.03); }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .gallery-caption { left: 12px; bottom: 11px; max-width: calc(100% - 64px); gap: 8px; font-size: 0.7rem; }
  .gallery-count { padding: 5px 7px; }
  .gallery-fullscreen { right: 10px; bottom: 10px; width: 34px; height: 34px; }
  .gallery-thumbs-wrap { grid-template-columns: 34px minmax(0, 1fr) 34px; gap: 6px; margin: 16px -4px 22px; }
  .thumb-rail-arrow { width: 34px; height: 34px; }
  .gallery-thumbs { gap: 7px; }
  .gallery-thumbs li { flex-basis: 92px; }
  .gallery-thumb img { height: 58px; }
  .gallery-benefits { grid-template-columns: 1fr; padding: 12px 16px; }
  .gallery-benefits li { justify-content: flex-start; padding: 13px 4px; }
  .gallery-benefits li + li,
  .gallery-benefits li:nth-child(3) { border-left: 0; border-top: 1px solid #e3e6eb; }
  .gallery-lightbox { grid-template-columns: 1fr; padding: 74px 12px 24px; }
  .gallery-lightbox img { max-height: calc(100vh - 140px); }
  .lightbox-arrow { position: absolute; z-index: 2; top: 50%; width: 44px; height: 44px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
