/* ============================================
   Commando Movers: Design Tokens
   ============================================ */
:root {
  /* Color */
  --color-ink: #0c0a09;
  --color-ink-soft: #1c1917;
  /* Brand red, taken from the source logo files (logo-mark / logo-wordmark).
     One hue, two roles -- pick by what the red is doing, never by eye:
       --color-red       brand: logo, icons, glyphs, rules, large display type.
       --color-red-ink   legible: small red text, and red surfaces carrying
                         white text. Same hue, darkened only enough to clear
                         WCAG AA 4.5:1 -- pure #ff0000 lands at 3.80/4.00.
       --color-red-light red on dark backgrounds, where pure red goes muddy.
     Tints come from --color-red-rgb, e.g. rgb(var(--color-red-rgb) / 0.1).
     Add no other red literal anywhere in this file. */
  --color-red: #ff0000;
  --color-red-rgb: 255 0 0;
  --color-red-ink: #cc0000;
  --color-red-ink-dark: #a30000;   /* hover / pressed on red-ink surfaces */
  --color-red-light: #ff6b74;
  --color-paper: #faf9f7;
  --color-paper-alt: #f2efea;
  --color-white: #ffffff;
  --color-text: #1c1917;
  --color-text-muted: #6b6560;
  --color-border: #e6e1da;
  --color-on-dark-muted: #b9b4ae;

  /* Type */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing scale (8px rhythm) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --container-w: 1160px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 2px rgba(12,10,9,0.04), 0 12px 32px -16px rgba(12,10,9,0.18);
  --shadow-card-hover: 0 1px 2px rgba(12,10,9,0.06), 0 24px 48px -20px rgba(12,10,9,0.28);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 240ms;
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, dl, dd { margin: 0; }
button { font: inherit; background: none; border: none; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-red-ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ============================================
   Type helpers
   ============================================ */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red-ink);
  margin-bottom: var(--space-2);
}
.eyebrow-light { color: var(--color-red-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
.section-title-light { color: var(--color-white); }

.text-accent { color: var(--color-red); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  transition: transform var(--dur) var(--ease-out), background var(--dur), box-shadow var(--dur), border-color var(--dur), color var(--dur);
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
/* Marks a button that places a call. .btn is already inline-flex with a gap,
   so the icon needs sizing only. */
.btn-icon { width: 1.15em; height: 1.15em; flex: none; }

.btn-primary {
  background: var(--color-red-ink);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgb(var(--color-red-rgb) / 0.55);
}
.btn-primary:hover { background: var(--color-red-ink-dark); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.btn-light {
  background: var(--color-white);
  color: var(--color-red-ink);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,247,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), background var(--dur);
}
.site-header.scrolled {
  border-color: var(--color-border);
  background: rgba(250,249,247,0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; }
/* The SVG is cropped to the ink, so it renders ~33% wider than the old padded
   PNG did at the same height. Smaller on phones so it clears the menu button. */
.brand-logo { height: 20px; width: auto; }
@media (min-width: 720px) {
  .brand-logo { height: 26px; }
}

.main-nav {
  display: none;
  align-items: center;
  gap: var(--space-5);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a { position: relative; padding: 0.25rem 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-actions .btn-primary { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  margin: 0 auto;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Absolutely positioned so the panel slides down OVER the hero instead of
   growing the header and pushing the page down. The header is sticky, so it is
   already a containing block for this, and its z-index puts the panel above
   everything below it. */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: 0 var(--space-3);
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease-out), padding var(--dur) var(--ease-out);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  border-top: 1px solid transparent;
  /* Opaque: it now sits over photography, not over the page background. */
  background: var(--color-paper);
}
.mobile-nav.open {
  max-height: 400px;
  padding: var(--space-2) var(--space-3) var(--space-4);
  border-top-color: var(--color-border);
  /* Shadow only when open -- a collapsed panel is still 0px tall and would
     otherwise cast a stray line under the header. */
  box-shadow: 0 18px 32px -18px rgba(12,10,9,0.4);
}
/* :not(.btn) matters: this selector is 0-2-0 and would otherwise outrank .btn
   (0-1-0), stripping the quote button's horizontal padding so the pill shrank
   to the text width and the 999px radius clipped its first and last letters. */
.mobile-nav a:not(.btn) { padding: 0.6rem 0; }
.mobile-nav .btn { align-self: flex-start; margin-top: var(--space-1); }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .header-actions .btn-primary { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-ink);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,9,0.6) 0%, rgba(12,10,9,0.45) 35%, rgba(12,10,9,0.94) 100%),
    linear-gradient(100deg, rgba(12,10,9,0.85) 0%, rgba(12,10,9,0.3) 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 2rem + 5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}
.hero-sub {
  max-width: 34ch;
  font-size: 1.125rem;
  color: var(--color-on-dark-muted);
  margin-bottom: var(--space-4);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.hero-stats {
  display: grid;
  /* auto-fit rather than a fixed count: the stat list has changed twice, and a
     hardcoded repeat(3) leaves an empty column behind whenever one is dropped. */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-3);
  max-width: 440px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: var(--space-3);
}
.hero-stats dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-stats dd {
  font-size: 0.85rem;
  color: var(--color-on-dark-muted);
  line-height: 1.35;
}

/* Lorry panel.
   The 3:2 crop lives here, not in the file: the source is a 16:9 MP4 and
   object-fit:cover trims it to the ratio the box declares, so the framing can
   be retuned without re-encoding. Framed rather than blended -- the clip has an
   opaque dark-grey background, so a hairline edge reads as a deliberate panel
   instead of a stray rectangle sitting on the hero photo. */
.hero-video {
  position: relative;
  aspect-ratio: 3 / 2;
  /* Stacked under the copy, a full-width 3:2 panel added 500px and turned the
     hero into 1.4 screens, burying the CTAs. Capped so the fold still holds. */
  max-width: 460px;
  margin-top: var(--space-4);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-ink);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.85);
}
.hero-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* The clip's own dark sky is lighter than the hero scrim behind it; this pulls
   the top edge down to meet it so the panel doesn't glow along its border. */
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12,10,9,0.35) 0%, rgba(12,10,9,0) 45%);
}

