@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap');

:root {
  --violet: #8201FF;
  --violet-deep: #5B00B3;
  --violet-tint: #F1E5FF;
  --violet-light: #A557FF;
  --paper: #FBFAF7;
  --paper-2: #F4F2EC;
  --ink: #0B0B10;
  --ink-2: #1A1A22;
  --fog: #EFEDE7;
  --line: rgba(11, 11, 16, 0.12);
  --line-soft: rgba(11, 11, 16, 0.06);
  --muted: rgba(11, 11, 16, 0.55);
  --line-on-dark: rgba(255, 255, 255, 0.15);
  --muted-on-dark: rgba(255, 255, 255, 0.55);

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --page-px: 56px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.mono { font-family: var(--mono); letter-spacing: -0.01em; }
.serif { font-family: var(--serif); }
.upper { text-transform: uppercase; letter-spacing: 0.08em; }
.tnum { font-variant-numeric: tabular-nums; }

@keyframes hl-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes hl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

@keyframes hl-crawl {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--violet); color: white; }
.btn-primary:hover { background: var(--violet-deep); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--violet); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: white; }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 16px 28px; font-size: 14px; }
.btn-xl { padding: 22px 40px; font-size: 16px; }

/* ── Wordmark ───────────────────────────────────────────── */
.wordmark {
  display: inline-flex;
  align-items: center;
}
.wordmark img {
  display: block;
  height: 64px;
  width: auto;
  border-radius: 6px;
  /* JPG has a ~12px black letterbox at the bottom (~4.4% of 277px height) — clip it */
  clip-path: inset(0 0 4.4% 0);
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--page-px);
  color: var(--paper);
  transition: background 0.25s ease, color 0.25s ease, padding 0.25s ease,
              box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

/* Scrolled state on home: nav has left the violet hero, switch to a
   light frosted bar so the dark text is readable on the paper sections. */
