@font-face {
  font-family: Karla;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/karla-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Karla;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/karla-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #081d31;
  --navy-deep: #061728;
  --browser-chrome: rgb(54, 72, 92);
  --ink: #0a1e33;
  --blue: #236da9;
  --green: #76b82a;
  --mist: #eaf0f5;
  --line: #d8e0e7;
  --white: #fff;
  --wrap: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--browser-chrome);
  font-family: Karla, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

#m4-app { min-height: 100vh; background: var(--white); }

body:has(.site-header.open) { overflow: hidden; }
html.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}
html.menu-open body {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}
[v-cloak],
[data-vue-cloak] { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.wrap {
  width: min(calc(100% - 64px), var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  padding: 0 max(32px, calc((100vw - var(--wrap)) / 2));
  color: var(--white);
  background: rgba(18, 40, 59, .22);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .07);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  backdrop-filter: blur(10px) saturate(115%);
  transition: height .35s var(--ease), background-color .35s ease, box-shadow .35s ease, -webkit-backdrop-filter .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled {
  height: 82px;
  background: rgba(6, 23, 40, .82);
  box-shadow: 0 8px 28px rgba(4, 19, 34, .12), inset 0 -1px 0 rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
}

.brand {
  position: relative;
  z-index: 2;
  width: 185px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 179;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.1vw, 18px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active { color: #a6d96e; }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 20px;
}

.language-switcher { display: flex; gap: 8px; }
.language-switcher a {
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  opacity: .52;
  transition: opacity .2s ease, color .2s ease;
}
.language-switcher a:hover { opacity: 1; }
.language-switcher a.active { color: #a6d96e; opacity: 1; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 24px;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s var(--ease);
}

.button span { transition: transform .3s var(--ease); }
.button:hover { color: var(--navy); background: var(--green); transform: translateY(-2px); }
.button:hover span { transform: translate(3px, -3px); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 11px; }
.button.dark { color: var(--navy); }
.button:disabled { cursor: wait; opacity: .55; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--white);
  transition: transform .3s var(--ease);
}
.mobile-panel { display: none; }

.hero {
  position: relative;
  height: min(850px, 95vh);
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: -3%;
  transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0) scale(1.06);
  will-change: transform;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 19, 34, .9) 0%, rgba(5, 22, 38, .46) 53%, rgba(5, 22, 38, .1) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 88px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow.light { color: #a9d2ff; }

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(54px, 4.8vw, 74px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 580px;
  margin: 0 0 38px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-content > * { animation: hero-enter .9s var(--ease) both; }
.hero-content > :nth-child(1) { animation-delay: .12s; }
.hero-content > :nth-child(2) { animation-delay: .2s; }
.hero-content > :nth-child(3) { animation-delay: .3s; }
.hero-content > :nth-child(4) { animation-delay: .4s; }

.scroll-mark {
  position: absolute;
  right: 38px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.scroll-mark i { display: block; width: 52px; height: 1px; background: var(--white); animation: scroll-line 2s ease-in-out infinite; }
.accent-rule { height: 12px; background: linear-gradient(90deg, var(--green), var(--blue)); }

.section { padding: 104px 0; }

.intro-section,
.detail-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: start;
}

.intro-section { padding-bottom: 80px; }

.intro-section h2,
.detail-section h2,
.contact-panel h2,
.history-copy h2,
.next-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.copy,
.detail-body { max-width: 620px; }
.copy p,
.detail-body p { margin: 0 0 22px; }
.copy p:last-child,
.detail-body p:last-child { margin-bottom: 0; }
.copy .lead {
  margin-bottom: 26px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.42;
}

.capabilities { padding: 76px 0 16px; overflow: hidden; }
.capabilities > .wrap { margin-bottom: 24px; }

.cap-grid {
  width: min(calc(100% - 64px), 1400px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.cap-card {
  position: relative;
  isolation: isolate;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 40px;
  border-radius: 3px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 35px rgba(8, 29, 49, .08);
  transition: transform .5s var(--ease), box-shadow .5s ease;
}

.cap-media {
  position: absolute;
  z-index: 0;
  inset: -32px 0;
  pointer-events: none;
  transform: translate3d(0, var(--media-shift, 0px), 0);
  will-change: transform;
}
.cap-media img,
.cap-media::after { position: absolute; inset: 0; }
.cap-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.005);
  transition: transform .8s var(--ease);
}
.cap-media::after { content: ""; background: linear-gradient(0deg, rgba(4, 20, 35, .92), rgba(4, 20, 35, .1)); }

.cap-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(118, 184, 42, .08), rgba(8, 29, 49, .7));
  opacity: 0;
  transition: opacity .45s ease;
}

.cap-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: 0;
  left: 40px;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.cap-card.reveal:hover,
.cap-card.reveal:focus-visible { transform: translateY(-8px); box-shadow: 0 24px 55px rgba(8, 29, 49, .2); }
.cap-card:hover .cap-media img,
.cap-card:focus-visible .cap-media img { transform: scale(1.055); }
.cap-card:hover::before,
.cap-card:focus-visible::before { opacity: 1; }
.cap-card:hover::after,
.cap-card:focus-visible::after { transform: scaleX(1); }

.cap-number,
.cap-title,
.cap-arrow { position: relative; z-index: 2; }
.cap-card.reveal.reveal-pending { transform: translate3d(45px, 0, 0); }
.cap-number {
  margin-bottom: auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  opacity: .82;
}
.cap-title {
  max-width: calc(100% - 34px);
  min-height: 75px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .38);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}
