:root {
  --bg: #0A1628;
  --bg-1: #12243C;
  --bg-2: #1A2F4A;
  --ink: #E8ECF3;
  --ink-soft: #B0BAC9;
  --sub: #7A8599;
  --mute: #465670;
  --line: rgba(220,230,245,0.08);
  --line-bright: rgba(220,230,245,0.16);
  --accent: #D4A758;
  --accent-soft: rgba(212,167,88,0.12);
  --accent-deep: #B8892F;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

/* Noise texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.85 0 0 0 0 0.95 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

body[data-lang="en"] [lang="fr"] { display: none !important; }
body[data-lang="fr"] [lang="en"] { display: none !important; }
::selection { background: var(--accent); color: var(--bg); }

/* ========================= CUSTOM CURSOR ========================= */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid var(--ink);
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.2,0.8,0.2,1), height 0.3s cubic-bezier(0.2,0.8,0.2,1), opacity 0.3s, border-color 0.2s;
  mix-blend-mode: difference;
}
body.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: var(--accent); }
body.cursor-hover .cursor-dot { width: 0; height: 0; }
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 0.05s linear;
}

/* ========================= NAV ========================= */
nav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 10px 10px 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(18,16,11,0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), opacity 0.5s;
}
nav.hidden { transform: translateX(-50%) translateY(-120%); opacity: 0; }
nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  padding-right: 20px;
  border-right: 1px solid var(--line);
  margin-right: 8px;
}
nav .logo-mark { width: 22px; height: 22px; }
nav .logo-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
nav .links {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav a.nav-link {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.3s;
  position: relative;
}
nav a.nav-link:hover { color: var(--ink); background: var(--bg-2); }

.lang-toggle {
  display: flex;
  gap: 2px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 0 10px;
  color: var(--mute);
  letter-spacing: 0.1em;
  border-left: 1px solid var(--line);
  margin-left: 4px;
  height: 28px;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: inherit;
  padding: 3px 5px;
  cursor: none;
  font: inherit;
  transition: color 0.2s;
}
.lang-toggle button.active { color: var(--ink); }
.lang-toggle button:not(.active):hover { color: var(--ink-soft); }
.lang-toggle .sep { color: var(--mute); }

nav .nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
nav .nav-cta:hover { background: var(--accent); color: var(--bg); }
nav .nav-cta .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
nav .nav-cta:hover .dot { background: var(--bg); box-shadow: none; }

/* ========================= HERO ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 60px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.hero-asterisk {
  position: absolute;
  top: 100px; right: 40px;
  font-family: 'Instrument Serif', serif;
  font-size: 120px;
  color: var(--accent);
  line-height: 0.8;
  animation: rotate 24s linear infinite;
  transform-origin: center;
  z-index: 3;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--sub);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.hero-label-row span { display: inline-flex; align-items: center; gap: 8px; }
.hero-label-row .live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: end;
  flex: 1;
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 40px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .word {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 .word:nth-child(2) { animation-delay: 0.1s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.2s; }
.hero h1 .word:nth-child(4) { animation-delay: 0.3s; }
.hero h1 .word:nth-child(5) { animation-delay: 0.4s; }
@keyframes rise {
  to { transform: translateY(0); }
}
.hero h1 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  padding: 0 0.05em;
}

.hero-meta-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: auto;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
  font-weight: 400;
}
.hero-sub em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}
.hero-cta-group { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.btn-magnetic {
  background: var(--accent);
  color: var(--bg);
  padding: 20px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: background 0.3s, transform 0.15s ease-out;
  border: none;
  cursor: none;
  white-space: nowrap;
}
.btn-magnetic:hover { background: var(--ink); color: var(--bg); }
.btn-magnetic .arr {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--accent);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s, color 0.3s;
  font-size: 11px;
}
.btn-magnetic:hover .arr { background: var(--accent); color: var(--bg); transform: rotate(-45deg); }

.btn-quiet {
  color: var(--ink);
  padding: 18px 24px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--line-bright);
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
}
.btn-quiet:hover { background: var(--bg-2); border-color: var(--ink-soft); }



/* Hero photo (replaces old dispatch panel) */
.hero-photo-card {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-1);
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: grayscale(0.75) contrast(1.15) brightness(0.7);
  transition: transform 10s ease-out;
}
.hero-photo-card:hover .hero-photo-img { transform: scale(1.05); }
.hero-photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(212,167,88,0.3) 0%, rgba(10,22,40,0.7) 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-photo-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(10,22,40,0.5) 100%),
    linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.75) 100%);
  pointer-events: none;
}
.hero-photo-frame {
  position: absolute;
  inset: 16px;
  pointer-events: none;
}
.hero-photo-frame .fc {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--accent);
  opacity: 0.7;
}
.hero-photo-frame .fc.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero-photo-frame .fc.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.hero-photo-frame .fc.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.hero-photo-frame .fc.br { bottom: 0; right: 0; border-left: none; border-top: none; }
.hero-photo-caption {
  position: absolute;
  bottom: 28px; left: 32px; right: 32px;
  color: var(--ink);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-photo-caption .hpc-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.hero-photo-caption .hpc-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Page sub-heros for detail pages */
.page-hero {
  padding: 180px 40px 100px;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 16ch;
  margin-top: 24px;
  margin-bottom: 32px;
}
.page-hero h1 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  padding: 0 0.05em;
}
.page-hero p.lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
}
.page-hero .crumbs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--sub);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.page-hero .crumbs a:hover { color: var(--accent); }
.page-hero .crumbs .sep { color: var(--mute); }