.nav.is-scrolled {
  background: rgba(251, 250, 247, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 1px 0 var(--line-soft), 0 8px 20px rgba(11,11,16,0.04);
}
.nav.is-scrolled .nav-links a { color: var(--ink); }
.nav.is-scrolled .lang-toggle {
  border-color: rgba(11,11,16,0.18);
  color: var(--ink);
}
.nav.is-scrolled .lang-toggle:hover { background: rgba(11,11,16,0.04); }
.nav.is-scrolled .btn-paper {
  background: var(--ink);
  color: var(--paper);
}
.nav.is-scrolled .btn-paper:hover { background: var(--violet); }
.nav.is-scrolled .wordmark img { height: 48px; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.nav-links a {
  color: var(--paper);
  opacity: 0.85;
}
.nav-links a:hover { opacity: 1; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-menu {
  position: relative;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.lang-toggle:hover { background: rgba(255,255,255,0.08); }
.lang-toggle .caret {
  font-size: 10px;
  opacity: 0.85;
  transition: transform 0.18s ease;
}
.lang-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

.lang-menu-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  z-index: 10;
  font-family: var(--sans);
}
.lang-menu-list[hidden] { display: none; }
.lang-menu-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--paper);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.lang-menu-list li:hover,
.lang-menu-list li:focus { background: rgba(255,255,255,0.08); outline: none; }
.lang-menu-list li[aria-selected="true"]::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--violet);
  margin-left: 12px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: var(--violet);
  color: var(--paper);
  padding: 150px var(--page-px) 80px;
  position: relative;
  overflow: hidden;
  min-height: 820px;
}
.hero-map {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  transform: translateX(15%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("img/background.jpg") center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 200px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
  font-weight: 400;
  white-space: pre-line;
}
/* Longer-than-English headlines: shrink so they still fit on 2 lines. */
html:lang(fr) .hero h1 { font-size: 168px; }
html:lang(pl) .hero h1 { font-size: 150px; }
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.hero-foot {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.hero-foot p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.92;
  max-width: 560px;
  margin: 0;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: end;
}

/* ── Ticker ──────────────────────────────────────────────── */
.ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  display: flex;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: hl-marquee 60s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-item .dot { opacity: 0.4; }

/* ── Figures ─────────────────────────────────────────────── */
.figures {
  padding: 100px var(--page-px);
  background: var(--paper);
}
.figures-kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  margin-bottom: 60px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.figures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.figure {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}
.figure .num {
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.figure .lab {
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.72;
  letter-spacing: -0.01em;
}

/* ── Services ────────────────────────────────────────────── */
.services {
  background: var(--ink);
  color: var(--paper);
  padding: 120px var(--page-px);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.services-kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet-tint);
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.services-h {
  font-family: var(--serif);
  font-size: 96px;
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.services-rows { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 120px 1.2fr 1.4fr auto;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.service-row .num {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  color: var(--violet);
  line-height: 1;
}
.service-row .ttl {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.service-row .desc {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.7;
  text-wrap: pretty;
}
.service-row .arrow {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ── Specialities ────────────────────────────────────────── */
.specialties {
  background: var(--paper);
  padding: 120px var(--page-px);
}
.specialties-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.specialties-kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.specialties-h {
  font-family: var(--serif);
  font-size: 80px;
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.spec-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}
.spec-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
  background: var(--fog);
}
.spec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.spec-card:hover .spec-img img { transform: scale(1.04); }
.spec-card:hover .spec-title { color: var(--violet); }
.spec-title { transition: color 0.2s ease; }
.spec-card .spec-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: baseline;
}
.spec-idx {
  grid-row: 1 / span 2;
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.08em;
  padding-top: 6px;
}
.spec-title {
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.spec-sub {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 14px;
}

/* ── Fleet ───────────────────────────────────────────────── */
.fleet {
  background: var(--paper-2);
  padding: 120px var(--page-px);
}
.fleet-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.fleet-kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fleet-h {
  font-family: var(--serif);
  font-size: 80px;
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.fleet-sub {
  grid-column: 2;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.72;
  max-width: 640px;
  text-wrap: pretty;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fleet-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fleet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,11,16,0.08);
}
.fleet-img {
  aspect-ratio: 4 / 3;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.fleet-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.fleet-card figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line-soft);
}
.fleet-idx {
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.08em;
}
.fleet-name {
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ── Network ─────────────────────────────────────────────── */
.network {
  padding: 120px var(--page-px);
  background: var(--paper);
  position: relative;
}
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.network-side {
  position: sticky;
  top: 60px;
}
.network-kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.network-h {
  font-family: var(--serif);
  font-size: 80px;
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.network-sub {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.72;
  max-width: 440px;
}
.hub-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hub-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
}
.hub-row:first-child { border-top: none; }
.hub-row .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.08em;
  width: 32px;
}
.hub-row .name {
  font-family: var(--serif);
  font-size: 28px;
}
.hub-row .fill {
  flex: 1;
  border-bottom: 1px dotted var(--line);
}
.hub-row .role {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.network-map {
  background: var(--ink);
  border-radius: 4px;
  padding: 24px;
}
.network-map-head {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.5);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* ── Quote ───────────────────────────────────────────────── */
.quote {
  background: var(--violet);
  color: var(--paper);
  padding: 140px var(--page-px);
  position: relative;
  overflow: hidden;
}
.quote-mark {
  position: absolute;
  top: 40px;
  left: var(--page-px);
  font-family: var(--serif);
  font-size: 320px;
  line-height: 0.8;
  opacity: 0.15;
  font-style: italic;
}
.quote-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.quote-text {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-style: italic;
  text-wrap: pretty;
}
.quote-attr {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.quote-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}
.quote-attr .who {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

/* ── Sub-pages (specialised category pages) ──────────────── */
.subpage { background: var(--paper); }

/* On sub-pages the nav sits on a light hero from the start, so it
   wears the same frosted-glass treatment that home gets once scrolled. */
.subpage .nav {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 1px 0 var(--line-soft), 0 8px 20px rgba(11,11,16,0.04);
}
.subpage .wordmark img { height: 48px; }
.subpage .nav-links a { color: var(--ink); }
.subpage .lang-toggle {
  border-color: rgba(11,11,16,0.18);
  color: var(--ink);
}
.subpage .lang-toggle:hover { background: rgba(11,11,16,0.04); }
.subpage .nav .btn-paper {
  background: var(--ink);
  color: var(--paper);
}
.subpage .nav .btn-paper:hover { background: var(--violet); }

.page-hero {
  position: relative;
  padding: 130px var(--page-px) 80px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--violet); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink); }

.page-title {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin: 0;
  max-width: 1200px;
}
.page-title em { color: var(--violet); font-style: italic; }
.page-lede {
  margin: 32px 0 0;
  font-size: 22px;
  line-height: 1.4;
  max-width: 720px;
  color: var(--ink);
  opacity: 0.78;
  text-wrap: pretty;
}

.page-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 100px var(--page-px) 80px;
  align-items: start;
  background: var(--paper);
}
.page-image {
  position: sticky;
  top: 80px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
  background: var(--fog);
}
.page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-prose { display: flex; flex-direction: column; gap: 40px; }
.page-prose h2 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}
.page-prose p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  color: var(--ink);
  opacity: 0.84;
  text-wrap: pretty;
}
.page-prose ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.page-prose ul li {
  font-size: 16px;
  line-height: 1.6;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.page-prose ul li:last-child { border-bottom: 1px solid var(--line-soft); }
.page-prose ul li::before {
  content: "·";
  color: var(--violet);
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.page-aside {
  background: var(--paper-2);
  padding: 80px var(--page-px);
}
.page-aside-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.aside-kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.aside-h {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  font-weight: 400;
}
.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aside-list li {
  font-size: 17px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.aside-list li:last-child { border-bottom: 1px solid var(--line); }
.aside-list .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.08em;
  width: 28px;
}

.page-also {
  padding: 100px var(--page-px);
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
}
.page-also h3 {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  font-weight: 400;
}
.page-also-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .page-title { font-size: 72px; }
  .page-body { grid-template-columns: 1fr; gap: 40px; padding: 60px var(--page-px); }
  .page-image { position: static; }
  .page-prose h2 { font-size: 32px; }
  .page-aside-grid { grid-template-columns: 1fr; gap: 32px; }
  .aside-h { font-size: 40px; }
  .page-also-grid { grid-template-columns: repeat(2, 1fr); }
  .page-also h3 { font-size: 40px; }
}
@media (max-width: 640px) {
  .page-hero { padding-top: 110px; }
  .page-title { font-size: 48px; }
  .page-lede { font-size: 17px; }
}

/* ── Team ────────────────────────────────────────────────── */
.team-intro {
  background: var(--paper);
  padding: 60px var(--page-px) 0;
}
.team-intro p {
  margin: 0;
  max-width: 880px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.78;
  text-wrap: pretty;
}

.team {
  background: var(--paper);
  padding: 80px var(--page-px) 120px;
}
.team-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.team-kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-h {
  font-family: var(--serif);
  font-size: 72px;
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.team-card:hover {
  transform: translateY(-2px);
  border-color: rgba(130, 1, 255, 0.18);
  box-shadow: 0 14px 30px rgba(11,11,16,0.06);
}
.team-card--lead {
  grid-column: span 2;
  background: var(--ink);
  color: var(--paper);
  border-color: transparent;
}
.team-card--lead:hover { box-shadow: 0 18px 40px rgba(11,11,16,0.18); }
.team-card--lead .team-name { color: var(--paper); }
.team-card--lead .team-role { color: rgba(255,255,255,0.6); }
.team-card--lead .team-avatar {
  background: var(--violet);
  color: var(--paper);
  width: 64px;
  height: 64px;
  font-size: 18px;
}

.team-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--violet-tint);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.team-card--driver .team-avatar {
  background: var(--paper-2);
  color: var(--ink);
}

.team-avatar--photo {
  background: var(--fog);
  overflow: hidden;
  padding: 0;
}
.team-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lead card socials (Béatrice) */
.social-icons {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  gap: 8px;
}
/* Use `.social-icons li a` (specificity 0,1,2) so this beats
   `.footer-col a` (0,1,1) which would otherwise force display:block + padding. */
.social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  opacity: 1;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.social-icons li a:hover {
  background: var(--violet);
  color: var(--paper);
  border-color: var(--violet);
  transform: translateY(-1px);
}
.social-icons li a svg {
  width: 16px;
  height: 16px;
}

.team-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.team-name {
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}
.team-role {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Press ───────────────────────────────────────────────── */
.press {
  background: var(--paper);
  padding: 60px var(--page-px) 120px;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.press-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.press-card:hover {
  transform: translateY(-3px);
  border-color: rgba(130, 1, 255, 0.18);
  box-shadow: 0 18px 40px rgba(11, 11, 16, 0.07);
}
.press-img {
  aspect-ratio: 575 / 206;
  overflow: hidden;
  background: var(--fog);
}
.press-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.press-card:hover .press-img img { transform: scale(1.04); }

.press-img--text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--violet);
  color: var(--paper);
}
.press-img--text span {
  font-size: 56px;
  letter-spacing: -0.02em;
  font-style: italic;
}

.press-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
  flex: 1;
}
.press-source {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
}
.press-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 400;
  text-wrap: pretty;
}
.press-link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
}

