/* ─── Tokens ────────────────────────────────────────────────────────── */
:root {
  --red: #cc3300;
  --red-deep: #a22a00;
  --red-tint: #f4e3dd;
  --ink: #111111;
  --ink-2: #1d1d1d;
  --slate: #444444;
  --slate-2: #6b6b6b;
  --line: #e7e4df;
  --line-dark: rgba(255, 255, 255, 0.12);
  --bg: #ffffff;
  --bg-warm: #faf8f4;
  --bg-dark: #111111;
  --bg-darker: #0a0a0a;

  --font-sans: "Century Gothic", "URW Gothic", "ITC Avant Garde", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Century Gothic", "URW Gothic", "ITC Avant Garde", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --tracking-tight: -0.01em;
  --tracking-wide: 0.18em;
  --tracking-wider: 0.32em;

  --nav-h: 72px;

  --shadow-card: 0 30px 60px -30px rgba(17, 17, 17, 0.18);
  --shadow-lg: 0 40px 80px -30px rgba(17, 17, 17, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--red); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f3f3f3; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink); }

main { min-height: 100vh; padding-top: 0; }

/* ─── Navbar ───────────────────────────────────────────────────────── */
.navbar {
  position: fixed; inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.navbar--scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px -30px rgba(17, 17, 17, 0.25);
}
.navbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar__logo img { height: 52px; width: auto; object-fit: contain; display: block; }

