/* Nehvonen 2.0 — cinematic fleet journal
   Loaded after the legacy styles so the redesign can be released safely. */

:root {
  --v2-ink: #050b11;
  --v2-night: #071019;
  --v2-blue: #071d38;
  --v2-blue-bright: #0b3470;
  --v2-orange: #f28c00;
  --v2-orange-light: #ffad32;
  --v2-paper: #e9e5dc;
  --v2-paper-light: #f6f3ec;
  --v2-steel: #9ba8b3;
  --v2-white: #fff;
  --v2-container: 1420px;
  --v2-gutter: clamp(20px, 4vw, 72px);
  --v2-section: clamp(88px, 10vw, 168px);
  --v2-radius: 4px;
  --v2-heading: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --v2-body: "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--v2-night);
}

body.neh-v2 {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--v2-night);
  background: var(--v2-paper-light);
  font-family: var(--v2-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.neh-v2 *,
.neh-v2 *::before,
.neh-v2 *::after { box-sizing: border-box; }
.neh-v2 img { display: block; max-width: 100%; }
.neh-v2 a { color: inherit; }

.neh-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #071019;
  background: #fff;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.neh-skip-link:focus { transform: translateY(0); }

.neh-scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.neh-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--v2-orange), var(--v2-orange-light));
  transform: scaleX(var(--neh-progress, 0));
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(242, 140, 0, .65);
}

.neh-v2-container {
  width: min(calc(100% - (var(--v2-gutter) * 2)), var(--v2-container));
  margin-inline: auto;
}

.neh-v2-kicker {
  margin: 0 0 18px;
  color: #a74400;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.neh-v2 h1,
.neh-v2 h2,
.neh-v2 h3 {
  font-family: var(--v2-heading);
  font-weight: 900;
  text-wrap: balance;
}

.neh-section-label {
  display: flex;
  gap: 13px;
  align-items: center;
  align-self: start;
  color: #42505b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.neh-section-label::after {
  width: 64px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: .42;
}
.neh-section-label span { color: #a74400; }
.neh-section-label--light { color: rgba(255,255,255,.9); }
.neh-section-label--light span { color: var(--v2-orange-light); }

/* Header */
.neh-v2 .neh-site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  display: block;
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background: linear-gradient(180deg, rgba(3,8,13,.86), rgba(3,8,13,.46) 70%, transparent);
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(0);
  transition: background .35s ease, transform .3s ease, backdrop-filter .35s ease;
}
.neh-v2 .neh-site-header.is-scrolled {
  background: rgba(5,11,17,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px) saturate(130%);
}
.neh-v2 .neh-site-header.neh-header--hidden { transform: translateY(-110%); }
.neh-v2 .neh-site-header-inner {
  display: flex;
  width: min(calc(100% - (var(--v2-gutter) * 2)), var(--v2-container));
  max-width: var(--v2-container);
  min-height: 84px;
  margin: 0 auto;
  padding: 10px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.neh-v2 .neh-header-logo {
  display: block;
  width: clamp(168px, 14vw, 218px);
  max-width: 38vw;
  flex: 0 0 auto;
}
.neh-v2 .neh-header-logo img { width: 100%; height: auto; }
.neh-v2 .neh-main-nav {
  position: static;
  display: flex;
  width: auto;
  padding: 0;
  align-items: center;
  gap: clamp(10px, 1.8vw, 30px);
  background: none;
  border: 0;
  box-shadow: none;
}
.neh-v2 .neh-main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  padding: 0 2px;
  align-items: center;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}
.neh-v2 .neh-main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--v2-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.neh-v2 .neh-main-nav a:hover,
.neh-v2 .neh-main-nav a:focus-visible,
.neh-v2 .neh-main-nav a[aria-current="page"] { color: #fff; }
.neh-v2 .neh-main-nav a:hover::after,
.neh-v2 .neh-main-nav a:focus-visible::after,
.neh-v2 .neh-main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.neh-v2 .neh-main-nav .neh-nav-contact {
  min-height: 44px;
  padding: 0 19px;
  color: var(--v2-night);
  background: var(--v2-orange);
}
.neh-v2 .neh-main-nav .neh-nav-contact::after { display: none; }
.neh-v2 .neh-nav-button { display: none; }

/* Hero */
.neh-v2-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #02070c;
  isolation: isolate;
}
.neh-v2-hero__media,
.neh-v2-hero__media img,
.neh-v2-hero__shade,
.neh-v2-hero__grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.neh-v2-hero__media { z-index: -3; margin: 0; }
.neh-v2-hero__media img {
  max-width: none;
  object-fit: cover;
  object-position: 57% center;
  animation: neh-v2-drift 18s ease-in-out infinite alternate;
}
.neh-v2-hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2,7,12,.94) 0%, rgba(2,7,12,.67) 33%, rgba(2,7,12,.08) 68%, rgba(2,7,12,.24) 100%),
    linear-gradient(180deg, rgba(2,7,12,.42), transparent 30%, rgba(2,7,12,.16) 68%, rgba(2,7,12,.93));
}
.neh-v2-hero__grid {
  z-index: -1;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}
