:root {
  --display: "Montserrat", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --brand-primary: #07070a;
  --brand-accent: #ed1c24;
  --brand-support: #e809b0;
  --brand-violet: #5f4b8b;
  --surface: #f7f6f4;
  --surface-elevated: #ffffff;
  --shadow-soft: 0 24px 70px rgba(12, 8, 18, 0.1);
  --ease-premium: cubic-bezier(.2,.75,.25,1);
}

body {
  font-family: var(--body);
  background: var(--surface);
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .brand, .button, .section-index span, .timeline time {
  font-family: var(--display);
}

h1, h2, h3 {
  letter-spacing: -.04em;
}

.site-header {
  height: 96px;
  padding-top: max(0px, env(safe-area-inset-top));
  background: linear-gradient(180deg, rgba(4,4,8,.72), rgba(4,4,8,.05));
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(5, 5, 9, .88);
  border-bottom-color: rgba(255,255,255,.11);
  box-shadow: 0 10px 40px rgba(0,0,0,.24);
}

.brand-official {
  display: block;
  flex: 0 0 auto;
}

.brand-crop {
  display: block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.brand-crop img {
  position: static;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.brand-crop-header {
  width: 180px;
  height: auto;
}

.site-nav {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.01em;
}

.nav-cta,
.button-primary {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.button-primary {
  box-shadow: 0 12px 34px rgba(232,9,176,.2);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.22) 48%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .6s var(--ease-premium);
}

.button-primary:hover::before,
.button-primary:focus-visible::before {
  transform: translateX(130%);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 58%, rgba(232,9,176,.08), transparent 28%),
    linear-gradient(90deg, rgba(3,4,10,.94) 0%, rgba(3,4,10,.73) 38%, rgba(3,4,10,.12) 72%),
    linear-gradient(0deg, rgba(3,4,10,.76), transparent 45%);
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 37%;
  width: 2px;
  height: 160px;
  background: var(--spectrum);
  box-shadow: 0 0 26px rgba(232,9,176,.46);
}

.hero h1 {
  font-weight: 600;
  letter-spacing: -.055em;
}

.hero-copy {
  font-family: var(--body);
  font-weight: 400;
  max-width: 640px;
}

.identity-board {
  box-shadow: var(--shadow-soft);
}

.identity-lead {
  background:
    radial-gradient(circle at 100% 0, rgba(232,9,176,.16), transparent 36%),
    var(--brand-primary);
}

.pillar-grid {
  gap: 16px;
  background: transparent;
}

.pillar {
  min-height: 720px;
  border: 1px solid rgba(16,16,21,.1);
  box-shadow: 0 18px 50px rgba(12,8,18,.06);
  transition: transform .28s var(--ease-premium), box-shadow .28s var(--ease-premium), border-color .28s ease;
}

.pillar:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(12,8,18,.13);
  border-color: rgba(232,9,176,.26);
}

.pillar-renewable {
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 82% 18%, rgba(232,9,176,.12), transparent 30%),
    linear-gradient(145deg, #0b0910, #050508 72%);
}

.division-logo {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  margin-bottom: 58px;
}

.division-logo img {
  display: block;
  max-width: none;
}

.division-logo-offshore {
  width: 248px;
  height: auto;
  padding: 7px 10px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(237,28,36,.12);
}

.division-logo-offshore img {
  width: 228px;
  height: auto;
}

.division-logo-renewables {
  width: 278px;
  height: auto;
}

.division-logo-renewables img {
  position: static;
  width: 278px;
  height: auto;
}

.value {
  transition: background-color .22s ease, padding-left .22s var(--ease-premium);
}

.value:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(232,9,176,.045), transparent 72%);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 64px);
}

.value {
  min-height: 108px;
  align-items: center;
}

.value h3 {
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.25;
}

.timeline li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--spectrum);
  transition: width .45s var(--ease-premium);
}

.timeline li:hover::after {
  width: 100%;
}

.contact-form {
  border: 1px solid rgba(16,16,21,.1);
  box-shadow: var(--shadow-soft);
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--spectrum);
}

