:root {
  --bg: #06131d;
  --bg-2: #092433;
  --bg-3: #0d3341;
  --text: #eff7f7;
  --muted: #9fb3ba;
  --teal: #13d6cf;
  --teal-2: #59f0e8;
  --gold: #f2b743;
  --gold-2: #d99b2d;
  --paper: #f1f2f2;
  --paper-text: #0a2230;
  --line: rgba(255,255,255,.13);
  --line-dark: rgba(7,25,37,.12);
  --max: 1180px;
  --header-h: 74px;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(.22,.8,.24,1);
  --focus-color: #f2b743;
  --focus-shadow: 0 0 0 3px rgba(242,183,67,.24);
  --card-border: rgba(255,255,255,.13);
  --card-surface: rgba(255,255,255,.045);
  --media-surface: #081722;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 999;
  left: 18px;
  top: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--gold);
  color: #08141d;
  border-radius: 4px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.snap-page {
  height: 100svh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scrollbar-color: var(--gold) #06131d;
}
.panel {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  isolation: isolate;
}
.section-inner {
  width: min(var(--max), calc(100% - clamp(42px, 8vw, 140px)));
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.dark-panel {
  background:
    radial-gradient(circle at 70% 20%, rgba(19,214,207,.12), transparent 30%),
    linear-gradient(135deg, #06131d, #082638 48%, #051018);
}
.dark-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  opacity: .45;
}
.light-panel {
  background: var(--paper);
  color: var(--paper-text);
}
.site-header {
  --header-current-h: var(--header-h);
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-current-h);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid transparent;
  background: rgba(5,17,26,.16);
  transform: translateY(0);
  transition:
    height .3s var(--ease),
    padding .3s var(--ease),
    background-color .35s var(--ease),
    border-color .35s var(--ease),
    backdrop-filter .35s var(--ease);
}
.site-header.is-scrolled {
  --header-current-h: 64px;
  padding-block: 7px;
  background: rgba(5,17,26,.84);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.09);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img {
  width: 150px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.28));
  transition: width .3s var(--ease), height .3s var(--ease);
}
.site-header.is-scrolled .brand img {
  width: 136px;
  height: 44px;
}
.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
.site-nav a, .language-trigger {
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}
.site-nav a:not(.header-cta) { position: relative; padding-block: 10px; }
.site-nav a:not(.header-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.site-nav a.is-active::after,
.site-nav a:hover::after { transform: scaleX(1); }
.header-cta {
  border: 1px solid rgba(242,183,67,.68);
  border-radius: 6px;
  padding: 9px 16px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.header-cta:hover { background: rgba(242,183,67,.1); transform: translateY(-1px); }
.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: 16px;
}
.language-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.language-trigger {
  min-width: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(19,214,207,.54);
  border-radius: 999px;
  padding: 8px 13px 8px 12px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.94);
  outline: none;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.language-trigger:hover,
.language-trigger:focus-visible,
.language-switcher.is-open .language-trigger {
  border-color: rgba(19,214,207,.78);
  background: rgba(19,214,207,.08);
  box-shadow: 0 0 0 3px rgba(19,214,207,.12);
}
.language-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg) translateY(-1px);
  transition: transform .25s var(--ease);
}
.language-switcher.is-open .language-chevron { transform: rotate(225deg) translateY(-1px); }
.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 168px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(5,17,26,.96);
  box-shadow: 0 20px 55px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transform-origin: top right;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.language-switcher.is-open .language-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.language-option {
  width: 100%;
  display: grid;
  grid-template-columns: 24px 34px 1fr;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 9px;
  padding: 8px 9px;
  background: transparent;
  color: rgba(255,255,255,.86);
  text-align: left;
  font-size: 12px;
  font-weight: 850;
}
.language-option small {
  color: rgba(255,255,255,.54);
  font-size: 11px;
  font-weight: 700;
}
.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  background: rgba(19,214,207,.12);
  color: #fff;
  outline: none;
}
.flag {
  display: inline-block;
  width: 21px;
  height: 14px;
  flex: 0 0 21px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.32), 0 3px 8px rgba(0,0,0,.18);
  overflow: hidden;
  position: relative;
}
.flag-gb { background: url('assets/flag-gb.png') center/cover no-repeat; }
.flag-de { background: url('assets/flag-de.png') center/cover no-repeat; }
.flag-no { background: url('assets/flag-no.png') center/cover no-repeat; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.section-dots {
  position: fixed;
  right: clamp(16px, 3vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  display: grid;
  gap: 14px;
}
.section-dots a {
  display: grid;
  grid-template-columns: 28px 12px;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.48);
  font-weight: 800;
  font-size: 11px;
}
.section-dots a::after {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  transition: .25s var(--ease);
}
.section-dots a.is-active { color: var(--teal); }
.section-dots a.is-active::after { background: var(--teal); border-color: var(--teal); box-shadow: 0 0 18px var(--teal); }
.section-dots.is-on-light a { color: rgba(7,25,37,.72); }
.section-dots.is-on-light a::after { border-color: rgba(7,25,37,.58); }
.section-dots.is-on-light a.is-active { color: #057d80; }
.section-dots.is-on-light a.is-active::after { background: #057d80; border-color: #057d80; box-shadow: 0 0 16px rgba(5,125,128,.36); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0;
}
h1 { font-size: clamp(42px, 5.25vw, 54px); }
h2 { font-size: clamp(30px, 4.1vw, 36px); }
h3 { font-size: clamp(22px, 2.1vw, 30px); }
p { margin: 0; }
.section-kicker {
  margin: 0 0 20px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
}
.accent-line { width: 44px; height: 2px; background: var(--teal); margin: 20px 0 24px; box-shadow: 0 0 18px rgba(19,214,207,.3); }
.body-large, .hero-lead { color: rgba(239,247,247,.78); font-size: clamp(14px, 1.25vw, 18px); max-width: 610px; }
.light-panel .body-large { color: rgba(8,32,47,.72); }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  filter: saturate(1.04) contrast(1.04);
}
.media-overlay { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.media-overlay--hero {
  background:
    radial-gradient(circle at calc(70% + var(--mx,0px)) calc(50% + var(--my,0px)), rgba(19,214,207,.18), transparent 27%),
    linear-gradient(90deg, rgba(5,17,26,.98) 0%, rgba(5,17,26,.86) 46%, rgba(5,17,26,.36) 72%, rgba(5,17,26,.82) 100%),
    linear-gradient(180deg, rgba(5,17,26,.3), rgba(5,17,26,.93));
}
.rig-silhouette {
  position: absolute;
  right: 10vw;
  top: 17vh;
  width: min(43vw, 620px);
  height: 45vh;
  z-index: -1;
  background: url('assets/sector-oil-gas.jpg') center/cover no-repeat;
  opacity: .78;
  mix-blend-mode: screen;
  filter: saturate(.85) contrast(1.05) brightness(.72);
  border-radius: 4px;
}
.rig-silhouette::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,17,26,.65), transparent 35%, rgba(5,17,26,.1));
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, .92fr) minmax(260px, .8fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  padding-top: var(--header-h);
}
.hero-title span { color: var(--teal-2); }
.hero-copy { max-width: 660px; }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 900;
  font-size: 13px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn::after { content: "→"; font-weight: 900; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #091722;
  background: linear-gradient(135deg, var(--gold), #e7a32e);
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(242,183,67,.23);
}
.btn-primary:hover { box-shadow: 0 24px 60px rgba(242,183,67,.3); }
.btn-outline { color: #fff; background: rgba(5,17,26,.38); border-color: rgba(242,183,67,.58); }
.btn-outline:hover { background: rgba(242,183,67,.08); }

.hero-tabs {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(34px, 5.2vh, 58px);
}
.hero-tab {
  appearance: none;
  display: grid;
  gap: 10px;
  padding: 0 0 12px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 850;
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero-tab:hover { color: #fff; border-color: rgba(255,255,255,.5); transform: translateY(-1px); }
.hero-tab-bar {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.2);
  overflow: visible;
}
.hero-tab-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(0, -50%);
  opacity: 0;
  box-shadow: 0 0 18px rgba(242,183,67,.48);
}
.hero-tab.is-active { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-tab.is-active .hero-tab-bar::before {
  opacity: 1;
  animation: heroTabProgress 5s linear forwards;
}
@keyframes heroTabProgress {
  from { left: 0; }
  to { left: calc(100% - 9px); }
}
.hero-copy.is-changing .hero-title,
.hero-copy.is-changing .hero-lead,
.hero-copy.is-changing .section-kicker {
  opacity: 0;
  transform: translateY(10px);
}
.hero-title,
.hero-lead,
.hero-copy .section-kicker { transition: opacity .52s var(--ease), transform .52s var(--ease); }
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.55em);
  filter: blur(4px);
  animation: heroWordIn .72s var(--ease) forwards;
  animation-delay: calc(var(--word-delay, 0s) + .08s);
  will-change: opacity, transform, filter;
}
@keyframes heroWordIn {
  0% { opacity: 0; transform: translateY(.55em); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-word { opacity: 1; transform: none; filter: none; animation: none; }
}

.hero-card {
  justify-self: end;
  width: min(365px, 100%);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(7,27,39,.42), rgba(7,27,39,.2));
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 90px rgba(0,0,0,.26);
  transform: translateY(10vh);
}
.card-label {
  display: inline-block;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 14px;
}
.hero-card strong { display: block; font-family: var(--font-display); font-size: 21px; line-height: 1.12; margin-bottom: 12px; }
.hero-card p { color: var(--muted); }
.scroll-cue {
  position: absolute;
  left: clamp(30px, 8vw, 108px);
  bottom: clamp(28px, 6vh, 64px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(19,214,207,.52);
  color: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.split-viewport {
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(420px, 1fr);
  align-items: stretch;
  width: 100%;
  max-width: none;
  gap: 0;
}
.panel-copy {
  align-self: center;
  padding-left: max(clamp(28px, 8vw, 110px), calc((100vw - var(--max)) / 2));
  padding-right: clamp(42px, 6vw, 86px);
}
.accordion { display: grid; gap: 14px; margin-top: 34px; max-width: 530px; }
.service-row {
  background: #fff;
  border: 1px solid rgba(5,17,26,.06);
  border-radius: 6px;
  box-shadow: 0 18px 52px rgba(7,25,37,.08);
  overflow: hidden;
}
.service-row button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 48px 1fr 26px;
  gap: 16px;
  text-align: left;
  align-items: center;
  color: var(--paper-text);
}
.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(19,151,158,.32);
  color: #0b8990;
  border-radius: 50%;
  font-size: 22px;
}
.service-row strong { display: block; font-family: var(--font-display); font-size: 17px; margin-bottom: 2px; }
.service-row small { display: block; color: rgba(8,32,47,.68); }
.plus { color: #0b8990; font-size: 24px; }
.editorial-image {
  margin: 0;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background: #0c2b39;
}
.editorial-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) brightness(.82); }
.editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(241,242,242,.08), rgba(5,17,26,.2));
}
.editorial-image figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 16px;
  background: rgba(5,17,26,.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  z-index: 1;
}
.section-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
}
.section-heading { margin-bottom: 42px; }
.sector-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.sector-card {
  min-height: 340px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(6,19,29,.1), rgba(6,19,29,.88)), var(--img) center/cover no-repeat;
  box-shadow: 0 25px 80px rgba(0,0,0,.2);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.sector-card:hover { transform: translateY(-8px); border-color: rgba(19,214,207,.48); box-shadow: 0 35px 90px rgba(0,0,0,.26); }