/* Service detail blocks */
.svc-detail {
  padding: 80px 40px;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.svc-detail-left {
  position: sticky;
  top: 120px;
}
.svc-detail-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.svc-detail h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 20px;
}
.svc-detail h2 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.svc-detail .lede {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink-soft);
  max-width: 30ch;
}
.svc-detail-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 64ch;
}
.svc-detail-body p strong {
  color: var(--ink);
  font-weight: 600;
}
.svc-detail-body h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 48px 0 20px;
}
.svc-detail-body ul {
  list-style: none;
  margin-bottom: 32px;
}
.svc-detail-body li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.svc-detail-body li::before {
  content: "→";
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1000px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail-left { position: static; }
  .page-hero { padding: 130px 22px 60px; }
}
@media (max-width: 900px) {
  .hero-photo-card { aspect-ratio: 5/4; max-height: 420px; }
}

/* ========================= MARQUEE ========================= */
.marquee-wrap {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}
.marquee-item .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.marquee-sep {
  color: var(--accent);
  font-family: 'Instrument Serif', serif;
  font-size: 0.7em;
  font-weight: 400;
  font-style: italic;
  flex-shrink: 0;
}

/* ========================= STATS ========================= */
.stats {
  padding: 140px 40px;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}
.stats-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: end;
}
.section-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-number::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.stats-intro h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 14ch;
}
.stats-intro h2 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  padding: 0 0.05em;
}
.stats-intro-body {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.55;
  padding-bottom: 4px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.stat {
  padding: 40px 24px 40px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: block;
  margin-bottom: 18px;
}
.stat-num .unit {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 0.45em;
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--sub);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
  max-width: 20ch;
}

/* ========================= SERVICES BENTO ========================= */
.services-section {
  padding: 140px 40px;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}
.svc-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: end;
}
.svc-head h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 12ch;
}
.svc-head h2 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  padding: 0 0.05em;
}
.svc-head-body {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.55;
  padding-bottom: 4px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}
.svc-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: border-color 0.4s, background 0.4s;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.svc-card:hover { border-color: var(--line-bright); background: var(--bg-2); }
.svc-card:hover::before { opacity: 1; }

.svc-card.big { grid-column: span 3; grid-row: span 2; }
.svc-card.wide { grid-column: span 3; }
.svc-card.med { grid-column: span 2; }

.svc-top { display: flex; justify-content: space-between; align-items: start; }
.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--sub);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.svc-icon {
  width: 28px; height: 28px;
  color: var(--accent);
}
.svc-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: auto;
  margin-bottom: 12px;
}
.svc-card.big .svc-title { font-size: 48px; line-height: 0.95; }
.svc-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 40ch;
}
.svc-card.big .svc-desc { font-size: 15.5px; max-width: 52ch; }

.svc-arrow {
  position: absolute;
  bottom: 26px; right: 26px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: background 0.3s, color 0.3s, transform 0.4s, border-color 0.3s;
}
.svc-card:hover .svc-arrow { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: rotate(-45deg); }

/* ========================= PROCESS (sticky) ========================= */
.process-section {
  padding: 140px 40px;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}
.process-head {
  margin-bottom: 100px;
  max-width: 720px;
}
.process-head h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}
.process-head h2 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  padding: 0 0.05em;
}
.process-head p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.55;
}