.brand-crop-footer {
  width: 280px;
  height: auto;
}

@media (max-width: 1000px) {
  .brand-crop-header { width: 155px; }
}

@media (max-width: 720px) {
  .site-header { height: 76px; }
  .hero-content::before { display: none; }
  .pillar-grid { gap: 12px; }
  .pillar { min-height: 650px; }
  .pillar:hover { transform: none; }
  .division-logo { margin-bottom: 44px; }
  .division-logo-renewables, .division-logo-renewables img { width: 246px; }
  .value:hover { padding-left: 0; }
  .brand-crop-footer { width: 245px; }
}

/* Branded chapter divisions */
main > section {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(
    90deg,
    #ed1c24 0%,
    #d80d62 28%,
    #e809b0 56%,
    #f725c7 76%,
    #5f4b8b 100%
  ) 1;
}

main > section[id] {
  scroll-margin-top: 76px;
}

/* Scroll-driven journey */
.journey-story {
  --journey-index: 0;
  position: relative;
  padding: 150px 0 128px;
  overflow: clip;
  color: #fff;
  background: #09090d;
}

/* Preserve the narrative thread between the two dark chapters. */
.journey-story + .strategy {
  padding-top: 170px;
  box-shadow: inset 0 72px 120px rgba(232, 9, 176, .035);
}

.journey-story + .strategy::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 2px;
  height: 72px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #e809b0 0%, rgba(95, 75, 139, 0) 100%);
  box-shadow: 0 0 18px rgba(232, 9, 176, .4);
  pointer-events: none;
}

.journey-atmosphere {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -260px;
  top: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,9,176,.16), rgba(95,75,139,.06) 38%, transparent 68%);
  transform: translate3d(calc(var(--journey-index) * -3vw), calc(var(--journey-index) * 11vh), 0);
  transition: transform .65s var(--ease-premium), opacity .45s ease;
  pointer-events: none;
}

.journey-atmosphere::after {
  content: "";
  position: absolute;
  inset: 100px;
  border: 1px solid rgba(247,37,199,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.012);
}

.journey-intro {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 52px;
  margin-bottom: 120px;
}

.journey-intro h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(50px, 6vw, 86px);
}

.journey-intro h2 span {
  color: transparent;
  background: var(--spectrum);
  background-clip: text;
  -webkit-background-clip: text;
}

.journey-intro > div:last-child > p:last-child {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 18px;
}

.journey-experience {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
}

.journey-stage {
  position: sticky;
  top: 116px;
  height: calc(100vh - 150px);
  min-height: 610px;
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  align-self: start;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 100% 0, rgba(232,9,176,.12), transparent 36%),
    rgba(255,255,255,.035);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  overflow: hidden;
}

.journey-stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--spectrum);
}

.journey-stage-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.48);
  font: 600 10px var(--display);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.journey-stage-year {
  margin: auto 0 24px;
  color: transparent;
  background: var(--spectrum);
  background-clip: text;
  -webkit-background-clip: text;
  font: 600 clamp(82px, 10vw, 148px)/.85 var(--display);
  letter-spacing: -.09em;
  transition: opacity .25s ease, transform .35s var(--ease-premium);
}

.journey-stage-copy {
  min-height: 118px;
}

.journey-stage-copy .eyebrow {
  margin-bottom: 12px;
  color: var(--pink);
}

.journey-stage-copy h3 {
  margin: 0;
  max-width: 430px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.journey-progress {
  height: 2px;
  margin: 34px 0 20px;
  background: rgba(255,255,255,.13);
  overflow: hidden;
}

.journey-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--spectrum);
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .45s var(--ease-premium);
}

.journey-scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255,255,255,.46);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.journey-scroll-cue span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
}

.journey-chapters {
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-chapter {
  min-height: 72vh;
  display: flex;
  align-items: center;
  opacity: .26;
  transform: translateY(44px) scale(.975);
  transition: opacity .35s ease, transform .45s var(--ease-premium);
}

.journey-chapter.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.journey-chapter article {
  position: relative;
  width: 100%;
  padding: 42px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 38px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.025);
  transition: border-color .35s ease, background-color .35s ease, box-shadow .35s ease;
}