.sector-icon { color: var(--teal); font-size: 24px; margin-bottom: 16px; }
.sector-card h3 { font-size: 21px; margin-bottom: 10px; }
.sector-card p { color: rgba(239,247,247,.76); min-height: 62px; font-size: 13px; }
.project-layout {
  display: grid;
  position: static;
  grid-template-columns: minmax(350px,.7fr) minmax(460px,1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  padding-top: var(--header-h);
}
.project-slide-count {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-facts { display: grid; gap: 16px; margin: 30px 0; }
.project-facts > div { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; align-items: start; }
.project-facts > div > div { display: grid; grid-template-columns: 1fr; gap: 5px; min-width: 0; }
.project-facts span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(242,183,67,.62);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.project-facts strong { display: block; color: #fff; line-height: 1.25; }
.project-facts small { display: block; color: var(--muted); line-height: 1.45; }
.project-media { align-self: center; min-width: 0; }
.project-slider-frame { position: relative; }
.project-slide-figure {
  width: 100%;
  height: min(54vh, 540px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  background: #06131d;
}
.project-slide-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-slide-progress {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04);
}
.project-slide-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  animation: projectSlideProgress 7s linear both;
}
@keyframes projectSlideProgress {
  0% { transform: scaleX(0); filter: brightness(1); }
  82% { transform: scaleX(.82); filter: brightness(1); }
  100% { transform: scaleX(1); filter: brightness(.82); }
}
.project-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(5,17,26,.78);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(12px);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.project-arrow:hover { background: rgba(242,183,67,.9); color: #06131d; border-color: rgba(242,183,67,.9); transform: translateY(-50%) scale(1.04); }
.project-arrow--prev { left: clamp(18px, 3vw, 54px); }
.project-arrow--next { right: clamp(18px, 3vw, 54px); }
.project-slide-dots { position: absolute; left: 0; right: 0; top: calc(70% + min(24.5vh, 255px)); display: flex; justify-content: center; gap: 10px; margin-top: 0; z-index: 4; }
.project-slide-dots button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(5,17,26,.32);
  padding: 0;
  opacity: .86;
  color: rgba(239,247,247,.76);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .03em;
  display: grid;
  place-items: center;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.project-slide-dots button.is-active { background: var(--teal); color: #06131d; border-color: var(--teal); transform: scale(1.08); }
.project-panel.is-project-changing [data-project-image],
.project-panel.is-project-changing [data-project-title],
.project-panel.is-project-changing [data-project-lead],
.project-panel.is-project-changing [data-project-facts] > div,
.project-panel.is-project-changing [data-project-cta],
.project-panel.is-project-changing [data-project-count] {
  opacity: 0;
  transform: translateY(10px);
}
.project-panel.is-project-entering [data-project-image] { animation: projectImageIn 1.05s var(--ease) both; }
.project-panel.is-project-entering [data-project-title] { animation: projectTextIn .85s .2s var(--ease) both; }
.project-panel.is-project-entering [data-project-lead] { animation: projectTextIn .85s .42s var(--ease) both; }
.project-panel.is-project-entering [data-project-facts] > div:nth-child(1) { animation: projectTextIn .75s .62s var(--ease) both; }
.project-panel.is-project-entering [data-project-facts] > div:nth-child(2) { animation: projectTextIn .75s .76s var(--ease) both; }
.project-panel.is-project-entering [data-project-facts] > div:nth-child(3) { animation: projectTextIn .75s .9s var(--ease) both; }
.project-panel.is-project-entering [data-project-cta] { animation: projectTextIn .75s 1.05s var(--ease) both; }
@keyframes projectImageIn {
  from { opacity: 0; transform: scale(1.025); filter: saturate(.85) brightness(.82); }
  to { opacity: 1; transform: scale(1); filter: saturate(1) brightness(1); }
}
@keyframes projectTextIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.project-main {
  width: 100%;
  height: min(54vh, 540px);
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}
.thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.thumb-row button { border: 1px solid rgba(255,255,255,.18); padding: 0; height: 76px; background: transparent; opacity: .68; transition: opacity .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
.thumb-row button img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row button.is-active, .thumb-row button:hover { opacity: 1; border-color: var(--gold); transform: translateY(-2px); }
.about-layout {
  display: grid;
  grid-template-columns: minmax(420px,.8fr) minmax(460px,1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
  padding-top: var(--header-h);
}
.about-metrics { display: flex; gap: clamp(26px, 5vw, 58px); margin-top: 38px; }
.about-metrics div { display: grid; gap: 7px; }
.about-metrics span { color: #fff; font-size: 26px; font-family: var(--font-display); line-height: 1; }
.about-metrics small { color: var(--teal); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.founder-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  backdrop-filter: blur(12px);
  box-shadow: 0 35px 90px rgba(0,0,0,.22);
}
.founder-card img { width: 230px; height: 280px; object-fit: cover; filter: grayscale(1); }
.teal { color: var(--teal); font-weight: 800; margin: 8px 0 4px; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.contact-list li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; color: rgba(239,247,247,.82); }
.contact-list li span:first-child { color: var(--teal); font-weight: 900; }
.contact-list a:hover { color: var(--gold); }

.careers-panel {
  background:
    linear-gradient(90deg, rgba(6,19,29,.98) 0%, rgba(7,31,43,.94) 48%, rgba(6,19,29,.9) 100%),
    url('assets/engineering-team.jpg') right center/52vw 100% no-repeat;
}
.careers-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5,18,27,.72));
  pointer-events: none;
  z-index: 0;
}
.careers-layout {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  padding-top: var(--header-h);
  align-items: baseline;
}
.career-lead { max-width: 560px; }
.career-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  max-width: 600px;
}
.career-value {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  backdrop-filter: blur(10px);
  display: grid;
  gap: 6px;
}
.career-value span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(19,214,207,.42);
  border-radius: 50%;
  color: var(--teal);
  font-weight: 900;
}
.career-value strong { color: #fff; font-size: 15px; }
.career-value small { color: rgba(239,247,247,.68); line-height: 1.45; }
.career-programs {
  display: grid;
  gap: 14px;
}
.career-program {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(13px);
  overflow: hidden;
}
.career-program::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--teal), transparent 68%);
  opacity: .9;
}
.program-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(242,183,67,.7);
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}
.career-program h3 {
  font-size: clamp(21px, 2.2vw, 28px);
  letter-spacing: -.025em;
  margin-bottom: 9px;
}
.career-program p {
  color: rgba(239,247,247,.72);
  font-size: 13px;
  line-height: 1.55;
}
.career-program a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  margin-top: 12px;
  font-weight: 850;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.career-program a::after { content: "→"; }


.innovation-panel {
  background:
    linear-gradient(90deg, rgba(6,19,29,.97) 0%, rgba(6,19,29,.92) 48%, rgba(6,19,29,.72) 100%),
    url('assets/ocean-poster.jpg') center/cover no-repeat;
}
.media-overlay--innovation {
  background:
    radial-gradient(circle at 76% 38%, rgba(19,214,207,.17), transparent 30%),
    linear-gradient(180deg, rgba(6,19,29,.08), rgba(6,19,29,.38));
}
.innovation-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-top: var(--header-h);
}
.innovation-copy { max-width: 680px; }
.innovation-copy .accent-line { margin: 16px 0 18px; }
.innovation-subtitle {
  max-width: 650px;
  color: rgba(239,247,247,.82);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 650;
  line-height: 1.24;
  letter-spacing: -.018em;
}
.innovation-points {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}
.innovation-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(8px);
}
.innovation-point > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(242,183,67,.55);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
}
.innovation-point h3 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.innovation-point p {
  color: rgba(239,247,247,.67);
  font-size: 12px;
  line-height: 1.43;
}
.innovation-card {
  width: 100%;
  max-width: 540px;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 38px 95px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}

