/* =========================================================
   Mthosa Unlimited Services
   Brand: navy #121A3D + gold #DDBB3A (sampled from logo)
   Type:  Archivo (display, wide + heavy) / Open Sans (body)
   ========================================================= */

:root {
  --navy: #121a3d;
  --navy-900: #0a1029;
  --navy-700: #1d2757;
  --navy-500: #3a4577;
  --gold: #ddbb3a;
  --gold-600: #c9a52a;
  --gold-100: #f8f0d2;

  --ink: #121a3d;
  --body: #3d4462;
  --muted: #6b7190;
  --line: #e2e4ec;
  --paper: #ffffff;
  --mist: #f3f4f7;

  --display: "Archivo", system-ui, sans-serif;
  --text: "Open Sans", system-ui, sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --max: 1280px;
  --section: clamp(80px, 11vw, 150px);
  --cut: 28px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; color: var(--ink); font-family: var(--display); }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }

/* ---------- Type scale ---------- */
.h2 {
  font-size: clamp(1.75rem, 2.9vw, 2.6rem);
  font-weight: 750;
  font-stretch: 104%;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 700;
  font-stretch: 108%;
  letter-spacing: -0.015em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 750;
  font-stretch: 115%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 6px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.lead { font-size: 1.1rem; color: var(--body); }
.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: stretch;
  gap: 3px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  font-stretch: 108%;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.btn > span:first-child { display: flex; align-items: center; padding: 15px 24px; transition: background .25s, color .25s; }
.btn-icon { display: grid; place-items: center; width: 52px; transition: background .25s, color .25s; }
.btn-icon svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover .btn-icon svg { transform: translateX(3px); }

.btn-gold > span { background: var(--gold); color: var(--navy); }
.btn-gold:hover > span { background: #e7c850; }
.btn-navy > span { background: var(--navy); color: #fff; }
.btn-navy .btn-icon { background: var(--gold); color: var(--navy); }
.btn-navy:hover > span:first-child { background: var(--navy-700); }
.btn-ghost-light > span { color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.55); }
.btn-ghost-light:hover > span { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 2px #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Logo ---------- */
.logo { position: relative; display: inline-flex; align-items: flex-end; gap: 3px; padding-bottom: 15px; color: var(--navy); }
.logo-mark { width: 46px; height: 38px; flex: none; }
.logo-text { line-height: 1; }
.logo-name {
  display: block;
  font-family: var(--display);
  font-weight: 850;
  font-stretch: 118%;
  font-size: 27px;
  line-height: .74;
  letter-spacing: -0.01em;
}
.logo-sub {
  position: absolute;
  left: 0; bottom: 0;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 750;
  font-stretch: 105%;
  font-size: 9.6px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.logo-light { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .35s, box-shadow .35s, transform .35s;
}
.header-inner { display: flex; align-items: center; gap: 32px; height: 84px; }
.site-header .logo { color: #fff; transition: color .35s; }
.nav { display: flex; gap: 34px; margin-left: auto; }
.nav a {
  position: relative;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  font-stretch: 104%;
  color: rgba(255,255,255,.9);
  transition: color .25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta { font-size: 14px; }
.header-cta > span:first-child { padding: 12px 18px; }
.header-cta .btn-icon { width: 44px; }

.site-header.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.site-header.scrolled .logo { color: var(--navy); }
.site-header.scrolled .nav a { color: var(--ink); }

.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--navy-900);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease) forwards;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,16,41,.72) 0%, rgba(10,16,41,.38) 38%, rgba(10,16,41,.55) 62%, rgba(10,16,41,.96) 100%);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-slash {
  position: absolute;
  right: -6vw;
  top: 16%;
  width: 34vw;
  height: 14px;
  background: var(--gold);
  transform: rotate(-28deg);
  transform-origin: right;
  opacity: .9;
}
.hero-inner { position: relative; padding-top: 112px; padding-bottom: 44px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  font-stretch: 112%;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}
.dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.hero-title {
  color: #fff;
  font-size: clamp(1.9rem, 4.2vw, 3.5rem);
  font-weight: 800;
  font-stretch: 105%;
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 16ch;
}
.hero-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-intro { max-width: 520px; }
.hero-intro p { margin-bottom: 22px; font-size: 1.12rem; color: rgba(255,255,255,.86); }
.hero-locations { display: flex; gap: 40px; }
.hero-locations li { display: flex; flex-direction: column; padding-left: 16px; border-left: 3px solid var(--gold); }
.hero-locations strong { font-family: var(--display); font-weight: 700; font-stretch: 108%; font-size: .98rem; }
.hero-locations span { font-size: .88rem; color: rgba(255,255,255,.65); }

/* ---------- Stats ---------- */
.stats { padding: clamp(56px, 7vw, 96px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
  transition: border-color .3s, transform .4s var(--ease);
}
.stat::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: var(--cut); height: var(--cut);
  background: linear-gradient(135deg, transparent 49%, var(--line) 50%, var(--line) calc(50% + 1px), transparent calc(50% + 1px));
}
.stat:hover { transform: translateY(-4px); border-color: var(--gold); }
.stat-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 48px; background: var(--navy); }
.stat-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 800;
  font-stretch: 112%;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-num small { font-size: .55em; font-weight: 750; margin-left: 2px; }
.stat-label { margin-top: 10px; font-weight: 600; color: var(--muted); font-size: .95rem; }

/* ---------- Split heading ---------- */
.split-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.split-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; font-size: 1.05rem; }
.split-copy .btn { margin-top: 10px; }