.journey-chapter.is-active article {
  border-color: rgba(247,37,199,.42);
  background: rgba(255,255,255,.055);
  box-shadow: 0 26px 75px rgba(0,0,0,.24);
}

.journey-chapter article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--spectrum);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s var(--ease-premium);
}

.journey-chapter.is-active article::before {
  transform: scaleY(1);
}

.chapter-marker span {
  display: block;
  margin-bottom: 18px;
  color: var(--pink);
  font: 600 11px var(--display);
  letter-spacing: .12em;
}

.chapter-marker time {
  color: rgba(255,255,255,.18);
  font: 600 38px var(--display);
  letter-spacing: -.06em;
  transition: color .3s ease;
}

.journey-chapter.is-active .chapter-marker time {
  color: #fff;
}

.chapter-copy .eyebrow {
  margin-bottom: 14px;
  color: var(--pink);
}

.chapter-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 42px);
}

.chapter-copy > p:not(.eyebrow):not(.chapter-outcome) {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.66);
  font-size: 16px;
}

.chapter-outcome {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  font: 600 10px var(--display);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.journey-chapter-final article {
  background: linear-gradient(135deg, rgba(237,28,36,.08), rgba(232,9,176,.06));
}

@media (max-width: 1000px) {
  .journey-intro {
    grid-template-columns: 120px 1fr;
  }

  .journey-experience {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .journey-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .journey-stage-year {
    margin: 70px 0 24px;
    font-size: 112px;
  }

  .journey-scroll-cue {
    display: none;
  }

  .journey-chapter {
    min-height: 520px;
    opacity: .55;
  }
}

@media (max-width: 720px) {
  .journey-story {
    padding: 96px 0 96px;
  }

  main > section {
    border-bottom-width: 1px;
  }

  .journey-story + .strategy {
    padding-top: 120px;
  }

  .journey-story + .strategy::before {
    height: 48px;
  }

  .journey-atmosphere {
    width: 460px;
    height: 460px;
    right: -300px;
  }

  .journey-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 58px;
  }

  .journey-intro h2 {
    font-size: 43px;
  }

  .journey-intro > div:last-child > p:last-child {
    font-size: 16px;
  }

  .journey-stage {
    padding: 28px 24px;
  }

  .journey-stage-year {
    margin: 48px 0 20px;
    font-size: 86px;
  }

  .journey-stage-copy h3 {
    font-size: 28px;
  }

  .journey-chapter {
    min-height: 0;
    padding: 28px 0;
    opacity: .48;
    transform: translateY(20px);
  }

  .journey-chapter article {
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .chapter-marker {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .chapter-marker span {
    margin: 0;
  }

  .chapter-marker time {
    font-size: 34px;
  }

  .chapter-copy h3 {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-atmosphere,
  .journey-chapter,
  .journey-chapter article,
  .journey-chapter article::before,
  .journey-progress span {
    transition: none;
    transform: none;
  }

  .journey-chapter {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-primary::before { display: none; }
  .pillar, .value, .timeline li::after { transition: none; }
}

/* Strategic group hierarchy */
.strategy-hierarchy {
  position: relative;
}

.strategy-intro {
  display: grid;
  grid-template-columns: 180px minmax(0, 720px);
  gap: 52px;
  margin-bottom: 80px;
}

.strategy-intro h2 {
  font-size: clamp(44px, 5vw, 72px);
  margin: 0;
}

.strategy-intro > div:last-child > p:last-child {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 18px;
}

.strategy-chart {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.org-node {
  position: relative;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.035);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  overflow: hidden;
}

.org-parent {
  width: min(100%, 590px);
  min-height: 178px;
  margin: 0 auto;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 205px 1fr;
  gap: 32px;
  align-items: center;
  border-color: rgba(232,9,176,.42);
  background:
    radial-gradient(circle at 0 0, rgba(237,28,36,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}

.org-parent::before,
.org-child::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--spectrum);
}

.org-node-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.org-logo-group {
  width: 205px;
}

.org-node-copy h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.org-node-copy p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.65;
}

.org-kicker,
.org-sequence {
  margin: 0 0 9px;
  color: var(--pink);
  font-family: var(--display);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.org-connector {
  position: relative;
  width: 62%;
  height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(247,37,199,.55);
}

.org-connector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  border-left: 1px solid rgba(247,37,199,.55);
}

.org-connector span::before,
.org-connector span::after {
  content: "";
  position: absolute;
  bottom: -12px;
  height: 12px;
  border-left: 1px solid rgba(247,37,199,.55);
}

.org-connector span::before { left: 0; }
.org-connector span::after { right: 0; }

.org-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 11px;
}

.org-child {
  min-height: 285px;
  padding: 30px 34px 34px;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease-premium), border-color .25s ease, background-color .25s ease;
}

.org-child:hover {
  transform: translateY(-5px);
  border-color: rgba(247,37,199,.38);
  background: rgba(255,255,255,.055);
}

.org-node-logo:not(.org-logo-group) {
  display: flex;
  align-items: center;
  height: 76px;
  margin: 12px 0 27px;
}

.org-logo-marine {
  width: 240px;
  padding: 8px 11px;
  background: #fff;
  border-radius: 3px;
}

.org-logo-renewables {
  width: 270px;
}

.org-child .org-node-copy {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.org-child .org-node-copy h3 {
  font-size: 21px;
}

@media (max-width: 1000px) {
  .strategy-intro {
    grid-template-columns: 120px 1fr;
  }

  .org-parent {
    width: min(100%, 560px);
  }

  .org-connector {
    width: 54%;
  }
}

@media (max-width: 720px) {
  .strategy-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 58px;
  }

  .strategy-intro h2 {
    font-size: 43px;
  }

  .strategy-intro > div:last-child > p:last-child {
    font-size: 16px;
  }

  .org-parent {
    min-height: 0;
    padding: 27px 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .org-logo-group {
    width: 210px;
  }

  .org-connector {
    width: 1px;
    height: 58px;
    border: 0;
    border-left: 1px solid rgba(247,37,199,.55);
  }

  .org-connector::before,
  .org-connector span::before,
  .org-connector span::after {
    display: none;
  }

  .org-branches {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 0;
  }

  .org-child {
    min-height: 275px;
    padding: 27px 24px 30px;
  }

  .org-child + .org-child::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -59px;
    height: 58px;
    border-left: 1px solid rgba(247,37,199,.55);
  }

  .org-logo-marine { width: 225px; }
  .org-logo-renewables { width: 245px; }
}

/* Stakeholder mandate: exact Vision and Mission */
.identity-manifesto {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(237,28,36,.055), transparent 38%),
    #08080c;
}

.identity-glow {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -330px;
  top: -390px;
  border: 1px solid rgba(247,37,199,.14);
  border-radius: 50%;
}

.identity-glow::before,
.identity-glow::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(247,37,199,.09);
  border-radius: 50%;
}