/* Stacked layout. Left-aligning here strands everything against one edge: the
   copy caps at 34ch and the panel at 460px, so on a ~800px tablet both leave a
   dead column of hero photo to their right. Centring the stack is what makes
   the two read as one block. The two-column layout above re-hangs it left. */
@media (max-width: 899px) {
  .hero-inner { text-align: center; }
  .hero-sub,
  .hero-stats,
  .hero-video { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  /* The rule above the stats is the widest thing in the stack once centred;
     letting it run the full 440px keeps it reading as a divider, not an underline. */
  .hero-stats { justify-items: center; }
}

@media (max-width: 599px) {
  .hero { align-items: center; min-height: 100vh; min-height: 100dvh; }
  .hero-inner { padding-top: var(--space-8); }
}

@media (min-width: 900px) {
  /* Copy holds the left column, lorry the right. minmax(0,...) on both tracks
     stops the long h1 from forcing the grid wider than the container. */
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: center;
    gap: var(--space-4);
  }
  .hero-video { margin-top: 0; max-width: none; }
  /* The full-bleed size is tuned to the viewport; here the title only owns half
     of it, so it needs its own curve or "Moving You Forward," breaks apart.
     Cap is measured, not eyeballed: at the container's max the column is 578px
     and that line needs 548px at 60px -- 64px overruns it and drops to 3 lines. */
  .hero-title { font-size: clamp(2.25rem, 0.4rem + 4.2vw, 3.75rem); }
  .hero-sub { max-width: 32ch; }
  /* Bottom-aligned made sense when the copy alone filled the hero. With the
     panel beside it the block is shorter, and hanging it off the bottom edge
     leaves a dead band up top. */
  .hero { align-items: center; }
  .hero-inner { padding-top: var(--space-5); padding-bottom: var(--space-5); }
}

/* ============================================
   Services
   ============================================ */