/* ---------- About / rail ---------- */
.about { background: var(--mist); }
.rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 max(var(--gutter), calc((100vw - var(--max)) / 2));
  scroll-padding: 0 max(var(--gutter), calc((100vw - var(--max)) / 2));
}
.rail::-webkit-scrollbar { display: none; }
.rail-card {
  position: relative;
  flex: 0 0 clamp(280px, 38vw, 520px);
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), calc(100% - 44px) 100%, 0 100%);
  background: var(--navy);
}
.rail-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.rail-card:hover img { transform: scale(1.05); }
.rail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,16,41,.9));
}
.rail-card figcaption {
  position: absolute;
  z-index: 1;
  left: 28px; right: 70px; bottom: 26px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 700;
  font-stretch: 106%;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.rail-controls { display: flex; align-items: center; gap: 32px; margin-top: 36px; }
.progress { flex: 1; height: 4px; background: #d9dce5; position: relative; }
.progress span { position: absolute; left: 0; top: 0; height: 100%; width: 30%; background: var(--gold); transition: left .15s linear, width .15s linear; }
.arrows { display: flex; align-items: center; gap: 10px; }
.arrow-btn {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: background .25s, color .25s;
}
.arrow-btn svg { width: 20px; height: 20px; }
.arrow-btn:hover { background: var(--navy); color: var(--gold); }
.flip { transform: scaleX(-1); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.services-copy .h2 { margin-bottom: 24px; }
.services-copy .lead { margin-bottom: 36px; }
.svc-tabs { display: flex; flex-direction: column; margin-bottom: 36px; border-top: 1px solid var(--line); }
.svc-tab {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  text-align: left;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 650;
  font-stretch: 106%;
  color: var(--muted);
  cursor: pointer;
  transition: color .25s, padding .3s var(--ease);
}
.svc-tab b { font-size: .8rem; font-weight: 750; color: var(--muted); min-width: 22px; }
.svc-tab:hover { color: var(--ink); }
.svc-tab[aria-selected="true"] { color: var(--ink); padding-left: 14px; box-shadow: inset 4px 0 0 var(--gold); }
.svc-tab[aria-selected="true"] b { color: var(--gold-600); }
.svc-count { margin-left: 12px; font-family: var(--display); font-weight: 700; font-stretch: 110%; color: var(--muted); letter-spacing: .06em; }

.svc-stage {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), calc(100% - 64px) 100%, 0 100%);
}
.svc-stage img { width: 100%; height: 100%; object-fit: cover; transition: opacity .45s ease, transform 1.2s var(--ease); }
.svc-stage img.swap { opacity: 0; transform: scale(1.04); }
.svc-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(10,16,41,.94)); pointer-events: none; }
.svc-card { position: absolute; z-index: 1; left: 36px; right: 90px; bottom: 36px; color: #fff; }
.svc-num { font-family: var(--display); font-weight: 800; font-stretch: 120%; font-size: 14px; letter-spacing: .14em; color: var(--gold); margin-bottom: 10px; }
.svc-card h3 { color: #fff; font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 800; font-stretch: 104%; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 18px; }
.svc-card ul { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-card li { padding: 6px 12px; font-size: .88rem; font-weight: 600; background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); backdrop-filter: blur(4px); }

.expertise { margin-top: clamp(72px, 9vw, 120px); padding-top: 48px; border-top: 1px solid var(--line); }
.expertise-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.expertise-head p { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  padding: 11px 18px;
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 650;
  font-stretch: 104%;
  color: var(--ink);
  background: var(--mist);
  border-left: 3px solid var(--gold);
  transition: background .25s, color .25s;
}
.chips li:hover { background: var(--navy); color: #fff; }

/* ---------- Fleet hire ---------- */
.fleet { background: var(--mist); }
.fleet-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.fleet-media { position: relative; padding-bottom: 25%; }
.fleet-visual { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--navy); clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), calc(100% - 56px) 100%, 0 100%); }
.fleet-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fleet-badge { position: absolute; left: 0; top: 28px; display: flex; flex-direction: column; padding: 16px 22px; background: var(--gold); color: var(--navy); }
.fleet-badge strong { font-family: var(--display); font-size: 1.3rem; font-weight: 800; font-stretch: 105%; line-height: 1.1; letter-spacing: -0.02em; }
.fleet-badge span { font-size: .9rem; font-weight: 600; }
.fleet-inset { position: absolute; right: -20px; bottom: 0; width: 40%; margin: 0; border: 6px solid var(--mist); background: var(--navy); box-shadow: 0 20px 40px -20px rgba(18,26,61,.5); }
.fleet-inset img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.fleet-inset figcaption { padding: 9px 14px; font-family: var(--display); font-size: .9rem; font-weight: 750; font-stretch: 104%; color: #fff; border-top: 3px solid var(--gold); }
.fleet-copy .h2 { margin-bottom: 20px; }
.fleet-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 28px; margin: 32px 0 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.fleet-list li { display: flex; gap: 14px; align-items: flex-start; }
.fleet-ico { flex: none; display: grid; place-items: center; width: 42px; height: 42px; background: var(--navy); }
.fleet-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fleet-list h3 { font-size: 1.02rem; font-weight: 750; font-stretch: 104%; letter-spacing: -0.01em; margin-bottom: 4px; }
.fleet-list p { font-size: .95rem; line-height: 1.55; }

/* ---------- Projects ---------- */
.projects { background: var(--navy); color: rgba(255,255,255,.78); }
.projects .h2, .projects .eyebrow { color: #fff; }
.projects-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.project-visual { position: relative; min-height: 420px; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), calc(100% - 44px) 100%, 0 100%); }
.project-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .4s ease; }
.project-visual img.swap { opacity: 0; }
.project-tag {
  position: absolute;
  left: 0; top: 28px;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.project-list { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,.16); }