.navbar__nav { display: flex; align-items: center; gap: 36px; }
.navbar__link {
  position: relative;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 0;
  transition: color .2s;
}
.navbar__link:hover, .navbar__link.is-active { color: var(--red); }
.navbar__link.is-active::after,
.navbar__link:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red);
}
.navbar__chev { opacity: .6; transition: transform .2s; }
.navbar__dropdown { position: relative; }
.navbar__dropdown:hover .navbar__chev { transform: rotate(180deg); }
.navbar__menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  padding-top: 16px;
  min-width: 280px;
}
.navbar__menu-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  box-shadow: 0 24px 60px -20px rgba(17,17,17,0.25);
  padding: 14px 0;
}
.navbar__menu-link {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 11px 22px;
  color: var(--ink-2);
  border-left: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.navbar__menu-link:hover {
  color: var(--red);
  border-left-color: var(--red);
  background: #fafafa;
}

.navbar__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: none;
  background: var(--ink);
  color: #fff;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.navbar__burger:hover { background: var(--red); }

.navbar__right { display: flex; align-items: center; gap: 10px; }

.navbar__search-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.navbar__search-btn:hover { background: var(--ink); color: #fff; }

/* ─── Search overlay ───────────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0;
  z-index: 80;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 96px 24px 24px;
  animation: searchFade .2s ease-out;
}
@keyframes searchFade { from { opacity: 0; } to { opacity: 1; } }
.search-overlay__panel {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.45);
  overflow: hidden;
  animation: searchSlide .25s ease-out;
}
@keyframes searchSlide { from { transform: translateY(-12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.search-overlay__top {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.search-overlay__icon { color: var(--slate); flex-shrink: 0; }
.search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 18px;
  color: var(--ink-2);
  padding: 4px 0;
}
.search-overlay__input::placeholder { color: var(--slate-2); }
.search-overlay__close {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.search-overlay__close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.search-overlay__suggest { padding: 22px 22px 26px; }
.search-overlay__label {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 14px;
}
.search-overlay__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.search-overlay__chip {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  transition: background .2s, color .2s, border-color .2s;
}
.search-overlay__chip:hover { background: var(--red); color: #fff; border-color: var(--red); }

.search-overlay__empty { padding: 30px 22px; }
.search-overlay__empty p { color: var(--ink-2); line-height: 1.7; }
.search-overlay__empty p.muted { color: var(--slate-2); font-size: 14px; margin-top: 6px; }

.search-overlay__results {
  list-style: none;
  max-height: 60vh;
  overflow-y: auto;
}
.search-result {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid #f3f1ec;
  transition: background .15s;
  color: var(--ink-2);
}
.search-result:hover { background: #fafaf7; }
.search-result__thumb {
  width: 56px; height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-warm);
  border-radius: 6px;
}
.search-result__thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result__thumb--placeholder { background: linear-gradient(135deg, var(--bg-warm), #ece9e2); }
.search-result__body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.search-result__cat {
  font-size: 10px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.search-result__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
}
.search-result__sub {
  font-size: 13px;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result__arrow { color: var(--slate-2); flex-shrink: 0; }
.search-result:hover .search-result__arrow { color: var(--red); }

.navbar__mobile { display: none; }

@media (max-width: 1024px) {
  .navbar__nav { display: none; }
  .navbar__burger { display: inline-flex; }
  .navbar__mobile {
    display: block;
    border-top: 1px solid var(--line);
    background: #fff;
    padding: 14px 24px 22px;
  }
  .navbar__mobile-row { padding: 10px 0; border-bottom: 1px solid #f3f3f3; }
  .navbar__mobile-link {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    background: none; border: none;
    text-transform: uppercase; letter-spacing: var(--tracking-wide);
    font-size: 13px; color: var(--ink-2);
    padding: 8px 4px;
  }
  .navbar__mobile-sub { display: flex; flex-direction: column; padding: 6px 6px 4px 12px; gap: 8px; }
  .navbar__mobile-sublink {
    font-size: 12px; text-transform: uppercase; letter-spacing: var(--tracking-wide);
    color: var(--slate);
  }
  .navbar__inner { height: 60px; padding: 0 20px; }
  .navbar__logo img { height: 40px; }
  :root { --nav-h: 60px; }
}

/* ─── Section title ────────────────────────────────────────────────── */
.section-title { margin-bottom: 56px; }
.section-title__flank { display: flex; align-items: center; justify-content: center; gap: 28px; }
.section-title__rule { display: block; width: 80px; height: 1px; background: var(--ink); opacity: .8; }
.section-title.is-dark .section-title__rule { background: rgba(255,255,255,.5); }
.section-title__h {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.005em;
  text-align: center;
  line-height: 1.1;
}
.section-title__h--left { text-align: left; }
.section-title.is-dark .section-title__h { color: var(--red); }
.section-title__eyebrow {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: var(--tracking-wider);
  color: var(--slate);
  text-transform: uppercase;
  text-align: center;
}

/* ─── CTA ──────────────────────────────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
}
.cta--primary { background: var(--red); color: #fff; }
.cta--primary:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 16px 30px -12px rgba(204, 51, 0, 0.6); }
.cta--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta--ghost:hover { background: var(--ink); color: #fff; }
.cta--lg { padding: 16px 44px; font-size: 13px; }

/* ─── Hero (home) ──────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero__bg, .home-hero__bg img, .home-hero__bg video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.home-hero__bg img {
  animation: heroPan 18s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.05) translateX(-1%); }
  to { transform: scale(1.12) translateX(2%); }
}
.home-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.35) 0%, rgba(17,17,17,0.15) 40%, rgba(17,17,17,0.65) 100%),
    radial-gradient(ellipse at center, rgba(17,17,17,0) 0%, rgba(17,17,17,0.35) 80%);
}
.home-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  margin-top: var(--nav-h);
}
.home-hero__eyebrow {
  font-size: 12px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.home-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 14vw, 220px);
  letter-spacing: -0.01em;
  line-height: .9;
  text-transform: uppercase;
}
.home-hero__title--ghost {
  margin-top: -.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  text-stroke: 1px rgba(255,255,255,0.4);
}
.home-hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; justify-content: center;
}
.home-hero__scroll-dot { animation: scrollDot 1.8s ease-in-out infinite; transform-origin: center; }
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0; }
}

/* ─── Inner-page hero ──────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 460px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}
.page-hero__bg, .page-hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.45) 0%, rgba(17,17,17,0.65) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  margin-top: var(--nav-h);
}
.page-hero__eyebrow {
  font-size: clamp(15px, 1.7vw, 21px);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
  margin-bottom: 18px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 110px);
  letter-spacing: -0.005em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.page-hero__desc {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* Compact variant: smaller title to make room for longer description copy */
.page-hero--compact { min-height: 520px; }
.page-hero--compact .page-hero__title {
  font-size: clamp(34px, 4.4vw, 60px);
  text-transform: none;
  letter-spacing: -0.01em;
  max-width: 880px;
  text-wrap: balance;
}
.page-hero--compact .page-hero__desc { max-width: 760px; }

/* Centered expertise row (e.g. Technologie FOM — no image) */
.expertise-row--centered {
  padding: 110px 0;
  text-align: center;
}
.expertise-row--centered .expertise-row__num,
.expertise-row--centered .expertise-row__title,
.expertise-row--centered .expertise-row__intro { text-align: center; }
.expertise-row--centered .expertise-row__rule {
  margin: 22px auto 26px;
}
.expertise-row--centered .expertise-row__intro {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}
.expertise-row--centered .expertise-row__title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Generic band layout ──────────────────────────────────────────── */
.band { padding: 110px 0; position: relative; }
.band--intro { padding: 90px 0; }
.band__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.band__inner--narrow { max-width: 920px; }
.band__inner--mid { max-width: 1080px; }
.band__center { text-align: center; }
.band__lede { font-size: 17px; line-height: 1.8; color: var(--slate); max-width: 760px; margin: 0 auto; text-align: center; }
.band__lede--light { color: rgba(255,255,255,0.78); }

.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.75;
  color: var(--slate);
  text-align: center;
  font-weight: 400;
}

.region-logo {
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
  height: auto;
}
.band--region { padding: 50px 0 30px; }

/* ─── Split sections (alternating image+text) ──────────────────────── */
.split { padding: 120px 0; transition: background .3s; }
.split--light { background: var(--bg); color: var(--ink-2); }
.split--dark { background: var(--bg-dark); color: #fff; }
.split__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__inner {
  grid-template-columns: 0.95fr 1.05fr;
}
.split--reverse .split__text { order: 2; }
.split--reverse .split__media { order: 1; }
.split__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 54px);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.05;
  margin-bottom: 24px;
}
.split--light .split__title { color: var(--ink-2); }
.split--dark .split__title { color: #fff; }
.split:hover .split__title { color: var(--red); }
.split__rule {
  display: block;
  width: 80px; height: 3px;
  background: var(--red);
  margin-bottom: 28px;
}
.split__body p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
  color: var(--slate);
}
.split--dark .split__body p { color: rgba(255,255,255,0.78); }
.split__link {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--red);
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--red);
  transition: gap .2s;
}
.split__link:hover { gap: 22px; }
.split__media { position: relative; }
.split__media-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.split__media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.split:hover .split__media-frame img { transform: scale(1.05); }
.split__media-num {
  position: absolute;
  bottom: -22px; right: -10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 10vw, 160px);
  letter-spacing: -0.03em;
  color: var(--red);
  opacity: 0.15;
  z-index: -1;
  line-height: 1;
}
.split--dark .split__media-num { opacity: .35; }

