@font-face {
  font-family: "Gantari";
  src: url("/assets/fonts/Gantari/Gantari-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gantari";
  src: url("/assets/fonts/Gantari/Gantari-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "DNV Display";
  src: url("/assets/fonts/DNVDisplay/DNVDisplay-Light-Web.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DNV Display";
  src: url("/assets/fonts/DNVDisplay/DNVDisplay-Regular-Web.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DNV Display";
  src: url("/assets/fonts/DNVDisplay/DNVDisplay-Medium-Web.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --dnv-navy: #0f214a;
  --dnv-blue: #003591;
  --dnv-cyan: #99d9f0;
  --dnv-green: #3f9c35;
  --dnv-mint: #7ff9a7;
  --dnv-ink: #1a1a19;
  --dnv-soft: #f4f5f6;
  --dnv-pale: #e4f8ff;
  --dnv-line: rgba(15, 33, 74, 0.16);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
  color: var(--dnv-ink);
  font-family: "Gantari", Arial, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--dnv-ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
}

img,
iframe,
video,
svg {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

table {
  max-width: 100%;
}

pre {
  max-width: 100%;
  overflow-x: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  min-height: 60px;
  padding: 0 24px 0 8px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(15, 33, 74, 0.07);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 5px 22px rgba(15, 33, 74, 0.12);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
}

.dnv-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.dnv-logo__bars {
  display: grid;
  grid-template-columns: 55px;
  gap: 2px;
}

.dnv-logo__bars i {
  display: block;
  height: 4px;
  background: var(--dnv-blue);
}

.dnv-logo__bars i:first-child {
  background: var(--dnv-green);
}

.dnv-logo__bars i:last-child {
  background: var(--dnv-cyan);
}

.dnv-logo__text {
  font-family: "DNV Display", "Gantari", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--dnv-navy);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  height: 100%;
}

.desktop-nav a,
.header-actions a {
  color: var(--dnv-navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav a {
  display: flex;
  align-items: center;
  min-height: 60px;
  border-bottom: 3px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  border-bottom-color: var(--dnv-cyan);
  color: var(--dnv-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-actions a:first-child {
  color: var(--dnv-blue);
}

.search-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--dnv-navy);
  cursor: pointer;
}

.search-button {
  position: relative;
  width: 28px;
  height: 28px;
  display: none;
}

.search-button::before {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 999px;
  content: "";
}

.search-button::after {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  content: "";
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 22px;
  height: 2px;
  background: var(--dnv-navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-button span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-button span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(86vw, 360px);
  max-width: 100%;
  height: 100%;
  padding: 76px 26px calc(28px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-left: 4px solid var(--dnv-mint);
  box-shadow: -18px 0 44px rgba(15, 33, 74, 0.26);
  transform: translateX(102%);
  transition: transform 240ms ease;
}

.site-header.menu-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu[hidden] {
  display: flex;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 15px 0;
  color: var(--dnv-navy);
  font-size: 17px;
  font-weight: 700;
  border-bottom: 1px solid var(--dnv-line);
}

.mobile-menu .menu-call {
  margin-top: 18px;
  justify-content: center;
  min-height: 52px;
  color: var(--dnv-navy);
  background: var(--dnv-mint);
  border-bottom: 0;
  font-weight: 800;
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--dnv-navy);
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(15, 33, 74, 0.5);
  border: 0;
  opacity: 0;
  transition: opacity 240ms ease;
}

.menu-overlay[hidden] {
  display: block;
  pointer-events: none;
}

.site-header.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open-lock {
  overflow: hidden;
}

.dnv-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  background: var(--dnv-navy);
}

.dnv-hero--home {
  min-height: 680px;
}

.dnv-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dnv-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 33, 74, 0.92) 0%, rgba(15, 33, 74, 0.68) 38%, rgba(15, 33, 74, 0.18) 72%, rgba(15, 33, 74, 0.08) 100%),
    linear-gradient(180deg, rgba(15, 33, 74, 0.04), rgba(15, 33, 74, 0.2));
}

.dnv-hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 56px));
  align-self: center;
  margin: 0 auto;
  color: #fff;
}

.dnv-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "DNV Display", "Gantari", sans-serif;
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 400;
  line-height: 0.98;
}