.project-list li {
  display: grid;
  grid-template-columns: 1fr auto 28px;
  grid-template-areas: "client val arrow" "work val arrow";
  column-gap: 24px;
  row-gap: 4px;
  align-items: center;
  flex: 1;
  padding: 26px 8px 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  cursor: pointer;
  transition: padding .35s var(--ease), background .3s;
}
.p-client { grid-area: client; font-family: var(--display); font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 750; font-stretch: 108%; letter-spacing: -0.015em; color: #fff; }
.p-work { grid-area: work; font-size: .98rem; color: rgba(255,255,255,.65); }
.p-val { grid-area: val; font-family: var(--display); font-weight: 800; font-stretch: 112%; font-size: 1.02rem; color: var(--gold); }
.p-arrow { grid-area: arrow; width: 22px; height: 22px; color: rgba(255,255,255,.4); transition: color .3s, transform .35s var(--ease); }
.project-list li:hover, .project-list li.is-active { padding-left: 20px; background: rgba(255,255,255,.04); box-shadow: inset 4px 0 0 var(--gold); }
.project-list li.is-active .p-arrow, .project-list li:hover .p-arrow { color: var(--gold); transform: translate(2px, -2px); }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.value { padding: 44px 32px 44px 0; border-top: 1px solid var(--line); }
.value + .value { padding-left: 32px; border-left: 1px solid var(--line); }
.value-icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 32px; border: 2px solid var(--navy); }
.value-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value:hover .value-icon { background: var(--gold); border-color: var(--gold); }
.value h3 { font-size: 1.12rem; font-weight: 750; font-stretch: 108%; letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 12px; }
.value p { font-size: .98rem; }

