/* Lakehead Constructors mockup. Bear North Digital, 2026.
   Palette sampled from the client logo: black, orange f85000, gold f8c800.
   Display: Bitter (slab). Body/UI: Archivo (grotesque). */

:root {
  --ink: #16181b;
  --ink-2: #22262b;
  --ink-3: #2e343b;
  --paper: #f7f6f2;
  --paper-2: #eeece6;
  --white: #ffffff;
  --line: #ddd9d0;
  --line-dark: #3a4046;
  --orange: #ef5601;
  --orange-deep: #c94800;
  --gold: #f2b705;
  --text: #2b2f34;
  --muted: #5c6570;
  --muted-light: #aab3bc;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(22, 24, 27, .10);
  --shadow-lg: 0 18px 50px rgba(22, 24, 27, .16);
  --gutter: clamp(20px, 4vw, 48px);
  --font-display: "Bitter", Georgia, serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--gold); color: var(--ink); }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--orange);
  flex: none;
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); }

.section-head { max-width: 780px; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  margin: 14px 0 14px;
}
.section-head p { color: var(--muted); font-size: 17.5px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 17px 30px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(239, 86, 1, .38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(239, 86, 1, .48); background: #ff6812; }
.btn-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(22, 24, 27, .25);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(22, 24, 27, .32); }
.btn-ink { background: var(--ink); color: var(--white); box-shadow: 0 8px 22px rgba(22,24,27,.3); }
.btn-ink:hover { transform: translateY(-2px); background: var(--ink-3); }

/* CTA unit: button + "or call" on one line (anchor pattern) */
.cta-unit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-unit .or-call { font-size: 17px; font-weight: 600; color: var(--white); white-space: nowrap; }
.cta-unit .or-call a { color: var(--white); font-weight: 800; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.cta-unit .or-call a:hover { color: var(--gold); }

/* ============ Utility bar ============ */
.utility {
  background: var(--ink);
  color: var(--muted-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.utility .container { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.utility .offices { display: flex; gap: 18px; white-space: nowrap; overflow: hidden; }
.utility .offices span b { color: var(--white); font-weight: 700; }
.utility .u-right { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.utility .u-right a { color: var(--white); text-decoration: none; }
.utility .u-right a:hover { color: var(--gold); }
.utility .est { color: var(--gold); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

/* ============ Header / nav ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(22,24,27,.06);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > .nav-item { position: relative; }
.nav a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 8px;
}
.nav a.nav-link:hover { background: var(--paper-2); color: var(--orange-deep); }
.nav .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
}
.dropdown a:hover { background: var(--paper-2); color: var(--orange-deep); }
.head-actions { display: flex; align-items: center; gap: 18px; flex: none; }
.head-phone { text-align: right; text-decoration: none; }
.head-phone .hp-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.head-phone .hp-num { display: block; font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--ink); }
.head-phone:hover .hp-num { color: var(--orange-deep); }
.head-actions .btn { padding: 14px 24px; font-size: 13px; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: var(--ink);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  padding: 12px 11px;
}
.hamburger span { display: block; height: 2.5px; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* ============ Mobile drawer ============ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(16,18,20,.55);
  opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 90;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--ink);
  color: var(--white);
  z-index: 100;
  transform: translateX(103%);
  visibility: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), visibility 0s .3s;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); visibility: visible; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line-dark); }
.drawer-head img { height: 38px; width: auto; background: var(--white); padding: 5px 10px; border-radius: 8px; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--line-dark); background: transparent; border-radius: 10px; color: var(--white); font-size: 20px; cursor: pointer; line-height: 1; }
.drawer-nav { flex: 1; overflow-y: auto; padding: 10px 22px 20px; }
.drawer-nav .d-link, .drawer-acc-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 15px 2px;
  font-family: var(--font-body);
  font-size: 17px; font-weight: 700; color: var(--white);
  text-decoration: none; background: none; border: 0; border-bottom: 1px solid var(--line-dark);
  cursor: pointer; text-align: left;
}
.drawer-acc-btn .caret { width: 10px; height: 10px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); transition: transform .2s ease; flex: none; margin-right: 4px; }
.drawer-acc-btn[aria-expanded="true"] .caret { transform: rotate(225deg); }
.drawer-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.drawer-panel a { display: block; padding: 11px 14px; font-size: 15.5px; font-weight: 500; color: var(--muted-light); text-decoration: none; }
.drawer-panel a:hover { color: var(--gold); }
.drawer-cta { padding: 20px 22px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line-dark); background: var(--ink-2); }
.drawer-cta .btn { width: 100%; margin-bottom: 14px; }
.drawer-call { display: block; text-align: center; font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--white); text-decoration: none; margin-bottom: 10px; }
.drawer-call:hover { color: var(--gold); }
.drawer-meta { text-align: center; font-size: 13px; color: var(--muted-light); }

/* ============ Hero ============ */
.hero { position: relative; background: var(--ink); isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 74% 58%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(92deg, rgba(15,17,19,.93) 0%, rgba(15,17,19,.82) 34%, rgba(15,17,19,.45) 62%, rgba(15,17,19,.18) 100%);
}
.hero .container { padding-top: clamp(56px, 7vw, 92px); padding-bottom: clamp(44px, 6vw, 72px); }
.hero-inner { max-width: 700px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; white-space: nowrap;
}
.hero-kicker::before { content: ""; width: 30px; height: 3px; background: var(--orange); }
.hero h1 {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted-light); margin-bottom: 14px;
}
.hero .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -.015em;
}
.hero .hero-headline em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 18.5px; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 32px; }
.hero .cta-unit { margin-bottom: 38px; }

/* cert badge row under the CTA (anchor pattern) */
.cert-row { display: flex; align-items: stretch; gap: 12px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.22); padding-top: 26px; max-width: 820px; }
.cert-badge {
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  padding: 10px 16px;
  backdrop-filter: blur(4px);
}
.cert-badge b { font-family: var(--font-display); font-size: 15.5px; font-weight: 800; color: var(--white); line-height: 1.25; }
.cert-badge span { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-light); }

/* anniversary seal (signature device) */
.hero-seal {
  position: absolute;
  right: clamp(28px, 6vw, 84px);
  bottom: -64px;
  width: 148px; height: 148px;
  z-index: 6;
  transform: rotate(-8deg);
  filter: drop-shadow(0 12px 26px rgba(22, 24, 27, .3));
  pointer-events: none;
}
@media (max-width: 1120px) { .hero-seal { display: none; } }

/* ============ Client wall (marquee) ============ */
.clients { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 34px 0 38px; }
.clients .clients-label { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.marquee { overflow: hidden; position: relative; }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 36s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-mark {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  white-space: nowrap; text-align: center;
}
.client-mark img {
  height: 34px; width: auto; max-width: 170px; object-fit: contain;
  filter: grayscale(1) opacity(.62);
  transition: filter .25s ease;
}
.client-mark img.sq { height: 46px; }
.client-mark:hover img { filter: grayscale(0) opacity(1); }
.client-mark small { display: block; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #a3aab2; margin-top: 9px; }
.client-mark::after {
  content: "";
  position: absolute; right: -36px; top: 50%;
  width: 5px; height: 5px; transform: translateY(-50%) rotate(45deg);
  background: var(--gold);
}

/* ============ Stats band ============ */
.stats { background: var(--ink); color: var(--white); padding: 58px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.stat { border-left: 3px solid var(--orange); padding-left: 22px; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(38px, 4vw, 54px); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.stat span { font-size: 14px; font-weight: 600; letter-spacing: .05em; color: var(--muted-light); }

/* ============ Services ============ */
.section { padding: clamp(64px, 8vw, 104px) 0; }
.section.alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 26px 26px 30px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.section.alt .svc-card { background: var(--paper); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-top-color: var(--orange); }
.svc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.svc-ico { width: 30px; height: 30px; flex: none; margin-top: -2px; }
.svc-ico svg { width: 100%; height: 100%; stroke: #9aa2ab; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s ease; }
.svc-card:hover .svc-ico svg { stroke: var(--orange-deep); }
.svc-num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 900; letter-spacing: .1em;
  color: var(--orange-deep);
}
.svc-num::after { content: ""; display: block; width: 22px; height: 2px; background: var(--line); margin-top: 12px; transition: width .25s ease, background .25s ease; }
.svc-card:hover .svc-num::after { width: 44px; background: var(--orange); }
.svc-card h3 { font-size: 19px; font-weight: 800; }
.svc-card p { font-size: 14.5px; color: var(--muted); flex: 1; margin-bottom: 4px; }
.svc-go {
  position: absolute; right: 22px; bottom: 18px;
  font-size: 18px; font-weight: 800; color: var(--line);
  transition: color .2s ease, transform .2s ease;
}
.svc-card:hover .svc-go { color: var(--orange-deep); transform: translateX(4px); }

/* ============ Markets ============ */
.markets-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.mkt-card {
  position: relative;
  width: calc(25% - 17px);
  min-width: 250px;
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  box-shadow: var(--shadow);
}
.mkt-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .35s ease; filter: saturate(.94) contrast(1.04); }
.mkt-card:hover img { transform: scale(1.06); }
.mkt-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(16,18,20,.05) 30%, rgba(16,18,20,.88) 100%); }
.mkt-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; }
.mkt-body h3 { color: var(--white); font-size: 21px; font-weight: 800; margin-bottom: 4px; }
.mkt-body span { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); line-height: 1.5; display: block; }

/* ============ Split sections ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.split-media .media-tag {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--ink); color: var(--white);
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em;
  padding: 9px 16px; border-radius: 8px;
  border-left: 3px solid var(--orange);
}
.split h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin: 14px 0 16px; }
.split p.lede { color: var(--muted); margin-bottom: 22px; }
.checks { list-style: none; display: grid; gap: 13px; margin-bottom: 28px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; font-weight: 600; font-size: 15.5px; }
.checks li svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.checks li b { color: var(--ink); }
.checks li span { display: block; font-weight: 500; color: var(--muted); font-size: 14.5px; }

/* ============ Safety band ============ */
.safety { background: var(--ink-2); color: var(--white); position: relative; overflow: hidden; }
.safety::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 10px;
  background: repeating-linear-gradient(-45deg, var(--gold) 0 18px, var(--ink-2) 18px 36px);
  pointer-events: none;
}
.safety .split { position: relative; }
.safety h2 { color: var(--white); }
.safety p.lede { color: var(--muted-light); }
.safety .checks li b { color: var(--white); }
.safety .checks li span { color: var(--muted-light); }
.award-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.award-chip {
  font-size: 13px; font-weight: 700;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--muted-light);
}
.award-chip b { color: var(--gold); font-weight: 800; }