.process-timeline {
  position: relative;
  border-top: 1px solid var(--line);
}
.pstep {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr 160px;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left 0.5s cubic-bezier(0.2,0.8,0.2,1);
  position: relative;
}
.pstep::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0;
  height: 100%;
  background: var(--accent-soft);
  transition: width 0.5s cubic-bezier(0.2,0.8,0.2,1);
  pointer-events: none;
  z-index: -1;
}
.pstep:hover::before { width: 100%; }
.pstep:hover { padding-left: 32px; }
.pstep:hover .pnum { color: var(--accent); }
.pnum {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 80px;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--mute);
  transition: color 0.4s;
  font-variant-numeric: tabular-nums;
}
.pstep h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding-top: 14px;
}
.pstep h4 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.pstep p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 50ch;
  padding-top: 18px;
}
.pstep .p-meta { padding-top: 18px; text-align: right; }
.pstep .p-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.pstep .p-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--sub);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================= FLEET (duotone video) ========================= */
.fleet-section {
  padding: 140px 0 0;
  position: relative;
  z-index: 2;
}
.fleet-inner {
  padding: 0 40px 60px;
  max-width: 1500px;
  margin: 0 auto;
}
.fleet-inner h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 20px;
}
.fleet-inner h2 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  padding: 0 0.05em;
}
.fleet-inner .sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 54ch;
}
.fleet-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 680px;
  overflow: hidden;
  background: var(--bg);
}
.fleet-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2) brightness(0.6) grayscale(0.6);
  mix-blend-mode: lighten;
}
.fleet-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  mix-blend-mode: multiply;
  z-index: 1;
}
.fleet-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
  z-index: 2;
  pointer-events: none;
}
.fleet-caption {
  position: absolute;
  bottom: 40px; left: 40px; right: 40px;
  color: var(--ink);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
}
.fleet-caption .fc-line {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.1;
  color: var(--ink);
  max-width: 22ch;
}
.fleet-caption .fc-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ========================= ACQUISITIONS ========================= */
.acq-section {
  padding: 140px 40px;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}
.acq-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: end;
}
.acq-head h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 14ch;
}
.acq-head h2 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  padding: 0 0.05em;
}
.acq-head-body {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.55;
  padding-bottom: 4px;
}
.acq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.acq-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.25s;
  cursor: none;
}
.acq-tag:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-3px);
}
.acq-tag .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--sub);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.acq-tag:hover .num { color: var(--bg); }

/* ========================= REFERENCES ========================= */
.ref-section {
  padding: 140px 40px;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}
.ref-head {
  margin-bottom: 80px;
  max-width: 900px;
}
.ref-head h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.ref-head h2 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  padding: 0 0.05em;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ref-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: background 0.4s, border-color 0.4s, transform 0.3s;
}
.ref-card:nth-child(2) { margin-top: 40px; }
.ref-card:nth-child(3) { margin-top: 80px; }
.ref-card:hover { background: var(--bg-2); border-color: var(--line-bright); transform: translateY(-6px); }
.ref-mark {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 72px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
  font-weight: 400;
}
.ref-quote {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.ref-quote em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.ref-attrib {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.ref-attrib strong {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 3px;
}
.ref-attrib span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  display: block;
}

/* ========================= CTA / FORM ========================= */
.cta-section {
  padding: 160px 40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: 1500px;
  margin: 0 auto;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 80vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, var(--accent-soft), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-left h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 32px;
}
.cta-left h2 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  padding: 0 0.05em;
}
.cta-left p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 44ch;
  margin-bottom: 40px;
}
.cta-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.cta-contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: baseline;
}
.cta-contact-list .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--sub);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cta-contact-list .val {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.cta-contact-list .val a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.cta-contact-list .val a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.cta-form {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-form .full { grid-column: 1 / -1; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--sub);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-bright);
  padding: 10px 0 12px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
  font-weight: 400;
}
.field textarea { resize: vertical; min-height: 60px; font-family: inherit; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--mute); }
.field select option { background: var(--bg-1); color: var(--ink); }
.cta-form button {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding: 20px 30px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: none;
  transition: background 0.3s;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cta-form button:hover { background: var(--ink); color: var(--bg); }
.cta-form button .arr {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--accent);
  border-radius: 50%;
  transition: transform 0.3s, color 0.3s;
  font-size: 11px;
}
.cta-form button:hover .arr { color: var(--ink); transform: rotate(-45deg); }


/* ========================= PHOTO MOMENT (editorial) ========================= */
.photo-moment {
  padding: 60px 40px 140px;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}