.dnv-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
}

.dnv-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin-top: 28px;
  padding: 11px 18px 10px;
  color: var(--dnv-navy);
  background: var(--dnv-mint);
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.dnv-button::after {
  content: "↗";
  font-size: 0.95em;
  line-height: 1;
}

.dnv-button:hover,
.dnv-button:focus-visible {
  background: #b2ffc9;
  transform: translateY(-1px);
}

.dnv-button.light {
  background: #fff;
}

.sector-panel {
  position: relative;
  z-index: 4;
  width: min(var(--container), calc(100% - 80px));
  margin: -164px auto 92px;
  padding: 42px 44px 48px;
  background: #fff;
  box-shadow: 0 3px 18px rgba(15, 33, 74, 0.18);
}

.sector-panel__head {
  margin-bottom: 26px;
}

.sector-panel__head p,
.eyebrow {
  margin: 0 0 8px;
  color: var(--dnv-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.sector-panel h2,
.insights-section h2,
.news-events h2,
.planning-sections h2,
.locations-showcase h2,
.about-process h2,
.trust-band h2,
.career-band h2,
.content-block h2,
.listing-section h2,
.detail-layout h2,
.contact-layout h2,
.three-column h3,
.site-footer h2 {
  margin: 0;
  color: var(--dnv-navy);
  font-family: "DNV Display", "Gantari", sans-serif;
  font-weight: 400;
  line-height: 1.05;
}

.sector-panel h2,
.insights-section h2,
.listing-section h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sector-card,
.insight-card,
.listing-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  color: #fff;
  background: var(--dnv-navy);
  isolation: isolate;
}

.sector-card img,
.insight-card img,
.listing-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.sector-card::before,
.insight-card::before,
.listing-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 33, 74, 0.12) 0%, rgba(15, 33, 74, 0.42) 45%, rgba(15, 33, 74, 0.86) 100%);
  content: "";
}

.sector-card span,
.sector-card strong,
.sector-card em,
.insight-card h3,
.insight-card p,
.listing-card h3,
.listing-card p {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
}

.sector-card span {
  top: 22px;
  max-width: 74%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.sector-card strong,
.insight-card h3,
.listing-card h3 {
  bottom: 27px;
  font-family: "DNV Display", "Gantari", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
}

.sector-card em {
  right: 20px;
  bottom: 20px;
  left: auto;
  font-style: normal;
  font-weight: 800;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--dnv-navy);
  background: var(--dnv-mint);
  border-radius: 999px;
  font-size: 16px;
}

.sector-card:hover img,
.insight-card:hover img,
.listing-card:hover img,
.sector-card:focus-visible img,
.insight-card:focus-visible img,
.listing-card:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}

.insights-section,
.listing-section,
.content-block,
.three-column,
.detail-layout,
.contact-layout {
  width: min(var(--container), calc(100% - 80px));
  margin: 0 auto 96px;
}

.insights-section h2 {
  margin-bottom: 30px;
}

.insight-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.insight-card {
  min-height: 350px;
}

.insight-card h3 {
  bottom: 80px;
  font-size: 24px;
}

.insight-card p {
  bottom: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.28;
}

.news-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 0;
  background: linear-gradient(90deg, #f5f5f5 0 50%, var(--dnv-cyan) 50% 100%);
}

.news-events > div {
  width: min(100%, calc(var(--container) / 2));
  padding: 58px 38px 66px;
}

.news-events > div:first-child {
  justify-self: end;
}

.news-events h2 {
  margin-bottom: 26px;
  font-size: 32px;
}

.news-item,
.event-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 88px;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(15, 33, 74, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.news-item:hover,
.event-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(15, 33, 74, 0.13);
}

.news-item span,
.event-item span {
  padding: 22px 16px;
  color: #526172;
  background: #efefef;
  font-size: 12px;
  line-height: 1.2;
}