/* ============ Projects ============ */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proj-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.proj-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.proj-card .pc-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.proj-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; filter: saturate(.94) contrast(1.04); }
.proj-card:hover .pc-media img { transform: scale(1.05); }
.pc-market {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--gold);
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 6px;
}
.pc-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pc-body h3 { font-size: 19px; font-weight: 800; line-height: 1.3; }
.pc-body .pc-owner { font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--orange-deep); }
.pc-body .pc-loc { font-size: 14px; color: var(--muted); margin-top: auto; }

/* filter pills (our work page) */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-pill {
  font-family: var(--font-body);
  font-size: 13.5px; font-weight: 700; letter-spacing: .04em;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all .18s ease;
}
.filter-pill:hover { border-color: var(--orange); color: var(--orange-deep); }
.filter-pill.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ============ Timeline ============ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; margin-top: 50px; }
.timeline::before { content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 2px; background: var(--line); }
.tl-item { position: relative; padding-top: 30px; }
.tl-item::before { content: ""; position: absolute; top: 3px; left: 0; width: 12px; height: 12px; transform: rotate(45deg); background: var(--orange); }
.tl-item .tl-year { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--ink); }
.tl-item h3 { font-size: 16.5px; font-weight: 800; margin: 6px 0 6px; }
.tl-item p { font-size: 14.5px; color: var(--muted); }