.contact-panel {
  background: linear-gradient(180deg, #06131d 0%, #06131d 53%, #05101a 100%);
}
.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,19,29,.46), rgba(6,19,29,.98)), url('assets/ocean-poster.jpg') center bottom/cover no-repeat;
  z-index: -1;
  opacity: .6;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(340px,.72fr) minmax(460px,1fr);
  gap: clamp(32px, 5.5vw, 78px);
  align-items: center;
  height: calc(100% - 218px);
  min-height: 0;
  padding-top: calc(var(--header-h) + 4px);
  padding-bottom: 18px;
  align-content: start;
}
.contact-list--large { font-size: 14px; margin-top: 22px; }
.contact-form {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(5,17,26,.54);
  color: #fff;
  border-radius: 3px;
  padding: 11px 13px;
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-form textarea { min-height: 127px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(19,214,207,.12); }
.form-note { margin-top: 12px; color: rgba(239,247,247,.55); font-size: 12px; }
.site-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 218px;
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(150px, .65fr));
  gap: 32px;
  padding: 24px clamp(28px, 6vw, 90px) 18px;
  background: rgba(4,15,25,.8);
  border-top: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  z-index: 2;
}
.footer-brand img { width: 132px; margin-bottom: 10px; }
.footer-brand p { max-width: 280px; color: rgba(239,247,247,.66); font-size: 13px; }
.footer-col { display: grid; gap: 6px; align-content: start; }
.footer-col h4 { color: #fff; margin: 0 0 8px; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; }
.footer-col a { color: rgba(239,247,247,.68); font-size: 13px; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(239,247,247,.52);
  font-size: 12px;
}
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.15s var(--ease), transform 1.15s var(--ease); }
.panel.is-visible .reveal { opacity: 1; transform: translateY(0); }
.panel.is-visible .reveal-delay-1 { transition-delay: .14s; }
.panel.is-visible .reveal-delay-2 { transition-delay: .28s; }
.panel.is-visible .reveal-delay-3 { transition-delay: .42s; }
.panel.is-visible .reveal-delay-4 { transition-delay: .56s; }
.panel.is-visible .reveal-delay-5 { transition-delay: .7s; }
@media (max-width: 1140px) {
  .site-nav { gap: 16px; }
  .hero-card { display: none; }
  .section-dots { display: none; }
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .sector-card { min-height: 250px; }
  .project-layout, .innovation-layout, .about-layout, .careers-layout, .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .project-layout { position: relative; }
  .project-slider-frame { position: relative; }
  .project-arrow--prev { left: 14px; }
  .project-arrow--next { right: 14px; }
  .project-slide-dots { position: static; margin-top: 16px; }
  .project-slide-progress { left: 16px; right: 16px; bottom: 14px; }
  .project-main, .project-slide-figure { height: 340px; }
  .site-footer { position: relative; grid-template-columns: 1fr 1fr; }
  .contact-panel { height: auto; min-height: 100svh; }
}
@media (max-width: 900px) {
  body { overflow: auto; }
  .snap-page { height: auto; overflow: visible; scroll-snap-type: none; }
  .panel { min-height: 100svh; height: auto; padding: 92px 0 58px; scroll-snap-align: none; }
  .hero-panel { height: 100svh; padding: 0; }
  .site-header { padding-inline: 18px; }
  .brand img { width: 110px; }
  .site-header.is-scrolled .brand img { width: 100px; height: 42px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: var(--header-current-h);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 20px;
    background: rgba(5,17,26,.96);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .snap-page { overflow: hidden; }
  body.nav-open .site-nav { display: flex; }
  .language-switcher { border-left: 0; padding-left: 0; padding-top: 8px; align-items: stretch; }
  .language-trigger { width: 100%; justify-content: space-between; }
  .language-menu { position: static; width: 100%; margin-top: 8px; opacity: 1; transform: none; pointer-events: auto; display: none; }
  .language-switcher.is-open .language-menu { display: grid; transform: none; }
  .section-inner { width: min(var(--max), calc(100% - 32px)); height: auto; }
  .hero-grid, .split-viewport { grid-template-columns: 1fr; }
  .split-viewport { width: min(var(--max), calc(100% - 32px)); gap: 28px; }
  .hero-tabs { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .panel-copy { padding: 0; }
  .editorial-image { min-height: 360px; }
  .sector-grid { grid-template-columns: 1fr; }
  .about-metrics { flex-wrap: wrap; }
  .career-values { grid-template-columns: 1fr; }
  .career-program { grid-template-columns: 46px 1fr; padding: 18px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-card img { height: 240px; width: 200px; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .snap-page { scroll-snap-type: none; }
}

.innovation-video-card {
  overflow: hidden;
  padding: 0;
}
.innovation-video-card video {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #04111a;
}
.innovation-video-card figcaption {
  padding: 13px 16px 15px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(239,247,247,.64);
  font-size: 12px;
  line-height: 1.45;
}
@media (max-width: 1140px) {
  .innovation-layout { grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); }
  .innovation-copy { max-width: none; }
  .innovation-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .innovation-point:last-child { grid-column: 1 / -1; }
  .innovation-card { max-width: 460px; }
}
@media (max-width: 900px) {
  .innovation-layout { grid-template-columns: 1fr; }
  .innovation-points { grid-template-columns: 1fr; }
  .innovation-point:last-child { grid-column: auto; }
  .innovation-card { max-width: 680px; justify-self: stretch; }
}
@media (max-width: 560px) {
  .innovation-point { grid-template-columns: 30px 1fr; padding: 10px; }
  .innovation-point > span { width: 27px; height: 27px; }
}
.geo-presence {
  margin-top: 22px;
  max-width: 560px;
}
.geo-presence > p {
  margin: 0 0 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 900;
}
.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.geo-grid article {
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.geo-grid strong,
.geo-grid span,
.geo-grid small { display: block; }
.geo-grid strong { color: #fff; font-family: var(--font-display); font-size: 15px; }
.geo-grid span { color: var(--gold); font-size: 12px; margin-top: 2px; }
.geo-grid small { color: rgba(239,247,247,.64); font-size: 11px; margin-top: 7px; }
body.subpage {
  overflow: auto;
  background: var(--bg);
  color: var(--text);
}
body.subpage .site-header {
  background: rgba(5,17,26,.34);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,.04);
}
body.subpage .site-header.is-scrolled {
  background: rgba(5,17,26,.86);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255,255,255,.09);
}
.subpage-main { background: var(--bg); min-height: 100svh; }
.subpage-hero { padding: calc(var(--header-h) + 76px) clamp(28px, 6vw, 90px) 72px; background: linear-gradient(135deg, #06131d, #092c3a 62%, #041018); position: relative; overflow: hidden; }
.subpage-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 52px 52px; pointer-events: none; opacity: .45; }
.subpage-hero-inner { position: relative; z-index: 1; width: min(var(--max), 100%); margin: 0 auto; display: grid; gap: 20px; }
.subpage-hero h1 { font-size: clamp(44px, 7vw, 92px); line-height: .94; margin: 0; }
.subpage-hero p { max-width: 760px; color: rgba(239,247,247,.76); }
.subpage-section { padding: clamp(64px, 9vw, 112px) clamp(28px, 6vw, 90px); }
.subpage-section.light { background: var(--paper); color: var(--paper-text); }
.subpage-wrap { width: min(var(--max), 100%); margin: 0 auto; }
.subpage-grid { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.sub-card { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.045); padding: 24px; }
.light .sub-card { border-color: rgba(7,25,37,.12); background: #fff; box-shadow: 0 18px 45px rgba(7,25,37,.06); }
.sub-card img { width: calc(100% + 48px); max-width: none; aspect-ratio: 16 / 10; object-fit: cover; margin: -24px -24px 22px; display: block; }
.sub-card h3 { margin: 0 0 12px; }
.sub-card p { color: inherit; opacity: .75; }
.service-niche { grid-template-columns: repeat(2, 1fr); }
.project-detail { scroll-margin-top: calc(var(--header-h) + 24px); display: grid; grid-template-columns: minmax(300px,.72fr) minmax(420px,1fr); gap: clamp(28px, 5vw, 72px); align-items: center; padding-block: clamp(54px, 8vw, 90px); border-bottom: 1px solid rgba(255,255,255,.1); }
.project-detail img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 30px 85px rgba(0,0,0,.22); }
.project-detail:nth-child(even) { direction: rtl; }
.project-detail:nth-child(even) > * { direction: ltr; }
.project-detail ul { margin: 22px 0 0; padding-left: 18px; color: rgba(239,247,247,.74); }
.subpage-footer { position: static; min-height: auto; }
@media (max-width: 900px) {
  .cards-2, .cards-3, .cards-4, .service-niche, .project-detail { grid-template-columns: 1fr; }
  .project-detail:nth-child(even) { direction: ltr; }
  .geo-grid { grid-template-columns: 1fr; }
}


/* --- Requested refinements --- */
.light-panel .section-kicker,
.subpage-section.light .section-kicker { color: #0d4352; }
.section-dots.is-on-light a { color: rgba(7,25,37,.88); }
.section-dots.is-on-light a::after { border-color: rgba(7,25,37,.78); }
.section-dots.is-on-light a.is-active { color: #083f50; }
.section-dots.is-on-light a.is-active::after { background: #083f50; border-color: #083f50; box-shadow: 0 0 16px rgba(8,63,80,.34); }

.hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(.35em);
  filter: blur(1.5px);
  animation: heroCharIn .34s var(--ease) forwards;
  animation-delay: calc(var(--char-delay, 0s) + .02s);
  will-change: opacity, transform, filter;
}
@keyframes heroCharIn {
  0% { opacity: 0; transform: translateY(.35em); filter: blur(1.5px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.what-panel .split-viewport { gap: clamp(28px, 4vw, 48px); }
.what-panel .panel-copy { padding-right: clamp(24px, 4vw, 48px); }
.what-panel .editorial-image {
  align-self: center;
  min-height: auto;
  height: min(72vh, 590px);
  margin-right: max(clamp(28px, 7vw, 100px), calc((100vw - var(--max)) / 2));
  border-radius: 22px;
  border: 1px solid rgba(7,25,37,.08);
  box-shadow: 0 32px 80px rgba(7,25,37,.14);
}
.what-panel .editorial-image::after { background: linear-gradient(90deg, rgba(241,242,242,.04), rgba(5,17,26,.14)); }

.sector-grid.sector-honeycomb {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: stretch;
}
.sector-grid.sector-honeycomb .sector-card {
  min-height: 290px;
  padding: 30px 24px 28px;
  border-radius: 18px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.sector-grid.sector-honeycomb .sector-card:nth-child(1),
.sector-grid.sector-honeycomb .sector-card:nth-child(2),
.sector-grid.sector-honeycomb .sector-card:nth-child(3) { grid-column: span 2; }
.sector-grid.sector-honeycomb .sector-card:nth-child(4) { grid-column: 2 / span 2; }
.sector-grid.sector-honeycomb .sector-card:nth-child(5) { grid-column: 4 / span 2; }

.project-slide-progress--elevated {
  left: 50%;
  right: auto;
  bottom: 18px;
  width: min(320px, calc(100% - 40px));
  height: auto;
  padding: 10px 14px;
  display: grid;
  gap: 8px;
  background: rgba(5,17,26,.7);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}
.project-slide-progress--elevated small {
  color: rgba(239,247,247,.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-slide-progress--elevated span { height: 3px; }
.project-slide-progress--elevated { transform: translateX(-50%); }

.services-general-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f4f6f7 0%, #eef2f4 100%);
}
.services-general-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(8,63,80,.08), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(242,183,67,.10), transparent 18%),
    repeating-linear-gradient(135deg, rgba(8,63,80,.045) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(45deg, rgba(8,63,80,.03) 0 1px, transparent 1px 18px);
  opacity: .55;
  pointer-events: none;
}
.services-general-section > .subpage-wrap { position: relative; z-index: 1; }

.sub-card,
.founder-card,
.career-value,
.career-program,
.contact-form,
.contact-primary-card,
.geo-grid article,
.innovation-note,
.innovation-card,
.project-showcase-card,
.project-showcase-media img,
.project-detail img,
.project-slide-figure,
.site-nav,
.project-slide-progress--elevated,
.hero-tab,
.service-row { border-radius: 16px; }
.light .sub-card,
.sub-card.light-surface { border-radius: 18px; }
.sub-card { overflow: hidden; }
.sub-card img { width: calc(100% + 48px); height: 360px; aspect-ratio: auto; object-fit: cover; object-position: center; }

.careers-panel {
  background:
    linear-gradient(90deg, rgba(6,19,29,.98) 0%, rgba(7,31,43,.94) 48%, rgba(6,19,29,.9) 100%),
    url('assets/engineering-team.jpg') right center/52vw 100% no-repeat;
}
.career-programs { gap: 18px; }
.career-program {
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
}
.career-program::before { display: none; }
.career-program-media {
  min-height: 160px;
  background: linear-gradient(180deg, rgba(6,19,29,.06), rgba(6,19,29,.52)), var(--img) center/cover no-repeat;
}
.career-program-content {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
}
.career-program h3 { margin-top: 2px; }

.contact-layout { align-items: start; }
.contact-primary-card {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(10px);
}
.contact-list li { align-items: start; }
.contact-list--large { margin-top: 0; }
.contact-list--large li { gap: 12px; }
.contact-icon {
  width: 34px;
  height: 34px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid rgba(19,214,207,.34);
  background: rgba(19,214,207,.08) center/16px 16px no-repeat;
}
.icon-phone { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313d6cf' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.77 19.77 0 0 1-8.63-3.07A19.5 19.5 0 0 1 5.15 12.8 19.77 19.77 0 0 1 2.08 4.09 2 2 0 0 1 4.07 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.79.61 2.65a2 2 0 0 1-.45 2.11L8 9.71a16 16 0 0 0 6.29 6.29l1.23-1.23a2 2 0 0 1 2.11-.45c.86.28 1.75.49 2.65.61A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.icon-email { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313d6cf' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E"); }
.icon-location { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313d6cf' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.icon-web { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313d6cf' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10Z'/%3E%3C/svg%3E"); }
.geo-grid { gap: 14px; }
.geo-grid article {
  padding: 16px 16px 14px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.geo-head {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.geo-head img {
  width: 38px;
  height: 26px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.22);
}
.geo-grid strong, .geo-grid span { margin: 0; }
.geo-grid span { margin-top: 3px; }

.footer-privacy-link {
  color: rgba(239,247,247,.68);
  font-size: 12px;
}
.footer-privacy-link:hover { color: var(--teal); }

.projects-hero::after,
.privacy-hero::after { opacity: .32; }
.projects-showcase { display: grid; gap: 28px; }
.project-showcase-card {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 48px);
  padding: clamp(18px, 2.8vw, 28px);
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow: 0 30px 85px rgba(0,0,0,.2);
}
.project-showcase-card:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr); }
.project-showcase-card:nth-child(even) .project-showcase-media { order: 2; }
.project-showcase-card:nth-child(even) .project-showcase-content { order: 1; }
.project-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.project-showcase-content { align-self: center; }
.project-lines { display: grid; gap: 12px; margin-top: 26px; }
.project-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.project-line span {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(242,183,67,.62);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
}
.project-line p { color: rgba(239,247,247,.74); line-height: 1.55; }

.light-surface { border-color: rgba(7,25,37,.1); background: #fff; box-shadow: 0 18px 45px rgba(7,25,37,.06); }

@media (max-width: 1140px) {
  .sector-grid.sector-honeycomb { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sector-grid.sector-honeycomb .sector-card:nth-child(1),
  .sector-grid.sector-honeycomb .sector-card:nth-child(2) { grid-column: span 2; }
  .sector-grid.sector-honeycomb .sector-card:nth-child(3) { grid-column: 2 / span 2; }
  .sector-grid.sector-honeycomb .sector-card:nth-child(4) { grid-column: 1 / span 2; }
  .sector-grid.sector-honeycomb .sector-card:nth-child(5) { grid-column: 3 / span 2; }
}
@media (max-width: 900px) {
  .what-panel .editorial-image { margin-right: 0; height: 380px; }
  .sector-grid.sector-honeycomb { grid-template-columns: 1fr; }
  .sector-grid.sector-honeycomb .sector-card { clip-path: none; grid-column: auto !important; min-height: 250px; }
  .career-program-content { grid-template-columns: 46px 1fr; padding: 18px; }
  .project-showcase-card,
  .project-showcase-card:nth-child(even) { grid-template-columns: 1fr; }
  .project-showcase-card:nth-child(even) .project-showcase-media,
  .project-showcase-card:nth-child(even) .project-showcase-content { order: initial; }
}


/* --- v03 targeted refinements: privacy, sectors, contact footer, typed hero --- */
.hero-copy.is-changing .hero-title,
.hero-copy.is-changing .hero-lead,
.hero-copy.is-changing .section-kicker {
  opacity: 0;
  transform: none;
}
.hero-title,
.hero-lead,
.hero-copy .section-kicker { transition: opacity .18s linear; }
.hero-char {
  display: inline-block;
  opacity: 0;
  transform: none;
  filter: none;
  animation: heroCharType .01s linear forwards;
  animation-delay: var(--char-delay, 0s);
  will-change: opacity;
}
.hero-title.is-typing,
.hero-lead.is-typing,
.hero-copy .section-kicker.is-typing {
  position: relative;
}
.hero-title.is-typing::after,
.hero-lead.is-typing::after,
.hero-copy .section-kicker.is-typing::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 4px;
  vertical-align: -0.12em;
  background: rgba(255,255,255,.92);
  animation: heroCaretBlink .85s steps(1) infinite;
}
@keyframes heroCharType { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroCaretBlink { 50% { opacity: 0; } }

.sector-grid.sector-honeycomb {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px 20px;
  justify-items: center;
  align-items: start;
}
.sector-grid.sector-honeycomb .sector-card {
  position: relative;
  width: min(100%, 330px);
  min-height: 0;
  aspect-ratio: 1.08 / 1;
  padding: 0;
  overflow: hidden;
  clip-path: polygon(25% 4.75%, 75% 4.75%, 100% 50%, 75% 95.25%, 25% 95.25%, 0 50%);
  background: var(--img) center/cover no-repeat;
  box-shadow: 0 26px 80px rgba(0,0,0,.26);
}
.sector-grid.sector-honeycomb .sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,19,29,.12) 8%, rgba(6,19,29,.34) 48%, rgba(6,19,29,.92) 100%);
}
.sector-card__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 34px 30px;
  align-items: center;
}
.sector-grid.sector-honeycomb .sector-card:nth-child(1) { grid-column: 1 / span 4; }
.sector-grid.sector-honeycomb .sector-card:nth-child(2) { grid-column: 5 / span 4; }
.sector-grid.sector-honeycomb .sector-card:nth-child(3) { grid-column: 9 / span 4; }
.sector-grid.sector-honeycomb .sector-card:nth-child(4) { grid-column: 3 / span 4; margin-top: -42px; }
.sector-grid.sector-honeycomb .sector-card:nth-child(5) { grid-column: 7 / span 4; margin-top: -42px; }
.sector-card h3 {
  font-size: clamp(17px, 1.65vw, 28px);
  margin: 0 0 8px;
  line-height: 1.04;
  text-wrap: balance;
}
.sector-card p {
  min-height: 0;
  margin: 0;
  max-width: 222px;
  color: rgba(239,247,247,.82);
  font-size: 13px;
  line-height: 1.45;
  text-wrap: pretty;
  text-align: center;
}
.sector-icon {
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1;
}

.contact-layout {
  height: calc(100% - 178px);
  gap: clamp(26px, 4.3vw, 64px);
  padding-bottom: 10px;
}
.site-footer {
  min-height: 178px;
  grid-template-columns: minmax(250px, 1.2fr) minmax(255px, .95fr) minmax(180px, .7fr) minmax(150px, .58fr);
  gap: 20px 26px;
  padding: 18px clamp(28px, 6vw, 90px) 14px;
}
.footer-col--nav .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 6px 18px;
}
.footer-col--nav .footer-links-grid a { line-height: 1.42; }
.footer-brand p { max-width: 260px; }
.geo-grid article { min-height: 86px; }

.privacy-page-section { padding-top: 36px; padding-bottom: 70px; }
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}
.privacy-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 2.6vw, 30px);
}
.privacy-summary h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: .98; }
.privacy-summary p { margin: 0; }
.privacy-summary-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.privacy-summary-list li {
  position: relative;
  padding-left: 18px;
  color: var(--paper-text);
}
.privacy-summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
}
.privacy-content { display: grid; gap: 16px; }
.privacy-article { padding: clamp(24px, 2.5vw, 30px); }
.privacy-article h3 { margin: 0 0 10px; }
.privacy-article p { margin: 0; line-height: 1.72; }

@media (max-width: 1180px) {
  .sector-grid.sector-honeycomb { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .sector-grid.sector-honeycomb .sector-card:nth-child(1) { grid-column: 1 / span 3; }
  .sector-grid.sector-honeycomb .sector-card:nth-child(2) { grid-column: 4 / span 3; }
  .sector-grid.sector-honeycomb .sector-card:nth-child(3) { grid-column: 2 / span 4; margin-top: -18px; }
  .sector-grid.sector-honeycomb .sector-card:nth-child(4) { grid-column: 1 / span 3; margin-top: -18px; }
  .sector-grid.sector-honeycomb .sector-card:nth-child(5) { grid-column: 4 / span 3; margin-top: -18px; }
}
@media (max-width: 980px) {
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-summary { position: static; }
  .site-footer { grid-template-columns: 1fr 1fr; min-height: auto; }
  .contact-layout { height: auto; }
}
@media (max-width: 760px) {
  .sector-grid.sector-honeycomb { grid-template-columns: 1fr; gap: 18px; }
  .sector-grid.sector-honeycomb .sector-card {
    clip-path: none;
    width: 100%;
    aspect-ratio: auto;
    min-height: 280px;
  }
  .sector-grid.sector-honeycomb .sector-card:nth-child(n) { grid-column: auto; margin-top: 0; }
  .footer-col--nav .footer-links-grid { grid-template-columns: 1fr 1fr; }
}


/* --- targeted fixes: hero typing word integrity + seamless honeycomb --- */
.hero-word-group {
  display: inline-block;
  white-space: nowrap;
}
.hero-title.is-typing::after,
.hero-lead.is-typing::after,
.hero-copy .section-kicker.is-typing::after {
  display: none !important;
  content: none !important;
}

.sector-grid.sector-honeycomb {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0 !important;
  max-width: 1080px;
  margin: 0 auto;
  row-gap: 0 !important;
}
.sector-grid.sector-honeycomb .sector-card {
  flex: 0 0 clamp(260px, 27vw, 340px);
  width: clamp(260px, 27vw, 340px);
  margin: 0 clamp(-30px, -2.2vw, -18px);
}
.sector-grid.sector-honeycomb .sector-card:nth-child(n) {
  grid-column: auto !important;
}
.sector-grid.sector-honeycomb .sector-card:nth-child(4),
.sector-grid.sector-honeycomb .sector-card:nth-child(5) {
  margin-top: clamp(-92px, -7.2vw, -60px) !important;
}
.sector-grid.sector-honeycomb .sector-card:nth-child(4) {
  margin-left: clamp(95px, 8vw, 130px);
}
.sector-grid.sector-honeycomb .sector-card:nth-child(5) {
  margin-right: clamp(95px, 8vw, 130px);
}
@media (max-width: 760px) {
  .sector-grid.sector-honeycomb .sector-card:nth-child(n) {
    margin: 0 !important;
  }
}


/* --- Careers section: source content + uploaded images, site-native design --- */
.careers-layout--source {
  grid-template-columns: minmax(430px, .9fr) minmax(520px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.careers-layout--source .careers-copy { max-width: 680px; }
.career-values-block { margin-top: 30px; }
.career-values-block h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 16px;
}
.careers-layout--source .career-values {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}
.careers-layout--source .career-value {
  min-height: 140px;
  padding: 0;
  overflow: hidden;
  display: grid;
  align-content: end;
  border-radius: 16px;
  position: relative;
}
.careers-layout--source .career-value img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) brightness(.62);
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.careers-layout--source .career-value:hover img { transform: scale(1.04); filter: saturate(.98) brightness(.72); }
.careers-layout--source .career-value strong {
  position: relative;
  z-index: 1;
  padding: 18px;
  font-size: 16px;
  background: linear-gradient(180deg, transparent, rgba(6,19,29,.88));
}
.careers-layout--source .career-programs {
  gap: 14px;
}
.careers-layout--source .career-program {
  grid-template-columns: 160px 1fr;
  padding: 0;
  border-radius: 16px;
  min-height: 176px;
}
.careers-layout--source .career-program::before { display: none; }
.careers-layout--source .career-program-media {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(6,19,29,.02), rgba(6,19,29,.34)), var(--img) center/cover no-repeat;
}
.careers-layout--source .career-program-content {
  display: block;
  padding: 20px 22px;
}
.careers-layout--source .career-program h3 {
  font-size: clamp(20px, 1.65vw, 26px);
  margin-bottom: 10px;
}
.careers-layout--source .career-program p {
  margin: 0 0 8px;
  line-height: 1.52;
}
.careers-layout--source .career-program a { margin-top: 8px; }
@media (max-width: 1140px) {
  .careers-layout--source { grid-template-columns: 1fr; }
  .careers-layout--source .career-program { grid-template-columns: 180px 1fr; }
}
@media (max-width: 720px) {
  .careers-layout--source .career-values { grid-template-columns: 1fr; }
  .careers-layout--source .career-program { grid-template-columns: 1fr; }
  .careers-layout--source .career-program-media { min-height: 180px; }
}


/* --- Careers compact cards + modal refinement --- */
.careers-layout--source {
  grid-template-columns: minmax(430px, .95fr) minmax(480px, 1.05fr);
  gap: clamp(30px, 4.5vw, 70px);
}
.careers-layout--source .career-programs--compact {
  gap: 16px;
}
.careers-layout--source .career-program--teaser {
  grid-template-columns: 150px 1fr;
  min-height: clamp(142px, 20vh, 180px);
}
.careers-layout--source .career-program--teaser .career-program-content {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: clamp(16px, 2.2vh, 22px) 22px;
}
.careers-layout--source .career-program--teaser h3 {
  font-size: clamp(20px, 1.55vw, 27px);
  margin-bottom: 8px;
}
.careers-layout--source .career-program--teaser p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.career-more {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gold);
  padding: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}
.career-more::after {
  content: "→";
  margin-left: 8px;
}
.career-more:hover,
.career-more:focus-visible { color: #fff; outline: none; }

.career-modal[hidden] { display: none; }
.career-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
}
.career-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 16, .72);
  backdrop-filter: blur(14px);
}
.career-modal__dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(760px, calc(100svh - 56px));
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(360px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(8,31,43,.96), rgba(5,17,26,.96));
  box-shadow: 0 45px 140px rgba(0,0,0,.55);
}
.career-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(5,17,26,.76);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.career-modal__close:hover,
.career-modal__close:focus-visible { border-color: var(--teal); color: var(--teal); outline: none; }
.career-modal__image {
  margin: 0;
  min-height: 100%;
  background: #06131d;
}
.career-modal__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(.9) brightness(.82);
}
.career-modal__content {
  overflow: auto;
  padding: clamp(28px, 4vw, 48px);
}
.career-modal__content h3 {
  font-size: clamp(30px, 3.5vw, 48px);
  margin-bottom: 18px;
}
.career-modal__text {
  display: grid;
  gap: 14px;
  color: rgba(239,247,247,.78);
  line-height: 1.65;
  margin-bottom: 26px;
}
body.career-modal-open { overflow: hidden; }

