:root {
  --ink: #1b2230;
  --navy: #14283f;
  --stamp: #1f4e89;
  --stamp-ink: #1a3f70;
  --rust: #b4531e;
  --amber: #d9772a;
  --paper: #f2ece1;
  --paper-2: #e7dfd0;
  --sheet: #f7f3eb;
  --line: #cfc6b4;
  --mute: #5d6270;
  --stone: #8a8376;
  --white: #fffdf8;
  --shadow: 0 10px 28px rgba(20, 28, 40, 0.12);
  --max: 1160px;
  --serif: "Spectral", "Times New Roman", serif;
  --sans: "Barlow", "Segoe UI", sans-serif;
  --cond: "Barlow Condensed", "Barlow", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.35), transparent 180px),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(31, 78, 137, 0.025) 28px
    );
}

body.nav-open { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.kicker {
  font-family: var(--cond);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--stamp);
}

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; }

.muted { color: var(--mute); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #d7deea;
  font-family: var(--cond);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  flex-wrap: wrap;
}

.topbar a { color: #eef2f8; text-decoration: none; }
.topbar a:hover { color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 243, 235, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(20, 40, 70, 0.04);
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.7rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--stamp);
}

.logo svg,
.logo img,
.logo-icon {
  flex-shrink: 0;
}

.logo svg {
  width: 42px;
  height: 42px;
}

.logo-icon {
  width: auto;
  height: 46px;
  max-width: 68px;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}

.logo-text span {
  font-family: var(--cond);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
}

.site-nav a:hover { color: var(--stamp); }

.site-nav a.is-current {
  color: var(--stamp);
  box-shadow: inset 0 -2px 0 var(--stamp);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--stamp);
  background: var(--stamp);
  color: var(--white);
  text-decoration: none;
  font-family: var(--cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.btn:hover { background: var(--stamp-ink); border-color: var(--stamp-ink); }

.btn-ghost {
  background: transparent;
  color: var(--stamp);
}

.btn-ghost:hover {
  background: var(--stamp);
  color: var(--white);
}

.btn-paper {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}

.btn-light {
  background: #f6f1e8;
  color: #14283f;
  border-color: #f6f1e8;
}

.btn-light:hover {
  background: #fff;
  border-color: #fff;
  color: #0d1622;
}

.btn-ghost-light {
  background: transparent;
  color: #f6f1e8;
  border-color: rgba(246, 241, 232, 0.5);
}

.btn-ghost-light:hover {
  background: rgba(246, 241, 232, 0.12);
  color: #fff;
  border-color: #f6f1e8;
}

.btn-block {
  width: 100%;
  min-height: 48px;
}

.card-title {
  margin: 0.3rem 0 1rem;
  font-size: 1.35rem;
}

.nav-toggle {
  display: none;
  width: auto;
  min-height: 42px;
  padding: 0 0.75rem;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: var(--sheet);
  cursor: pointer;
  font-family: var(--cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0d1622;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #0d1622 url("../assets/img/hero-poster.jpg") center / cover no-repeat;
}

.hero-media img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  max-width: none;
  filter: saturate(1.04) contrast(1.06) brightness(0.86);
  transform: scale(1.06);
  animation: hero-drift 32s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-video {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}

.hero-video.is-playing {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s ease;
}

.hero-media.is-static .hero-video {
  display: none;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.6%, -0.8%, 0); }
}

.hero-video.is-paused {
  display: none;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 12, 18, 0.72) 0%, rgba(8, 12, 18, 0.32) 46%, rgba(8, 12, 18, 0.14) 100%),
    linear-gradient(180deg, rgba(8, 12, 18, 0.38) 0%, transparent 36%, rgba(8, 12, 18, 0.58) 100%);
}

.hero > .wrap {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 36rem;
  margin-bottom: 3.2rem;
  color: #f6f1e8;
}