.pm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.pm-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--sub);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pm-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.pm-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 720px;
  overflow: hidden;
  background: var(--bg-1);
  border-radius: 4px;
}
.pm-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: grayscale(0.8) contrast(1.15) brightness(0.68);
  transition: transform 12s ease-out, filter 0.8s;
}
.pm-scene:hover .pm-photo { transform: scale(1.04); }
.pm-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,167,88,0.35) 0%, rgba(10,22,40,0.65) 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.pm-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(10,22,40,0.5) 100%),
    linear-gradient(180deg, rgba(10,22,40,0.15) 0%, transparent 30%, transparent 60%, rgba(10,22,40,0.7) 100%);
  pointer-events: none;
}
.pm-frame {
  position: absolute;
  inset: 20px;
  pointer-events: none;
}
.pm-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent);
  opacity: 0.7;
}
.pm-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.pm-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.pm-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.pm-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.pm-quote {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  z-index: 3;
  color: var(--ink);
}
.pm-quote-mark {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 400;
}
.pm-quote p {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pm-quote em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.pm-foot {
  position: absolute;
  bottom: 40px; left: 60px; right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  z-index: 3;
  color: var(--ink-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  gap: 24px;
  flex-wrap: wrap;
}
.pm-foot-lbl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}
.pm-foot-lbl::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.pm-foot-right { color: var(--ink-soft); }

@media (max-width: 900px) {
  .photo-moment { padding: 40px 20px 80px; }
  .pm-scene { aspect-ratio: 4 / 5; max-height: none; }
  .pm-quote { left: 24px; right: 24px; top: 30%; max-width: none; }
  .pm-quote-mark { font-size: 80px; margin-bottom: 10px; }
  .pm-frame { inset: 12px; }
  .pm-corner { width: 22px; height: 22px; }
  .pm-foot { left: 24px; right: 24px; bottom: 24px; font-size: 10px; }
}

/* ========================= FOOTER ========================= */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 60px 40px 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  max-width: 1500px;
  margin: 0 auto;
}
.foot-brand-col { display: flex; flex-direction: column; gap: 18px; }
.foot-logo { display: flex; align-items: center; gap: 14px; }
.foot-logo svg { width: 36px; height: 36px; }
.foot-logo-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.foot-logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--sub);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.foot-tag { font-size: 14px; color: var(--ink-soft); max-width: 40ch; line-height: 1.55; }
.foot-tag em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--accent); font-weight: 400; }
.foot-addr {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.foot-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--sub);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  font-weight: 400;
}
.foot-col a:hover { color: var(--accent); }

.foot-huge {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.8;
  letter-spacing: -0.055em;
  color: var(--bg-2);
  text-align: center;
  padding: 40px 0 20px;
  user-select: none;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}
.foot-huge .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  opacity: 0.3;
  font-weight: 400;
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--sub);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  gap: 12px;
  text-transform: uppercase;
  max-width: 1500px;
  margin: 0 auto;
}

/* ========================= REVEALS ========================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1100px) {
  nav .nav-link { padding: 8px 10px; font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { max-width: 480px; }
  .stats-intro, .svc-head, .acq-head { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 36px; }
  .stat:nth-child(n+3) { padding-top: 36px; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .svc-card.big, .svc-card.wide, .svc-card.med { grid-column: span 2; grid-row: auto; }
  .svc-card.big { grid-row: span 2; }
  .svc-card.big .svc-title { font-size: 36px; }
  .pstep { grid-template-columns: 70px 1fr; gap: 20px; padding: 28px 0; }
  .pstep .p-meta { grid-column: 2; text-align: left; padding-top: 10px; }
  .pstep p { grid-column: 2; padding-top: 8px; }
  .pnum { font-size: 44px; }
  .pstep h4 { font-size: 24px; padding-top: 8px; }
  .ref-grid { grid-template-columns: 1fr; gap: 16px; }
  .ref-card:nth-child(2), .ref-card:nth-child(3) { margin-top: 0; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .hero { padding: 120px 20px 40px; }
  .hero-asterisk { display: none; }
  .hero-grid { gap: 32px; }
  section, .stats, .services-section, .process-section, .acq-section, .ref-section, .cta-section { padding: 80px 20px; }
  .fleet-inner { padding: 0 20px 32px; }
  .fleet-caption { left: 20px; right: 20px; bottom: 24px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .svc-card.big, .svc-card.wide, .svc-card.med { grid-column: span 1; grid-row: span 1; }
  .svc-card.big { grid-row: span 2; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .stat:last-child { border-bottom: none; }
  .cta-form { padding: 24px; grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  nav { top: 12px; padding: 8px; }
  nav .logo { padding-right: 10px; margin-right: 4px; }
  nav .logo-name { display: none; }
  nav a.nav-link { display: none; }
  .cta-contact-list li { grid-template-columns: 1fr; gap: 4px; }
}