.mv { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3px; margin-top: 56px; }
.mv-item { padding: clamp(32px, 4vw, 52px); background: var(--navy); color: #fff; }
.mv-item:first-child { background: var(--gold); }
.mv-item:first-child .mv-label, .mv-item:first-child .mv-text { color: var(--navy); }
.mv-label { margin-bottom: 14px; font-family: var(--display); font-size: 13px; font-weight: 800; font-stretch: 115%; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.mv-text { font-family: var(--display); font-size: clamp(1.08rem, 1.5vw, 1.3rem); font-weight: 650; font-stretch: 105%; line-height: 1.3; letter-spacing: -0.015em; }

/* ---------- Team ---------- */
.team { background: var(--mist); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.person {
  position: relative;
  padding: 32px 30px 30px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.person:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(18,26,61,.4); }
.avatar {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  margin-bottom: 26px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 115%;
  font-size: 1.1rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.person h3 { font-size: 1.12rem; font-weight: 750; font-stretch: 108%; letter-spacing: -0.015em; }
.role { margin-top: 2px; font-weight: 650; color: var(--gold-600); }
.person dl { margin: 22px 0 0; display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); }
.person dl div { display: flex; justify-content: space-between; gap: 16px; font-size: .92rem; }
.person dt { color: var(--muted); }
.person dd { margin: 0; font-weight: 650; color: var(--ink); text-align: right; }
.yrs {
  position: absolute;
  top: 30px; right: 28px;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 115%;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.yrs small { font-size: .45em; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.person-lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--navy);
  border-color: var(--navy);
  color: rgba(255,255,255,.8);
}
.person-lead .avatar { width: 76px; height: 76px; margin-bottom: 26px; flex: none; background: var(--gold); color: var(--navy); font-size: 1.7rem; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%); }
.person-lead h3 { color: #fff; font-size: 1.3rem; }
.person-lead .role { color: var(--gold); margin-bottom: 8px; }
.person-lead .bio { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); font-size: .95rem; }

/* ---------- Band + CTA ---------- */
.band { height: clamp(260px, 42vw, 560px); background-size: cover; background-position: center 40%; background-attachment: fixed; }
.cta { position: relative; padding: clamp(96px, 13vw, 180px) 0; text-align: center; color: #fff; overflow: hidden; background: var(--navy-900); }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; filter: grayscale(.3); }
.cta::before {
  content: "";
  position: absolute;
  left: -4vw; bottom: 18%;
  width: 30vw; height: 12px;
  background: var(--gold);
  transform: rotate(-28deg);
  transform-origin: left;
}
.cta-inner { position: relative; }
.cta h2 { color: #fff; font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 800; font-stretch: 105%; line-height: 1.05; letter-spacing: -0.035em; margin-bottom: 22px; }
.cta p { max-width: 560px; margin: 0 auto 38px; font-size: 1.12rem; color: rgba(255,255,255,.82); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-info .h2 { margin-bottom: 36px; }
.contact-lines { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-bottom: 36px; }
.contact-lines a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 700;
  font-stretch: 104%;
  color: var(--ink);
  transition: color .25s, padding .3s var(--ease);
  word-break: break-word;
}
.contact-lines a span { font-family: var(--text); font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.contact-lines a:hover { padding-left: 10px; color: var(--navy-500); }
.offices { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.office { padding: 20px; background: var(--mist); font-size: .92rem; line-height: 1.55; border-top: 3px solid var(--gold); }
.office-tag { margin-bottom: 8px; font-family: var(--display); font-weight: 750; font-stretch: 106%; color: var(--ink); font-size: .95rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--navy);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), calc(100% - 48px) 100%, 0 100%);
}
.contact-form h3 { color: #fff; font-size: 1.35rem; font-weight: 800; font-stretch: 110%; letter-spacing: -0.02em; margin-bottom: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: .88rem; font-weight: 650; color: rgba(255,255,255,.75); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 2px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0;
  transition: border-color .25s, background .25s;
}
.contact-form select option { color: var(--ink); }
.contact-form textarea { resize: vertical; }
.contact-form ::placeholder { color: rgba(255,255,255,.4); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }
.contact-form .invalid { border-color: #ff8a7a; }
.contact-form .btn { align-self: flex-start; margin-top: 8px; }
.form-note { font-size: .85rem; color: rgba(255,255,255,.55); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding-top: clamp(64px, 8vw, 100px); font-size: .95rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .logo { margin-bottom: 22px; }
.footer-brand p { max-width: 34ch; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-h { margin-bottom: 8px; font-family: var(--display); font-size: 13px; font-weight: 800; font-stretch: 115%; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.footer-col a { transition: color .2s; width: fit-content; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; padding-bottom: 32px; border-top: 1px solid rgba(255,255,255,.12); font-size: .88rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { gap: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(3) { padding-left: 0; border-left: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-locations { gap: 24px; }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 7px;
    width: 48px; height: 48px;
    margin-left: auto;
    border: 0;
    background: var(--gold);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 22px; height: 2.5px; background: var(--navy); transition: transform .3s var(--ease); }
  .menu-open .menu-toggle span:first-child { transform: translateY(4.75px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4.75px) rotate(-45deg); }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 12px var(--gutter) 28px;
    background: var(--navy);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, transform .3s var(--ease), visibility .3s;
  }
  .menu-open .nav { opacity: 1; transform: none; visibility: visible; }
  .nav a, .site-header.scrolled .nav a { padding: 14px 0; font-size: 1.1rem; color: #fff; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav a::after { display: none; }
  .menu-open .site-header, .site-header.menu-open { background: var(--navy); }

  .hero-foot { grid-template-columns: 1fr; gap: 28px; }
  .hero-slash { width: 50vw; top: 12%; }
  .split-head, .services-grid, .projects-grid, .contact-grid { grid-template-columns: 1fr; }
  .svc-stage { aspect-ratio: 4 / 4.2; }
  .project-visual { min-height: 300px; }
  .mv { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-media { padding-bottom: 0; }
  .fleet-inset { position: relative; right: auto; width: 62%; margin: -24px 0 0 auto; }
  .band { background-attachment: scroll; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .stats-grid { gap: 12px; }
  .stat { padding: 22px 18px; }
  .stat-icon { margin-bottom: 28px; width: 42px; height: 42px; }
  .hero-locations { flex-direction: column; gap: 14px; }
  .values-grid { grid-template-columns: 1fr; }
  .value, .value + .value { padding: 32px 0; border-left: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .field-row, .offices, .fleet-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .svc-card { left: 24px; right: 24px; bottom: 28px; }
  .svc-stage { aspect-ratio: 3 / 4; }
  .svc-card h3 { font-size: 1.3rem; }
  .svc-card li { font-size: .82rem; }
  .hero-kicker { font-size: 11px; letter-spacing: .08em; }
  .rail-card { flex-basis: 84vw; }
  .project-list li { grid-template-columns: 1fr auto; grid-template-areas: "client val" "work val"; }
  .p-arrow { display: none; }
  .btn > span:first-child { padding: 14px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