@media (max-width: 1140px) {
  .careers-layout--source .career-program--teaser { grid-template-columns: 170px 1fr; }
}
@media (max-width: 820px) {
  .careers-layout--source .career-program--teaser { grid-template-columns: 1fr; }
  .careers-layout--source .career-program--teaser .career-program-media { min-height: 170px; }
  .career-modal__dialog { grid-template-columns: 1fr; overflow: auto; }
  .career-modal__image img { min-height: 260px; max-height: 320px; }
  .career-modal__content { overflow: visible; }
}

/* --- Sectors heading: editorial statement without the former numbered kicker --- */
#sectors .section-heading {
  max-width: 900px;
}
#sectors .sector-editorial {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(239,247,247,.78);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.45;
  letter-spacing: -.015em;
}

/* --- Sector section redesign: clear non-overlapping cards --- */
#sectors .sector-grid.sector-honeycomb {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px) !important;
  width: min(1120px, 100%);
  max-width: 1120px;
  margin: 0 auto !important;
  align-items: stretch;
  justify-content: center;
}
#sectors .sector-grid.sector-honeycomb .sector-card {
  grid-column: span 4 !important;
  flex: initial !important;
  margin: 0 !important;
  min-height: clamp(245px, 29vh, 330px) !important;
  aspect-ratio: auto !important;
  clip-path: none !important;
  border-radius: 24px !important;
  overflow: hidden;
  padding: 0 !important;
  background: var(--img) center/cover no-repeat !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.1);
}
#sectors .sector-grid.sector-honeycomb .sector-card:nth-child(1),
#sectors .sector-grid.sector-honeycomb .sector-card:nth-child(2),
#sectors .sector-grid.sector-honeycomb .sector-card:nth-child(3),
#sectors .sector-grid.sector-honeycomb .sector-card:nth-child(4),
#sectors .sector-grid.sector-honeycomb .sector-card:nth-child(5) {
  margin: 0 !important;
}
#sectors .sector-grid.sector-honeycomb .sector-card:nth-child(4) { grid-column: 3 / span 4 !important; }
#sectors .sector-grid.sector-honeycomb .sector-card:nth-child(5) { grid-column: 7 / span 4 !important; }
#sectors .sector-grid.sector-honeycomb .sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,19,29,.05) 0%, rgba(6,19,29,.28) 46%, rgba(6,19,29,.92) 100%),
    radial-gradient(circle at 70% 16%, rgba(19,214,207,.18), transparent 38%);
  z-index: 0;
}
#sectors .sector-grid.sector-honeycomb .sector-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent 72%);
  opacity: .8;
  z-index: 2;
}
#sectors .sector-card__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 26px 32px;
}
#sectors .sector-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin: 0 0 14px;
  color: var(--teal);
  border: 1px solid rgba(19,214,207,.52);
  border-radius: 50%;
  background: rgba(6,19,29,.42);
  font-size: 13px;
  line-height: 1;
}
#sectors .sector-card h3 {
  max-width: 100%;
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: #fff;
}
#sectors .sector-card p {
  max-width: 280px;
  min-height: 0;
  margin: 0;
  color: rgba(239,247,247,.83);
  font-size: clamp(12px, .95vw, 14px);
  line-height: 1.45;
}
#sectors .sector-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(19,214,207,.52);
  box-shadow: 0 34px 85px rgba(0,0,0,.3), inset 0 0 0 1px rgba(19,214,207,.22);
}
@media (max-width: 1140px) {
  #sectors .sector-grid.sector-honeycomb { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  #sectors .sector-grid.sector-honeycomb .sector-card:nth-child(n) { grid-column: span 3 !important; }
  #sectors .sector-grid.sector-honeycomb .sector-card:nth-child(5) { grid-column: 2 / span 4 !important; }
}
@media (max-width: 760px) {
  #sectors .sector-grid.sector-honeycomb { grid-template-columns: 1fr; }
  #sectors .sector-grid.sector-honeycomb .sector-card:nth-child(n) { grid-column: auto !important; }
  #sectors .sector-grid.sector-honeycomb .sector-card { min-height: 260px !important; }
}