/* ============ Testimonials ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow);
}
.testi-card .quote-mark { font-family: var(--font-display); font-size: 54px; font-weight: 900; color: var(--orange); line-height: .6; height: 22px; }
.testi-card blockquote { font-size: 16px; font-style: italic; color: var(--text); flex: 1; }
.testi-who b { display: block; font-family: var(--font-display); font-size: 15.5px; font-weight: 800; color: var(--ink); }
.testi-who span { font-size: 13.5px; color: var(--muted); }

/* ============ Leadership ============ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card .tc-photo { aspect-ratio: 1; overflow: hidden; background: var(--paper-2); }
.team-card .tc-photo img { width: 100%; height: 100%; object-fit: cover; }
.tc-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 56px; font-weight: 900; color: var(--muted-light); background: linear-gradient(160deg, var(--paper-2), var(--line)); }
.team-card .tc-body { padding: 18px 20px 22px; }
.team-card h3 { font-size: 17.5px; font-weight: 800; }
.team-card .tc-role { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--orange-deep); margin-top: 3px; }
.team-card .tc-bio { font-size: 14px; color: var(--muted); margin-top: 10px; }
.team-card .tc-contact { margin-top: 12px; font-size: 13.5px; }
.team-card .tc-contact a { color: var(--ink); font-weight: 700; text-decoration: none; display: block; font-size: 12.5px; overflow-wrap: anywhere; }
.team-card .tc-contact a:hover { color: var(--orange-deep); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 17.5px; font-weight: 800; color: var(--ink);
  padding: 20px 24px; text-align: left;
}
.faq-q .fq-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--paper-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-weight: 800; color: var(--orange-deep); transition: transform .2s ease; }
.faq-item.open .fq-icon { transform: rotate(45deg); background: var(--orange); color: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* ============ Contact / offices ============ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.office-cards { display: grid; gap: 16px; margin-top: 30px; }
.office-card { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; }
.office-card .oc-pin { flex: none; width: 44px; height: 44px; border-radius: 10px; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.office-card .oc-pin svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.office-card h3 { font-size: 16.5px; font-weight: 800; }
.office-card p { font-size: 14.5px; color: var(--muted); }
.office-card a { color: var(--ink); font-weight: 700; text-decoration: none; }
.office-card a:hover { color: var(--orange-deep); }
.lead-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 34px 32px; }
.lead-form h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.lead-form .lf-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.lf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lf-row .lf-field { margin-bottom: 0; }
.lf-field label { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.lf-field input, .lf-field select, .lf-field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--text);
  width: 100%;
}
.lf-field input:focus, .lf-field select:focus, .lf-field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(239,86,1,.18); }
.lead-form .btn { width: 100%; margin-top: 6px; }
.lead-form .lf-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 12px; }

/* ============ Page hero (interior pages) ============ */
.page-hero { position: relative; background: var(--ink); isolation: isolate; }
.page-hero .hero-bg img { object-position: center 55%; }
.page-hero .hero-scrim { background: linear-gradient(92deg, rgba(15,17,19,.94) 0%, rgba(15,17,19,.8) 45%, rgba(15,17,19,.5) 100%); }
.page-hero .container { padding-top: clamp(56px, 6vw, 84px); padding-bottom: clamp(48px, 5vw, 72px); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(34px, 4.6vw, 54px); font-weight: 900; color: var(--white); margin: 12px 0 14px; }
.page-hero p { font-size: 17.5px; color: rgba(255,255,255,.85); max-width: 640px; }
.crumbs { font-size: 13px; font-weight: 600; color: var(--muted-light); margin-bottom: 6px; }
.crumbs a { color: var(--muted-light); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs b { color: var(--gold); font-weight: 700; }

/* ============ CTA band ============ */
.cta-band { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(15,17,19,.93), rgba(15,17,19,.72)); }
.cta-band .container { padding: clamp(64px, 8vw, 100px) var(--gutter); }
.cta-band h2 { color: var(--white); font-size: clamp(30px, 4vw, 46px); font-weight: 900; max-width: 640px; margin: 14px 0 14px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 30px; }