.services { padding: var(--space-8) 0; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.section-lede {
  max-width: 34ch;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Three bands, each one panel divided by hairlines, rather than seven floating
   cards. A panel is only as tall as its own content, which is what kills the
   dead vertical space the old equal-height grid forced on every card. */
.service-bands {
  display: grid;
  gap: var(--space-3);
}

.band {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.band-head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-paper);
  border-bottom: 1px solid var(--color-border);
}
.band-label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.band-route {
  flex: none;
  width: 72px;
  height: 20px;
  color: var(--color-red);
}
.band-route svg { display: block; width: 100%; height: 100%; }

/* The goods travel when you hover the band they belong to. The storage band has
   no .route-dot at all, so it stays put -- nothing in storage is moving. */
.route-dot { transition: transform 620ms var(--ease-out); }
.route-end { transition: fill var(--dur) var(--ease-out); fill: transparent; }
.band:hover .route-dot { transform: translateX(48px); }
.band:hover .route-dot-back { transform: translateX(-43px); }
.band:hover .route-end { fill: currentColor; }

/* Dividers are a 1px grid gap letting the panel colour through, not per-item
   borders. That way they stay correct however the items wrap, with no
   first-child/last-child exceptions to keep in sync with the breakpoints. */
.band-items {
  display: grid;
  gap: 1px;
  background: var(--color-border);
}
@media (min-width: 720px) {
  .band-items-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Hanging icon: the mark sits beside the name and the description hangs under
   the name, not under the icon. Keeps each item a third shorter than a stacked
   card and gives the column a consistent text edge to read down. */
.svc {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "icon name"
    ".    desc";
  column-gap: var(--space-2);
  align-items: center;
  /* Pin to the top: items in a row share a height, and without this the one
     with the shorter description floats its icon and name out of line with
     its neighbours. */
  align-content: start;
  padding: var(--space-4);
  background: var(--color-white);
  transition: background var(--dur) var(--ease-out);
}
.svc:hover { background: var(--color-paper); }

.svc-icon {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgb(var(--color-red-rgb) / 0.1);
  color: var(--color-red);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.svc-icon svg { width: 22px; height: 22px; }
.svc:hover .svc-icon {
  background: var(--color-red);
  color: var(--color-white);
}
.svc h4 {
  grid-area: name;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-ink);
}
.svc p {
  grid-area: desc;
  margin: var(--space-1) 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  .route-dot { transition: none; }
  .band:hover .route-dot,
  .band:hover .route-dot-back { transform: none; }
}

/* ============================================
   Trust
   ============================================ */
.trust { background: var(--color-white); padding: var(--space-8) 0; }
.trust-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 900px) {
  .trust-inner { grid-template-columns: 1fr 1fr; gap: var(--space-7); }
}
.trust-copy .section-title { margin-bottom: var(--space-4); }

.trust-list { display: flex; flex-direction: column; gap: var(--space-3); }
.trust-list li { display: flex; gap: var(--space-2); align-items: flex-start; }
.check-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-red);
  color: #fff;
  margin-top: 2px;
}
.check-icon svg { width: 16px; height: 16px; }
.trust-list h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.trust-list p { color: var(--color-text-muted); font-size: 0.95rem; }

.trust-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.trust-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 6px solid var(--color-white);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.trust-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ============================================
   Clients
   ============================================ */
.clients { background: var(--color-ink); padding: var(--space-7) 0; text-align: center; }
.clients .eyebrow { justify-content: center; }
.clients .section-title { margin-bottom: var(--space-5); }

.client-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}
.client-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  height: 108px;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease-out);
}
.client-chip:hover { transform: translateY(-4px); }
/* Every logo ships on an identical 360x160 canvas already contain-fitted, so a
   fixed box here needs no object-fit and no per-logo exceptions. The slot is
   deliberately squarer than the widest logos: it lets the stacked lockups
   (Yamato, Across, Bo) use the full height instead of being starved by them. */
.client-chip img {
  width: 180px;
  height: 80px;
}

/* ============================================
   CTA / Contact
   ============================================ */
.cta { background: var(--color-red-ink); padding: var(--space-8) 0; text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 1.7rem + 2.5vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: var(--space-2);
}
.cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
  max-width: 40ch;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.cta-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
}
.cta-details a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), opacity var(--dur);
}
.cta-details a:hover { border-color: rgba(255,255,255,0.6); }
.cta-details svg { width: 18px; height: 18px; flex: none; }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--color-ink-soft); padding: var(--space-4) 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--color-on-dark-muted);
  font-size: 0.85rem;
}
.footer-mark { height: 18px; width: auto; opacity: 0.9; }

/* ============================================
   About / Story
   ============================================ */
.about {
  background: var(--color-paper-alt);
  padding: var(--space-8) 0;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  list-style: none;
}
@media (min-width: 860px) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}

.timeline-item {
  position: relative;
  padding-top: var(--space-3);
  border-top: 2px solid var(--color-border);
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-paper-alt);
  border: 3px solid var(--color-border);
}
.timeline-item-current { border-top-color: var(--color-red); }
.timeline-item-current::before { border-color: var(--color-red); background: var(--color-red); }

.timeline-year {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red-ink);
  margin-bottom: var(--space-1);
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}
.timeline-item p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

/* ============================================
   Clients (expanded)
   ============================================ */
.clients-head { margin-bottom: var(--space-3); }

.clients-highlight {
  max-width: 46ch;
  margin: 0 auto var(--space-5);
  color: var(--color-on-dark-muted);
  font-size: 1.05rem;
}
.clients-highlight strong {
  color: var(--color-white);
  font-weight: 600;
}

.clients-institutions {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.clients-institutions h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-on-dark-muted);
  margin-bottom: var(--space-2);
}
.clients-institutions ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-1) var(--space-3);
}
.clients-institutions li {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
}
.clients-institutions li + li::before {
  content: "";
  position: absolute;
  left: calc(var(--space-3) / -2);
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: translate(-50%, -50%);
}

/* ============================================
   Scroll reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