/* ── Reviews ─────────────────────────────────────────────── */
.reviews {
  background: var(--paper-2);
  padding: 120px var(--page-px);
}
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
}
.reviews-kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  grid-column: 1 / -1;
  margin-bottom: -16px;
}
.reviews-h {
  font-family: var(--serif);
  font-size: 96px;
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.reviews-stars {
  color: var(--violet);
  font-size: 48px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.reviews-count {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  align-self: end;
}
.reviews-link {
  color: var(--violet);
  font-weight: 500;
}
.reviews-link:hover { text-decoration: underline; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,11,16,0.08);
}
.review-featured {
  grid-column: span 2;
}
.review-stars {
  color: var(--violet);
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.review-text {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.review-featured .review-text { font-size: 26px; line-height: 1.3; }
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.review-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.review-date {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── CTA ─────────────────────────────────────────────────── */
.cta {
  background: var(--paper);
  padding: 180px var(--page-px);
  text-align: center;
  position: relative;
}
.cta-kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta h2 {
  font-family: var(--serif);
  font-size: 140px;
  margin: 0 auto;
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 400;
  max-width: 1100px;
}
.cta-sub {
  margin: 40px auto 0;
  font-size: 19px;
  line-height: 1.5;
  opacity: 0.72;
  max-width: 620px;
  text-wrap: pretty;
}
.cta-btn { margin-top: 56px; }

/* ── Contact form ────────────────────────────────────────── */
.contact-form {
  margin: 56px auto 0;
  max-width: 760px;
  text-align: left;
}
.contact-form-hp { display: none !important; }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full { grid-column: 1 / -1; }
.field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(130, 1, 255, 0.12);
}
.contact-form-submit {
  margin-top: 32px;
}
.contact-form-direct {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
}
.contact-form-direct a { color: var(--violet); }
.contact-form-direct a:hover { text-decoration: underline; }

/* "We're also present in" — partner offices in FR/LU/RO */
.presence {
  margin: 80px auto 0;
  max-width: 960px;
  text-align: left;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
.presence-kicker {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 32px;
  text-align: center;
}
.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.presence-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.presence-card h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
}
.presence-card address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.84;
}
.presence-vat {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dotted var(--line);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.success-mark {
  margin-bottom: 32px;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--page-px) 40px;
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: 120px;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 80px;
}
.footer-wordmark em {
  color: var(--violet);
  font-style: italic;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-meta {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  opacity: 0.6;
  letter-spacing: 0.02em;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  margin: 0 0 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
}
.footer-col a,
.footer-col span {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  opacity: 0.85;
}
.footer-col a:hover { opacity: 1; }
.footer-legal {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.5;
  letter-spacing: 0.06em;
}

/* ── Responsive (collapse the heaviest desktop layouts) ─── */
@media (max-width: 1024px) {
  :root { --page-px: 32px; }
  .hero { padding-top: 130px; min-height: 0; }
  .hero h1 { font-size: 120px; }
  .hero-foot { grid-template-columns: 1fr; }
  .hero-cta { align-items: start; }
  .figures-grid { grid-template-columns: repeat(2, 1fr); }
  .figure .num { font-size: 72px; }
  .services-head { grid-template-columns: 1fr; align-items: start; }
  .services-h { font-size: 64px; }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row .desc { grid-column: 1 / -1; }
  .service-row .arrow { display: none; }
  .service-row .ttl { font-size: 28px; }
  .specialties-head { grid-template-columns: 1fr; align-items: start; }
  .specialties-h { font-size: 56px; }
  .specialties-grid { grid-template-columns: repeat(3, 1fr); }
  .team-head { grid-template-columns: 1fr; align-items: start; }
  .team-h { font-size: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card--lead { grid-column: span 2; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-head { grid-template-columns: 1fr; }
  .reviews-h { font-size: 64px; }
  .reviews-stars { font-size: 32px; }
  .reviews-count { text-align: left; align-self: start; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-featured { grid-column: span 2; }
  .review-text { font-size: 18px; }
  .review-featured .review-text { font-size: 22px; }
  .fleet-head { grid-template-columns: 1fr; align-items: start; }
  .fleet-sub { grid-column: 1; }
  .fleet-h { font-size: 56px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .network-grid { grid-template-columns: 1fr; }
  .network-side { position: static; }
  .network-h { font-size: 56px; }
  .quote-text { font-size: 32px; }
  .cta h2 { font-size: 80px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .presence-grid { grid-template-columns: 1fr; }
  .presence { margin-top: 56px; padding-top: 48px; }
  .footer-wordmark { font-size: 64px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --page-px: 20px; }
  .nav { padding: 20px var(--page-px); }
  .nav-links { display: none; }
  .hero { padding-top: 110px; }
  .hero h1 { font-size: 72px; }
  .figures-grid { grid-template-columns: 1fr; }
  .services-h { font-size: 44px; }
  .service-row { grid-template-columns: 50px 1fr; }
  .specialties { padding: 80px var(--page-px); }
  .specialties-h { font-size: 40px; }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .team-card--lead { grid-column: span 1; }
  .team-h { font-size: 36px; }
  .press-grid { grid-template-columns: 1fr; }
  .reviews { padding: 80px var(--page-px); }
  .reviews-h { font-size: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-featured { grid-column: span 1; }
  .review-text, .review-featured .review-text { font-size: 18px; }
  .fleet { padding: 80px var(--page-px); }
  .fleet-h { font-size: 40px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .quote-text { font-size: 24px; }
  .cta h2 { font-size: 56px; }
  .cta { padding: 100px var(--page-px); }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 8px; }
}