.cap-arrow {
  position: absolute;
  right: 40px;
  bottom: 69px;
  font-size: 18px;
  transition: transform .35s var(--ease);
}
.cap-card:hover .cap-arrow { transform: translate(4px, -4px); }

.history-band {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.history-image { overflow: hidden; }
.history-image img {
  width: 100%;
  height: calc(100% + 112px);
  margin-top: -56px;
  object-fit: cover;
  transform: translate3d(0, var(--media-shift, 0px), 0) scale(1.005);
  will-change: transform;
}
.history-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 104px max(40px, calc((100vw - var(--wrap)) / 2));
  padding-left: 7vw;
}
.history-copy p:not(.eyebrow) { max-width: 560px; margin: 28px 0 34px; line-height: 1.58; }

.page-hero {
  position: relative;
  height: 660px;
  overflow: hidden;
  color: var(--white);
}
.page-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 21, 37, .91), rgba(5, 21, 37, .2)); }
.page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 82px;
}
.page-hero-content > * { animation: hero-enter .8s var(--ease) both; }
.page-hero-content > :nth-child(1) { animation-delay: .12s; }
.page-hero-content > :nth-child(2) { animation-delay: .22s; }

.detail-section h2 { max-width: 610px; font-size: clamp(36px, 3vw, 46px); line-height: 1.1; }
.detail-body { padding-top: 4px; font-size: 18px; line-height: 1.58; }