/* --- Home hero: fixed master statement with rotating supporting messages --- */
.hero-title--fixed {
  max-width: 780px;
  margin: 0;
  color: #fff;
}
.hero-slide-copy {
  min-height: 112px;
  margin-top: 22px;
}
.hero-slide-copy .section-kicker {
  margin-bottom: 12px;
}
.hero-slide-copy.is-changing .hero-lead,
.hero-slide-copy.is-changing .section-kicker {
  opacity: 0;
}
.hero-title--fixed,
.hero-title--fixed * {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
  transition: none !important;
}
@media (max-width: 700px) {
  .hero-slide-copy { min-height: 138px; margin-top: 18px; }
}



/* About section: mission and vision showcase below The Team. */
.about-panel {
  background:
    radial-gradient(circle at 12% 18%, rgba(242,183,67,.11), transparent 27%),
    radial-gradient(circle at 88% 14%, rgba(19,214,207,.15), transparent 31%),
    linear-gradient(135deg, #06131d 0%, #082837 52%, #051018 100%);
}
.about-panel::after {
  content: "";
  position: absolute;
  width: min(44vw, 680px);
  aspect-ratio: 1;
  right: -16%;
  bottom: -48%;
  border: 1px solid rgba(19,214,207,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 76px rgba(19,214,207,.032), 0 0 0 152px rgba(19,214,207,.018);
  pointer-events: none;
}
.about-showcase {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: clamp(20px, 3vh, 34px);
  padding-top: calc(var(--header-h) + clamp(18px, 3vh, 34px));
  padding-bottom: clamp(26px, 4vh, 48px);
}
.about-header {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(560px, 1.22fr);
  align-items: end;
  gap: clamp(36px, 6vw, 90px);
}
.about-heading h2 {
  max-width: 560px;
  margin: 0;
}
.about-heading .accent-line { margin-top: 16px; }
.about-metrics--featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: clamp(18px, 2.4vh, 26px) 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.about-metrics--featured .about-metric {
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
  padding: 0 clamp(18px, 2.4vw, 34px);
}
.about-metrics--featured .about-metric:first-child { padding-left: 0; }
.about-metrics--featured .about-metric + .about-metric { border-left: 1px solid rgba(255,255,255,.13); }
.about-metrics--featured span {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: .95;
}
.about-metrics--featured small {
  max-width: 150px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.about-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
  min-height: 0;
}
.about-principle {
  position: relative;
  display: grid;
  grid-template-rows: clamp(185px, 24vh, 250px) minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 28px 72px rgba(0,0,0,.24);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.about-principle:hover {
  transform: translateY(-4px);
  border-color: rgba(19,214,207,.34);
  box-shadow: 0 36px 86px rgba(0,0,0,.3);
}
.about-principle-media {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #071923;
}
.about-principle-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,16,24,.02) 30%, rgba(5,16,24,.72) 100%),
    linear-gradient(90deg, rgba(6,19,29,.2), transparent 45%);
  pointer-events: none;
}
.about-principle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform 1s var(--ease), filter .6s var(--ease);
}
.about-principle--mission .about-principle-media img { object-position: center 48%; }
.about-principle--vision .about-principle-media img { object-position: center 48%; }
.about-principle:hover .about-principle-media img {
  transform: scale(1.025);
  filter: saturate(.96) contrast(1.04);
}
.about-principle-index {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(5,18,27,.56);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}
.about-principle-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 11px;
  padding: clamp(20px, 2.3vw, 30px);
}
.about-principle-copy::before {
  content: "";
  position: absolute;
  left: clamp(20px, 2.3vw, 30px);
  top: 0;
  width: 56px;
  height: 2px;
  background: var(--teal);
}
.about-principle--vision .about-principle-copy::before { background: var(--gold); }
.about-principle-copy h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -.035em;
  line-height: 1;
}
.about-principle-copy p {
  margin: 0;
  color: rgba(239,247,247,.76);
  font-size: clamp(12.5px, .88vw, 14px);
  line-height: 1.58;
}
@media (max-width: 1180px), (max-height: 840px) {
  .about-showcase {
    height: auto;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .about-principle { grid-template-rows: 230px auto; }
}
@media (max-width: 980px) {
  .about-header { grid-template-columns: 1fr; gap: 24px; }
  .about-principles { grid-template-columns: 1fr; }
  .about-principle {
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    grid-template-rows: auto;
  }
  .about-principle-media { min-height: 340px; }
}
@media (max-width: 700px) {
  .about-metrics--featured { grid-template-columns: 1fr; padding: 0; }
  .about-metrics--featured .about-metric {
    grid-template-columns: minmax(92px, auto) 1fr;
    align-items: center;
    padding: 16px 0;
  }
  .about-metrics--featured .about-metric + .about-metric {
    border-top: 1px solid rgba(255,255,255,.13);
    border-left: 0;
  }
  .about-metrics--featured span { font-size: 30px; }
  .about-metrics--featured small { max-width: none; }
  .about-principle {
    grid-template-columns: 1fr;
    grid-template-rows: 230px auto;
    border-radius: 17px;
  }
  .about-principle-media { min-height: 0; }
  .about-principle-copy { padding: 22px 20px 25px; }
  .about-principle-copy::before { left: 20px; }
  .about-principle-copy p { font-size: 14px; line-height: 1.65; }
}
@media (prefers-reduced-motion: reduce) {
  .about-principle,
  .about-principle-media img { transition: none; }
  .about-principle:hover { transform: none; }
  .about-principle:hover .about-principle-media img { transform: none; }
}

/* Team section: approved members from the current Cove & Cooper website. */
.team-section-inner {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: center;
  gap: clamp(22px, 3vh, 34px);
  padding-top: calc(var(--header-h) + clamp(18px, 3vh, 34px));
  padding-bottom: clamp(28px, 4vh, 48px);
}
.team-heading h2 { margin: 0; }
.team-heading .accent-line { margin-top: 16px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.1vw, 26px);
  align-items: stretch;
}
.team-card {
  min-width: 0;
  display: grid;
  grid-template-columns: clamp(106px, 10.2vw, 136px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 26px);
  align-items: center;
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.team-photo {
  width: clamp(106px, 10.2vw, 136px);
  height: clamp(106px, 10.2vw, 136px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
  background: rgba(255,255,255,.08);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}
.team-photo--portrait {
  height: clamp(142px, 13vw, 176px);
  border-radius: 50%;
}
.team-card-copy { min-width: 0; }
.team-card h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.22;
}
.team-role {
  margin: 4px 0 8px;
  color: var(--teal);
  font-size: clamp(11px, .96vw, 13px);
  font-weight: 800;
}
.team-bio {
  margin: 0;
  color: rgba(239,247,247,.74);
  font-size: clamp(10.5px, .89vw, 12.5px);
  line-height: 1.42;
}
@media (max-width: 1140px) {
  .team-panel { height: auto; min-height: 100svh; overflow: visible; }
  .team-section-inner { height: auto; min-height: 100svh; }
  .team-grid { gap: 18px; }
  .team-card { grid-template-columns: 110px minmax(0, 1fr); }
  .team-photo { width: 110px; height: 110px; }
  .team-photo--portrait { height: 148px; }
  .team-bio { font-size: 11.5px; }
}
@media (max-width: 900px) {
  .team-section-inner {
    display: block;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .team-heading { margin-bottom: 28px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 116px minmax(0, 1fr); }
  .team-photo { width: 116px; height: 116px; }
  .team-photo--portrait { height: 150px; }
}
@media (max-width: 560px) {
  .team-card { grid-template-columns: 1fr; align-items: start; }
  .team-photo,
  .team-photo--portrait { width: 112px; height: 132px; border-radius: 50%; }
  .team-bio { font-size: 12px; }
}
@media (max-height: 820px) and (min-width: 901px) {
  .team-section-inner {
    gap: 18px;
    padding-top: calc(var(--header-h) + 8px);
    padding-bottom: 20px;
  }
  .team-heading .section-kicker { margin-bottom: 8px; }
  .team-heading .accent-line { margin-top: 10px; }
  .team-grid { gap: 14px 18px; }
  .team-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 22px;
  }
  .team-photo { width: 104px; height: 104px; }
  .team-photo--portrait { height: 136px; }
  .team-card h3 { font-size: 16px; }
  .team-role { margin: 3px 0 6px; font-size: 11px; }
  .team-bio { font-size: 10.4px; line-height: 1.37; }
}


/* --- Problems We Solve: static problem cards and scroll-driven cross-hatch --- */
.what-panel {
  --hatch-x: 0px;
  --hatch-y: 0px;
  --hatch-opacity: .05;
}
.problems-hatch {
  position: absolute;
  z-index: 1;
  top: -18%;
  right: -7%;
  width: clamp(480px, 56vw, 920px);
  height: clamp(520px, 92vh, 940px);
  pointer-events: none;
  opacity: var(--hatch-opacity);
  transform: translate3d(var(--hatch-x), var(--hatch-y), 0) rotate(-2deg);
  transform-origin: top right;
  background:
    repeating-linear-gradient(45deg, rgba(8,63,80,.52) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(-45deg, rgba(8,63,80,.52) 0 1px, transparent 1px 18px);
  -webkit-mask-image: radial-gradient(ellipse at 64% 42%, #000 0 42%, rgba(0,0,0,.82) 62%, transparent 84%);
  mask-image: radial-gradient(ellipse at 64% 42%, #000 0 42%, rgba(0,0,0,.82) 62%, transparent 84%);
  will-change: transform, opacity;
}
.problems-copy { position: relative; z-index: 2; }
.problems-copy .section-kicker { margin-bottom: 8px; }
.problems-copy h2 { margin-bottom: 0; }
.problems-lead {
  max-width: 610px;
  margin-top: 16px;
  line-height: 1.48;
}
.problems-grid {
  display: grid;
  gap: 11px;
  max-width: 620px;
  margin-top: 24px;
}
.problem-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 17px;
  border: 1px solid rgba(7,25,37,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 38px rgba(7,25,37,.07);
  backdrop-filter: blur(8px);
}
.problem-card__number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11,137,144,.34);
  border-radius: 50%;
  color: #0b8990;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.problem-card__content { min-width: 0; }
.problem-card h3 {
  margin: 0 0 7px;
  color: var(--paper-text);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.22;
}
.problem-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.problem-card li {
  position: relative;
  padding-left: 13px;
  color: rgba(8,32,47,.72);
  font-size: 11.5px;
  line-height: 1.36;
}
.problem-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0b8990;
  transform: translateY(-50%);
}
.problems-image { z-index: 2; }

@media (max-width: 1140px) and (min-width: 901px) {
  .problems-copy h2 { font-size: clamp(36px, 4.4vw, 54px); }
  .problems-lead { font-size: 14px; }
  .problems-grid { margin-top: 18px; gap: 9px; }
  .problem-card { grid-template-columns: 36px minmax(0, 1fr); gap: 11px; padding: 11px 13px; }
  .problem-card__number { width: 34px; height: 34px; font-size: 10px; }
  .problem-card h3 { font-size: 13.5px; margin-bottom: 5px; }
  .problem-card li { font-size: 10.5px; }
}
@media (max-width: 900px) {
  .problems-hatch {
    top: -80px;
    right: -220px;
    width: 680px;
    height: 720px;
  }
  .problems-grid { max-width: none; }
  .problem-card ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .problems-copy h2 { font-size: clamp(38px, 12vw, 56px); }
  .problems-lead { font-size: 15px; }
  .problem-card { grid-template-columns: 38px minmax(0, 1fr); padding: 14px; }
  .problem-card__number { width: 36px; height: 36px; }
  .problem-card ul { grid-template-columns: 1fr; gap: 5px; }
  .problem-card li { font-size: 12px; }
}
@media (max-height: 820px) and (min-width: 901px) {
  .problems-copy .section-kicker { margin-bottom: 5px; }
  .problems-copy .accent-line { margin: 10px 0 0; }
  .problems-lead { margin-top: 11px; font-size: 13px; line-height: 1.4; }
  .problems-grid { margin-top: 14px; gap: 7px; }
  .problem-card { padding: 9px 12px; }
  .problem-card h3 { margin-bottom: 4px; font-size: 13px; }
  .problem-card li { font-size: 9.9px; line-height: 1.25; }
  .what-panel .editorial-image { height: min(68vh, 530px); }
}
@media (prefers-reduced-motion: reduce) {
  .problems-hatch {
    transform: none;
    opacity: .07;
    will-change: auto;
  }
}


/* --- Shared internal-page hero and Services media system --- */
:root {
  --subpage-hero-title-max: 72px;
  --subpage-hero-copy-width: 820px;
}
.subpage-hero {
  padding-top: calc(var(--header-h) + clamp(52px, 6vw, 76px));
  padding-bottom: clamp(54px, 6vw, 72px);
}
.subpage-hero-inner {
  gap: clamp(14px, 1.8vw, 20px);
}
.subpage-hero .section-kicker {
  width: min(100%, var(--subpage-hero-copy-width));
  margin: 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.3;
}
.subpage-hero h1 {
  width: min(100%, var(--subpage-hero-copy-width));
  max-width: var(--subpage-hero-copy-width);
  font-size: clamp(44px, 5.6vw, var(--subpage-hero-title-max));
  line-height: .98;
}
.subpage-hero-inner > p:not(.section-kicker):not(.privacy-meta) {
  width: min(100%, var(--subpage-hero-copy-width));
  max-width: var(--subpage-hero-copy-width);
}

.services-page .sub-card .service-media {
  width: calc(100% + 48px);
  max-width: none;
  aspect-ratio: 16 / 10;
  margin: -24px -24px 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e8edef;
}
.services-page .services-general-section .service-media {
  aspect-ratio: 16 / 9;
}
.services-page .sub-card .service-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  display: block;
  aspect-ratio: auto;
}
.services-page .service-media--photo img {
  object-fit: cover;
  object-position: center;
}
.services-page .service-media--portrait img {
  object-position: center 42%;
}
.services-page .service-media--technical {
  background:
    linear-gradient(rgba(8,63,80,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,63,80,.045) 1px, transparent 1px),
    linear-gradient(145deg, #f4f7f8, #e3eaed);
  background-size: 24px 24px, 24px 24px, auto;
}
.services-page .service-media--technical img {
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  padding: clamp(16px, 2vw, 30px);
}
.services-page .service-niche .sub-card {
  display: flex;
  flex-direction: column;
}
.services-page .service-niche .sub-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 760px) {
  .subpage-hero {
    padding-top: calc(var(--header-h) + 38px);
    padding-bottom: 46px;
  }
  .subpage-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }
  .services-page .sub-card .service-media,
  .services-page .services-general-section .service-media {
    aspect-ratio: 16 / 10;
  }
}