.hero-copy .kicker {
  color: #e4c49a;
  margin-bottom: 0.55rem;
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 4vw, 3.05rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

.hero-lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(246, 241, 232, 0.82);
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-meta {
  margin: 1.2rem 0 0;
  font-family: var(--cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.84rem;
  color: rgba(246, 241, 232, 0.62);
}

.hero-fiche {
  position: relative;
  width: min(560px, calc(100% - 2.4rem));
  margin: 0 0 2.2rem 1.2rem;
  background: var(--sheet);
  padding: 2rem 1.8rem 1.7rem;
  border-top: 5px solid var(--stamp);
  box-shadow: var(--shadow);
}

.hero-fiche h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin: 0.45rem 0 0.9rem;
}

.hero-scroll {
  position: absolute;
  right: 2rem;
  bottom: 1.6rem;
  z-index: 2;
  font-family: var(--cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(246, 241, 232, 0.7);
  text-decoration: none;
}

.hero-scroll:hover { color: #fff; }

/* Home overlay header */
body.home .topbar { display: none; }

body.home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.55), transparent);
  border-bottom-color: transparent;
}

body.home .site-header .logo,
body.home .site-header .site-nav a,
body.home .site-header .nav-toggle {
  color: #f6f1e8;
}

body.home .site-header .logo-text span { color: rgba(246, 241, 232, 0.62); }

body.home .site-header .site-nav a:hover,
body.home .site-header .site-nav a.is-current { color: #e4c49a; }

body.home .site-header .site-nav a.is-current {
  box-shadow: inset 0 -2px 0 #e4c49a;
}

body.home .site-header .header-cta {
  background: transparent;
  border-color: rgba(246, 241, 232, 0.45);
  color: #f6f1e8;
}

body.home .site-header .header-cta:hover {
  background: #f6f1e8;
  color: #14283f;
  border-color: #f6f1e8;
}

body.home .site-header .nav-toggle {
  background: transparent;
  border-color: rgba(246, 241, 232, 0.4);
}

body.home .site-header .nav-toggle span,
body.home .site-header .nav-toggle span::before,
body.home .site-header .nav-toggle span::after {
  background: #f6f1e8;
}

body.home .site-header.is-stuck {
  background: rgba(14, 20, 30, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Sections */
.section { padding: 4.4rem 0; }
.section-tight { padding: 3.2rem 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin: 0.3rem 0 0;
}

.num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--stamp);
}

.ink { background: var(--navy); color: #e8edf4; }
.ink .muted { color: #b7c0ce; }
.ink .kicker { color: #9db6d8; }
.ink .rule { border-color: rgba(255,255,255,.12); }

.sheet { background: var(--sheet); }

/* Métiers — photo cards, one band */
.metiers {
  padding: 2rem 0 2.2rem;
  border-bottom: 1px solid var(--line);
}

.metiers-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.metiers-head a {
  font-family: var(--cond);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--stamp);
  text-decoration: none;
}

.metiers-head a:hover { text-decoration: underline; }

.metier-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.metier-index a {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: var(--navy);
  isolation: isolate;
}

.metier-index img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.metier-index a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 40, 63, 0.12) 20%, rgba(20, 40, 63, 0.82) 100%);
  z-index: 1;
}

.metier-index span {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.2;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.metier-index a:hover img { transform: scale(1.05); }
.metier-index a:hover span { color: #f4efe4; }

.metier-index a:focus-visible {
  outline: 2px solid var(--stamp);
  outline-offset: 2px;
}

/* Quote / DG */
.letter {
  background: var(--sheet);
  border: 1px solid var(--line);
  padding: 2rem 2rem 1.6rem;
  position: relative;
}

.letter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--stamp);
}

.letter p { margin: 0 0 1rem; }
.sign { margin-top: 1.4rem; }
.sign strong { display: block; }
.sign span { color: var(--mute); font-size: 0.95rem; }

.stamp {
  display: inline-block;
  border: 2px solid var(--stamp);
  color: var(--stamp);
  padding: 0.35rem 0.65rem;
  font-family: var(--cond);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transform: rotate(-5deg);
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value {
  background: var(--sheet);
  padding: 1.3rem 1.2rem;
}

.value strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

/* Clients */
.names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
}