/* ============ Footer ============ */
.footer { background: var(--ink); color: var(--muted-light); overflow: hidden; }
.footer-trust { border-bottom: 1px solid var(--line-dark); background: var(--ink-2); }
.footer-trust .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; padding-top: 24px; padding-bottom: 24px; }
.ft-chip { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .03em; color: var(--muted-light); white-space: nowrap; }
.ft-chip svg { width: 19px; height: 19px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex: none; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .95fr .95fr .95fr 1.5fr; gap: 44px; padding: 60px 0 50px; }
.footer h4 { color: var(--white); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer h4::after { content: ""; display: block; width: 22px; height: 2px; background: var(--orange); margin-top: 9px; }
.footer-brand img { height: 46px; width: auto; background: var(--white); padding: 6px 12px; border-radius: 8px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; line-height: 1.7; }
.footer-brand .pillars { margin-top: 16px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.f-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line-dark); color: var(--muted-light);
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}
.f-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.f-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { font-size: 14.5px; color: var(--muted-light); text-decoration: none; transition: color .15s ease, padding-left .15s ease; }
.footer ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-offices {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 26px 26px 28px;
}
.footer-offices h4 { margin-bottom: 16px; }
.footer .f-office { margin-bottom: 15px; font-size: 13.5px; line-height: 1.55; }
.footer .f-office b { color: var(--white); display: block; font-size: 14px; margin-bottom: 1px; }
.footer .f-office a { color: var(--gold); font-weight: 700; text-decoration: none; font-variant-numeric: tabular-nums; }
.footer .f-office a:hover { color: var(--white); }
.f-hours { font-size: 12.5px; color: var(--muted-light); border-top: 1px solid var(--line-dark); padding-top: 14px; margin-top: 4px; }
.f-hours b { color: var(--white); }
.footer-offices .btn { width: 100%; margin-top: 16px; padding: 14px 20px; font-size: 12.5px; }
.footer-coverage { border-top: 1px solid var(--line-dark); }
.footer-coverage .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 14px;
  padding-top: 22px; padding-bottom: 22px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: #7f8894; text-align: center;
}
.footer-coverage .cv-label { color: var(--gold); }
.footer-coverage .cv-dot { width: 4px; height: 4px; transform: rotate(45deg); background: var(--orange); flex: none; }
.footer-legal { border-top: 1px solid var(--line-dark); }
.footer-legal .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding-top: 20px; padding-bottom: 20px; font-size: 13px; }
.footer-legal a { color: var(--muted-light); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }
.footer-ghost {
  font-family: var(--font-display);
  font-size: clamp(88px, 15.5vw, 224px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: .78;
  text-align: center;
  color: #1e2227;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  margin-bottom: -0.26em;
}
.back-top {
  position: fixed; right: 20px; bottom: 88px; z-index: 50;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--ink); color: var(--gold);
  border: 1px solid var(--line-dark);
  font-size: 18px; cursor: pointer;
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
  box-shadow: var(--shadow);
}
.back-top.show { opacity: 1; visibility: visible; }