.news-item strong,
.event-item strong {
  padding: 22px 20px;
  color: var(--dnv-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.planning-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  background: linear-gradient(90deg, #f5f7f9 0 50%, var(--dnv-pale) 50% 100%);
}

.planning-column {
  width: min(100%, calc(var(--container) / 2));
  padding: 64px 42px 72px;
}

.planning-column:first-child {
  justify-self: end;
}

.planning-column--blue {
  background: var(--dnv-pale);
}

.planning-column h2 {
  margin-bottom: 28px;
  font-size: clamp(30px, 3.4vw, 44px);
}

.planning-list {
  display: grid;
  gap: 12px;
}

.planning-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 18px;
  min-height: 124px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(15, 33, 74, 0.1);
  box-shadow: 0 1px 6px rgba(15, 33, 74, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.planning-card:hover,
.planning-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 33, 74, 0.13);
}

.planning-card span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--dnv-blue);
  background: var(--dnv-pale);
}

.planning-column--blue .planning-card span {
  background: #e9fff0;
}

.planning-card svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.planning-card strong {
  align-self: end;
  color: var(--dnv-navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.planning-card p {
  margin: 8px 0 0;
  color: #475469;
  font-size: 14px;
  line-height: 1.42;
}

.locations-showcase {
  padding: 86px max(30px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: var(--dnv-navy);
}

.locations-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 30px;
}

.locations-showcase__head .eyebrow {
  grid-column: 1 / -1;
  color: var(--dnv-cyan);
}

.locations-showcase h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.location-tile {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.location-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.location-tile::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 33, 74, 0.02), rgba(15, 33, 74, 0.36) 45%, rgba(15, 33, 74, 0.9));
  content: "";
}

.location-tile span,
.location-tile strong {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
}

.location-tile span {
  top: 20px;
  max-width: 78%;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.location-tile strong {
  bottom: 24px;
  font-family: "DNV Display", "Gantari", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.05;
}

.location-tile:hover img,
.location-tile:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}

.about-process {
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  width: min(var(--container), calc(100% - 80px));
  margin: 0 auto 86px;
  padding: 56px;
  background: var(--dnv-pale);
}

.about-process h2 {
  font-size: clamp(32px, 3.6vw, 50px);
}

.about-process p {
  color: #2e3b4f;
  font-size: 17px;
  line-height: 1.55;
}

.about-process__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-process__grid article {
  min-height: 210px;
  padding: 26px;
  background: #fff;
}

.about-process__grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--dnv-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-process__grid h3 {
  margin: 0 0 10px;
  color: var(--dnv-navy);
  font-family: "DNV Display", "Gantari", sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.1fr);
  gap: 52px;
  padding: 86px max(40px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: var(--dnv-navy);
}

.trust-band h2 {
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
}

.trust-band p {
  max-width: 440px;
  font-size: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-grid article {
  min-height: 205px;
  padding: 32px 28px;
  background: #0033a1;
}

.trust-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "DNV Display", "Gantari", sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.career-band {
  display: grid;
  justify-items: end;
  min-height: 470px;
  padding: 120px max(40px, calc((100vw - var(--container)) / 2));
  background: var(--dnv-pale);
}

.career-band > div {
  width: min(470px, 100%);
}

.career-band h2 {
  font-size: clamp(32px, 3.6vw, 48px);
}

.career-band p,
.content-block p,
.detail-layout p,
.contact-layout p,
.three-column p,
.listing-card p {
  color: #2e3b4f;
  font-size: 18px;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 52px;
  align-items: center;
  margin-top: 96px;
}

.content-block--text {
  display: block;
  max-width: 860px;
}

.content-block h2,
.contact-layout h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.content-block img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.three-column article {
  padding: 34px;
  background: #f2f4f7;
}

.three-column h3 {
  font-size: 30px;
}

.listing-section {
  margin-top: 96px;
}

.listing-section h2 {
  max-width: 760px;
  margin-bottom: 34px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.listing-card {
  min-height: 310px;
}

.listing-card p {
  bottom: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.32;
}

.listing-card h3 {
  bottom: 106px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 345px;
  gap: 64px;
  margin-top: 96px;
}

.detail-layout article {
  max-width: 790px;
}

.detail-layout h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 56px);
}