.names span {
  border: 1px solid var(--line);
  background: var(--sheet);
  padding: 0.45rem 0.75rem;
  font-family: var(--cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ink .names span {
  background: transparent;
  border-color: rgba(255,255,255,.18);
  color: #e8edf4;
}

.references-band {
  background: #fff;
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.references-band .section-top {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.references-band .kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
}

.references-band .section-top h2 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  margin: 0;
  color: #111;
}

.logo-marquee {
  margin-top: 0.5rem;
  overflow: hidden;
}

.logo-marquee__viewport {
  overflow: hidden;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  width: max-content;
  padding: 0.35rem 0 0.85rem;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.logo-marquee__track.is-static {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1.25rem;
  will-change: auto;
}

.logo-marquee__set {
  display: flex;
  align-items: center;
  gap: inherit;
  flex: 0 0 auto;
}

.logo-marquee__item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  height: 4.25rem;
  width: 10.5rem;
  pointer-events: none;
}

.logo-marquee__item img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 4.25rem;
  max-width: 10.5rem;
  object-fit: contain;
  object-position: center;
  opacity: 0.95;
  -webkit-user-drag: none;
  user-select: none;
}

/* Gallery sheet */
.sheet-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 10px;
}

.sheet-grid a,
.sheet-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #111;
}

.sheet-grid img,
.sheet-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sheet-grid .wide { grid-column: 1 / 2; grid-row: span 2; }
.sheet-grid .tall { grid-row: span 2; }

.cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.7rem;
  background: linear-gradient(transparent, rgba(10,14,20,.75));
  color: #f4efe6;
  font-family: var(--cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.3rem;
}

.filters button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  font-family: var(--cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.filters button.is-on {
  border-color: var(--stamp);
  color: var(--stamp);
}

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

.gallery figure { margin: 0; }

.gallery a {
  display: block;
  background: var(--sheet);
  border: 1px solid var(--line);
  padding: 8px 8px 0;
  text-decoration: none;
}

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

.gallery figcaption {
  padding: 0.55rem 0.2rem 0.7rem;
  font-family: var(--cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--mute);
}

.note {
  font-size: 0.92rem;
  color: var(--mute);
  border-left: 3px solid var(--amber);
  padding-left: 0.85rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 20, 0.88);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 2rem;
}

.lightbox.is-open { display: grid; }

.lightbox figure { margin: 0; max-width: min(920px, 100%); }

.lightbox img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
}

.lightbox figcaption {
  color: #ddd;
  text-align: center;
  margin-top: 0.7rem;
  font-family: var(--cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

/* Page head */
.page-head {
  padding: 3.2rem 0 2.2rem;
  border-bottom: 1px solid var(--line);
}

.page-head-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.page-head-shot {
  margin: 0;
  min-height: 280px;
  max-height: 340px;
  overflow: hidden;
  background: #111;
}

.page-head-shot img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.page-head h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0.35rem 0 0.8rem;
}

.page-head p { max-width: 62ch; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: start;
}

.split img {
  width: 100%;
  height: clamp(220px, 28vw, 340px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.prose p { margin: 0 0 1rem; }
.prose h2 { font-size: 1.8rem; margin: 2rem 0 0.8rem; }
.prose h3 { font-size: 1.35rem; margin: 1.4rem 0 0.5rem; }

.bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullets li {
  padding: 0.45rem 0 0.45rem 1.1rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--stamp);
  position: absolute;
  left: 0;
  top: 0.85rem;
}

.equip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.equip article {
  background: var(--sheet);
  border: 1px solid var(--line);
  padding: 1.2rem 1.15rem 1rem;
}

.equip h3 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
}

/* Jump nav */
.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.6rem;
}

.jump a {
  border: 1px solid var(--line);
  padding: 0.42rem 0.7rem;
  font-family: var(--cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--ink);
  background: var(--sheet);
}

.jump a:hover { border-color: var(--stamp); color: var(--stamp); }

/* Activity spreads */
.trade,
.park-block,
section[id] { scroll-margin-top: 92px; }

.trade {
  display: grid;
  grid-template-columns: minmax(300px, 50%) 1fr;
  min-height: 620px;
  background: var(--sheet);
  border-bottom: 1px solid var(--line);
}

.trade.flip { grid-template-columns: 1fr minmax(300px, 50%); }
.trade.flip .trade-visual { order: 2; }

.trade-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #121820;
}

.trade-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.trade-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,20,.12), rgba(10,14,20,.28));
}