/* --- Projects explorer: single-source, one-project-at-a-time presentation --- */
.projects-page .projects-hero {
  min-height: clamp(360px, 42vh, 560px);
  background:
    linear-gradient(105deg, rgba(4,17,27,.96), rgba(4,29,40,.82)),
    url('assets/projects/deepwater-mooring-installation.webp') center 44%/cover no-repeat;
}
.projects-page .projects-hero::after {
  background:
    radial-gradient(circle at 72% 30%, rgba(19,214,207,.17), transparent 30%),
    linear-gradient(180deg, transparent, rgba(4,15,24,.56));
}
.projects-explorer-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(19,214,207,.07), transparent 24%),
    linear-gradient(180deg, #071924 0%, #06131d 42%, #071b26 100%);
}
.projects-explorer { max-width: 1500px; }
.project-tabs-shell {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.project-tabs-heading {
  display: grid;
  grid-template-columns: minmax(280px,.72fr) minmax(300px,1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}
.project-tabs-heading h2 { margin: 4px 0 0; font-size: clamp(30px, 3.4vw, 48px); }
.project-tabs-heading > p { max-width: 580px; justify-self: end; color: rgba(239,247,247,.64); line-height: 1.65; }
.project-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.project-tab {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 88px;
  padding: 15px 17px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: rgba(239,247,247,.78);
  text-align: left;
  cursor: pointer;
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}
.project-tab::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.project-tab:hover { transform: translateY(-2px); border-color: rgba(19,214,207,.38); background: rgba(19,214,207,.07); color: #fff; }
.project-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.project-tab.is-active {
  border-color: rgba(19,214,207,.54);
  background: linear-gradient(135deg, rgba(19,214,207,.16), rgba(255,255,255,.055));
  color: #fff;
  box-shadow: 0 16px 42px rgba(0,0,0,.16);
}
.project-tab.is-active::after { transform: scaleX(1); }
.project-tab-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(242,183,67,.62);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.project-tab-text { display: grid; gap: 5px; min-width: 0; }
.project-tab-text strong { font-size: 14px; line-height: 1.2; }
.project-tab-text small { color: rgba(239,247,247,.53); font-size: 10px; line-height: 1.35; }
.project-detail-root { transition: opacity .18s ease, transform .18s ease; }
.project-detail-root.is-changing { opacity: 0; transform: translateY(8px); }
.project-detail-panel {
  display: grid;
  grid-template-columns: minmax(390px,.88fr) minmax(0,1.12fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(22px, 3.6vw, 48px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 34px 100px rgba(0,0,0,.24);
}
.project-detail-panel:focus { outline: none; }
.project-detail-media { position: sticky; top: calc(var(--header-h) + 28px); min-width: 0; }
.project-detail-figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 25%, rgba(19,214,207,.13), transparent 34%),
    #04111a;
  box-shadow: 0 28px 76px rgba(0,0,0,.28);
}
.project-detail-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .16s ease, transform .35s var(--ease);
}
.project-detail-figure img.is-changing { opacity: 0; transform: scale(.985); }
.project-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}
.project-detail-thumbs button {
  height: 78px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: #04111a;
  opacity: .56;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s var(--ease), border-color .2s ease;
}
.project-detail-thumbs button:hover,
.project-detail-thumbs button.is-active { opacity: 1; transform: translateY(-2px); border-color: var(--teal); }
.project-detail-thumbs button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.project-detail-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.project-detail-copy h2 { margin: 12px 0 8px; font-size: clamp(38px, 4.7vw, 70px); line-height: .98; }
.project-detail-eyebrow { display: flex; align-items: center; gap: 12px; }
.project-detail-eyebrow span {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(242,183,67,.65); border-radius: 50%; color: var(--gold); font-size: 12px; font-weight: 900;
}
.project-detail-eyebrow small { color: var(--teal); text-transform: uppercase; letter-spacing: .13em; font-weight: 850; font-size: 10px; }
.project-detail-type { margin: 0; color: var(--teal); font-weight: 750; }
.project-detail-summary { max-width: 760px; margin: 22px 0 0; color: rgba(239,247,247,.82); font-size: clamp(17px, 1.8vw, 22px); line-height: 1.55; }
.project-detail-sections { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 34px; }
.project-detail-section {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.032);
}
.project-detail-section h3 { margin: 0 0 14px; color: var(--teal); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.project-detail-section ul,
.project-detail-section ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.project-detail-section li { position: relative; padding-left: 17px; color: rgba(239,247,247,.7); line-height: 1.55; }
.project-detail-section--list li::before { content: ''; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.project-detail-section--numbered { grid-column: 1 / -1; }
.project-detail-section--numbered ol { counter-reset: outcomes; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px 18px; }
.project-detail-section--numbered li { counter-increment: outcomes; padding: 12px 12px 12px 50px; border-top: 1px solid rgba(255,255,255,.08); }
.project-detail-section--numbered li::before {
  content: counter(outcomes, decimal-leading-zero);
  position: absolute; left: 0; top: 9px; width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid rgba(242,183,67,.55); border-radius: 50%; color: var(--gold); font-size: 10px; font-weight: 900;
}
.project-detail-tools { grid-column: 1 / -1; }
.project-detail-tools .project-tool-tags { margin-top: 0; }
.project-detail-pager {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin-top: 24px;
}
.project-pager-button {
  display: grid;
  gap: 5px;
  padding: 19px 22px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}
.project-pager-button--next { text-align: right; }
.project-pager-button:hover { transform: translateY(-2px); border-color: rgba(19,214,207,.42); background: rgba(19,214,207,.07); }
.project-pager-button span { color: var(--teal); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 850; }
.project-pager-button strong { font-size: 14px; }

@media (max-width: 1100px) {
  .project-tabs { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-detail-panel { grid-template-columns: 1fr; }
  .project-detail-media { position: static; }
}
@media (max-width: 720px) {
  .project-tabs-heading { grid-template-columns: 1fr; gap: 12px; }
  .project-tabs-heading > p { justify-self: start; }
  .project-tabs {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 82vw);
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }
  .project-tab { scroll-snap-align: start; }
  .project-detail-panel { padding: 17px; border-radius: 18px; }
  .project-detail-copy h2 { font-size: clamp(36px, 12vw, 54px); }
  .project-detail-sections { grid-template-columns: 1fr; }
  .project-detail-section--numbered,
  .project-detail-tools { grid-column: auto; }
  .project-detail-section--numbered ol { grid-template-columns: 1fr; }
  .project-detail-thumbs { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .project-detail-thumbs button { height: 66px; }
  .project-detail-pager { grid-template-columns: 1fr; }
  .project-pager-button--next { text-align: left; }
}
.project-detail-tools .project-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 0;
}
.project-detail-tools .project-tool-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(239,247,247,.82);
  font-size: 11px;
  font-weight: 750;
}


/* --- Contact section: approved image, addresses and intentionally inactive form --- */
.contact-panel {
  background: #050d14;
}
.contact-panel::after {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(3,10,16,.96) 0%, rgba(3,10,16,.88) 36%, rgba(3,10,16,.58) 62%, rgba(3,10,16,.48) 100%),
    linear-gradient(180deg, rgba(3,10,16,.12) 0%, rgba(3,10,16,.28) 64%, rgba(3,10,16,.94) 100%),
    url('assets/contact-us-1.png') 58% 42% / cover no-repeat;
}
.contact-copy {
  max-width: 650px;
}
.contact-copy .body-large {
  max-width: 610px;
}
.contact-direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
}
.contact-direct-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(239,247,247,.86);
  font-size: 13px;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.contact-direct-links a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}