@media (max-width: 900px) {
  .split { padding: 70px 0; }
  .split__inner, .split--reverse .split__inner { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__text { order: 1; }
  .split--reverse .split__media { order: 2; }
  .split__media-frame { aspect-ratio: 4/3; }
}

/* ─── Mission ──────────────────────────────────────────────────────── */
.band--mission {
  background: var(--bg-warm);
  text-align: center;
  padding: 130px 0;
}
.mission__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--red);
  margin-bottom: 18px;
}
.mission__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 60px);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  max-width: 920px;
  margin: 0 auto 24px;
  color: var(--ink-2);
  text-wrap: pretty;
}
.mission__lede {
  font-size: 17px;
  line-height: 1.8;
  color: var(--slate);
  max-width: 720px;
  margin: 0 auto;
}

/* ─── Sectors grid (category cards) ────────────────────────────────── */
.band--sectors { padding: 130px 0; }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (min-width: 900px) {
  .sectors-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Horizontal scrolling strip of category cards (cross-links) */
.sectors-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--red) rgba(0,0,0,0.12);
}
.sectors-scroll > .cat-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}
@media (max-width: 700px) {
  .sectors-scroll > .cat-card { flex-basis: 240px; }
}
.sectors-scroll::-webkit-scrollbar { height: 8px; }
.sectors-scroll::-webkit-scrollbar-track { background: rgba(0,0,0,0.08); border-radius: 999px; }
.sectors-scroll::-webkit-scrollbar-thumb { background: var(--red); border-radius: 999px; }
.cat-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
  background: var(--ink);
}
.cat-card__img { position: absolute; inset: 0; }
.cat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
  filter: grayscale(0%) brightness(0.85);
}
.cat-card:hover .cat-card__img img {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(0.65);
}
.cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.cat-card__title {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(20px, 1.8vw, 28px);
  text-align: center;
  padding: 0 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  z-index: 2;
}
.cat-card::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 22px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .35s, left .35s;
  z-index: 2;
}
.cat-card:hover::after { width: 60px; left: calc(50% - 30px); }