.identity-glow::before { inset: 95px; }
.identity-glow::after { inset: 195px; }

.mandate-wrap {
  position: relative;
}

.mandate-header {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  margin-bottom: 78px;
}

.mandate-header h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 78px);
}

.mandate-header h2 span {
  color: transparent;
  background: var(--spectrum);
  background-clip: text;
  -webkit-background-clip: text;
}

.mandate-header > div:last-child > p:last-child {
  max-width: 780px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.67);
  font-size: 18px;
}

.mandate-board {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: stretch;
}

.mandate-card {
  position: relative;
  min-height: 560px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
}

.mandate-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--spectrum);
}

.mandate-vision {
  color: var(--ink);
  background: #f6f3f2;
  box-shadow: 0 26px 80px rgba(0,0,0,.25);
}

.mandate-mission {
  background:
    radial-gradient(circle at 100% 0, rgba(232,9,176,.14), transparent 32%),
    rgba(255,255,255,.035);
}

.mandate-card-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid currentColor;
  border-color: rgba(128,128,136,.25);
}

.mandate-letter {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--magenta);
  font: 600 20px var(--display);
}

.mandate-card-head .eyebrow {
  margin: 0 0 6px;
  color: var(--crimson);
}

.mandate-mission .mandate-card-head .eyebrow {
  color: var(--pink);
}