.detail-layout p {
  margin: 0 0 20px;
}

.detail-layout aside {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 30px;
  background: var(--dnv-pale);
  border-top: 5px solid var(--dnv-blue);
}

.detail-layout--clean {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  gap: 48px;
  width: min(var(--container), calc(100% - 80px));
}

.detail-layout--clean article {
  max-width: 860px;
}

.taxonomy-copy--clean h2,
.taxonomy-copy--clean h3 {
  margin: 42px 0 14px;
  color: var(--dnv-navy);
  font-family: "DNV Display", "Gantari", sans-serif;
  font-weight: 500;
  line-height: 1.08;
}

.taxonomy-copy--clean h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}

.taxonomy-copy--clean h3 {
  font-size: 26px;
}

.taxonomy-copy--clean p {
  max-width: 78ch;
  margin: 0 0 20px;
  color: #28374f;
  font-size: 18px;
  line-height: 1.68;
}

.detail-side--compact {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}

.detail-side--compact p {
  color: #334057;
  font-size: 15px;
  line-height: 1.5;
}

.related-card-grid {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.related-card-grid a {
  display: block;
  padding: 12px 14px;
  color: var(--dnv-navy);
  background: #fff;
  border: 1px solid rgba(15, 33, 74, 0.12);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.related-card-grid a::after {
  content: " ↗";
  color: var(--dnv-blue);
}

.breadcrumb-shell {
  width: min(var(--container), calc(100% - 80px));
  margin: 20px auto -48px;
  color: #566176;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb-shell ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-shell a {
  color: var(--dnv-blue);
}

.breadcrumb-shell .separator {
  opacity: 0.5;
}

.detail-layout aside h2 {
  font-size: 28px;
}

.phone {
  display: inline-flex;
  margin: 8px 0 24px;
  color: var(--dnv-blue);
  font-size: 24px;
  font-weight: 800;
}

.related {
  display: grid;
  gap: 10px;
}

.related a {
  padding: 13px 0;
  color: var(--dnv-navy);
  font-size: 14px;
  font-weight: 800;
  border-top: 1px solid rgba(15, 33, 74, 0.16);
}

.faq {
  margin-top: 44px;
  border-top: 1px solid var(--dnv-line);
}

.faq h2 {
  margin: 36px 0 18px;
  font-size: 34px;
}

.faq details {
  border-bottom: 1px solid var(--dnv-line);
}

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--dnv-navy);
  font-size: 19px;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  margin-top: 96px;
}

.contact-layout a {
  color: var(--dnv-blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  background: #f3f6f8;
  scroll-margin-top: 86px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--dnv-navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  color: var(--dnv-ink);
  background: #fff;
  border: 1px solid rgba(15, 33, 74, 0.2);
  border-radius: 0;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 28px;
  padding: 10px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border-bottom: 2px solid var(--dnv-mint);
}

.kqpvx-h-map-embed {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 8px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 54px max(30px, calc((100vw - var(--container)) / 2)) 26px;
  background: #fff;
  border-top: 1px solid rgba(15, 33, 74, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  margin-bottom: 48px;
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 15px;
  font-family: "Gantari", Arial, sans-serif;
  font-weight: 800;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: #465164;
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--dnv-blue);
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 33, 74, 0.1);
}

.footer-bottom > div {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  min-width: 0;
}

.footer-bottom p {
  max-width: 430px;
  margin: 0;
  color: #637080;
  font-size: 12px;
}

.footer-bottom .kqpvx-h-map-embed {
  width: min(520px, 48vw);
  min-height: 190px;
}