/* ─── Filiales ─────────────────────────────────────────────────────── */
.band--filiales { padding: 110px 0 60px; background: #fff; }
.filiales__lede {
  text-align: center; max-width: 760px; margin: 0 auto 60px;
  font-size: 17px; line-height: 1.8; color: var(--slate);
}
.filiales__map {
  max-width: 900px; margin: 0 auto;
  position: relative;
  padding: 20px 0 0;
}
.filiales__map img { width: 100%; }
.filiales__logos {
  margin: 8px auto 0;
  max-width: 900px;
  display: flex; justify-content: center;
}
.filiales__logos img { width: 100%; max-width: 900px; }

/* ─── References carousel ─────────────────────────────────────────── */
.band--refs { padding: 50px 0 110px; background: var(--bg-warm); }
.refs__carousel { max-width: 1020px; margin: 0 auto; }
.carousel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.carousel__track { position: absolute; inset: 0; }
.carousel__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.carousel__slide.is-active { opacity: 1; }
.carousel__slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.carousel__btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.carousel__btn--prev { left: 18px; }
.carousel__btn--next { right: 18px; }
.carousel__dots {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  z-index: 2;
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: none;
  cursor: pointer;
  transition: background .2s, width .2s;
}
.carousel__dot.is-active { background: var(--red); width: 22px; border-radius: 4px; }

/* ─── Contact ──────────────────────────────────────────────────────── */
.band--contact { background: var(--bg-warm); padding: 100px 0 140px; }
.contact-card {
  background: #2a2a2a;
  color: #fff;
  padding: 60px clamp(28px, 5vw, 64px);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(204,51,0,0.25), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(204,51,0,0.15), transparent 40%);
  pointer-events: none;
}
.contact-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  color: #fff;
}
.contact-form { position: relative; display: grid; gap: 18px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form__field { display: block; }
.contact-form__field span {
  display: block;
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  padding-left: 22px;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  background: #d9d9d9;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 18px 26px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, background .2s;
}
.contact-form__field textarea {
  border-radius: 28px;
  resize: vertical;
  min-height: 160px;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  background: #fff;
  border-color: var(--red);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(17,17,17,0.4);
}
.contact-form__actions {
  display: flex; justify-content: center; align-items: center; gap: 18px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.contact-form__ok {
  color: #ffd6c6;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.contact-form__err {
  color: #ff9b8a;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
}
.contact-form__err a { color: inherit; text-decoration: underline; }
.cta:disabled { opacity: 0.55; cursor: progress; }
.contact-form__note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.contact-form__note a {
  color: #ffd6c6;
  border-bottom: 1px solid rgba(255,214,198,0.4);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.contact-form__note a:hover { color: #fff; border-color: #fff; }

/* ─── Footer ───────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-darker);
  color: #fff;
  padding-top: 90px;
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 1100px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr; gap: 40px; } }
.footer__logo { width: 220px; margin-bottom: 26px; filter: brightness(0) invert(1); }
.footer__tag { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; max-width: 340px; }
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.04);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s, border-color .2s;
}
.footer__social:hover { background: var(--red); border-color: var(--red); }
.footer__heading {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.footer__list { list-style: none; display: grid; gap: 12px; }
.footer__list a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer__list a:hover { color: #fff; padding-left: 4px; }
.footer__contact {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  line-height: 1.75;
}
.footer__contact-label {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.footer__bottom {
  display: flex; justify-content: space-between; padding-top: 24px;
  font-size: 12px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}
.footer__bottom p { font-size: 12px; }
.footer__heart { color: var(--red); }
@media (max-width: 640px) { .footer__bottom { flex-direction: column; gap: 8px; } }

/* ─── Inner pages ──────────────────────────────────────────────────── */
.inner-page__top { padding: calc(var(--nav-h) + 80px) 0 30px; text-align: center; }
.inner-page__top .section-title { margin-bottom: 0; }

/* ─── Gallery (sector detail) ──────────────────────────────────────── */
.band--gallery { padding: 60px 0 100px; }
.gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.gallery--2 { grid-template-columns: 1fr 1fr; }
.gallery--3 { grid-template-columns: repeat(3, 1fr); }
.gallery--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) {
  .gallery--4 { grid-template-columns: repeat(4, 1fr); }
}
.gallery__cell {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-warm);
}
.gallery__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.gallery__cell:hover img { transform: scale(1.04); }

/* ─── Features grid ─────────────────────────────────────────────── */
.band--features { padding: 60px 0 100px; }
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
@media (max-width: 800px) { .features__grid { grid-template-columns: 1fr; } }
.features__col {
  padding: 56px clamp(28px, 4vw, 60px);
  background: #fff;
}
.features__col--dark { background: var(--ink); color: #fff; }
.features__eyebrow {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.features__eyebrow--light { color: #ff7a52; }
.features__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 28px;
  color: var(--ink-2);
}
.features__title--light { color: #fff; }
.features__list { list-style: none; display: grid; gap: 14px; }
.features__list li {
  font-size: 15px;
  line-height: 1.7;
  display: flex; align-items: center; gap: 14px;
  color: var(--slate);
}
.features__list--light li { color: rgba(255,255,255,0.78); }
.features__dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--red);
  flex-shrink: 0;
}

.band--more { padding: 100px 0 140px; background: var(--bg-warm); }

/* ─── Sector split (horizontal marquee left / text right) ─────────── */
.band--sector-split { padding: 60px 0 90px; }
.sector-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .sector-split { grid-template-columns: 1fr; gap: 40px; }
}
.sector-split__media { min-width: 0; }
.sector-split__media .marquee { --marquee-h: 420px; }
@media (max-width: 900px) {
  .sector-split__media .marquee { --marquee-h: 280px; }
}

/* Sector sub-sections (red-titled blocks) */
.sector-sections {
  display: grid;
  gap: 36px;
}
.sector-section {
  padding: 0;
}
.sector-section--stack {
  display: block;
}
.sector-section + .sector-section {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.sector-section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
  color: var(--red);
  margin-bottom: 18px;
}
.sector-section__text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate);
}