.contact-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}
.contact-overview-copy,
.company-address {
  min-width: 0;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-overview-copy {
  padding: 104px clamp(48px, 6vw, 92px) 104px max(32px, calc((100vw - var(--wrap)) / 2));
}
.contact-overview-copy h2 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(38px, 3.4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}
.company-address {
  align-items: flex-start;
  padding: 104px max(32px, calc((100vw - var(--wrap)) / 2)) 104px clamp(48px, 6vw, 92px);
  background: var(--navy);
  color: var(--white);
  font-style: normal;
}
.company-address h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.15;
}
.company-address-location { margin: 42px 0 38px; font-style: normal; }
.company-address-location strong,
.company-address-location span { display: block; }
.company-address-location strong {
  margin-bottom: 7px;
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.04;
}
.company-address-location span { color: #c7d5e1; font-size: 20px; }
.company-identifiers {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 38px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.company-identifiers dt {
  margin-bottom: 6px;
  color: #a9d2ff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.company-identifiers dd { margin: 0; font-size: 15px; font-weight: 700; white-space: nowrap; }

.next-cta { padding: 96px 0 104px; background: var(--navy); color: var(--white); }
.next-cta h2 { max-width: 760px; margin-bottom: 34px; }

.contact-panel { background: var(--mist); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(64px, 9vw, 132px); }
.contact-grid h2 { font-size: clamp(38px, 3.4vw, 50px); }
.contact-grid > div > p:last-child { max-width: 500px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
label {
  display: block;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}
input,
textarea {
  width: 100%;
  display: block;
  margin-top: 8px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #a9b7c4;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  transition: border-color .2s ease;
}
input:focus,
textarea:focus { border-color: var(--green); }
.form-privacy { margin: -4px 0 24px; color: #526679; font-size: 13px; line-height: 1.55; }
.form-privacy a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.form-status { min-height: 24px; font-size: 14px; }

footer { padding-top: 88px; background: var(--navy-deep); color: var(--white); }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr .8fr; gap: 9%; padding-bottom: 72px; }
.footer-top img {
  width: 180px;
  height: auto;
  aspect-ratio: 600 / 179;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-top p { margin: 0; color: rgba(255, 255, 255, .72); font-size: 16px; }
.footer-top h3 { max-width: 300px; margin: 0 0 28px; font-size: 31px; font-weight: 800; line-height: 1.08; text-wrap: balance; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; align-content: start; }
.footer-links a { font-size: 14px; line-height: 1.4; opacity: .72; transition: color .2s ease, opacity .2s ease; }
.footer-links a:hover { color: #a6d96e; opacity: 1; }
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: 12px;
  line-height: 1.4;
  opacity: .65;
}
.footer-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-left: auto; }
.footer-legal a,
.footer-legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.footer-legal a:hover,
.footer-legal button:hover { color: #a6d96e; }

.legal-document { background: var(--white); }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 780px); justify-content: space-between; gap: clamp(64px, 9vw, 140px); }
.legal-index { position: sticky; top: 112px; align-self: start; }
.legal-index .eyebrow { margin-bottom: 12px; }
.legal-updated { margin: 0 0 28px; color: #526679; font-size: 14px; line-height: 1.5; }
.legal-index nav { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.legal-index nav a { padding: 12px 0; border-bottom: 1px solid var(--line); color: #405467; font-size: 14px; font-weight: 700; line-height: 1.35; }
.legal-index nav a:hover { color: var(--blue); }
.legal-copy > header { padding-bottom: 54px; }
.legal-copy > header .lead { margin: 0 0 20px; color: var(--navy); font-size: 25px; font-weight: 700; line-height: 1.4; }
.legal-copy > header > p:last-child { margin: 0; color: #526679; font-size: 17px; line-height: 1.65; }
.legal-copy > section { padding: 50px 0; border-top: 1px solid var(--line); scroll-margin-top: 96px; }
.legal-copy > section:last-child { padding-bottom: 0; }
.legal-copy h2 { max-width: 700px; margin: 0 0 22px; font-size: 34px; line-height: 1.14; }
.legal-copy section > p:not(.eyebrow) { margin: 0 0 18px; color: #405467; font-size: 17px; line-height: 1.65; }
.legal-copy section > p:last-child { margin-bottom: 0; }
.legal-copy ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.legal-copy li { position: relative; padding-left: 24px; color: #405467; font-size: 16px; line-height: 1.6; }
.legal-copy li::before { content: ""; position: absolute; top: .7em; left: 0; width: 9px; height: 2px; background: var(--green); }
.legal-resources { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.legal-resources .eyebrow { margin-bottom: 4px; }
.legal-resources a { color: var(--blue); font-size: 15px; font-weight: 700; }
.legal-resources a span { display: inline-block; transition: transform .2s ease; }
.legal-resources a:hover span { transform: translate(3px, -3px); }

.cookie-banner {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  left: 24px;
  width: min(calc(100% - 48px), 1120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  margin-inline: auto;
  padding: 26px 28px;
  border: 1px solid #cbd5dd;
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(4, 19, 34, .24);
}
.cookie-banner-copy { max-width: 680px; }
.cookie-banner .eyebrow { margin-bottom: 8px; }
.cookie-banner h2 { margin: 0 0 8px; font-size: 25px; line-height: 1.15; }
.cookie-banner-copy > p:last-child { margin: 0; color: #526679; font-size: 14px; line-height: 1.55; }
.cookie-banner-copy a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; min-width: 330px; }
.cookie-banner-actions .button,
.cookie-secondary { min-height: 46px; padding: 0 18px; font-size: 11px; font-weight: 800; line-height: 1.15; text-align: center; text-transform: uppercase; }
.cookie-banner-actions .button.dark,
.cookie-dialog-actions .button.dark { border-color: var(--navy); background: var(--navy); color: var(--white); }
.cookie-banner-actions .button.dark:hover,
.cookie-dialog-actions .button.dark:hover { border-color: var(--green); background: var(--green); color: var(--navy); }
.cookie-secondary { border: 2px solid var(--navy); background: transparent; color: var(--navy); cursor: pointer; }
.cookie-secondary:hover { border-color: var(--green); background: var(--green); }
.cookie-link { grid-column: 1 / -1; justify-self: center; padding: 4px; border: 0; background: transparent; color: var(--blue); font-size: 13px; font-weight: 700; cursor: pointer; }
.cookie-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.cookie-modal { position: fixed; z-index: 70; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(4, 19, 34, .72); }
.cookie-dialog {
  position: relative;
  width: min(100%, 700px);
  max-height: min(760px, calc(100dvh - 48px));
  padding: 38px;
  overflow-y: auto;
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
}
.cookie-close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; color: var(--navy); font-size: 34px; font-weight: 400; line-height: 1; cursor: pointer; }
.cookie-dialog > .eyebrow { margin: 0 58px 10px 0; }
.cookie-dialog > h2 { margin: 0 58px 14px 0; font-size: 38px; line-height: 1.1; }
.cookie-dialog-intro { max-width: 570px; margin: 0 0 30px; color: #526679; font-size: 16px; line-height: 1.55; }
.cookie-setting { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 30px; padding: 24px 0; border-top: 1px solid var(--line); }
.cookie-setting h3 { margin: 0 0 7px; font-size: 20px; line-height: 1.2; }
.cookie-setting p { margin: 0; color: #526679; font-size: 14px; line-height: 1.55; }
.cookie-setting > strong { color: #4e791f; font-size: 11px; line-height: 1.3; text-align: right; text-transform: uppercase; }
.cookie-toggle { position: relative; margin: 0; cursor: pointer; }
.cookie-toggle input { position: absolute; width: 1px; height: 1px; margin: 0; opacity: 0; }
.cookie-toggle > span:last-child { position: relative; width: 52px; height: 30px; display: block; border: 2px solid #8395a5; border-radius: 15px; background: #dbe3e9; transition: background-color .2s ease, border-color .2s ease; }
.cookie-toggle > span:last-child::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--white); box-shadow: 0 1px 4px rgba(0, 0, 0, .25); transition: transform .2s var(--ease); }
.cookie-toggle input:checked + span { border-color: var(--green); background: var(--green); }
.cookie-toggle input:checked + span::after { transform: translateX(22px); }
.cookie-toggle input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 4px; }
.cookie-dialog-actions { display: flex; align-items: center; gap: 24px; padding-top: 28px; border-top: 1px solid var(--line); }
.cookie-dialog-actions a { color: var(--blue); font-size: 14px; font-weight: 700; }

.reveal { opacity: 1; transform: none; }
.reveal.reveal-pending { opacity: 0; transform: translateY(32px); }
.reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity .75s var(--ease) var(--delay, 0ms), transform .75s var(--ease) var(--delay, 0ms);
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-line {
  0%, 100% { transform: scaleX(.45); transform-origin: left; opacity: .55; }
  50% { transform: scaleX(1); transform-origin: left; opacity: 1; }
}

.content-section { position: relative; }
.section-heading { max-width: 720px; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}
.section-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #43576a;
  font-size: 18px;
  line-height: 1.6;
}
.section-heading-wide { margin-bottom: 48px; }

.stats-section {
  padding: 84px 0 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f7f9;
}
.stats-section > .wrap {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: end;
}
.stats-section > .wrap > *,
.content-split > *,
.contact-grid > * { min-width: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  border-top: 1px solid #b9c6d0;
}
.stat-item {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 32px 28px;
  border-bottom: 1px solid #b9c6d0;
}
.stat-item:nth-child(odd) { border-right: 1px solid #b9c6d0; }
.stat-item strong {
  color: var(--blue);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}
.stat-item .stat-unit { display: inline-block; margin-left: .12em; font-size: .52em; line-height: 1; }
.stat-item > span { max-width: 220px; margin-top: 12px; font-weight: 700; line-height: 1.3; overflow-wrap: anywhere; }
.stat-item small { margin-top: 8px; color: #607386; font-size: 13px; }

.content-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: start;
}
.rich-copy { max-width: 650px; font-size: 18px; line-height: 1.65; }
.rich-copy p { margin: 0 0 24px; }
.rich-copy p:last-child { margin-bottom: 0; }
.rich-copy .lead { font-size: 22px; font-weight: 600; line-height: 1.45; }

.cards-section { border-top: 1px solid #dce3e8; background: var(--mist); }
.cards-section + .cards-section { border-top-color: #c9d4dc; }
.content-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.content-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border-top: 4px solid var(--green);
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8, 29, 49, .06);
}
.content-card .card-index { color: var(--blue); font-size: 12px; font-weight: 800; }
.content-card h3 {
  max-width: 290px;
  min-height: 56px;
  margin: 40px 0 18px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.12;
  text-wrap: balance;
}
.content-card p { margin: 0; color: #405467; font-size: 16px; line-height: 1.58; }
.content-card small { margin-top: 14px; color: #64788a; }

.standards-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.standards-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
}
.standards-layout > * { min-width: 0; }
.standards-lockup {
  margin: 0;
  padding: 30px 0 28px;
  border-top: 1px solid #b9c6d0;
  border-bottom: 1px solid #b9c6d0;
}
.standards-lockup img { width: 100%; height: auto; display: block; }
.standards-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #b9c6d0;
  list-style: none;
}
.standard-item {
  min-width: 0;
  padding: 22px 18px 24px;
  border-right: 1px solid #b9c6d0;
}
.standard-item:first-child { padding-left: 0; }
.standard-item:last-child { padding-right: 0; border-right: 0; }
.standard-item strong {
  display: block;
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.standard-item span { display: block; margin-top: 8px; color: #405467; font-size: 14px; line-height: 1.42; }
.standards-note { max-width: 670px; margin: 18px 0 0; color: #607386; font-size: 13px; line-height: 1.55; }

.list-section { border-top: 1px solid var(--line); }
.scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(40px, 7vw, 96px);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.scope-list li {
  min-height: 84px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}
.scope-list li > span { width: 18px; height: 2px; background: var(--green); }

.steps-section { background: var(--navy); color: var(--white); }
.steps-section .section-heading > p:not(.eyebrow) { color: rgba(255, 255, 255, .72); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .18);
  list-style: none;
}
.steps-grid li { min-height: 210px; padding: 30px; background: var(--navy); }
.steps-grid li > span { color: #a6d96e; font-size: 12px; font-weight: 800; }
.steps-grid p { margin: 54px 0 0; font-size: 19px; font-weight: 700; line-height: 1.45; }

.project-explorer { padding-bottom: 112px; background: #f4f7f9; }
.project-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, .5fr) minmax(180px, .5fr);
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}
.project-toolbar label {
  display: grid;
  grid-template-rows: auto 58px;
  gap: 10px;
  margin: 0;
  color: #425568;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.project-toolbar input,
.project-select {
  width: 100%;
  height: 58px;
  border: 1px solid #aebdca;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(8, 29, 49, .055);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.project-toolbar input {
  margin: 0;
  padding: 0 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}
.project-toolbar input::placeholder { color: #718496; opacity: 1; }
.project-select { position: relative; overflow: hidden; }
.project-select select {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 52px 0 20px;
  border: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  cursor: pointer;
}
.project-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #28445d;
  border-bottom: 2px solid #28445d;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}
.project-toolbar input:hover,
.project-select:hover { border-color: #7e94a6; background: #fbfcfd; }
.project-toolbar input:focus-visible,
.project-select:focus-within {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 84, 131, .14), 0 9px 24px rgba(8, 29, 49, .08);
}
.project-count { margin-bottom: 30px; color: #526679; font-size: 14px; font-weight: 700; }
.project-map { width: 100%; height: 570px; background: #dce5eb; }
.map-consent {
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 54px;
  padding-bottom: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.map-consent > div { max-width: 700px; }
.map-consent h3 { margin: 0 0 14px; font-size: 34px; line-height: 1.14; }
.map-consent p:not(.eyebrow) { margin: 0; color: #526679; line-height: 1.6; }
.map-consent .button { flex: 0 0 auto; }
.project-map .leaflet-pane,
.project-map .leaflet-control { z-index: 1; }
.project-map .leaflet-top,
.project-map .leaflet-bottom { z-index: 2; }
.leaflet-popup-content { display: flex; flex-direction: column; gap: 4px; margin: 17px 20px; font-family: Karla, Arial, sans-serif; }
.leaflet-popup-content strong { color: var(--navy); font-size: 16px; }
.leaflet-popup-content span { color: #405467; }
.leaflet-popup-content small { color: #607386; }
.project-results { padding-top: 54px; }
.project-table-head,
.project-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr .6fr .35fr .65fr;
  gap: 24px;
  align-items: center;
}
.project-table-head {
  min-height: 48px;
  border-bottom: 2px solid var(--navy);
  color: #526679;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.project-row { min-height: 88px; padding: 18px 0; border-bottom: 1px solid #cbd5dd; }
.project-row h3 { margin: 0; font-size: 18px; line-height: 1.3; }
.project-row p { margin: 0; color: #405467; font-size: 15px; line-height: 1.4; }
.mobile-label { display: none; }
.project-empty { padding: 30px 0; }
.project-more { margin-top: 34px; }
.project-noscript { padding-top: 32px; }

.careers-board { border-top: 1px solid var(--line); background: #f4f7f9; }
.jobs-list { border-top: 2px solid var(--navy); }
.job-row {
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid #c4cfd8;
}
.job-row h3 { margin: 4px 0 8px; font-size: 27px; line-height: 1.15; }
.job-row p { margin: 0; color: #526679; }
.job-reference { color: var(--blue) !important; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.job-row .button { flex: 0 0 auto; }
.jobs-status { min-height: 120px; display: flex; align-items: center; margin: 0; border-bottom: 1px solid #c4cfd8; color: #526679; }
.general-application { margin-top: 36px; }

.contact-channels { border-top: 1px solid var(--line); background: var(--white); }
.contact-channel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.contact-channel {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-style: normal;
}
.contact-channel h3 { margin: 0 0 20px; font-size: 23px; line-height: 1.15; }
.contact-channel p { margin: 0 0 22px; color: #526679; font-size: 15px; line-height: 1.55; }
.contact-channel a { margin-top: auto; color: var(--blue); font-size: 15px; font-weight: 800; overflow-wrap: anywhere; }
.contact-channel a + a { margin-top: 8px; }
.social-links { display: flex; align-items: center; gap: 28px; padding-top: 34px; font-size: 14px; }
.social-links > span { color: #526679; }
.social-links a { font-weight: 800; }
.social-links a:hover { color: var(--blue); }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .site-header { height: 88px; }
  .site-header.scrolled { height: 74px; }
  .site-header::before {
    content: "";
    position: absolute;
    top: calc(-1 * env(safe-area-inset-top));
    right: 0;
    left: 0;
    height: calc(env(safe-area-inset-top) + 2px);
    background: var(--browser-chrome);
    pointer-events: none;
  }
  .header-actions > .button { display: none; }
  .mobile-panel {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(120px + env(safe-area-inset-top)) calc(40px + env(safe-area-inset-right)) calc(50px + env(safe-area-inset-bottom)) calc(40px + env(safe-area-inset-left));
    visibility: hidden;
    opacity: 0;
    background: rgba(8, 29, 49, .985);
    transform: translateY(-12px);
    transition: opacity .35s ease, transform .35s var(--ease), visibility .35s;
    overflow-y: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .site-header.open .mobile-panel { visibility: visible; opacity: 1; transform: none; }
  .mobile-panel nav { display: flex; flex-direction: column; }
  .mobile-panel nav a {
    width: fit-content;
    min-height: 44px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 650;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .35s ease, transform .35s var(--ease), color .2s ease;
  }
  .site-header.open .mobile-panel nav a { opacity: 1; transform: none; }
  .site-header.open .mobile-panel nav a:nth-child(2) { transition-delay: .04s; }
  .site-header.open .mobile-panel nav a:nth-child(3) { transition-delay: .08s; }
  .site-header.open .mobile-panel nav a:nth-child(4) { transition-delay: .12s; }
  .site-header.open .mobile-panel nav a:nth-child(5) { transition-delay: .16s; }
  .site-header.open .mobile-panel nav a:nth-child(6) { transition-delay: .2s; }
  .site-header.open .mobile-panel nav a:nth-child(7) { transition-delay: .24s; }
  .site-header.open .mobile-panel nav a:nth-child(8) { transition-delay: .28s; }
  .site-header.open .mobile-panel nav a:nth-child(9) { transition-delay: .32s; }
  .mobile-panel nav a:hover,
  .mobile-panel nav a.active { color: #a6d96e; }
  .mobile-languages { display: flex; gap: 24px; font-size: 14px; font-weight: 700; }
  .mobile-languages a[aria-current="true"] { color: #a6d96e; }
  .site-header.open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .site-header.open .menu-toggle span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .cap-card { height: 430px; }
  .content-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-channel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cookie-banner { gap: 24px; }
  .cookie-banner-actions { min-width: 300px; }
}

@media (max-width: 700px) {
  body { font-size: 17px; line-height: 1.58; }
  .wrap { width: min(calc(100% - 40px), var(--wrap)); }
  .site-header { padding: 0 20px; }
  .brand { width: 145px; }
  .language-switcher { display: none; }
  .header-actions { gap: 5px; margin-left: auto; }
  .mobile-panel { padding: calc(104px + env(safe-area-inset-top)) calc(20px + env(safe-area-inset-right)) calc(34px + env(safe-area-inset-bottom)) calc(20px + env(safe-area-inset-left)); }
  .mobile-panel nav a { min-height: 40px; font-size: 24px; line-height: 1.18; }

  .hero { height: min(760px, 100svh); min-height: 560px; }
  .hero-bg img { object-position: 72% center; }
  .hero-bg::after { background: linear-gradient(90deg, rgba(4, 19, 34, .9), rgba(4, 19, 34, .32)); }
  .hero-content { justify-content: flex-end; padding: 0 0 76px; }
  .hero h1,
  .page-hero h1 { max-width: 355px; margin-bottom: 24px; font-size: clamp(40px, 11vw, 46px); line-height: 1.04; }
  .hero-lead { max-width: 355px; margin-bottom: 32px; font-size: 18px; line-height: 1.5; }
  .hero .button { background: rgba(6, 23, 40, .42); }
  .hero .button:hover { background: var(--green); }
  .eyebrow { margin-bottom: 16px; font-size: 11px; letter-spacing: 0; }
  .scroll-mark { display: none; }

  .section { padding: 76px 0; }
  .intro-section,
  .detail-section,
  .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .intro-section { padding-bottom: 68px; }
  .intro-section h2,
  .contact-panel h2 { font-size: 38px; line-height: 1.07; }
  .copy .lead { font-size: 20px; line-height: 1.44; }
  .copy p:not(.lead) { line-height: 1.58; }

  .capabilities { padding: 60px 0 12px; }
  .capabilities > .wrap { margin-bottom: 20px; }
  .cap-grid { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 12px; }
  .cap-card { height: 300px; padding: 28px; }
  .cap-media { inset: 0; transform: none; will-change: auto; }
  .cap-card.reveal.reveal-pending { transform: translate3d(24px, 0, 0); }
  .cap-card::after { right: 28px; left: 28px; }
  .cap-title { max-width: calc(100% - 30px); min-height: 68px; padding-top: 14px; font-size: 24px; line-height: 1.1; }
  .cap-arrow { right: 28px; bottom: 55px; }

  .history-band { grid-template-columns: 1fr; min-height: 0; }
  .history-image { height: 330px; }
  .history-image img { height: 100%; margin-top: 0; transform: scale(1.025); will-change: auto; }
  .history-copy { padding: 72px 20px 78px; }
  .history-copy h2 { font-size: 38px; }
  .history-copy p:not(.eyebrow) { margin: 24px 0 30px; }

  .page-hero { height: 560px; }
  .page-hero-content { padding-bottom: 54px; }
  .detail-section h2 { font-size: 32px; line-height: 1.12; }
  .detail-body { padding-top: 0; font-size: 17px; line-height: 1.58; }
  .contact-overview { grid-template-columns: 1fr; }
  .contact-overview-copy,
  .company-address { min-height: 0; padding: 76px 20px; }
  .contact-overview-copy h2 { font-size: 36px; line-height: 1.1; }
  .company-address h3 { font-size: 25px; }
  .company-address-location { margin: 34px 0 32px; }
  .company-address-location strong { font-size: 36px; }
  .company-address-location span { font-size: 18px; }
  .company-identifiers { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
  .company-address .button { width: 100%; }
  .next-cta { padding: 76px 0 82px; }
  .next-cta h2 { font-size: 40px; }

  .section-heading h2 { font-size: 34px; line-height: 1.1; }
  .section-heading h2,
  .contact-panel h2,
  .next-cta h2 { overflow-wrap: anywhere; hyphens: auto; }
  .section-heading-wide { margin-bottom: 34px; }
  .section-heading > p:not(.eyebrow) { margin-top: 18px; font-size: 17px; }
  .stats-section { padding: 68px 0 72px; }
  .stats-section > .wrap,
  .content-split { grid-template-columns: 1fr; gap: 38px; }
  .stats-grid { margin-top: 2px; }
  .stat-item { min-height: 132px; padding: 24px 16px; }
  .stat-item strong { min-height: 34px; font-size: 34px; }
  .stat-item > span { font-size: 14px; }
  .rich-copy { font-size: 17px; line-height: 1.6; }
  .rich-copy .lead { font-size: 20px; }
  .standards-layout { grid-template-columns: 1fr; gap: 38px; }
  .standards-lockup { padding: 24px 0 22px; }
  .standards-list { grid-template-columns: 1fr; }
  .standard-item,
  .standard-item:first-child,
  .standard-item:last-child { padding: 18px 0 20px; border-right: 0; border-bottom: 1px solid #d7e0e6; }
  .standard-item:last-child { border-bottom: 0; }
  .content-card-grid,
  .scope-list,
  .steps-grid,
  .contact-channel-grid { grid-template-columns: 1fr; }
  .content-card { min-height: 250px; padding: 26px; }
  .content-card h3 { margin-top: 40px; font-size: 23px; }
  .scope-list { gap: 0; }
  .scope-list li { min-height: 76px; font-size: 16px; }
  .steps-grid { gap: 1px; }
  .steps-grid li { min-height: 168px; padding: 25px; }
  .steps-grid p { margin-top: 38px; font-size: 18px; }

  .project-explorer { padding-bottom: 80px; }
  .project-toolbar { grid-template-columns: 1fr; gap: 16px; }
  .project-map { height: 420px; }
  .map-consent { min-height: 0; align-items: flex-start; flex-direction: column; gap: 28px; padding-top: 42px; padding-bottom: 42px; }
  .map-consent h3 { font-size: 29px; }
  .map-consent .button { width: 100%; }
  .project-results { padding-top: 36px; }
  .project-table-head { display: none; }
  .project-row { grid-template-columns: 1fr 1fr; gap: 10px 18px; padding: 22px 0; }
  .project-row h3,
  .project-row > p:first-of-type { grid-column: 1 / -1; }
  .project-row h3 { font-size: 20px; }
  .project-row p { font-size: 14px; }
  .mobile-label { display: block; margin-bottom: 2px; color: #526679; font-size: 10px; font-weight: 800; text-transform: uppercase; }

  .job-row { min-height: 0; align-items: flex-start; flex-direction: column; padding: 26px 0; }
  .job-row h3 { font-size: 24px; }
  .job-row .button { width: 100%; }
  .jobs-status { min-height: 100px; }
  .general-application { width: 100%; }
  .contact-channel { min-height: 245px; padding: 26px; }
  .social-links { align-items: flex-start; flex-direction: column; gap: 14px; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .legal-layout { grid-template-columns: 1fr; gap: 48px; }
  .legal-index { position: static; }
  .legal-index nav { display: grid; grid-template-columns: 1fr 1fr; }
  .legal-index nav a:nth-child(odd) { padding-right: 14px; }
  .legal-index nav a:nth-child(even) { padding-left: 14px; border-left: 1px solid var(--line); }
  .legal-copy > header { padding-bottom: 42px; }
  .legal-copy > header .lead { font-size: 22px; line-height: 1.42; }
  .legal-copy > section { padding: 38px 0; scroll-margin-top: 82px; }
  .legal-copy h2 { font-size: 29px; line-height: 1.16; }
  .legal-copy section > p:not(.eyebrow) { font-size: 16px; line-height: 1.65; }
  .legal-copy li { font-size: 15px; }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
    padding: 22px 20px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .cookie-banner h2 { font-size: 23px; }
  .cookie-banner-actions { min-width: 0; }
  .cookie-banner-actions .button,
  .cookie-secondary { min-height: 44px; padding-inline: 12px; }
  .cookie-modal { align-items: end; padding: 12px; }
  .cookie-dialog { max-height: calc(100dvh - 24px); padding: 28px 20px calc(24px + env(safe-area-inset-bottom)); }
  .cookie-close { top: 10px; right: 10px; }
  .cookie-dialog > h2 { font-size: 31px; }
  .cookie-dialog-intro { margin-bottom: 24px; font-size: 15px; }
  .cookie-setting { gap: 18px; padding: 20px 0; }
  .cookie-setting h3 { font-size: 18px; }
  .cookie-setting > strong { max-width: 84px; }
  .cookie-dialog-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .cookie-dialog-actions .button { width: 100%; }

  footer { padding-top: 72px; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; padding-bottom: 52px; }
  .footer-top h3 { font-size: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-legal { gap: 10px 16px; margin: 8px 0 0; }
}

@media (max-width: 360px) {
  .hero h1,
  .page-hero h1 { font-size: 35px; overflow-wrap: break-word; }
  .detail-section h2 { font-size: 30px; }
  .section-heading h2 { font-size: 30px; }
  .contact-panel h2,
  .next-cta h2 { font-size: 35px; }
  .stat-item { padding-right: 12px; padding-left: 12px; }
  .stat-item strong { min-height: 30px; font-size: 30px; }
  .stat-item strong.stat-value-with-unit { font-size: 26px; line-height: 30px; }
}

@media (max-height: 650px) and (max-width: 700px) {
  .hero { height: calc(100svh - 12px); min-height: 468px; }
  .hero-content { padding-bottom: 24px; }
  .hero h1 { margin-bottom: 16px; font-size: clamp(32px, 10vw, 36px); }
  .hero-lead { margin-bottom: 20px; font-size: 16px; line-height: 1.4; }
  .hero .eyebrow { margin-bottom: 12px; }
  .hero .button { min-height: 46px; }
}

@media (max-height: 600px) and (max-width: 1180px) {
  .mobile-panel { justify-content: flex-start; gap: 32px; padding-top: calc(86px + env(safe-area-inset-top)); overflow-y: auto; }
  .mobile-panel nav a { min-height: 40px; font-size: 22px; line-height: 1.16; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-bg { transform: scale(1.03); }
  .reveal,
  .reveal.reveal-pending { opacity: 1; transform: none; }
  .cap-card.reveal.reveal-pending,
  .cap-media,
  .history-image img { transform: none; }
  .cap-media { inset: 0; }
  .history-image img { height: 100%; margin-top: 0; }
}