.footer-bottom strong {
  color: var(--dnv-green);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 120px 1fr;
    min-height: 60px;
    padding: 0 8px 0 10px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
    gap: 8px;
  }

  .header-actions a {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .dnv-hero,
  .dnv-hero--home {
    min-height: 565px;
  }

  .dnv-hero__content {
    width: min(100% - 36px, var(--container));
  }

  .dnv-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .sector-panel {
    width: calc(100% - 28px);
    margin-top: -72px;
    padding: 28px 18px 24px;
  }

  .sector-grid,
  .insight-row,
  .listing-grid,
  .three-column,
  .trust-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sector-card,
  .insight-card,
  .listing-card {
    min-height: 260px;
  }

  .insights-section,
  .listing-section,
  .content-block,
  .three-column,
  .detail-layout,
  .contact-layout {
    width: calc(100% - 36px);
    margin-bottom: 64px;
  }

  .insight-row {
    gap: 14px;
  }

  .news-events {
    grid-template-columns: 1fr;
    background: #f5f5f5;
  }

  .planning-sections {
    grid-template-columns: 1fr;
    background: #f5f7f9;
  }

  .planning-column,
  .planning-column:first-child {
    width: 100%;
    justify-self: stretch;
    padding: 42px 18px;
  }

  .planning-column--blue {
    background: var(--dnv-pale);
  }

  .locations-showcase {
    padding: 58px 18px;
  }

  .locations-showcase__head {
    grid-template-columns: 1fr;
  }

  .locations-showcase__head .dnv-button {
    justify-self: start;
  }

  .about-process {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    padding: 34px 20px;
  }

  .about-process__grid {
    grid-template-columns: 1fr;
  }

  .news-events > div {
    width: 100%;
    padding: 42px 18px;
  }

  .news-events > div:last-child {
    background: var(--dnv-cyan);
  }

  .news-item,
  .event-item {
    grid-template-columns: 96px 1fr;
  }

  .trust-band,
  .career-band,
  .content-block,
  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trust-band {
    padding: 58px 18px;
  }

  .career-band {
    justify-items: start;
    min-height: auto;
    padding: 70px 18px;
  }

  .content-block {
    margin-top: 66px;
  }

  .content-block img {
    height: 320px;
  }

  .listing-section,
  .detail-layout,
  .contact-layout {
    margin-top: 66px;
  }

  .detail-layout aside {
    position: static;
  }

  .detail-layout--clean {
    width: calc(100% - 36px);
    gap: 30px;
  }

  .detail-side--compact {
    max-height: none;
    overflow: visible;
  }

  .breadcrumb-shell {
    width: calc(100% - 36px);
    margin-bottom: -34px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-bottom,
  .footer-bottom > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom .kqpvx-h-map-embed {
    width: min(100%, 520px);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 0 14px 0 10px;
  }

  .search-button,
  .menu-button {
    width: 44px;
    height: 44px;
  }

  .search-button {
    display: none;
  }

  /* tap targets */
  .dnv-button,
  .desktop-nav a,
  .header-actions a,
  .related a,
  .faq summary,
  .news-item,
  .event-item {
    min-height: 44px;
  }

  .dnv-button {
    padding: 14px 20px 13px;
  }

  /* readability + edge padding */
  .insights-section,
  .listing-section,
  .content-block,
  .three-column,
  .detail-layout,
  .contact-layout,
  .sector-panel {
    width: calc(100% - 32px);
  }

  .dnv-hero h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .dnv-hero p {
    font-size: 17px;
  }

  .trust-band h2,
  .content-block h2,
  .contact-layout h2,
  .detail-layout h2 {
    font-size: clamp(30px, 7vw, 44px);
  }

  /* map embeds + media never overflow */
  .kqpvx-h-map-embed,
  iframe {
    width: 100%;
    max-width: 100%;
  }

  /* contact form fields easy to tap */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .footer-grid {
    gap: 26px;
  }

  .planning-card {
    grid-template-columns: 50px 1fr;
    padding: 18px;
  }

  .locations-showcase,
  .trust-band {
    overflow: hidden;
  }
}

@media (max-width: 520px) {
  .dnv-logo__bars {
    grid-template-columns: 45px;
  }

  .dnv-logo__text {
    font-size: 16px;
  }

  .dnv-hero h1 {
    font-size: 42px;
  }

  .dnv-hero p,
  .career-band p,
  .content-block p,
  .detail-layout p,
  .contact-layout p,
  .three-column p {
    font-size: 16px;
  }

  .sector-card strong,
  .insight-card h3,
  .listing-card h3 {
    font-size: 21px;
  }

  .news-item,
  .event-item {
    grid-template-columns: 1fr;
  }

  .planning-card {
    grid-template-columns: 1fr;
  }

  .planning-card span {
    grid-row: auto;
    margin-bottom: 14px;
  }

  .location-tile {
    min-height: 240px;
  }

  .mobile-menu {
    width: min(92vw, 360px);
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* ---- Location detail pages (.rmi-site theme, served via /locations/*-ca) ---- */
.rmi-site {
  color: var(--dnv-ink);
}

.access-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--dnv-blue);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(15, 33, 74, 0.28);
}

.detail-hero {
  display: grid;
  align-items: center;
  min-height: 360px;
  padding: 72px max(24px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background:
    linear-gradient(120deg, rgba(15, 33, 74, 0.92), rgba(0, 53, 145, 0.78)),
    var(--dnv-navy);
}

.detail-hero > div {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.detail-hero .eyebrow {
  color: var(--dnv-cyan);
}

.detail-hero h1 {
  margin: 6px 0 16px;
  max-width: 820px;
  font-family: "DNV Display", "Gantari", sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.02;
}

.detail-hero p {
  max-width: 620px;
  margin: 0 0 8px;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.9);
}

.red-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border: 2px solid var(--dnv-mint);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.red-button {
  color: var(--dnv-navy);
  background: var(--dnv-mint);
}

.red-button:hover,
.red-button:focus-visible {
  background: #b2ffc9;
  transform: translateY(-1px);
}

.outline-button {
  color: var(--dnv-navy);
  background: transparent;
  border-color: var(--dnv-navy);
}

.outline-button:hover,
.outline-button:focus-visible {
  color: #fff;
  background: var(--dnv-navy);
}

.taxonomy-copy p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.6;
  color: #2e3b4f;
}

.detail-side {
  padding: 28px;
  background: var(--dnv-pale);
  border-top: 5px solid var(--dnv-blue);
}

.detail-side h2 {
  margin: 0 0 12px;
  color: var(--dnv-navy);
  font-family: "DNV Display", "Gantari", sans-serif;
  font-weight: 400;
  font-size: 26px;
}

.side-phone {
  display: inline-flex;
  margin-top: 14px;
  color: var(--dnv-blue);
  font-size: 22px;
  font-weight: 800;
}

.faq-section {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto 72px;
}

.faq-section .section-title {
  margin-bottom: 20px;
}

.faq-section .section-title h2 {
  margin: 4px 0 0;
  color: var(--dnv-navy);
  font-family: "DNV Display", "Gantari", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
}

.faq-section details {
  padding: 4px 0;
  border-bottom: 1px solid var(--dnv-line);
}

.faq-section summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--dnv-navy);
  font-size: 18px;
  font-weight: 800;
}

.faq-section details p {
  margin: 0 0 18px;
  color: #2e3b4f;
  font-size: 16px;
  line-height: 1.55;
}

.cta-band {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 64px max(24px, calc((100vw - var(--container)) / 2));
  background: var(--dnv-pale);
}

.cta-band > div {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.cta-band h2 {
  margin: 6px 0 0;
  color: var(--dnv-navy);
  font-family: "DNV Display", "Gantari", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
}

@media (max-width: 768px) {
  .detail-hero {
    min-height: auto;
    padding: 52px 18px;
  }

  .faq-section {
    width: calc(100% - 32px);
  }

  .cta-band {
    padding: 48px 18px;
  }

  .taxonomy-copy p {
    font-size: 16px;
  }
}
/* brand-logo-css */.brand-logo{height:26px;width:auto;display:block;max-width:240px}a.logo{display:inline-flex;align-items:center}.footer-bottom .brand-logo{height:26px;max-width:260px}