/* ─── Marquee (horizontal) ────────────────────────────────────────── */
.band--marquee { padding: 90px 0; background: var(--bg-warm); overflow: hidden; }
.marquee {
  position: relative;
  overflow: hidden;
  height: var(--marquee-h, 320px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 24px;
  height: 100%;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__cell {
  height: 100%;
  aspect-ratio: 4/3;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.marquee__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.marquee__cell:hover img { transform: scale(1.05); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% / 3)); }
}

/* ─── Marquee (vertical, used inside sector-split) ─────────────────── */
.marquee--vert {
  width: 100%;
  height: 620px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
@media (max-width: 900px) {
  .marquee--vert { height: 460px; }
}
.marquee__track--vert {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  height: max-content;
  animation: marqueeScrollV 26s linear infinite;
}
.marquee--vert:hover .marquee__track--vert { animation-play-state: paused; }
.marquee__cell--vert {
  width: 100%;
  height: 360px;
  aspect-ratio: auto;
  flex-shrink: 0;
}
@keyframes marqueeScrollV {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-100% / 3)); }
}

/* ─── Quote CTA (devis) ──────────────────────────────────────────── */
.band--quote-cta { padding: 80px 0 100px; }
.quote-cta {
  background: var(--ink);
  color: #fff;
  padding: 56px clamp(28px, 5vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(204,51,0,0.18), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(204,51,0,0.12), transparent 50%);
  pointer-events: none;
}
.quote-cta__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  margin-bottom: 18px;
}
.quote-cta__text {
  position: relative;
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
}
.quote-cta__actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.quote-cta__phone {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.quote-cta__phone:hover { color: #fff; border-color: var(--red); }

/* ─── Expertise / Innovations rows (alternating image + text) ────── */
.expertise-row {
  padding: 110px 0;
  background: #fff;
  color: var(--ink-2);
}
.expertise-row--dark {
  background: var(--ink);
  color: #fff;
}
.expertise-row__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.expertise-row--reverse .expertise-row__inner {
  grid-template-columns: 0.95fr 1.05fr;
}
.expertise-row--reverse .expertise-row__media { order: 2; }
.expertise-row--reverse .expertise-row__text { order: 1; }
@media (max-width: 900px) {
  .expertise-row { padding: 70px 0; }
  .expertise-row__inner,
  .expertise-row--reverse .expertise-row__inner { grid-template-columns: 1fr; gap: 32px; }
  .expertise-row--reverse .expertise-row__media { order: 2; }
  .expertise-row--reverse .expertise-row__text { order: 1; }
}
.expertise-row__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-warm);
}
.expertise-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.expertise-row:hover .expertise-row__media img { transform: scale(1.04); }
.expertise-row__num {
  font-size: 12px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  font-weight: 600;
}
.expertise-row__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.08;
  color: var(--red);
}
.expertise-row__rule {
  display: block;
  width: 60px; height: 3px;
  background: var(--red);
  margin: 22px 0 26px;
}
.expertise-row__intro {
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 24px;
}
.expertise-row--dark .expertise-row__intro { color: rgba(255,255,255,0.78); }
.expertise-row__bullets-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--ink-2);
  margin-bottom: 14px;
  font-weight: 700;
}
.expertise-row--dark .expertise-row__bullets-label { color: #fff; }
.expertise-row__bullets ul { list-style: none; display: grid; gap: 10px; }
.expertise-row__bullets li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  padding-left: 22px;
  position: relative;
}
.expertise-row--dark .expertise-row__bullets li { color: rgba(255,255,255,0.78); }
.expertise-row__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 1px;
  background: var(--red);
}