.contact-direct-links .contact-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.geo-presence {
  max-width: 700px;
}
.geo-grid article {
  min-height: 160px;
  display: flex;
  flex-direction: column;
}
.geo-grid address {
  margin: 0;
  color: rgba(239,247,247,.72);
  font-size: 11px;
  line-height: 1.55;
  font-style: normal;
}
.geo-phone {
  margin-top: auto;
  padding-top: 10px;
  color: rgba(239,247,247,.82);
  font-size: 11px;
  font-weight: 700;
}
.geo-phone:hover { color: var(--gold); }
.contact-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.contact-form--inactive {
  position: relative;
  background: rgba(5,17,26,.54);
  border-color: rgba(255,255,255,.15);
}
.contact-form--inactive fieldset {
  opacity: .58;
}
.contact-form--inactive input,
.contact-form--inactive textarea {
  cursor: not-allowed;
}
.contact-form--inactive .btn[disabled] {
  cursor: not-allowed;
  filter: saturate(.45);
  opacity: .72;
  transform: none;
}
.contact-form--inactive .form-note {
  margin: 14px 0 0;
  max-width: 520px;
  color: rgba(239,247,247,.72);
  line-height: 1.55;
}
.contact-privacy-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-privacy-link:hover { color: var(--gold); }

@media (max-width: 1140px) {
  .contact-panel::after {
    background:
      linear-gradient(180deg, rgba(3,10,16,.90) 0%, rgba(3,10,16,.72) 48%, rgba(3,10,16,.96) 100%),
      url('assets/contact-us-1.png') 66% top / auto 760px no-repeat;
  }
  .contact-layout { padding-bottom: 36px; }
  .contact-copy { max-width: none; }
  .geo-presence { max-width: none; }
  .geo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-form { max-width: 760px; }
}
@media (max-width: 760px) {
  .contact-panel::after {
    background:
      linear-gradient(180deg, rgba(3,10,16,.88) 0%, rgba(3,10,16,.80) 42%, rgba(3,10,16,.98) 100%),
      url('assets/contact-us-1.png') 67% top / auto 610px no-repeat;
  }
  .contact-direct-links { display: grid; }
  .geo-grid { grid-template-columns: 1fr; }
  .geo-grid article { min-height: 0; }
  .form-grid { grid-template-columns: 1fr; }
}