.mandate-card-head h3 {
  margin: 0;
  font-size: 34px;
}

.mandate-card blockquote {
  margin: 48px 0 50px;
  font: 500 clamp(26px, 2.3vw, 36px)/1.38 var(--display);
  letter-spacing: -.035em;
}

.mandate-card blockquote strong {
  font-weight: 600;
  color: transparent;
  background: var(--spectrum);
  background-clip: text;
  -webkit-background-clip: text;
}

.mandate-link {
  position: relative;
}

.mandate-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--spectrum);
}

.mandate-link span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  background: #08080c;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(247,37,199,.48);
}

@media (max-width: 1000px) {
  .mandate-header {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .mandate-board {
    grid-template-columns: 1fr;
  }

  .mandate-link {
    height: 58px;
  }

  .mandate-link::before {
    left: 50%;
    right: auto;
    top: 0;
    width: 1px;
    height: 100%;
  }

  .mandate-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .mandate-header {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 54px;
  }

  .mandate-header h2 {
    font-size: 42px;
  }

  .mandate-header > div:last-child > p:last-child {
    font-size: 16px;
  }

  .mandate-card {
    padding: 32px 24px;
  }

  .mandate-card-head {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding-bottom: 24px;
  }

  .mandate-letter {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .mandate-card-head h3 {
    font-size: 28px;
  }

  .mandate-card blockquote {
    margin: 34px 0 40px;
    font-size: 25px;
    line-height: 1.42;
  }

}

/* Site-wide viewport fit and spacing rhythm */
:root {
  --wrap: min(1520px, calc(100% - clamp(40px, 6vw, 112px)));
}

.site-header {
  padding-inline: max(clamp(20px, 3vw, 56px), calc((100vw - 1520px) / 2));
}

.section {
  padding-block: clamp(104px, 7.2vw, 132px);
}

.section-tight {
  padding-block: clamp(80px, 5.5vw, 104px);
}

.journey-story {
  padding-block: clamp(112px, 7.5vw, 144px) clamp(96px, 7vw, 128px);
}

.journey-story + .strategy {
  padding-top: clamp(128px, 8vw, 152px);
}

@media (max-width: 1000px) {
  :root {
    --wrap: calc(100% - 48px);
  }

  .site-header {
    padding-inline: 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --wrap: calc(100% - 32px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .section {
    padding-block: 80px;
  }

  .section-tight {
    padding-block: 68px;
  }

  .journey-story {
    padding-block: 88px 80px;
  }

  .journey-story + .strategy {
    padding-top: 104px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 11.5vw, 50px);
    overflow-wrap: normal;
  }

  .hero-eyebrow {
    position: relative;
    display: block;
    max-width: 100%;
    padding-left: 42px;
    font-size: 10px;
    letter-spacing: .13em;
  }

  .hero-eyebrow::before {
    position: absolute;
    left: 0;
    top: .65em;
    width: 28px;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .value {
    min-height: 0;
  }
}

/* Core values — full-width principles band */
.values {
  position: relative;
  overflow: clip;
  background: #f7f5f3;
}

.values-grid {
  display: block;
}

.values-lead {
  position: relative;
  display: flex;
  padding: 32px 0 58px;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(16, 16, 21, .2);
}

.values-lead::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 140px;
  height: 3px;
  background: var(--spectrum);
}

.values-lead::after {
  content: none;
}

.values-lead .eyebrow {
  margin: 0 40px 8px 0;
  color: var(--crimson);
}

.values-lead h2 {
  width: min(100%, 980px);
  margin: 0;
  font-size: clamp(58px, 6vw, 92px);
  line-height: .94;
  text-align: right;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(16, 16, 21, .22);
  border-left: 1px solid rgba(16, 16, 21, .22);
}

.value {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 310px;
  padding: 30px clamp(18px, 1.7vw, 30px) 34px;
  flex-direction: column;
  align-items: stretch;
  border: 0;
  border-right: 1px solid rgba(16, 16, 21, .22);
  border-bottom: 1px solid rgba(16, 16, 21, .22);
  background: transparent;
  transition: color .3s ease, background-color .3s ease;
}

.value::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 5px;
  background: var(--spectrum);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .4s var(--ease-premium);
}

.value::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 14px rgba(232, 9, 176, .35);
}

.value:hover {
  padding-left: clamp(18px, 1.7vw, 30px);
  color: #fff;
  background: #0b0b10;
}

.value:hover::before {
  transform: scaleX(1);
}

.value > span {
  padding: 0;
  font: 650 11px/1 var(--display);
  letter-spacing: .13em;
  color: var(--crimson);
}

.value > span::after {
  content: none;
}

.value h3 {
  max-width: 230px;
  margin: auto 0 0;
  font-size: clamp(22px, 1.65vw, 29px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

@media (max-width: 1200px) {
  .values-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value {
    min-height: 220px;
  }

  .value h3 {
    max-width: 300px;
  }
}

@media (max-width: 720px) {
  .values-lead {
    display: block;
    padding: 28px 0 40px;
  }

  .values-lead .eyebrow {
    margin: 0 0 24px;
  }

  .values-lead h2 {
    max-width: 310px;
    font-size: 50px;
    text-align: left;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .value {
    min-height: 128px;
    padding: 24px 22px;
  }

  .value:hover {
    padding-left: 22px;
  }

  .value h3 {
    max-width: 290px;
    font-size: 25px;
  }
}

/* Business website gateway */
.business-gateway {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(680px, 1.5fr);
  gap: clamp(64px, 7vw, 132px);
  align-items: start;
}

.gateway-heading {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.gateway-heading::before {
  content: "";
  display: block;
  width: 112px;
  height: 3px;
  margin: -32px 0 30px;
  background: var(--spectrum);
}

.gateway-heading h2 {
  margin-bottom: 30px;
  font-size: clamp(52px, 5vw, 76px);
}

.gateway-heading > p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.gateway-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: rgba(16, 16, 21, .18);
}

.gateway-card {
  position: relative;
  display: flex;
  min-height: 510px;
  padding: 34px clamp(28px, 3vw, 48px) 40px;
  flex-direction: column;
  overflow: hidden;
  background: #f1efed;
  transition: transform .3s var(--ease-premium), box-shadow .3s ease;
}

.gateway-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--spectrum);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .4s var(--ease-premium);
}

.gateway-card:hover,
.gateway-card:focus-visible {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(16, 16, 21, .16);
}

.gateway-card:hover::before,
.gateway-card:focus-visible::before {
  transform: scaleX(1);
}

.gateway-number {
  color: var(--muted);
  font: 650 10px/1.4 var(--display);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gateway-logo {
  display: flex;
  min-height: 190px;
  align-items: center;
}

.gateway-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.gateway-logo-marine img {
  width: 260px;
}

.gateway-logo-renewables img {
  width: 300px;
}

.gateway-copy {
  max-width: 420px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.gateway-action {
  display: flex;
  margin-top: auto;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font: 700 13px/1.3 var(--display);
}

.gateway-action b {
  font-size: 18px;
  transition: transform .25s ease;
}

.gateway-card:hover .gateway-action b,
.gateway-card:focus-visible .gateway-action b {
  transform: translate(4px, -4px);
}

.gateway-renewables {
  color: #fff;
  background: #0b0b10;
}

.gateway-renewables .gateway-number,
.gateway-renewables .gateway-copy {
  color: rgba(255, 255, 255, .64);
}

.gateway-renewables .gateway-action {
  border-color: rgba(255, 255, 255, .18);
}

@media (max-width: 1000px) {
  .business-gateway {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 720px) {
  .gateway-links {
    grid-template-columns: 1fr;
  }

  .gateway-card {
    min-height: 430px;
    padding: 30px 26px 32px;
  }

  .gateway-logo {
    min-height: 150px;
  }

  .gateway-heading h2 {
    font-size: 46px;
  }
}

/* Corporate legal footer */
.footer {
  padding: clamp(72px, 7vw, 108px) 0 28px;
  border-top: 0;
}

.footer-legal-frame {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 68px);
  padding: clamp(34px, 4vw, 56px);
  align-items: center;
  border: 1px solid transparent;
  border-image: var(--spectrum) 1;
}

.footer-legal-frame::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 90px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--spectrum);
  box-shadow: 0 0 20px rgba(232, 9, 176, .38);
}

.footer-legal-frame p,
.footer-legal-frame > span {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font: 650 10px/1.4 var(--display);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-legal-frame > span {
  text-align: right;
}

.footer-legal-frame h2 {
  margin: 0;
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1.2fr .8fr auto;
  gap: clamp(38px, 5vw, 84px);
  padding-block: clamp(18px, 2vw, 32px) clamp(68px, 6vw, 96px);
  align-items: start;
}

.footer-company-name {
  max-width: 330px;
  margin: 24px 0 0;
  color: #fff;
  font: 700 13px/1.5 var(--display);
  letter-spacing: -.01em;
}

.footer-group-line {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .48);
  font: 600 11px/1.5 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-address .eyebrow,
.footer-destinations .eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .45);
}

.footer-address address {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .72);
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
}