/* ─── Innovations vision eyebrow ──────────────────────────────────── */
.vision-eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  font-weight: 600;
}

/* ─── History (Groupe page) ───────────────────────────────────────── */
.band--history { padding: 110px 0 130px; background: #fff; }
.history__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  text-align: center;
  color: var(--ink-2);
  max-width: 880px;
  margin: 0 auto 80px;
  text-wrap: balance;
}
.history {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.history__line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 0;
  border-left: 1px dashed #cfcac1;
}
.history__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 32px 0;
  position: relative;
}
.history__row + .history__row { margin-top: 40px; }
.history__row--imgRight .history__media { order: 2; }
.history__row--imgRight .history__text { order: 1; text-align: left; }
@media (max-width: 800px) {
  .history__row,
  .history__row--imgRight { grid-template-columns: 1fr; gap: 24px; }
  .history__row--imgRight .history__media { order: 1; }
  .history__row--imgRight .history__text { order: 2; }
  .history__line { display: none; }
}
.history__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-warm);
}
.history__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform .8s, filter .8s;
}
.history__media:hover img { transform: scale(1.04); filter: saturate(1); }
.history__year {
  position: absolute;
  bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
  z-index: 2;
}
.history__year--bl { left: 20px; }
.history__year--br { right: 20px; }
.history__text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 14px;
}
.history__text p:last-child { margin-bottom: 0; }
.history__text strong { color: var(--ink-2); font-weight: 700; }