/* --- Responsive reliability: natural scrolling for tablets and short viewports --- */
/*
   Full-page snap is reserved for viewports that are both wide and tall enough.
   Tablet-sized and short desktop viewports use the document scroll so content
   can grow naturally instead of being clipped by a fixed 100svh panel.
*/
@media (max-width: 1180px), (max-height: 840px) {
  html {
    scroll-padding-top: calc(var(--header-h) + 12px);
  }
  body:not(.subpage) {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .snap-page {
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }
  .panel {
    height: auto;
    min-height: 100svh;
    overflow: visible;
    scroll-snap-align: none;
  }
  .section-inner {
    height: auto;
    min-height: 0;
  }
  .panel:not(.hero-panel) {
    padding-top: clamp(88px, 10vh, 116px);
    padding-bottom: clamp(58px, 8vh, 92px);
  }
  .hero-panel {
    height: auto;
    min-height: 100svh;
    padding: calc(var(--header-h) + 42px) 0 76px;
    overflow: hidden;
  }
  .hero-grid {
    min-height: calc(100svh - var(--header-h) - 118px);
    padding-top: 0;
  }
  .scroll-cue {
    position: static;
    width: min(var(--max), calc(100% - clamp(42px, 8vw, 140px)));
    margin: 28px auto 0;
  }
  .section-stack,
  .project-layout,
  .innovation-layout,
  .about-layout,
  .about-layout--company,
  .careers-layout,
  .team-section-inner,
  .contact-layout {
    padding-top: 0;
  }
  .team-section-inner,
  .about-layout--company {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }
  .contact-layout {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }
  .site-footer {
    position: relative;
    min-height: 0;
    margin-top: clamp(56px, 8vh, 88px);
  }
  .project-slide-dots {
    position: static;
    margin-top: 20px;
  }
  .about-visual,
  .project-main,
  .project-slide-figure,
  .editorial-image {
    max-height: none;
  }
}

/* Preserve the established desktop composition at tablet widths while allowing
   the sections to become taller than the viewport. */
@media (min-width: 901px) and (max-width: 1180px) {
  .split-viewport {
    align-items: stretch;
  }
  .what-panel .editorial-image {
    min-height: 620px;
  }
  .project-layout,
  .innovation-layout,
  .about-layout--company,
  .careers-layout--source,
  .contact-layout {
    align-items: start;
  }
}

/* Mobile Hero must be allowed to grow beyond the viewport. */
@media (max-width: 900px) {
  .hero-panel {
    height: auto;
    min-height: 100svh;
    padding: calc(var(--header-h) + 30px) 0 64px;
  }
  .hero-grid {
    min-height: calc(100svh - var(--header-h) - 94px);
    align-items: center;
    padding-top: 0;
  }
  .scroll-cue {
    width: min(var(--max), calc(100% - 32px));
    margin-top: 28px;
  }
  .panel:not(.hero-panel) {
    padding-top: 92px;
    padding-bottom: 64px;
  }
}

@media (max-width: 560px) {
  .hero-panel {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 52px;
  }
  .hero-grid {
    min-height: 0;
    align-items: start;
  }
  .hero-tabs {
    margin-top: 24px;
  }
  .scroll-cue {
    margin-top: 24px;
  }
  .panel:not(.hero-panel) {
    min-height: 0;
    padding-top: 82px;
    padding-bottom: 54px;
  }
}



/* --- Production technical hardening and maintainability layer --- */

/* Consistent keyboard focus across navigation, tabs, controls and links. */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 3px;
}
.language-trigger:focus-visible,
.language-option:focus-visible,
.hero-tab:focus-visible,
.section-dots a:focus-visible,
.menu-toggle:focus-visible,
.btn:focus-visible,
.project-pager-button:focus-visible,
.project-slide-arrow:focus-visible,
.project-slide-dot:focus-visible,
.contact-privacy-link:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 3px;
  box-shadow: var(--focus-shadow);
}

.site-nav a[aria-current="page"] {
  color: #fff;
}

/* Shared media component: the modifier decides whether content fills or fits. */
.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--media-surface);
}
.media-frame > img,
.media-frame > video,
.media-frame figure > img,
.media-frame figure > video {
  display: block;
  width: 100%;
}
.media-frame.service-media--photo > img {
  height: 100%;
  object-fit: cover;
}
.media-frame.service-media--technical > img {
  height: 100%;
  object-fit: contain;
}

/* Static sector assets replace runtime inline background declarations. */
.sector-card--oil-and-gas {
  --img: url('assets/sector-oil-gas.jpg');
}
.sector-card--renewable-energy {
  --img: url('assets/sector-renewables.jpg');
}
.sector-card--mining {
  --img: url('assets/sector-mining.jpg');
}
.sector-card--marine-operations {
  --img: url('assets/sector-maritime.jpg');
}
.sector-card--aquaculture {
  --img: url('assets/sector-aquaculture.jpg');
}

/* Career image variants replace inline custom properties in the HTML. */
.career-program-media--early {
  --img: url('assets/career-early-oners.jpg');
}
.career-program-media--graduate {
  --img: url('assets/career-graduate-programs.jpg');
}
.career-program-media--experienced {
  --img: url('assets/career-experienced-professionals.jpg');
}

/* Services call-to-action styles moved out of inline attributes. */
.service-talk-section {
  background:
    linear-gradient(180deg, rgba(6,19,29,.62), rgba(6,19,29,.82)),
    url('assets/services-talk-bg.jpg') center/cover no-repeat;
  text-align: center;
  padding-block: clamp(70px, 9vw, 120px);
}
.service-talk-lead {
  margin-inline: auto;
}
.service-talk-actions {
  margin-top: 24px;
}

/* Privacy styles shared through the primary stylesheet. */
.privacy-meta {
  margin-top: 10px;
  color: rgba(239,247,247,.82);
}
.privacy-article h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.6vw, 34px);
}
.privacy-article h3 {
  margin: 24px 0 10px;
  font-size: clamp(18px, 1.6vw, 23px);
}
.privacy-article p {
  margin: 0 0 14px;
  line-height: 1.72;
}
.privacy-bullet-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  display: grid;
  gap: 9px;
}
.privacy-bullet-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}
.privacy-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.privacy-summary-list a {
  color: inherit;
}

.form-note[role="status"] {
  min-height: 1.5em;
}
.form-note.is-success {
  color: var(--teal);
}

/* Reduced-motion users receive static video/poster content and no timed movement. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  video[data-autoplay-video] {
    visibility: hidden;
  }
  .hero-panel {
    background:
      linear-gradient(90deg, rgba(6,19,29,.82), rgba(6,19,29,.5)),
      url('assets/ocean-poster.jpg') center/cover no-repeat;
  }
  .innovation-video-card video[data-autoplay-video] {
    visibility: visible;
  }
}

/* Shared card border token for sector, career and contact components. */
:is(.sector-card, .career-program, .geo-grid article, .contact-form) {
  border-color: var(--card-border);
}