.trade-index {
  position: absolute;
  left: 1.1rem;
  bottom: 0.85rem;
  z-index: 1;
  font-family: var(--cond);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #f6f1e8;
  background: rgba(12, 18, 26, 0.55);
  padding: 0.35rem 0.6rem;
}

.trade-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.6rem) clamp(1.4rem, 5vw, 4.2rem);
  max-width: 640px;
}

.trade-body h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 0.35rem 0 0.9rem;
}

.trade-body > p { margin: 0 0 1.2rem; color: var(--mute); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li,
.chips span {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.38rem 0.65rem;
  font-size: 0.92rem;
}

/* Parc matériel */
.park-lead {
  padding: 0 0 3rem;
}

.park-shot {
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  background: #111;
  position: relative;
}

.park-shot img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.park-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(transparent, rgba(10,14,20,.72));
  color: #f4efe6;
  font-family: var(--cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.park-block {
  display: grid;
  grid-template-columns: minmax(200px, 0.42fr) 1fr;
  gap: 1.6rem 2.4rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.park-block header span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--stamp);
  font-size: 1.15rem;
}

.park-block h3 {
  font-size: 1.7rem;
  margin: 0.2rem 0 0.45rem;
}

.park-block header p {
  margin: 0;
  color: var(--mute);
  font-size: 0.98rem;
}

.crew {
  background: var(--navy);
  color: #e8edf4;
}

.crew .park-shot { min-height: 280px; }
.crew .park-shot img { min-height: 280px; }

.crew .kicker { color: #c4b08a; }
.crew .muted { color: #b7c0ce; }

.roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roles li {
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 0.98rem;
}

/* Contact */
.contact-quick {
  display: none;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.contact-quick-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem 0.95rem;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--sheet);
  text-decoration: none;
  color: var(--ink);
}

.contact-quick-btn:hover {
  border-color: var(--stamp);
  color: var(--stamp);
}

.contact-quick-btn--wa {
  background: #1a7a4c;
  border-color: #1a7a4c;
  color: #fff;
}

.contact-quick-btn--wa:hover {
  background: #156b41;
  border-color: #156b41;
  color: #fff;
}

.contact-quick-btn--ghost {
  background: var(--white);
}

.contact-quick-label {
  font-family: var(--cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: inherit;
  opacity: 0.85;
}

.contact-quick-value {
  font-size: 0.92rem;
  line-height: 1.25;
  word-break: break-word;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-phones {
  display: grid;
  gap: 0.35rem;
  margin: 0.6rem 0 0.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--stamp);
  font-weight: 500;
}

.contact-link:hover { text-decoration: underline; }

.field { margin-bottom: 0.9rem; }

.field label {
  display: block;
  font-family: var(--cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.7rem 0.75rem;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(31, 78, 137, 0.35);
  outline-offset: 1px;
  border-color: var(--stamp);
}

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

.form-note { font-size: 0.88rem; }

.vcard p { margin: 0 0 0.45rem; }

.map {
  border: 1px solid var(--line);
  height: 340px;
  background: var(--paper-2);
  border-radius: 2px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.legal-ids {
  font-size: 0.88rem;
  color: var(--mute);
  display: grid;
  gap: 0.2rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #c9d2df;
  padding: 2.6rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.site-footer a { color: #e8eef7; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 0.7rem;
}

.foot-copy {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.86rem;
  color: #93a0b3;
}

/* Video */
.video-frame {
  border: 1px solid var(--line);
  background: #111;
}

.video-frame video {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

/* Utils */
.mt { margin-top: 1.4rem; }
.mb { margin-bottom: 1.2rem; }
.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; transform: none; }
}

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .site-nav { gap: 1rem; }
}

@media (max-width: 920px) {
  .section-head,
  .split,
  .footer-grid,
  .equip,
  .values,
  .park-block,
  .roles { grid-template-columns: 1fr 1fr; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .trade,
  .trade.flip,
  .page-head-split { grid-template-columns: 1fr; }
  .trade.flip .trade-visual { order: 0; }
  .trade { min-height: 0; }
  .trade-visual { min-height: 300px; }
  .page-head-shot img { height: 220px; }

  .sheet-grid,
  .gallery { grid-template-columns: 1fr 1fr; }
  .sheet-grid .wide,
  .sheet-grid .tall { grid-column: auto; grid-row: auto; }
  .sheet-grid { grid-auto-rows: 200px; }

  .metier-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .metier-index a { min-height: 230px; }
}

@media (max-width: 760px) {
  .wrap { width: min(var(--max), calc(100% - 1.25rem)); }

  html { scroll-padding-top: 76px; }

  body { font-size: 16px; }

  .section { padding: 2.6rem 0; }
  .section-tight { padding: 2rem 0; }

  .page-head { padding: 2rem 0 1.4rem; }
  .page-head h1 { font-size: clamp(1.55rem, 6.5vw, 2rem); }
  .page-head p { font-size: 0.98rem; }

  .section-head,
  .split,
  .footer-grid,
  .equip,
  .values,
  .park-block,
  .roles { grid-template-columns: 1fr; }

  .section-head { gap: 1rem; margin-bottom: 1.6rem; }

  .footer-grid { gap: 1.4rem; }
  .foot-copy {
    font-size: 0.78rem;
    line-height: 1.55;
    text-align: center;
  }

  .letter { padding: 1.2rem 1rem 1rem 1.05rem; }

  .contact-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-quick-btn--ghost {
    grid-column: 1 / -1;
  }

  .contact-quick-value {
    font-size: 0.86rem;
  }

  .vcard-wa { display: none; }

  .contact-link {
    display: flex;
    width: 100%;
    padding: 0.35rem 0;
  }

  .legal-ids {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .legal-ids span {
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 0.28rem 0.5rem;
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .map { height: 240px; }

  .field input,
  .field textarea {
    font-size: 16px;
    padding: 0.85rem 0.8rem;
    min-height: 48px;
  }

  .field textarea { min-height: 120px; }

  .btn { min-height: 44px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .jump {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }

  .jump a {
    text-align: center;
    padding: 0.6rem 0.45rem;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .cta-band {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.9rem;
  }

  .cta-band .btn { width: 100%; }

  .split { gap: 1.4rem; }

  .prose h2 { font-size: 1.45rem; margin-top: 1.5rem; }

  .sheet-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }

  .references-band { padding: 2.4rem 0; }

  .trade-visual { min-height: 220px; }

  .topbar .wrap {
    justify-content: center;
    text-align: center;
    font-size: 0.84rem;
    padding: 0.5rem 0;
  }

  .logo-text span { display: none; }
  .logo-text strong { font-size: 0.95rem; }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
    border-color: var(--stamp);
    min-height: 44px;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--sheet);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0.35rem;
    border-bottom: 1px solid var(--line);
    min-height: 44px;
  }

  .site-nav a:last-child { border-bottom: 0; }

  .site-nav a.is-current { box-shadow: none; font-weight: 600; }

  .site-nav.is-open { display: flex; }
  .header-cta { display: none; }
  .hero-copy { margin-bottom: 1.6rem; }
  .hero-copy h1 { font-size: 1.75rem; }
  .hero-lead { font-size: 0.95rem; }
  .hero-meta { display: none; }
  .hero-scroll { left: 1.1rem; right: auto; }
  body.home .site-nav {
    background: #14283f;
    border-bottom-color: rgba(255,255,255,.08);
  }
  body.home .site-nav a {
    border-bottom-color: rgba(255,255,255,.1);
    color: #f6f1e8;
  }
  .gallery { grid-template-columns: 1fr; }
  .metier-index {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .metier-index a { min-height: 190px; }
  .metier-index a:last-child { grid-column: 1 / -1; min-height: 200px; }
  .metier-index span { font-size: 1rem; left: 0.7rem; right: 0.7rem; bottom: 0.7rem; }
  .gallery img { height: 320px; }
  .topbar .hide-sm { display: none; }

  .equip { gap: 0.85rem; }

  .names { gap: 0.45rem; }

  .names span {
    font-size: 0.82rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .jump { grid-template-columns: 1fr; }

  .contact-quick { grid-template-columns: 1fr; }

  .contact-quick-btn--ghost { grid-column: auto; }

  .metier-index { grid-template-columns: 1fr; }

  .metier-index a,
  .metier-index a:last-child {
    grid-column: auto;
    min-height: 180px;
  }
}