/* ─── Sites grid (4 countries) ────────────────────────────────────── */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 60px;
}
@media (max-width: 900px) { .sites-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sites-grid { grid-template-columns: 1fr; } }
.site-card {
  padding: 28px 26px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
}
.site-card__country {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: var(--ink-2);
}
.site-card__list { list-style: none; display: grid; gap: 8px; }
.site-card__list li {
  font-size: 14px;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
}
.site-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--red);
}

/* ─── Filiales detail grid ────────────────────────────────────────── */
.filiales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 30px;
}
@media (max-width: 800px) { .filiales-grid { grid-template-columns: 1fr; } }
.filiale-card {
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}
.filiale-card__country {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--red);
  font-weight: 600;
}
.filiale-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  margin-top: 12px;
}
.filiale-card__year {
  font-size: 13px;
  color: var(--slate);
  margin: 4px 0 18px;
}
.filiale-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}

/* ─── Innovations ──────────────────────────────────────────────────── */
.inno-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width: 900px) { .inno-grid { grid-template-columns: 1fr; } }
.inno-card {
  padding: 56px clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 22px;
}
.inno-card--dark { background: var(--ink); color: #fff; border-color: transparent; }
.inno-card__eyebrow {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--red);
}
.inno-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
}
.inno-card--dark .inno-card__title { color: #fff; }
.inno-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}
.inno-card--dark .inno-card__text { color: rgba(255,255,255,0.78); }
.inno-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-top: auto;
}
.inno-card__img img { width: 100%; height: 100%; object-fit: cover; }

.band--matiere { background: var(--ink); color: #fff; padding: 130px 0; }
.matiere__hero {
  margin-top: 40px;
  aspect-ratio: 21/9;
  overflow: hidden;
}
.matiere__hero img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Groupe ──────────────────────────────────────────────────────── */
.groupe-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .groupe-grid { grid-template-columns: 1fr; } }
.groupe-card {
  padding: 44px 36px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.groupe-card--dark { background: var(--ink); color: #fff; border-color: transparent; }
.groupe-card__eyebrow {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--red);
}
.groupe-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 24px);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
}
.groupe-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
}
.groupe-card--dark .groupe-card__text { color: rgba(255,255,255,0.78); }
.groupe-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-top: auto;
}
.groupe-card__img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Contact page ─────────────────────────────────────────────────── */
.contact-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 70px;
  background: var(--ink);
  color: #fff;
}
.contact-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 820px;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .contact-hero__grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-hero__eyebrow {
  font-size: 12px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.contact-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.contact-hero__desc {
  font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.78);
  max-width: 540px;
}
.contact-hero__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.contact-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-info {
  padding: 44px 40px;
  border: 1px solid var(--line);
}
.contact-info--dark { background: var(--ink); color: #fff; border-color: transparent; }
.contact-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: 24px;
  color: inherit;
}
.contact-info p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 8px;
}
.contact-info--dark p { color: rgba(255,255,255,0.78); }
.contact-info__big { font-size: 18px !important; color: var(--ink-2) !important; font-weight: 600; }
.contact-info__label {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--red) !important;
  margin-top: 28px;
  font-weight: 600;
}
.contact-info__list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.contact-info__list li {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  padding-left: 18px;
  position: relative;
}
.contact-info__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--red);
}