.footer-address > a,
.footer-destinations > a {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 7px;
  font: 650 12px/1.4 var(--display);
}

.footer-destinations {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-destinations > a + a {
  margin-top: 18px;
}

.footer-address > a:hover,
.footer-destinations > a:hover {
  border-color: var(--pink);
}

.footer .back-top {
  min-width: 138px;
}

.footer-bottom {
  grid-template-columns: minmax(360px, 1fr) auto auto;
}

@media (max-width: 1100px) {
  .footer-legal-frame {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .footer-legal-frame > span {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1.25fr;
  }

  .footer-destinations,
  .footer .back-top {
    margin-top: 10px;
  }
}

@media (max-width: 720px) {
  .footer-legal-frame {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 24px;
  }

  .footer-legal-frame h2 {
    font-size: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 10px 62px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-address address {
    font-size: 13px;
  }
}

/* Unified website section-title system */
.section-heading,.values-lead{display:block;text-align:left}
.section-heading .section-index{margin-bottom:34px}
.section-heading .eyebrow,.values-lead .eyebrow,.gateway-heading .eyebrow,.mandate-header>div:last-child>.eyebrow,.journey-intro>div:last-child>.eyebrow,.strategy-intro>div:last-child>.eyebrow{margin:0 0 14px;color:var(--crimson)}
.journey-intro>div:last-child>.eyebrow,.strategy-intro>div:last-child>.eyebrow,.mandate-header>div:last-child>.eyebrow{color:var(--pink)}
.section-heading h2,.values-lead h2,.gateway-heading h2,.mandate-header h2,.journey-intro h2,.strategy-intro h2{width:min(100%,980px);margin:0;text-align:left}
.section-heading .section-summary{max-width:680px;margin:26px 0 0}
.values-lead{padding:32px 0 48px;align-items:initial;justify-content:initial}
.values-lead .eyebrow{margin:0 0 14px}
.values-lead h2{font-size:clamp(52px,5.4vw,84px)}
.gateway-heading h2{margin-bottom:26px}

@media(max-width:720px){.section-heading .section-index{margin-bottom:24px}.section-heading h2,.values-lead h2,.gateway-heading h2,.mandate-header h2,.journey-intro h2,.strategy-intro h2{font-size:43px}.values-lead{padding:26px 0 38px}}

.journey[data-active="5"] .journey-stage-year{font-size:clamp(48px,6vw,82px);letter-spacing:-.06em}
.journey-chapter-final .chapter-marker time{font-size:24px;letter-spacing:-.04em;white-space:nowrap}