/* ============ Mobile sticky CTA bar ============ */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none; border-radius: 10px; padding: 13px 8px; white-space: nowrap;
}
.mobile-cta .m-call { background: var(--ink-3); color: var(--white); border: 1px solid var(--line-dark); }
.mobile-cta .m-quote { background: var(--orange); color: var(--ink); }

/* ============ Reveal animations ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 1120px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .head-actions .btn { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-offices { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-media img { height: 340px; }
  .proj-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .timeline::before { display: none; }
  .utility .offices span:nth-child(n+2) { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .back-top { bottom: 150px; }
  .head-phone { display: none; }
  .brand img { height: 38px; }
  .header .container { height: 66px; }
  .hero .hero-headline { font-size: clamp(34px, 9vw, 44px); }
  .hero-sub { font-size: 16.5px; }
  .hero-kicker { font-size: 10px; letter-spacing: .11em; gap: 8px; }
  .hero-kicker::before { width: 14px; }
  .cert-row { gap: 9px; padding-top: 20px; }
  .cert-badge { padding: 8px 12px; }
  .cert-badge b { font-size: 13.5px; }
  .cert-badge span { font-size: 10px; }
  /* horizontal scroll strips for odd-count grids */
  .services-grid, .markets-grid {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline-start: var(--gutter);
    gap: 14px;
    margin: 0 calc(-1 * var(--gutter));
    padding: 4px var(--gutter) 18px;
  }
  .services-grid::-webkit-scrollbar, .markets-grid::-webkit-scrollbar { height: 6px; }
  .services-grid::-webkit-scrollbar-thumb, .markets-grid::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
  .svc-card { flex: 0 0 78%; max-width: 320px; scroll-snap-align: start; }
  .mkt-card { flex: 0 0 72%; max-width: 300px; min-width: 0; width: auto; scroll-snap-align: start; }
  .proj-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding: 44px 0 34px; }
  .footer-ghost { font-size: clamp(56px, 22vw, 110px); }
  .footer-coverage .container { font-size: 10px; letter-spacing: .12em; }
  .stats-grid { gap: 26px; }
  .stat b { font-size: 34px; }
  .stat span { font-size: 12.5px; }
  .lead-form { padding: 26px 22px; }
  .lf-row { grid-template-columns: 1fr; }
  .cta-unit { gap: 14px; }
  .split-media .media-tag { left: 12px; bottom: 12px; font-size: 11.5px; padding: 7px 12px; }
}
@media (max-width: 480px) {
  .btn { width: 100%; }
  .cta-unit .or-call { width: 100%; text-align: center; }
  .utility .offices { display: none; }
  .utility .container { justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
}