/* ─── Small util ───────────────────────────────────────────────────── */
.muted { color: var(--slate); }

/* ─── Legal / prose pages ──────────────────────────────────────────── */
.legal-head {
  padding: calc(var(--nav-h) + 96px) 0 56px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line);
}
.legal-head__eyebrow {
  font-size: 12px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 18px;
}
.legal-head__title {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  line-height: 1.05;
}
.legal-head__meta {
  margin-top: 22px;
  font-size: 14px;
  color: var(--slate-2);
  letter-spacing: 0.02em;
}

.legal { padding: 72px 0 110px; }
.legal__intro {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.8;
  color: var(--slate);
  padding-bottom: 40px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.legal-block { margin-bottom: 52px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block__title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  margin-bottom: 20px;
}
.legal-block__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.1em;
  flex: none;
  min-width: 26px;
}
.legal-block p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 16px;
  max-width: 70ch;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--red); }
.legal-block a:hover { text-decoration: underline; }

.legal-block__sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  margin: 22px 0 8px;
}

/* Identity definition list */
.legal-id {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 28px;
  margin-top: 6px;
  padding: 26px 30px;
  background: var(--bg-warm);
  border-left: 2px solid var(--red);
}
.legal-id dt {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--slate-2);
  align-self: baseline;
}
.legal-id dd {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
}
.legal-id dd a { color: var(--red); }

@media (max-width: 640px) {
  .legal-id { grid-template-columns: 1fr; gap: 4px 0; padding: 22px; }
  .legal-id dt { margin-top: 12px; }
  .legal-id dt:first-child { margin-top: 0; }
}


/* ─── Phone refinements (≤600px) ───────────────────────────────────── */
@media (max-width: 600px) {
  /* Gutters: tighter edges so content breathes on small screens */
  .band__inner { padding: 0 20px; }

  /* Vertical rhythm: compress the big section paddings */
  .band { padding: 64px 0; }
  .band--intro { padding: 48px 0; }
  .split { padding: 56px 0; }
  .expertise-row { padding: 56px 0; }
  .history__row, .history__row--imgRight { padding: 0; }
  .legal { padding: 48px 0 72px; }

  /* Hero: lower the type floor so the word never overflows, trim height */
  .home-hero { min-height: 560px; height: 88vh; }
  .home-hero__content { padding: 0 20px; }
  .home-hero__eyebrow { font-size: 11px; letter-spacing: 0.22em; margin-bottom: 16px; }
  .home-hero__title { font-size: clamp(34px, 13vw, 64px); line-height: .92; }

  /* Page heros */
  .page-hero { min-height: 420px; }
  .page-hero--compact { min-height: 360px; }

  /* Section titles: shrink the flanking rules, keep the headline readable */
  .section-title { margin-bottom: 36px; }
  .section-title__flank { gap: 14px; }
  .section-title__rule { width: 32px; }

  /* Oversized display numerals — keep them punchy but contained */
  .split__media-num { font-size: clamp(64px, 22vw, 110px); }

  /* CTAs: full-width tap targets, comfortable height */
  .cta { padding: 15px 28px; }
  .cta--lg { padding: 16px 30px; width: 100%; justify-content: center; }
  .quote-cta__actions .cta--lg { width: auto; }

  /* Contact card: lighter padding, stacked action row */
  .contact-card { padding: 36px 22px; border-radius: 20px; }
  .contact-form__actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .contact-form__actions .cta { width: 100%; justify-content: center; }
  .contact-info { padding: 32px 26px; }

  /* Quote / dark callout boxes */
  .quote-cta { padding: 44px 24px; }
}

/* ─── Very small phones (≤380px) ───────────────────────────────────── */
@media (max-width: 380px) {
  .band__inner { padding: 0 16px; }
  .home-hero__title { font-size: clamp(30px, 12.5vw, 46px); }
  .section-title__rule { display: none; }
}