.neh-v2-hero__inner {
  display: flex;
  width: min(calc(100% - (var(--v2-gutter) * 2)), var(--v2-container));
  min-width: 0;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(130px, 18vh, 220px) 0 clamp(100px, 13vh, 150px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.neh-v2-hero__logo { width: clamp(250px, 26vw, 430px); margin: 0 0 clamp(36px, 6vh, 66px); }
.neh-v2-hero__logo img { width: 100%; height: auto; filter: drop-shadow(0 14px 30px rgba(0,0,0,.4)); }
.neh-v2-eyebrow {
  margin: 0 0 18px;
  color: var(--v2-orange-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.neh-v2-hero h1 {
  max-width: 1100px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 6.4vw, 108px);
  line-height: .88;
  letter-spacing: -.06em;
  text-transform: uppercase;
  text-shadow: 0 10px 34px rgba(0,0,0,.55);
}
.neh-v2-scroll-cue {
  position: absolute;
  right: var(--v2-gutter);
  bottom: 40px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}
.neh-v2-scroll-cue svg { width: 24px; fill: none; stroke: var(--v2-orange); stroke-width: 1.8; animation: neh-v2-bounce 1.8s ease-in-out infinite; }

/* Proof rail */
.neh-proof-rail { color: #fff; background: var(--v2-orange); }
.neh-proof-rail__inner {
  display: grid;
  width: min(calc(100% - (var(--v2-gutter) * 2)), var(--v2-container));
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}
.neh-proof-rail__inner > div {
  display: flex;
  min-height: 116px;
  padding: 22px clamp(18px, 2.5vw, 38px);
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(5,11,17,.22);
}
.neh-proof-rail__inner > div:first-child { border-left: 1px solid rgba(5,11,17,.22); }
.neh-proof-rail strong { color: var(--v2-night); font-family: var(--v2-heading); font-size: clamp(28px, 3vw, 46px); letter-spacing: -.05em; }
.neh-proof-rail span { max-width: 130px; color: rgba(5,11,17,.75); font-size: 11px; font-weight: 800; letter-spacing: .06em; line-height: 1.35; text-transform: uppercase; }

/* Manifesto */
.neh-manifesto { padding: var(--v2-section) 0; background: var(--v2-paper); }
.neh-manifesto__grid { display: grid; grid-template-columns: minmax(140px, .32fr) 1fr; gap: clamp(36px, 7vw, 130px); }
.neh-manifesto__copy { max-width: 1050px; }
.neh-manifesto h2 {
  max-width: 1000px;
  margin: 0 0 clamp(54px, 7vw, 92px);
  color: var(--v2-night);
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
}
.neh-manifesto__columns { display: grid; max-width: 940px; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 6vw, 90px); }
.neh-manifesto__columns p { margin: 0; color: #35414a; font-size: clamp(16px, 1.25vw, 20px); line-height: 1.72; }
.neh-manifesto__columns strong { color: var(--v2-night); }

/* Services */
.neh-v2-services { padding: var(--v2-section) 0; color: #fff; background: var(--v2-night); }
.neh-v2-section-head {
  display: grid;
  margin-bottom: clamp(54px, 7vw, 100px);
  grid-template-columns: minmax(140px, .32fr) 1fr;
  gap: clamp(36px, 7vw, 130px);
}
.neh-v2-services .neh-v2-kicker { color: var(--v2-orange-light); }
.neh-v2-section-head h2 { margin: 0; font-size: clamp(46px, 5.8vw, 88px); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.neh-service-matrix { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(270px, 28vw, 420px); gap: 12px; }
.neh-service-tile {
  position: relative;
  display: flex;
  grid-column: span 4;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(24px, 3vw, 42px);
  align-items: flex-end;
  color: #fff;
  background: #0b1b2b;
  text-decoration: none;
  isolation: isolate;
}
.neh-service-tile--wide { grid-column: span 8; }
.neh-service-tile--tall { grid-row: span 2; }
.neh-service-tile > img { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.neh-service-tile__shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(180deg, rgba(3,8,13,.06), rgba(3,8,13,.22) 38%, rgba(3,8,13,.94)); transition: background .4s ease; }
.neh-service-tile::after { position: absolute; z-index: -1; inset: 0; border: 1px solid rgba(255,255,255,.12); content: ""; pointer-events: none; }
.neh-service-tile__number { position: absolute; top: 26px; right: 28px; color: var(--v2-orange-light); font-family: var(--v2-heading); font-size: 14px; font-weight: 900; letter-spacing: .1em; }
.neh-service-tile__copy { display: flex; width: 100%; flex-direction: column; align-items: flex-start; }
.neh-service-tile small { margin-bottom: 12px; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.neh-service-tile strong { max-width: 760px; font-family: var(--v2-heading); font-size: clamp(26px, 2.7vw, 46px); line-height: .98; letter-spacing: -.035em; }
.neh-service-tile em { max-height: 0; margin-top: 0; overflow: hidden; color: rgba(255,255,255,.82); font-size: 12px; font-style: normal; font-weight: 800; letter-spacing: .06em; opacity: 0; transition: max-height .3s ease, margin .3s ease, opacity .3s ease; }
.neh-service-tile em b { color: var(--v2-orange-light); }
.neh-service-tile:hover > img,
.neh-service-tile:focus-visible > img { transform: scale(1.055); filter: saturate(1.12); }
.neh-service-tile:hover .neh-service-tile__shade,
.neh-service-tile:focus-visible .neh-service-tile__shade { background: linear-gradient(180deg, rgba(3,8,13,.04), rgba(3,8,13,.18) 30%, rgba(3,8,13,.98)); }
.neh-service-tile:hover em,
.neh-service-tile:focus-visible em { max-height: 30px; margin-top: 18px; opacity: 1; }

.neh-v2-services--overview { padding-block: clamp(86px,10vw,150px); }
.neh-v2-services--overview .neh-v2-section-head { margin-bottom: 0; }
.neh-services-overview__copy { max-width: 980px; }
.neh-services-overview__copy > p:not(.neh-v2-kicker) { max-width: 780px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: clamp(16px,1.5vw,20px); line-height: 1.65; }
.neh-services-overview__link { display: inline-flex; min-height: 54px; margin-top: 34px; padding: 0 22px; align-items: center; gap: 16px; color: var(--v2-night); background: var(--v2-orange); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: background-color .2s ease, transform .2s ease; }
.neh-services-overview__link:hover,
.neh-services-overview__link:focus-visible { background: var(--v2-orange-light); transform: translateY(-2px); }

.neh-service-directory-matrix { grid-auto-rows: clamp(360px,31vw,480px); }
.neh-service-directory-matrix .neh-service-tile__shade { background: linear-gradient(180deg,rgba(3,8,13,.03),rgba(3,8,13,.32) 30%,rgba(3,8,13,.97)); }
.neh-service-directory-matrix .neh-service-tile strong { color: #fff; }
.neh-service-directory-matrix .neh-service-tile__description { display: block; max-width: 720px; margin-top: 18px; color: rgba(255,255,255,.78); font-size: clamp(14px,1.1vw,17px); font-weight: 500; line-height: 1.55; }
.neh-service-directory-matrix .neh-service-tile em { max-height: 30px; margin-top: 18px; opacity: 1; }

/* Night shift */
.neh-night-shift { position: relative; min-height: min(900px, 100svh); overflow: hidden; color: #fff; background: #02070c; isolation: isolate; }
.neh-night-shift > img { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.neh-night-shift__shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(2,7,12,.96), rgba(2,7,12,.76) 42%, rgba(2,7,12,.12) 78%), linear-gradient(180deg, rgba(2,7,12,.2), rgba(2,7,12,.58)); }
.neh-night-shift__content { display: grid; min-height: min(900px, 100svh); padding-block: var(--v2-section); grid-template-columns: minmax(140px, .32fr) minmax(0, 780px); gap: clamp(36px, 7vw, 130px); align-items: center; }
.neh-night-shift .neh-v2-kicker { color: var(--v2-orange-light); }
.neh-night-shift h2 { margin: 0 0 28px; font-size: clamp(48px, 6vw, 94px); line-height: .92; letter-spacing: -.06em; text-transform: uppercase; }
.neh-night-shift__content > div:last-child > p:not(.neh-v2-kicker) { max-width: 600px; margin: 0 0 32px; color: rgba(255,255,255,.76); font-size: clamp(16px, 1.3vw, 20px); line-height: 1.68; }

.neh-v2-text-link { display: inline-flex; padding: 12px 0 9px; gap: 15px; align-items: center; border-bottom: 2px solid var(--v2-orange); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.neh-v2-text-link span { color: var(--v2-orange); font-size: 17px; transition: transform .2s ease; }
.neh-v2-text-link:hover span,
.neh-v2-text-link:focus-visible span { transform: translate(3px,-3px); }

/* Heritage */
.neh-heritage { position: relative; overflow: hidden; padding: var(--v2-section) 0; background: var(--v2-paper-light); }
.neh-heritage__grid { position: relative; display: grid; grid-template-columns: minmax(140px,.32fr) minmax(220px,.42fr) 1fr; gap: clamp(30px, 5vw, 92px); align-items: center; }
.neh-heritage__number { color: transparent; font-family: var(--v2-heading); font-size: clamp(150px, 22vw, 380px); font-weight: 900; letter-spacing: -.1em; line-height: .72; -webkit-text-stroke: 2px rgba(7,16,25,.13); }
.neh-heritage h2 { margin: 0 0 28px; font-size: clamp(44px, 5vw, 78px); line-height: .96; letter-spacing: -.055em; }
.neh-heritage__copy > p:not(.neh-v2-kicker) { max-width: 680px; margin: 0; color: #43505a; font-size: 17px; line-height: 1.72; }
.neh-heritage__facts { display: grid; margin-top: 48px; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(7,16,25,.18); }
.neh-heritage__facts div { padding: 24px 16px 0 0; }
.neh-heritage__facts span { color: #a74400; font-family: var(--v2-heading); font-size: 30px; font-weight: 900; }
.neh-heritage__facts p { margin: 7px 0 0; color: #59646c; font-size: 12px; line-height: 1.45; }

/* OAK */
.neh-oak-v2 { padding: clamp(68px,7vw,110px) 0; color: #fff; background: #0c2441; }
.neh-oak-v2__grid { display: grid; grid-template-columns: minmax(260px,.65fr) 1fr; gap: clamp(46px,8vw,140px); align-items: center; }
.neh-oak-v2 figure { margin: 0; padding: clamp(20px,3vw,42px); border-left: 2px solid var(--v2-orange); background: rgba(3,12,23,.18); }
.neh-oak-v2 figure img { width: min(100%,420px); height: auto; margin: 0 auto; }
.neh-oak-v2 .neh-v2-kicker { color: var(--v2-orange-light); }
.neh-oak-v2 h2 { margin: 0 0 24px; font-size: clamp(40px,4.7vw,72px); line-height: .98; letter-spacing: -.05em; }
.neh-oak-v2 p:not(.neh-v2-kicker) { max-width: 720px; margin: 0 0 28px; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.68; }

/* Workplace */
.neh-work-v2 { display: grid; min-height: 800px; grid-template-columns: 1fr 1fr; background: var(--v2-paper); }
.neh-work-v2__media { position: relative; min-height: 680px; overflow: hidden; }
.neh-work-v2__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 70%, rgba(233,229,220,.25)); }
.neh-work-v2__media img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 59% center; }
.neh-work-v2__copy { display: flex; padding: clamp(68px,6vw,96px) clamp(38px,5vw,72px); flex-direction: column; justify-content: center; }
.neh-work-v2__copy .neh-section-label { margin-bottom: clamp(38px,4vw,58px); }
.neh-work-v2 h2 { margin: 0 0 24px; font-size: clamp(40px,4vw,64px); line-height: .98; letter-spacing: -.05em; }
.neh-work-v2__copy > p:not(.neh-v2-kicker) { max-width: 650px; margin: 0 0 16px; color: #3f4b54; font-size: 16.5px; line-height: 1.58; }
.neh-work-v2 .neh-v2-text-link { align-self: flex-start; margin-top: 18px; }
.neh-summer-job { max-width: 650px; margin-top: 16px; padding: 22px 24px; border-left: 3px solid var(--v2-orange); background: #fff; }
.neh-summer-job p { margin: 0 0 14px; color: #3f4b54; font-size: 15px; line-height: 1.5; }
.neh-summer-job p strong { color: var(--v2-night); }
.neh-summer-job a { display: inline-flex; min-height: 44px; padding: 0 18px; align-items: center; gap: 10px; color: var(--v2-night); background: var(--v2-orange); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.neh-summer-job a span { font-variant-numeric: tabular-nums; }

.neh-driver-story-v2 { padding: clamp(34px,4vw,58px) var(--v2-gutter); color: #fff; background: var(--v2-night); }
.neh-driver-story-v2__grid { display: grid; grid-template-columns: 240px minmax(0,1fr) minmax(280px,.8fr); align-items: center; gap: clamp(28px,4vw,58px); }
.neh-driver-story-v2__media { height: 260px; margin: 0; overflow: hidden; }
.neh-driver-story-v2__media img { width: 100%; height: 100%; object-fit: cover; object-position: 74% 66%; }
.neh-driver-story-v2 .neh-v2-kicker { margin-bottom: 10px; }
.neh-driver-story-v2 h3 { margin: 0 0 14px; color: #fff; font-size: clamp(30px,3vw,46px); line-height: 1; letter-spacing: -.04em; }
.neh-driver-story-v2__copy > p:last-child { margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.58; }
.neh-driver-story-v2__quote { margin: 0; padding-left: 24px; border-left: 3px solid var(--v2-orange); }
.neh-driver-story-v2__quote p { margin: 0; color: #fff; font-size: clamp(19px,1.7vw,25px); font-weight: 800; line-height: 1.3; letter-spacing: -.025em; }
.neh-driver-story-v2__quote footer { margin-top: 12px; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.neh-driver-story-v2__quote > footer:first-child { margin: 0 0 12px; }

/* Area */
.neh-area-v2 { padding: var(--v2-section) 0; color: #fff; background: var(--v2-ink); }
.neh-area-v2__grid { display: grid; grid-template-columns: minmax(140px,.32fr) minmax(330px,.65fr) 1fr; gap: clamp(34px,5vw,90px); align-items: center; }
.neh-area-v2__map { position: relative; display: grid; aspect-ratio: 1; place-items: center; }
.neh-map-ring { position: absolute; border: 1px solid rgba(242,140,0,.28); border-radius: 50%; }
.neh-map-ring--1 { width: 35%; height: 35%; }
.neh-map-ring--2 { width: 62%; height: 62%; }
.neh-map-ring--3 { width: 90%; height: 90%; }
.neh-map-pin { position: relative; z-index: 2; width: 16px; height: 16px; border: 4px solid var(--v2-orange); border-radius: 50%; background: #fff; box-shadow: 0 0 0 14px rgba(242,140,0,.12), 0 0 36px rgba(242,140,0,.5); }
.neh-area-v2__map strong { position: absolute; z-index: 2; top: calc(50% + 28px); color: #fff; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.neh-area-v2 .neh-v2-kicker { color: var(--v2-orange-light); }
.neh-area-v2 h2 { margin: 0 0 24px; font-size: clamp(42px,4.8vw,72px); line-height: .98; letter-spacing: -.05em; }
.neh-area-v2__copy > p:not(.neh-v2-kicker) { margin: 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.68; }
.neh-area-v2 ul { display: flex; margin: 36px 0 0; padding: 0; flex-wrap: wrap; gap: 8px; list-style: none; }
.neh-area-v2 li { padding: 9px 13px; border: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.68); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

/* Contact */
.neh-contact-v2 { padding: var(--v2-section) 0 clamp(80px,9vw,130px); color: #fff; background: linear-gradient(145deg,#082757,#071526 56%,#050b11); }
.neh-contact-v2__head { max-width: 1000px; margin: clamp(60px,8vw,110px) 0 clamp(50px,7vw,90px); }
.neh-contact-v2 .neh-v2-kicker { color: var(--v2-orange-light); }
.neh-contact-v2 h2 { margin: 0 0 22px; font-size: clamp(62px,8vw,128px); line-height: .82; letter-spacing: -.065em; text-transform: uppercase; }
.neh-contact-v2__head > p:last-child { max-width: 650px; margin: 0; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.65; }
.neh-contact-v2__people { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid rgba(255,255,255,.16); }
.neh-contact-v2__people a { position: relative; display: grid; padding: clamp(28px,4vw,54px) clamp(18px,3vw,42px); grid-template-columns: auto 1fr auto; gap: 10px 24px; align-items: center; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); text-decoration: none; transition: background .25s ease; }
.neh-contact-v2__people a:first-child { border-left: 1px solid rgba(255,255,255,.16); }
.neh-contact-v2__people a:hover,
.neh-contact-v2__people a:focus-visible { background: rgba(255,255,255,.06); }
.neh-contact-v2__people span { grid-row: 1 / 3; color: var(--v2-orange-light); font-family: var(--v2-heading); font-size: 15px; font-weight: 900; }
.neh-contact-v2__people small { color: rgba(255,255,255,.58); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.neh-contact-v2__people strong { font-family: var(--v2-heading); font-size: clamp(28px,3.8vw,58px); letter-spacing: -.035em; }
.neh-contact-v2__people em { grid-row: 1 / 3; grid-column: 3; font-size: 11px; font-style: normal; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.neh-contact-v2__people em b { color: var(--v2-orange-light); }
.neh-contact-v2__actions { display: flex; margin-top: 44px; align-items: flex-end; justify-content: space-between; gap: 30px; }
.neh-v2 .neh-contact-v2 .neh-v2-button { display: inline-flex; min-height: 58px; padding: 0 25px; align-items: center; gap: 18px; color: #071019 !important; background-color: #f28c00 !important; font-size: 12px; font-weight: 900; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; transition: background-color .2s ease, transform .2s ease; }
.neh-v2-button:hover,
.neh-v2-button:focus-visible { background-color: #ffad32 !important; transform: translateY(-2px); }
.neh-contact-v2 address { color: rgba(255,255,255,.55); font-size: 13px; font-style: normal; line-height: 1.6; text-align: right; }

.neh-footer-v2 { padding: 40px 0; color: rgba(255,255,255,.5); background: #03080d; }
.neh-footer-v2 .neh-v2-container { display: grid; grid-template-columns: 1fr auto auto; gap: 36px; align-items: center; }
.neh-footer-v2 a { width: 180px; }
.neh-footer-v2 a img { width: 100%; height: auto; }
.neh-footer-v2 p { margin: 0; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.neh-mobile-dock { display: none; }

/* Progressive reveal: content stays visible when JavaScript is unavailable. */
.neh-js .neh-reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.neh-js .neh-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Service pages — retain the content, give every service the same new visual system. */
.neh-v2 .neh-service-page { overflow: clip; background: var(--v2-paper-light); }
.neh-v2 .neh-service-page > .neh-hero {
  min-height: min(920px, 94svh);
  height: auto;
  background: var(--v2-ink);
}
.neh-v2 .neh-service-page > .neh-hero::after {
  position: absolute;
  right: var(--v2-gutter);
  bottom: 0;
  left: var(--v2-gutter);
  z-index: 5;
  height: 3px;
  content: "";
  background: linear-gradient(90deg,var(--v2-orange),rgba(242,140,0,0));
}
.neh-v2 .neh-service-page > .neh-hero picture,
.neh-v2 .neh-service-page > .neh-hero .neh-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; }
.neh-v2 .neh-service-page > .neh-hero .neh-hero__image { max-width: none; object-fit: cover; }
.neh-v2 .neh-page-theme-aggregate > .neh-hero .neh-hero__image { content: normal !important; }
.neh-v2 .neh-service-page > .neh-hero .neh-hero__overlay {
  background: linear-gradient(90deg,rgba(3,8,13,.95),rgba(3,8,13,.68) 42%,rgba(3,8,13,.1) 80%), linear-gradient(180deg,rgba(3,8,13,.25),transparent 45%,rgba(3,8,13,.68));
}
.neh-v2 .neh-service-page > .neh-hero .neh-hero__inner {
  display: flex;
  width: min(calc(100% - (var(--v2-gutter) * 2)),var(--v2-container));
  min-height: min(920px,94svh);
  margin: 0 auto;
  padding: 150px 0 90px;
  align-items: flex-end;
}
.neh-v2 .neh-service-page > .neh-hero .neh-hero__content { width: min(100%,920px); max-width: none; margin: 0; text-align: left; }
.neh-v2 .neh-service-page > .neh-hero .neh-kicker { margin-bottom: 16px; color: var(--v2-orange-light); font-size: 11px; letter-spacing: .18em; }
.neh-v2 .neh-service-page > .neh-hero h1 { max-width: 950px; margin: 0; color: #fff; font-size: clamp(54px,7vw,110px); line-height: .88; letter-spacing: -.06em; text-transform: uppercase; }
.neh-v2 .neh-service-page > .neh-hero .neh-hero__content > p:not(.neh-kicker) { max-width: 650px; margin-top: 26px; color: rgba(255,255,255,.74); font-size: clamp(17px,1.4vw,21px); line-height: 1.6; }
.neh-v2 .neh-service-page .neh-section { padding-block: clamp(80px,9vw,140px); }
.neh-v2 .neh-service-page .neh-container { width: min(calc(100% - (var(--v2-gutter) * 2)),var(--v2-container)); max-width: var(--v2-container); }
.neh-v2 .neh-service-page .neh-section__copy h2,
.neh-v2 .neh-service-page .neh-section__head h2 { margin-bottom: 24px; font-size: clamp(40px,4.7vw,72px); line-height: .98; letter-spacing: -.05em; }
.neh-v2 .neh-service-page .neh-section__copy p:not(.neh-kicker),
.neh-v2 .neh-service-page .neh-section__head p:not(.neh-kicker) { font-size: clamp(16px,1.2vw,18px); line-height: 1.72; }
.neh-v2 .neh-service-page .neh-bg--light,
.neh-v2 .neh-service-page .neh-bg--white { background: var(--v2-paper-light); }
.neh-v2 .neh-service-page .neh-bg--dark { background: var(--v2-night); }
.neh-v2 .neh-service-page .neh-layout--split > .neh-section__inner { grid-template-columns: minmax(0,.82fr) minmax(420px,1.18fr); gap: clamp(50px,8vw,130px); }
.neh-v2 .neh-service-page .neh-section__media img,
.neh-v2 .neh-service-page .neh-card--media img { border-radius: 0; box-shadow: none; }
.neh-v2 .neh-service-page .neh-grid--media { gap: 12px; }
.neh-v2 .neh-service-page .neh-card--media { padding: 0 0 32px; border: 0; border-bottom: 1px solid rgba(255,255,255,.16); background: transparent; box-shadow: none; }
.neh-v2 .neh-service-page .neh-card--media img { width: 100%; height: clamp(260px,23vw,410px); margin-bottom: 28px; object-fit: cover; }
.neh-v2 .neh-gallery-item > button.neh-lightbox-open { width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.neh-v2 .neh-service-page .neh-card--media h3 { font-size: clamp(25px,2vw,34px); }
.neh-v2 .neh-service-page .neh-inline-button,
.neh-v2 .neh-service-page .neh-cta-button { border-radius: 0; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.neh-v2 .neh-service-page .neh-note { border-radius: 0; }

/* Service wayfinding and the standalone service directory. */
.neh-breadcrumb { margin: 0 0 24px; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 800; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.neh-breadcrumb ol { display: flex; margin: 0; padding: 0; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; }
.neh-breadcrumb li { display: inline-flex; min-width: 0; align-items: center; gap: 8px; }
.neh-breadcrumb li + li::before { color: var(--v2-orange-light); content: "/"; }
.neh-breadcrumb a { color: inherit; text-underline-offset: 4px; }
.neh-breadcrumb [aria-current="page"] { color: #fff; text-decoration: none; }

.neh-service-back { display: flex; width: 100%; min-height: 68px; margin: 0; padding: 22px max(var(--v2-gutter),calc((100vw - var(--v2-container))/2)); box-sizing: border-box; align-items: center; gap: 12px; color: #fff; border-top: 1px solid rgba(255,255,255,.12); background: #07111b; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.neh-service-back::before { color: var(--v2-orange); content: "\2190"; font-size: 17px; transition: transform .2s ease; }
.neh-service-back:hover::before,
.neh-service-back:focus-visible::before { transform: translateX(-3px); }

.neh-service-directory,
.neh-service-index { padding: var(--v2-section) 0; color: var(--v2-night); background: var(--v2-paper-light); }
.neh-service-directory__head,
.neh-service-index__head { max-width: 920px; margin-bottom: clamp(42px,6vw,76px); }
.neh-service-directory__head h1,
.neh-service-directory__head h2,
.neh-service-index__head h1,
.neh-service-index__head h2 { margin: 0 0 22px; font-size: clamp(44px,5.4vw,82px); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.neh-service-directory__head p,
.neh-service-index__head p { max-width: 680px; margin: 0; color: #43505a; font-size: 17px; line-height: 1.68; }
.neh-service-directory__grid,
.neh-service-index__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.neh-service-directory__grid > a,
.neh-service-directory__card,
.neh-service-index__grid > a,
.neh-service-index__card { position: relative; display: grid; min-height: 230px; padding: clamp(24px,3vw,40px); align-content: space-between; gap: 28px; overflow: hidden; color: #fff; border: 1px solid rgba(255,255,255,.12); background: var(--v2-night); text-decoration: none; isolation: isolate; }
.neh-service-directory__grid > a::before,
.neh-service-directory__card::before,
.neh-service-index__grid > a::before,
.neh-service-index__card::before { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(145deg,rgba(242,140,0,.18),transparent 58%); opacity: 0; transition: opacity .25s ease; }
.neh-service-directory__grid > a:hover::before,
.neh-service-directory__grid > a:focus-visible::before,
.neh-service-directory__card:hover::before,
.neh-service-directory__card:focus-visible::before,
.neh-service-index__grid > a:hover::before,
.neh-service-index__grid > a:focus-visible::before,
.neh-service-index__card:hover::before,
.neh-service-index__card:focus-visible::before { opacity: 1; }
.neh-service-directory__number,
.neh-service-index__number { color: var(--v2-orange-light); font-family: var(--v2-heading); font-size: 14px; font-weight: 900; letter-spacing: .1em; }
.neh-service-directory__title,
.neh-service-index__title { margin: 0; font-family: var(--v2-heading); font-size: clamp(28px,3vw,46px); font-weight: 900; line-height: .98; letter-spacing: -.04em; }
.neh-service-directory__meta,
.neh-service-index__meta { margin: 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.55; }

.neh-services-directory-link { width: fit-content; margin-top: clamp(28px,4vw,48px); }
.neh-lightbox-open .neh-mobile-dock { display: none !important; }

.neh-v2 .neh-contact-block {
  min-height: 0;
  padding: clamp(86px,9vw,140px) var(--v2-gutter);
  color: #fff;
  background: linear-gradient(145deg,#082757,#071526 56%,#050b11);
}
.neh-v2 .neh-contact-inner { width: min(100%,var(--v2-container)); max-width: var(--v2-container); }
.neh-v2 .neh-contact-simple { width: min(100%,920px); max-width: none; margin: 0; text-align: left; }
.neh-v2 .neh-contact-simple h2 { margin-bottom: 44px; color: #fff; font-size: clamp(56px,7vw,108px); line-height: .88; letter-spacing: -.06em; text-transform: uppercase; }
.neh-v2 .neh-contact-details { display: grid; grid-template-columns: repeat(2,minmax(220px,1fr)); gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.neh-v2 .neh-contact-details p { margin: 0; padding: 28px 24px 28px 0; border-bottom: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.6); font-size: 13px; text-transform: uppercase; }
.neh-v2 .neh-contact-details a { display: inline-block; margin-top: 8px; color: #fff; font-family: var(--v2-heading); font-size: clamp(26px,3vw,44px); font-weight: 900; letter-spacing: -.03em; }
.neh-v2 .neh-footer-block { padding: 45px var(--v2-gutter); background: #03080d; }
.neh-v2 .neh-footer-inner { width: min(100%,var(--v2-container)); max-width: var(--v2-container); }

@keyframes neh-v2-drift { from { transform: scale(1); } to { transform: scale(1.035); } }
@keyframes neh-v2-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (min-width: 760px) {
  .neh-v2.neh-service-index-page .neh-service-page > .neh-hero h1 { max-width: 920px; font-size: clamp(54px,6vw,78px); }
}

@media (max-width: 1100px) {
  .neh-proof-rail__inner { grid-template-columns: repeat(2,1fr); }
  .neh-proof-rail__inner > div:nth-child(3) { border-left: 1px solid rgba(5,11,17,.22); border-top: 1px solid rgba(5,11,17,.22); }
  .neh-proof-rail__inner > div:nth-child(4) { border-top: 1px solid rgba(5,11,17,.22); }
  .neh-service-matrix { grid-template-columns: repeat(2,1fr); grid-auto-rows: 360px; }
  .neh-service-tile,
  .neh-service-tile--wide { grid-column: span 1; }
  .neh-service-tile--tall { grid-row: span 1; }
  .neh-heritage__grid { grid-template-columns: 150px 1fr; }
  .neh-heritage__number { position: absolute; z-index: 0; right: -3vw; top: -1vw; opacity: .6; }
  .neh-heritage__copy { position: relative; z-index: 1; grid-column: 2; }
  .neh-area-v2__grid { grid-template-columns: 130px minmax(260px,.65fr) 1fr; }
  .neh-v2 .neh-service-page .neh-layout--split > .neh-section__inner { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (pointer: coarse), (hover: none) {
  .neh-v2 .neh-bg--parallax { background-attachment: scroll !important; }
}

@media (max-width: 900px) {
  :root { --v2-gutter: clamp(20px,4vw,38px); --v2-section: clamp(74px,12vw,118px); }
  .neh-manifesto__grid,
  .neh-v2-section-head,
  .neh-night-shift__content { grid-template-columns: 120px 1fr; gap: 36px; }
  .neh-oak-v2__grid { grid-template-columns: .72fr 1fr; gap: 44px; }
  .neh-work-v2 { grid-template-columns: 1fr; }
  .neh-work-v2__media { min-height: 70svh; }
  .neh-driver-story-v2__grid { grid-template-columns: 220px minmax(0,1fr); }
  .neh-driver-story-v2__quote { grid-column: 2; }
  .neh-area-v2__grid { grid-template-columns: 120px 1fr; }
  .neh-area-v2__map { grid-column: 2; width: min(100%,440px); }
  .neh-area-v2__copy { grid-column: 2; }
  .neh-contact-v2__people a { grid-template-columns: auto 1fr; }
  .neh-contact-v2__people em { display: none; }
}

@media (min-width: 760px) and (max-width: 1020px) {
  .neh-v2 .neh-site-header-inner { min-height: 72px; }
  .neh-v2 .neh-header-logo { width: 176px; }
  .neh-v2 .neh-nav-button {
    position: relative;
    display: flex;
    width: 48px;
    height: 44px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.07);
    cursor: pointer;
  }
  .neh-v2 .neh-nav-button span { display: block; width: 21px; height: 2px; margin: 0; background: #fff; transition: transform .25s ease, opacity .2s ease; }
  .neh-v2 .neh-nav-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .neh-v2 .neh-nav-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .neh-v2 .neh-nav-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .neh-v2 .neh-main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--v2-gutter);
    display: none;
    width: min(360px, calc(100% - (var(--v2-gutter) * 2)));
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(4,10,16,.97);
    box-shadow: 0 24px 60px rgba(0,0,0,.42);
  }
  .neh-v2 .neh-main-nav.is-open { display: flex; }
  .neh-v2 .neh-main-nav a { min-height: 50px; padding: 0 16px; }
  .neh-v2 .neh-main-nav .neh-nav-contact { margin-top: 4px; justify-content: center; }
}

@media (max-width: 759px) {
  html { scroll-padding-top: 70px; }
  body.neh-v2 { padding-bottom: 0; }
  body.neh-v2.is-past-hero { padding-bottom: 64px; }
  .neh-v2 .neh-site-header { background: rgba(4,10,16,.72); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(14px); }
  .neh-v2 .neh-site-header-inner { width: calc(100% - 28px); min-height: 64px; padding: 7px 0; }
  .neh-v2 .neh-header-logo { width: clamp(145px,42vw,174px); max-width: 56vw; }
  .neh-v2 .neh-nav-button {
    position: relative;
    display: flex;
    width: 46px;
    height: 42px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.07);
    cursor: pointer;
  }
  .neh-v2 .neh-nav-button span { display: block; width: 20px; height: 2px; margin: 0; background: #fff; transition: transform .25s ease, opacity .2s ease; }
  .neh-v2 .neh-nav-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .neh-v2 .neh-nav-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .neh-v2 .neh-nav-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .neh-v2 .neh-main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    width: auto;
    padding: 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(4,10,16,.97);
    box-shadow: 0 24px 60px rgba(0,0,0,.42);
  }
  .neh-v2 .neh-main-nav.is-open { display: flex; }
  .neh-v2 .neh-main-nav a { min-height: 50px; padding: 0 16px; justify-content: space-between; }
  .neh-v2 .neh-main-nav a::after { right: 16px; bottom: 8px; left: 16px; }
  .neh-v2 .neh-main-nav .neh-nav-contact { margin-top: 4px; justify-content: center; }

  .neh-v2-hero { min-height: 100svh; }
  .neh-v2-hero__media img { object-position: 57% center; animation: none; }
  .neh-v2-hero__shade { background: linear-gradient(180deg,rgba(2,7,12,.05),rgba(2,7,12,.05) 47%,rgba(2,7,12,.92) 82%,rgba(2,7,12,.99)); }
  .neh-v2-hero__grid { display: none; }
  .neh-v2-hero__inner { min-height: 100svh; padding: 100px 0 72px; justify-content: flex-end; align-items: center; text-align: center; }
  .neh-v2-hero__logo { display: none; }
  .neh-v2-eyebrow { font-size: 9px; letter-spacing: .15em; }
  .neh-v2-hero__inner { width: calc(100% - 40px); max-width: calc(100% - 40px); }
  .neh-v2-hero h1 { width: 100%; max-width: 100%; font-size: clamp(25px,7.8vw,38px); line-height: .96; letter-spacing: -.052em; }
  .neh-v2-scroll-cue { right: 50%; bottom: 18px; min-height: 36px; transform: translateX(50%); }
  .neh-v2-scroll-cue span { display: none; }

  .neh-proof-rail { overflow: hidden; }
  .neh-proof-rail__inner { display: grid; width: 100%; margin: 0; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .neh-proof-rail__inner > div { width: auto; min-width: 0; min-height: 104px; padding: 15px 20px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 3px; border: 0; border-right: 1px solid rgba(5,11,17,.22) !important; border-bottom: 1px solid rgba(5,11,17,.22) !important; }
  .neh-proof-rail__inner > div:nth-child(odd) { border-left: 1px solid rgba(5,11,17,.22) !important; }
  .neh-proof-rail strong { font-size: 30px; }
  .neh-proof-rail span { max-width: 100%; font-size: 9px; overflow-wrap: normal; word-break: normal; hyphens: none; }

  .neh-section-label { margin-bottom: 42px; flex-wrap: wrap; font-size: 9px; letter-spacing: .1em; white-space: normal; }
  .neh-section-label::after { flex: 1 1 36px; max-width: 64px; }
  .neh-manifesto__grid,
  .neh-v2-section-head,
  .neh-night-shift__content,
  .neh-heritage__grid,
  .neh-area-v2__grid { display: block; }
  .neh-manifesto h2 { margin-bottom: 42px; font-size: clamp(34px,10.3vw,50px); }
  .neh-manifesto__columns { display: block; }
  .neh-manifesto__columns p + p { margin-top: 22px; }

  .neh-v2-section-head h2 { max-width: 100%; font-size: clamp(28px,8vw,42px); }
  .neh-v2-services { padding-block: 64px; }
  .neh-v2-section-head { margin-bottom: 38px; }
  .neh-service-matrix { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; gap: 8px; }
  .neh-service-tile,
  .neh-service-tile--wide,
  .neh-service-tile--tall { min-height: clamp(186px,58vw,226px); grid-column: auto; grid-row: auto; padding: 20px; }
  .neh-service-tile__number { top: 18px; right: 18px; }
  .neh-service-tile small { margin-bottom: 8px; }
  .neh-service-tile strong { max-width: 100%; min-width: 0; font-size: clamp(18px,5.4vw,27px); }
  .neh-service-tile em { max-height: 30px; margin-top: 11px; opacity: 1; }
  .neh-v2-services--overview { padding-block: 64px; }
  .neh-v2-services--overview .neh-v2-section-head { margin-bottom: 0; }
  .neh-services-overview__copy > p:not(.neh-v2-kicker) { margin-top: 22px; font-size: 16px; line-height: 1.58; }
  .neh-services-overview__link { width: 100%; min-height: 52px; margin-top: 28px; justify-content: center; }
  .neh-service-directory-matrix .neh-service-tile,
  .neh-service-directory-matrix .neh-service-tile--wide,
  .neh-service-directory-matrix .neh-service-tile--tall { min-height: clamp(340px,96vw,390px); padding: 22px 20px; }
  .neh-service-directory-matrix .neh-service-tile__description { margin-top: 14px; font-size: 14px; line-height: 1.48; }
  .neh-service-directory-matrix .neh-service-tile em { margin-top: 14px; }

  .neh-night-shift { min-height: clamp(430px,64svh,540px); }
  .neh-night-shift__shade { background: linear-gradient(180deg,rgba(2,7,12,.12),rgba(2,7,12,.4) 44%,rgba(2,7,12,.97) 82%); }
  .neh-night-shift__content { display: flex; min-height: clamp(430px,64svh,540px); padding-block: 50px; flex-direction: column; justify-content: flex-end; align-items: flex-start; }
  .neh-night-shift .neh-section-label { margin-bottom: 28px; }
  .neh-night-shift h2 { margin-bottom: 20px; font-size: clamp(31px,9vw,43px); }
  .neh-night-shift__content > div:last-child > p:not(.neh-v2-kicker) { margin-bottom: 24px; font-size: 16px; line-height: 1.58; }

  .neh-heritage { padding: 60px 0 54px; }
  .neh-heritage .neh-section-label { margin-bottom: 30px; }
  .neh-heritage__number { position: absolute; top: 72px; right: -12px; font-size: 132px; opacity: .5; }
  .neh-heritage__copy { position: relative; }
  .neh-heritage h2 { margin-bottom: 20px; font-size: clamp(28px,7.8vw,38px); }
  .neh-heritage__copy > p:not(.neh-v2-kicker) { font-size: 16px; line-height: 1.58; }
  .neh-heritage__facts { margin-top: 28px; grid-template-columns: 1fr; }
  .neh-heritage__facts div { display: grid; padding: 12px 0; grid-template-columns: 76px 1fr; align-items: center; border-bottom: 1px solid rgba(7,16,25,.13); }
  .neh-heritage__facts span { font-size: 25px; }
  .neh-heritage__facts p { margin: 0; }

  .neh-oak-v2 { padding: 56px 0; }
  .neh-oak-v2__grid { display: flex; flex-direction: column; align-items: stretch; gap: 28px; }
  .neh-oak-v2 figure { order: 2; padding: 20px; }
  .neh-oak-v2 figure img { width: min(100%,260px); }
  .neh-oak-v2 h2 { max-width: 100%; margin-bottom: 18px; font-size: clamp(26px,7vw,34px); }
  .neh-oak-v2 p:not(.neh-v2-kicker) { margin-bottom: 0; font-size: 16px; line-height: 1.58; }

  .neh-work-v2 { display: flex; min-height: 0; flex-direction: column; }
  .neh-work-v2__media { min-height: clamp(290px,44svh,400px); }
  .neh-work-v2__copy { padding: 56px var(--v2-gutter) 62px; }
  .neh-work-v2__copy .neh-section-label { margin-bottom: 30px; }
  .neh-work-v2 h2 { margin-bottom: 20px; font-size: clamp(29px,7.8vw,38px); }
  .neh-work-v2__copy > p:not(.neh-v2-kicker) { margin-bottom: 14px; font-size: 16px; line-height: 1.58; }
  .neh-work-v2 .neh-v2-text-link { margin-top: 12px; }
  .neh-summer-job { margin-top: 14px; padding: 20px; }
  .neh-summer-job a { width: 100%; justify-content: center; }
  .neh-driver-story-v2 { padding: 28px var(--v2-gutter) 34px; }
  .neh-driver-story-v2__grid { grid-template-columns: 1fr; gap: 24px; }
  .neh-driver-story-v2__media { height: 260px; }
  .neh-driver-story-v2 h3 { font-size: 34px; }
  .neh-driver-story-v2__quote { grid-column: auto; padding-left: 20px; }

  .neh-area-v2 { padding: 58px 0; }
  .neh-area-v2 .neh-section-label { margin-bottom: 28px; }
  .neh-area-v2__map { width: min(100%,220px); margin: 0 auto 32px; }
  .neh-area-v2 h2 { max-width: 100%; margin-bottom: 18px; font-size: clamp(27px,7.2vw,34px); }
  .neh-area-v2__copy > p:not(.neh-v2-kicker) { font-size: 16px; line-height: 1.58; }
  .neh-area-v2 ul { margin-top: 24px; gap: 6px; }
  .neh-area-v2 li { padding: 7px 10px; }

  .neh-contact-v2 h2 { font-size: clamp(34px,9.5vw,50px); }
  .neh-contact-v2__people { grid-template-columns: 1fr; }
  .neh-contact-v2__people a,
  .neh-contact-v2__people a:first-child { padding-inline: 0; border-right: 0; border-left: 0; }
  .neh-contact-v2__actions { align-items: stretch; flex-direction: column; }
  .neh-v2-button { justify-content: center; }
  .neh-contact-v2 address { text-align: left; }
  .neh-footer-v2 .neh-v2-container { grid-template-columns: 1fr; gap: 20px; }
  .neh-footer-v2 a { width: 160px; }

  .neh-mobile-dock {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(3,8,13,.94);
    border-top: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(16px);
    transform: translateY(110%);
    transition: transform .3s ease;
  }
  .is-past-hero .neh-mobile-dock { transform: translateY(0); }
  .neh-mobile-dock a { display: flex; min-height: 64px; align-items: center; justify-content: center; gap: 9px; color: #fff; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
  .neh-mobile-dock a + a { border-left: 1px solid rgba(255,255,255,.13); color: var(--v2-orange-light); }

  .neh-v2 .neh-service-page > .neh-hero { min-height: 94svh; }
  .neh-v2 .neh-service-page > .neh-hero .neh-hero__inner { width: calc(100% - (var(--v2-gutter) * 2)); min-height: 94svh; padding: 110px 0 50px; }
  .neh-v2 .neh-service-page > .neh-hero h1 { max-width: 100%; font-size: clamp(19px,6vw,30px); line-height: .99; letter-spacing: -.05em; }
  .neh-v2 .neh-service-page > .neh-hero .neh-hero__content > p:not(.neh-kicker) { font-size: 16px; line-height: 1.58; }
  .neh-v2 .neh-service-page .neh-section { padding-block: 74px; }
  .neh-v2 .neh-service-page .neh-layout--split > .neh-section__inner { display: flex; flex-direction: column; gap: 44px; }
  .neh-v2 .neh-service-page .neh-section__copy h2,
  .neh-v2 .neh-service-page .neh-section__head h2 { font-size: clamp(19px,6.2vw,29px) !important; }
  .neh-v2 .neh-contact-block { padding: 82px var(--v2-gutter); }
  .neh-v2 .neh-contact-simple h2 { font-size: clamp(32px,9vw,48px); }
  .neh-v2 .neh-contact-details { grid-template-columns: 1fr; }

  .neh-breadcrumb { margin-bottom: 18px; font-size: 10px; letter-spacing: .06em; }
  .neh-service-back { width: 100%; min-height: 62px; padding-block: 19px; }
  .neh-service-directory,
  .neh-service-index { padding: 64px 0; }
  .neh-service-directory__head,
  .neh-service-index__head { margin-bottom: 36px; }
  .neh-service-directory__head h1,
  .neh-service-directory__head h2,
  .neh-service-index__head h1,
  .neh-service-index__head h2 { margin-bottom: 18px; font-size: clamp(32px,9vw,44px); }
  .neh-service-directory__head p,
  .neh-service-index__head p { font-size: 16px; line-height: 1.58; }
  .neh-service-directory__grid,
  .neh-service-index__grid { grid-template-columns: 1fr; gap: 8px; }
  .neh-service-directory__grid > a,
  .neh-service-directory__card,
  .neh-service-index__grid > a,
  .neh-service-index__card { min-height: 164px; padding: 22px 20px; gap: 22px; }
  .neh-service-directory__title,
  .neh-service-index__title { font-size: clamp(24px,7vw,32px); }

  /* The legacy home-hero rules hide supporting copy and actions on mobile.
     A 404 page needs both in order to recover from the dead end. */
  .neh-v2 .neh-hero--notfound .neh-hero__inner { padding: 116px var(--v2-gutter) 38px; align-items: flex-end; }
  .neh-v2 .neh-hero--notfound .neh-hero__content { text-align: left; }
  .neh-v2 .neh-hero--notfound .neh-hero__content h1 { margin-inline: 0; font-size: clamp(40px,12vw,58px); text-align: left; }
  .neh-v2 .neh-hero--notfound .neh-hero__content p:not(.neh-kicker) { display: block; margin: 18px 0 0; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.55; }
  .neh-v2 .neh-hero--notfound .neh-hero__content .neh-cta-buttons { display: flex; margin-top: 24px; gap: 10px; }
  .neh-v2 .neh-hero--notfound .neh-cta-button { min-height: 50px; padding-inline: 18px; flex: 1 1 0; justify-content: center; }

  /* Keep Finnish compound words intact. Fluid sizes above make the longest
     service names fit without emergency mid-word wrapping on small screens. */
  .neh-v2 :is(
    .neh-v2-hero h1,
    .neh-v2-section-head h2,
    .neh-manifesto h2,
    .neh-night-shift h2,
    .neh-heritage h2,
    .neh-oak-v2 h2,
    .neh-work-v2 h2,
    .neh-area-v2 h2,
    .neh-contact-v2 h2,
    .neh-service-tile strong,
    .neh-service-page h1,
    .neh-service-page h2,
    .neh-service-page h3,
    .neh-service-directory__title,
    .neh-service-index__title
  ) {
    max-inline-size: 100%;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    text-wrap: balance;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .neh-v2 *, .neh-v2 *::before, .neh-v2 *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .neh-js .neh-reveal { opacity: 1; transform: none; }
}
