/* EDIT: Brand colours, spacing, and typography are controlled from this block. */
:root {
  --royal: #08235f;
  --royal-deep: #03143a;
  --royal-ink: #06112b;
  --black-ink: #05070b;
  --charcoal: #171a1f;
  --charcoal-soft: #4f5661;
  --white: #ffffff;
  --ivory: #f6f3ed;
  --mist: #ebe7dc;
  --gold: #b9975b;
  --gold-soft: #d8c299;
  --line: rgba(23, 26, 31, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(3, 20, 58, 0.18);
  --radius: 8px;
  --page: min(1180px, calc(100% - 32px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--gold);
  color: var(--royal-ink);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--royal);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-grid {
  width: var(--page);
  margin-inline: auto;
}

/* EDIT: Header layout and mobile navigation. */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--page);
  min-height: 92px;
  margin: 0 auto;
  padding: 18px 0;
  color: var(--white);
  transition:
    color 180ms ease,
    min-height 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  min-height: 82px;
  padding: 12px 0;
  color: var(--charcoal);
}

.site-header.nav-active {
  color: var(--charcoal);
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 92px;
  z-index: -1;
  background: rgba(3, 20, 58, 0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease,
    height 180ms ease;
}

.site-header.is-scrolled::before,
.site-header.nav-active::before {
  height: 82px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(23, 26, 31, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  padding: 5px;
  border: 2px solid rgba(216, 194, 153, 0.9);
  border-radius: var(--radius);
  background: rgba(3, 20, 58, 0.96);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.primary-nav {
  display: none;
}

.primary-nav a {
  color: currentColor;
  font-size: 0.86rem;
  font-weight: 700;
}

.primary-nav .nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(216, 194, 153, 0.52);
  border-radius: 6px;
  color: var(--gold-soft);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold-soft);
}

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a:focus-visible {
  color: var(--royal);
}

.site-header.is-scrolled .primary-nav .nav-cta {
  border-color: rgba(8, 35, 95, 0.18);
  color: var(--royal);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-active .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-active .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-active .primary-nav {
  position: fixed;
  inset: 64px 0 0 0;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 18px 16px 36px;
  background: var(--white);
  color: var(--charcoal);
}

.nav-active .primary-nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}

.nav-active .primary-nav .nav-cta {
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(185, 151, 91, 0.42);
  background: var(--royal);
  color: var(--white);
  text-align: center;
}

/* EDIT: Shared section and text styles. */
.section {
  padding: 84px 0;
}

section[id],
article[id] {
  scroll-margin-top: 88px;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(3, 20, 58, 0.18), rgba(3, 20, 58, 0.8)),
    radial-gradient(circle at 18% 20%, rgba(185, 151, 91, 0.22), transparent 34%),
    linear-gradient(135deg, #142b63 0%, var(--royal-deep) 54%, var(--black-ink) 100%);
  color: var(--white);
}

.section-blue {
  background:
    radial-gradient(circle at 14% 12%, rgba(185, 151, 91, 0.12), transparent 26%),
    linear-gradient(135deg, var(--royal) 0%, var(--royal-deep) 50%, var(--black-ink) 100%);
  color: var(--white);
}

.section-light {
  background: var(--ivory);
}

.section-white {
  background: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-blue .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 12.5ch;
  margin-bottom: 26px;
  font-size: 2.75rem;
  line-height: 0.96;
  font-weight: 850;
}

h1 span {
  display: block;
  color: var(--gold-soft);
}

h2 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 840;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 780;
}

.section-head {
  max-width: 820px;
}

.section-head p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--charcoal-soft);
  font-size: 1.03rem;
}

.section-head p:not(.eyebrow):last-child {
  margin-bottom: 0;
}

.section-blue .section-head p,
.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--royal-ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-soft);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.button-dark {
  background: var(--royal-ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--royal);
}

/* EDIT: Hero section and canvas visual. */
.hero {
  position: relative;
  min-height: calc(100svh - 32px);
  overflow: hidden;
  padding: 96px 0 36px;
}

.signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.46;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(3, 20, 58, 0.92));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.hero-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.34em;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 12px 16px;
  border: 1px solid rgba(216, 194, 153, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: clamp(0.82rem, 1.2vw, 0.96rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.hero-kicker .mark-explore,
.hero-kicker .mark-engage,
.hero-kicker .mark-evolve {
  font-weight: 950;
}

.hero-subheadline {
  max-width: 760px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.hero-support {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-intel {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-top: 34px;
  border: 0;
}

.hero-intel span {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(216, 194, 153, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-intel span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 48px;
  height: 3px;
  background: var(--gold-soft);
}

.hero-intel strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.hero-intel em {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.38;
}

.hero-brief {
  display: grid;
  align-self: end;
  max-width: 430px;
}

.hero-portrait {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(2, 9, 24, 0.88));
  pointer-events: none;
}

.hero-portrait figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.hero-portrait figcaption span,
.visual-panel figcaption span,
.about-portrait figcaption span {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-portrait figcaption strong {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.1;
}

.hero-portrait figcaption em {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 720;
  line-height: 1.38;
}

.hero-designation {
  display: grid;
  gap: 4px;
  padding-top: 2px;
  border-top: 1px solid rgba(216, 194, 153, 0.24);
}

.hero-portrait figcaption .hero-designation span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.hero-brief-panel {
  display: none;
  margin-top: 14px;
  padding: 22px;
  border: 1px solid rgba(216, 194, 153, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(3, 20, 58, 0.82), rgba(8, 35, 95, 0.54)),
    rgba(3, 20, 58, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brief-label {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-stack {
  display: grid;
  gap: 0;
  margin-bottom: 22px;
}

.brief-stack article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(216, 194, 153, 0.18);
}

.brief-stack span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  border: 1px solid rgba(216, 194, 153, 0.38);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.brief-stack strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 850;
}

.brief-stack p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  line-height: 1.5;
}

.brief-metric {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 194, 153, 0.18);
}

.brief-metric strong {
  color: var(--gold-soft);
  font-size: 2.16rem;
  line-height: 1;
}

.brief-metric span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.brief-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.48;
}

/* EDIT: Authority strip metrics. */
.authority-strip {
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.authority-grid {
  display: grid;
  gap: 0;
}

.authority-grid article {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.authority-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 3px;
  background: var(--gold);
}

.authority-grid strong,
.authority-grid span {
  display: block;
}

.authority-grid strong {
  color: var(--royal);
  font-size: 1.75rem;
  line-height: 1;
}

.authority-grid span {
  margin-top: 8px;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-weight: 750;
}

/* EDIT: Executive profile panels near the top of the site. */
.profile-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(246, 243, 237, 0.86), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.profile-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 68%, rgba(8, 35, 95, 0.06) 68% 100%),
    linear-gradient(180deg, rgba(185, 151, 91, 0.1), transparent 38%);
  pointer-events: none;
}

.profile-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.profile-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(8, 35, 95, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(3, 20, 58, 0.12);
}

.profile-panel::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  width: 76px;
  height: 4px;
  background: var(--gold);
  pointer-events: none;
}

.profile-panel > * {
  position: relative;
  z-index: 1;
}

.profile-panel-primary {
  background:
    linear-gradient(135deg, rgba(3, 20, 58, 0.96), rgba(8, 35, 95, 0.9)),
    var(--royal);
  color: var(--white);
}

.profile-panel-primary::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(216, 194, 153, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.profile-panel-record {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 237, 0.94)),
    var(--white);
}

.profile-panel h2 {
  max-width: 14ch;
  margin-bottom: 22px;
}

.profile-panel p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--charcoal-soft);
  font-size: 1.03rem;
}

.profile-panel p:last-child {
  margin-bottom: 0;
}

.profile-panel-primary p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.profile-panel-primary .eyebrow {
  color: var(--gold-soft);
}

.profile-roles {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(216, 194, 153, 0.22);
  border-bottom: 1px solid rgba(216, 194, 153, 0.22);
}

.profile-roles span {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.45;
}

.profile-roles span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.profile-decision-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid rgba(8, 35, 95, 0.14);
  border-bottom: 1px solid rgba(8, 35, 95, 0.14);
}

.profile-decision-list span {
  padding: 12px 0;
  border-bottom: 1px solid rgba(8, 35, 95, 0.1);
  color: var(--royal);
  font-size: 0.88rem;
  font-weight: 840;
  line-height: 1.42;
}

.profile-decision-list span:last-child {
  border-bottom: 0;
}

.profile-metrics {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(8, 35, 95, 0.14);
}

.profile-metrics span {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(8, 35, 95, 0.14);
  color: var(--charcoal-soft);
  font-size: 0.88rem;
  font-weight: 820;
}

.profile-metrics strong {
  color: var(--royal);
  font-size: 1.65rem;
  line-height: 1;
}

/* EDIT: Value recovery mandate section. */
.value-case-section {
  border-bottom: 1px solid var(--line);
}

.value-case-grid {
  display: grid;
  gap: 36px;
}

.value-case-copy h2 {
  max-width: 12ch;
}

.value-case-copy p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--charcoal-soft);
  font-size: 1.04rem;
}

.value-case-board {
  display: grid;
  gap: 12px;
  align-items: start;
}

.value-case-board article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(4.8rem, auto) auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.value-case-board article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 3px;
  background: var(--gold);
}

.value-case-board span {
  display: block;
  min-height: 2.2em;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.value-case-board strong {
  display: block;
  margin-bottom: 12px;
  color: var(--royal);
  font-size: clamp(2rem, 3vw, 2.35rem);
  line-height: 1;
}

.value-case-board p {
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

/* EDIT: Selected achievements grouped as executive proof blocks. */
.achievements-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(246, 243, 237, 0.86), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.achievement-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.achievement-intro {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.achievement-portrait,
.achievement-story-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 7, 11, 0.18);
  border-radius: var(--radius);
  background: var(--black-ink);
  box-shadow:
    0 26px 80px rgba(3, 20, 58, 0.18),
    inset 0 0 0 1px rgba(216, 194, 153, 0.08);
}

.achievement-portrait img,
.achievement-story-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.98) contrast(1.08) brightness(1.03);
}

.achievement-portrait::after,
.achievement-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 9, 24, 0.03) 0%, rgba(2, 9, 24, 0.08) 42%, rgba(2, 9, 24, 0.74) 100%),
    linear-gradient(90deg, rgba(3, 20, 58, 0.14), transparent 62%);
  pointer-events: none;
}

.achievement-portrait figcaption,
.achievement-story-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.achievement-portrait figcaption span,
.achievement-story-card figcaption span {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.achievement-portrait figcaption strong,
.achievement-story-card figcaption strong {
  max-width: 18ch;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.08;
}

.achievement-story {
  display: grid;
  gap: 12px;
}

.achievement-story-card {
  min-height: 280px;
}

.achievement-story-card img {
  min-height: 280px;
  aspect-ratio: 16 / 10;
}

.story-field img {
  object-position: 28% center;
  filter: saturate(1.02) contrast(1.08) brightness(1.04);
}

.story-boardroom img {
  object-position: center 34%;
}

.story-handover img {
  object-position: center 44%;
  filter: saturate(1.08) contrast(1.12) brightness(1.12);
}

.story-handover::after {
  background:
    linear-gradient(180deg, rgba(2, 9, 24, 0.02) 0%, rgba(2, 9, 24, 0.04) 45%, rgba(2, 9, 24, 0.62) 100%),
    linear-gradient(90deg, rgba(3, 20, 58, 0.08), transparent 66%);
}

.achievement-story-card figcaption {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.achievement-story-card figcaption strong {
  max-width: 20ch;
  font-size: 1.02rem;
}

.achievement-copy h2 {
  max-width: 14ch;
}

.achievement-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--charcoal-soft);
  font-size: 1.04rem;
}

.achievement-proofline {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.achievement-proofline span {
  display: grid;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal-soft);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.38;
}

.achievement-proofline span:last-child {
  border-bottom: 0;
}

.achievement-proofline strong {
  color: var(--royal);
  font-size: 1.24rem;
  font-weight: 950;
  line-height: 1;
}

.achievement-close {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.52;
}

.achievement-copy {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(8, 35, 95, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 237, 0.9)),
    var(--white);
  box-shadow: 0 18px 50px rgba(3, 20, 58, 0.08);
}

.achievement-clusters {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.achievement-clusters article {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(8, 35, 95, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 237, 0.86)),
    var(--white);
  box-shadow: 0 18px 50px rgba(3, 20, 58, 0.08);
}

.achievement-clusters article > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(185, 151, 91, 0.44);
  border-radius: 50%;
  color: var(--royal);
  font-size: 0.76rem;
  font-weight: 900;
}

.achievement-clusters h3 {
  margin-bottom: 16px;
  color: var(--royal);
  font-size: 1.16rem;
}

.achievement-clusters ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.achievement-clusters li {
  color: var(--charcoal-soft);
  font-size: 0.94rem;
  line-height: 1.52;
}

.achievement-clusters strong {
  color: var(--charcoal);
}

/* EDIT: Executive mandate section. */
.mandate-section {
  border-bottom: 1px solid var(--line);
}

.mandate-section h2,
.value-drivers-section h2,
.sector-section h2 {
  max-width: 15ch;
}

.mandate-layout,
.driver-layout {
  display: grid;
  gap: 38px;
}

.mandate-board {
  display: grid;
  gap: 12px;
}

.mandate-board article {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mandate-board article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 3px;
  background: var(--gold);
}

.mandate-board span,
.value-driver-grid span,
.sector-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mandate-board h3,
.value-driver-grid h3,
.sector-grid h3 {
  color: var(--royal);
}

.mandate-board p,
.value-driver-grid p,
.sector-grid p {
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

/* EDIT: Cards for positioning, services, framework, insights, and FAQ. */
.card-grid,
.services-grid,
.insight-grid {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.feature-card,
.service-card,
.insight-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 28px 0;
  border-radius: 0;
}

.feature-card {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.feature-card::before,
.insight-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 3px;
  background: var(--gold);
}

.feature-card p,
.service-card p {
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

.advisory-output,
.service-command {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advisory-output span,
.service-command article {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-weight: 740;
}

.advisory-output span:last-child,
.service-command article:last-child {
  border-bottom: 0;
}

.advisory-output strong,
.service-command span {
  color: var(--royal);
  font-size: 0.78rem;
  font-weight: 930;
  text-transform: uppercase;
}

.card-index {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 0;
  border-top: 1px solid rgba(216, 194, 153, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    transparent;
  box-shadow: none;
}

.service-media,
.insight-media {
  position: relative;
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--royal-ink);
}

.service-media {
  height: 270px;
  border: 1px solid var(--line-light);
}

.insight-media {
  height: 260px;
  border: 1px solid rgba(8, 35, 95, 0.12);
}

.service-media img,
.insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 600ms ease;
}

.service-media-advisory img {
  object-position: center 45%;
}

.service-media-intelligence img {
  object-position: center 44%;
}

.service-media-commodities img {
  object-position: center 52%;
}

.service-media-speaking img {
  object-position: center 46%;
  filter: saturate(1.02) contrast(1.06) brightness(1.04);
}

.insight-media-performance img {
  object-position: center 54%;
}

.insight-media-africa img {
  object-position: center 42%;
  filter: saturate(1.08) contrast(1.08) brightness(1.02);
}

.insight-media-intelligence img {
  object-position: center 42%;
}

.service-media::after,
.insight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 9, 24, 0.03), rgba(2, 9, 24, 0.3)),
    linear-gradient(90deg, rgba(8, 35, 95, 0.08), transparent 62%);
  pointer-events: none;
}

.service-card:hover .service-media img,
.insight-card:hover .insight-media img {
  transform: scale(1.035);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 3px;
  background: var(--gold-soft);
}

.service-card > span,
.insight-card > span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-command {
  border-color: rgba(216, 194, 153, 0.24);
}

.service-command article {
  border-color: rgba(216, 194, 153, 0.18);
  color: rgba(255, 255, 255, 0.76);
}

.service-command span {
  color: var(--gold-soft);
}

.service-command p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.section-blue .service-card .trademark-inline {
  display: inline-flex;
  align-items: baseline;
  padding: 0 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
}

.value-drivers-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.driver-layout .section-head .button {
  margin-top: 28px;
}

.value-driver-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.value-driver-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  min-height: 0;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.value-driver-grid span {
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  border: 1px solid rgba(185, 151, 91, 0.42);
  border-radius: 50%;
  background: rgba(185, 151, 91, 0.1);
  color: var(--royal);
}

.value-driver-grid h3 {
  margin-bottom: 2px;
}

.value-driver-grid p {
  font-size: 0.95rem;
  line-height: 1.52;
}

.driver-note {
  margin-top: 32px;
}

.driver-note p {
  max-width: 920px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--charcoal-soft);
  font-size: 1rem;
  font-weight: 720;
}

/* EDIT: Real asset-intensive image section. */
.visual-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.visual-head h2 {
  max-width: 14ch;
}

.visual-head p:not(.eyebrow) {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--charcoal-soft);
  font-size: 1.04rem;
}

.visual-layout {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.visual-panel {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--royal-ink);
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(2, 9, 24, 0.9)),
    linear-gradient(90deg, rgba(3, 20, 58, 0.34), transparent 55%);
  pointer-events: none;
}

.visual-panel figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.visual-panel figcaption strong {
  max-width: 26ch;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.18;
}

.visual-panel-major figcaption strong {
  max-width: 32ch;
  font-size: 1.45rem;
}

.visual-panel-small figcaption strong {
  font-size: 1.02rem;
}

.proof-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(185, 151, 91, 0.14), transparent 28%),
    linear-gradient(135deg, var(--royal) 0%, var(--royal-deep) 45%, var(--black-ink) 100%);
  color: var(--white);
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, rgba(216, 194, 153, 0.08), transparent 45%),
    radial-gradient(circle at 76% 18%, rgba(216, 194, 153, 0.16), transparent 28%);
  pointer-events: none;
}

.proof-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 38px;
}

.proof-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.proof-media {
  display: grid;
  gap: 18px;
}

.proof-image {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 194, 153, 0.22);
  border-radius: var(--radius);
  background: var(--black-ink);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.proof-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(1.06) contrast(1.12) brightness(1.12);
}

.proof-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 9, 24, 0.02) 0%, rgba(2, 9, 24, 0.06) 40%, rgba(2, 9, 24, 0.72) 100%),
    linear-gradient(90deg, rgba(3, 20, 58, 0.08), transparent 66%);
  pointer-events: none;
}

.proof-image figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.proof-image figcaption span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-image figcaption strong {
  max-width: 30ch;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.16;
}

.proof-ledger {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.proof-ledger article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.proof-ledger span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-ledger p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.framework-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.framework-section .section-head p:not(.eyebrow) {
  margin-bottom: 16px;
}

.framework-section .section-head p:not(.eyebrow):last-child {
  margin-bottom: 0;
}

.framework-layout,
.about-layout,
.faq-layout,
.final-layout {
  display: grid;
  gap: 36px;
}

.framework-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.framework-steps article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.framework-steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--royal);
  font-size: 1.5rem;
  font-weight: 850;
}

.framework-title {
  display: inline-flex;
  align-items: baseline;
  gap: 0.06em;
  max-width: none;
  white-space: nowrap;
  font-size: 1.92rem;
}

.trademark-framework {
  letter-spacing: 0;
}

.trademark-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
  font-weight: 850;
}

.mark-explore {
  color: var(--charcoal);
  font-weight: 850;
}

.mark-engage {
  color: var(--royal);
  font-weight: 850;
}

.mark-evolve {
  color: var(--gold);
  font-weight: 920;
}

.framework-title .mark-explore,
.framework-title .mark-engage {
  font-weight: 860;
}

.framework-title .mark-evolve {
  font-weight: 950;
}

.framework-steps p {
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

.framework-note {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--royal) !important;
  font-weight: 760;
}

.framework-economics {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.framework-economics span {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal-soft);
  font-size: 0.88rem;
  font-weight: 760;
}

.framework-economics span:last-child {
  border-bottom: 0;
}

.framework-economics strong {
  color: var(--royal);
  font-size: 1.18rem;
  font-weight: 950;
}

.framework-steps h3 {
  margin-bottom: 12px;
  color: var(--royal);
  font-size: 1.28rem;
}

.framework-step-name {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 850;
}

.framework-step-explore {
  color: var(--charcoal) !important;
}

.framework-step-engage {
  color: var(--royal) !important;
}

.framework-step-evolve {
  color: var(--gold) !important;
}

.framework-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.framework-tool-tags strong,
.framework-tool-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(8, 35, 95, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--royal);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
}

.framework-tool-tags strong {
  border-color: rgba(185, 151, 91, 0.38);
  background: rgba(185, 151, 91, 0.12);
  color: var(--charcoal);
}

.framework-stack {
  display: grid;
  gap: 40px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.framework-stack-head h3 {
  max-width: 24ch;
  margin-bottom: 16px;
  color: var(--royal);
  font-size: 2.1rem;
  line-height: 1.08;
}

.framework-stack-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--charcoal-soft);
}

.tool-ledger {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.tool-ledger article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.tool-ledger article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(185, 151, 91, 0.42);
  border-radius: 50%;
  background: rgba(185, 151, 91, 0.1);
  color: var(--royal);
  font-size: 0.74rem;
  font-weight: 900;
}

.tool-ledger h4 {
  margin: 0 0 8px;
  color: var(--royal);
  font-size: 1.16rem;
  line-height: 1.2;
}

.tool-mark-title {
  display: inline-flex;
  gap: 0;
  align-items: baseline;
}

.tool-ledger p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.96rem;
  line-height: 1.56;
}

.tool-outcomes {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 26, 71, 0.1);
}

.tool-outcomes span {
  display: block;
  color: var(--charcoal-soft);
  font-size: 0.86rem;
  line-height: 1.46;
}

.tool-outcomes strong {
  margin-right: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-strip {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-strip span {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
}

.journey-strip strong {
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.journey-strip em {
  color: var(--charcoal-soft);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 760;
  line-height: 1.25;
}

.journey-strip span:last-child {
  border-bottom: 0;
}

.sector-section {
  background:
    linear-gradient(180deg, rgba(3, 20, 58, 0.96), rgba(6, 17, 43, 0.98)),
    url("./assets/pexels-kelly-commodity-port.jpg") center / cover no-repeat,
    var(--royal-ink);
  color: var(--white);
}

.sector-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.sector-grid {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.sector-grid article {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line-light);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sector-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 3px;
  background: var(--gold-soft);
}

.sector-grid h3 {
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1.12;
}

.sector-grid p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

.sector-grid strong,
.insight-card strong {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.45;
}

.insight-card strong {
  border-color: var(--line);
  color: var(--charcoal);
}

.about-section {
  background:
    linear-gradient(90deg, rgba(3, 20, 58, 0.92), rgba(8, 35, 95, 0.82)),
    var(--royal);
  color: var(--white);
}

.engage-case-section h2 {
  max-width: 13ch;
}

.engage-case-section .about-portrait,
.engage-case-section .about-portrait img {
  min-height: 460px;
}

.about-section .section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.about-portrait {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--royal-ink);
  box-shadow: var(--shadow);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 46%;
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(2, 9, 24, 0.92));
  pointer-events: none;
}

.about-portrait figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.about-portrait figcaption strong {
  max-width: 18ch;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.08;
}

.engage-thesis {
  display: grid;
  gap: 24px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.engage-thesis p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  line-height: 1.65;
}

.engage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.engage-actions .button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.insight-card {
  display: grid;
  align-content: space-between;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.insight-card > span {
  color: var(--gold);
}

.insight-card h3 {
  max-width: 18ch;
  margin-bottom: 22px;
  color: var(--royal);
  font-size: 1.35rem;
}

.insight-card a {
  margin-top: 18px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

.insight-card a:hover,
.insight-card a:focus-visible {
  color: var(--royal);
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 22px 54px 22px 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-size: 1.04rem;
  font-weight: 820;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 500;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

/* EDIT: MiningDoc thought leadership section. */
.miningdoc-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.miningdoc-panel {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.miningdoc-panel .section-head {
  max-width: none;
}

.miningdoc-panel h2 {
  max-width: 15ch;
}

.miningdoc-panel p:not(.eyebrow) {
  max-width: 820px;
  color: var(--charcoal-soft);
}

.miningdoc-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.miningdoc-themes span {
  padding: 8px 11px;
  border: 1px solid rgba(8, 35, 95, 0.14);
  border-radius: 999px;
  color: var(--royal);
  font-size: 0.78rem;
  font-weight: 850;
}

.miningdoc-media {
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(8, 35, 95, 0.16);
  border-radius: var(--radius);
  background: var(--royal-ink);
  box-shadow: var(--shadow);
}

.miningdoc-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 18% center;
  filter: saturate(0.98) contrast(1.06);
}

.miningdoc-media figcaption {
  display: grid;
  gap: 18px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(3, 20, 58, 0.98), rgba(8, 35, 95, 0.9)),
    var(--royal);
}

.miningdoc-media span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.miningdoc-media strong {
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.18;
}

/* EDIT: Strategic engagement form and contact section. */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 24, 0.58), rgba(3, 20, 58, 0.16)),
    radial-gradient(circle at 82% 18%, rgba(216, 194, 153, 0.16), transparent 28%),
    url("./assets/pexels-industrial-night-plant.jpg") center / cover no-repeat,
    linear-gradient(135deg, #120e0a, var(--royal-deep) 54%, var(--black-ink));
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 24, 0.14), rgba(3, 20, 58, 0.04)),
    radial-gradient(ellipse at 74% 78%, rgba(185, 151, 91, 0.12), transparent 34%);
  opacity: 0.66;
  pointer-events: none;
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.contact-copy h2 {
  max-width: 14ch;
  margin-bottom: 16px;
}

.contact-copy p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.contact-proof {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact-proof span {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-proof span:last-child {
  border-bottom: 0;
}

.contact-readiness {
  display: grid;
  gap: 8px;
  max-width: 660px;
  margin-top: 24px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-light);
}

.contact-readiness strong {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-readiness span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.5;
}

.engagement-form {
  display: grid;
  gap: 22px;
  max-width: 880px;
  padding: 22px;
  border: 1px solid rgba(216, 194, 153, 0.26);
  border-radius: var(--radius);
  background: rgba(2, 9, 24, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.form-grid {
  display: grid;
  gap: 20px;
}

.engagement-field {
  display: grid;
  gap: 10px;
}

.engagement-field span,
.terms-check span {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
}

.engagement-field strong {
  color: #f0563d;
}

.engagement-field input,
.engagement-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.97);
  color: var(--charcoal);
  font: inherit;
}

.engagement-field input {
  min-height: 56px;
  padding: 0 18px;
}

.engagement-field textarea {
  min-height: 170px;
  padding: 16px 18px;
  resize: vertical;
}

.engagement-field input::placeholder,
.engagement-field textarea::placeholder {
  color: rgba(23, 26, 31, 0.58);
}

.engagement-field input:focus,
.engagement-field textarea:focus {
  outline: 2px solid rgba(216, 194, 153, 0.72);
  border-color: var(--gold-soft);
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.terms-link {
  width: fit-content;
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.engagement-submit {
  width: fit-content;
}

.form-status {
  min-height: 1.4em;
  margin-bottom: 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.site-footer {
  background: var(--royal-ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0;
}

.footer-layout p {
  margin-bottom: 0;
}

.footer-identity {
  display: grid;
  gap: 4px;
}

.footer-identity p:last-child {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 760;
}

.footer-layout a {
  color: var(--gold-soft);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-links a {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 820;
}

/* EDIT: Legal page layout for Terms and Privacy. */
.legal-page .site-header {
  color: var(--white);
}

.legal-page .site-header.is-scrolled,
.legal-page .site-header.nav-active {
  color: var(--charcoal);
}

.legal-hero {
  min-height: 520px;
  padding: 172px 0 72px;
}

.legal-hero-inner h1 {
  max-width: 11ch;
  margin-bottom: 18px;
}

.legal-hero-inner p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.16rem;
}

.legal-section {
  border-top: 1px solid var(--line);
}

.legal-layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

.legal-summary {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(8, 35, 95, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 237, 0.86)),
    var(--white);
  box-shadow: 0 18px 44px rgba(3, 20, 58, 0.08);
}

.legal-summary::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 58px;
  height: 3px;
  background: var(--gold);
}

.legal-summary span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-summary strong {
  color: var(--royal);
  font-size: 1.4rem;
  line-height: 1;
}

.legal-summary p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.88rem;
  font-weight: 760;
}

.legal-summary a {
  width: fit-content;
  color: var(--royal);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.legal-content article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  max-width: none;
  margin-bottom: 12px;
  color: var(--royal);
  font-size: 1.22rem;
  line-height: 1.2;
}

.legal-content p {
  max-width: 860px;
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 1rem;
}

.legal-content a {
  color: var(--royal);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* EDIT: Value calculator page styles. */
.calculator-page .site-header {
  color: var(--white);
}

.calculator-page .site-header.is-scrolled,
.calculator-page .site-header.nav-active {
  color: var(--charcoal);
}

.calculator-hero {
  min-height: 100svh;
  padding: 112px 0 72px;
}

.calculator-layout {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.calculator-copy h1 {
  max-width: 11.5ch;
}

.calculator-copy .hero-subheadline {
  max-width: 720px;
}

.calculator-brief {
  display: grid;
  gap: 0;
  max-width: 740px;
  margin-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(216, 194, 153, 0.26);
  border-bottom: 1px solid rgba(216, 194, 153, 0.26);
}

.calculator-brief article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(216, 194, 153, 0.16);
}

.calculator-brief article:last-child {
  border-bottom: 0;
}

.calculator-brief article > span {
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.calculator-brief strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.18;
}

.calculator-brief p {
  max-width: 580px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.55;
}

.calculator-benchmark-note {
  display: grid;
  gap: 8px;
  max-width: 740px;
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
}

.calculator-benchmark-note span {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-benchmark-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.58;
}

.calculator-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(216, 194, 153, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 237, 0.92)),
    var(--white);
  color: var(--charcoal);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.calculator-card::before {
  content: "";
  position: absolute;
  left: clamp(24px, 3vw, 34px);
  top: 0;
  width: 96px;
  height: 3px;
  background: var(--gold);
}

.calculator-card-head {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(8, 35, 95, 0.12);
}

.calculator-card-head h2 {
  max-width: 13ch;
  margin-bottom: 0;
  color: var(--royal);
  font-size: clamp(2rem, 3vw, 2.62rem);
  letter-spacing: 0;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group-wide {
  grid-column: 1 / -1;
}

.field-group span {
  color: var(--charcoal-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.field-group input,
.field-group select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(8, 35, 95, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  box-shadow: 0 10px 24px rgba(3, 20, 58, 0.04);
}

.field-group input:focus,
.field-group select:focus {
  outline: 2px solid rgba(185, 151, 91, 0.34);
  border-color: var(--gold);
}

.field-helper {
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
}

.calculator-result {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 22px;
  align-items: center;
  margin-top: 10px;
  padding: clamp(20px, 2.6vw, 26px);
  border: 1px solid rgba(8, 35, 95, 0.13);
  border-top: 3px solid var(--gold-soft);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 238, 0.92)),
    var(--white);
  color: var(--charcoal);
  box-shadow: 0 18px 42px rgba(3, 20, 58, 0.08);
}

.calculator-result span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.calculator-result strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--royal);
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-align: right;
  white-space: nowrap;
}

.calculator-result em {
  max-width: 44ch;
  color: var(--charcoal-soft);
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.45;
}

.calculator-card .calculator-result.executive-estimate {
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  padding: 18px 20px;
  border: 1px solid rgba(8, 35, 95, 0.14);
  border-left: 3px solid var(--gold);
  border-top: 1px solid rgba(8, 35, 95, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(248, 246, 241, 0.96)),
    var(--white);
  box-shadow: 0 14px 34px rgba(3, 20, 58, 0.07);
}

.calculator-card .calculator-result.executive-estimate span {
  grid-column: 1;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.calculator-card .calculator-result.executive-estimate em {
  grid-column: 1;
  max-width: 40ch;
  color: var(--charcoal-soft);
  font-size: 0.88rem;
  line-height: 1.35;
}

.calculator-card .calculator-result.executive-estimate strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--royal);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 850;
  line-height: 1;
  text-align: right;
}

.assumption-panel {
  display: grid;
  grid-column: 1 / -1;
  gap: 22px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(8, 35, 95, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 243, 237, 0.78)),
    var(--white);
  color: var(--charcoal);
  box-shadow: 0 18px 48px rgba(3, 20, 58, 0.08);
}

.assumption-head {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(8, 35, 95, 0.12);
}

.assumption-head h3 {
  margin: 0;
  color: var(--royal);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.08;
}

.assumption-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.assumption-list div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(8, 35, 95, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.assumption-list dt {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.assumption-list dd {
  margin: 0;
  color: var(--royal);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 850;
  line-height: 1.3;
}

.calculator-note {
  margin-bottom: 0;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.model-references {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 14px 0 0;
  border: 1px solid rgba(8, 35, 95, 0.12);
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}

.model-references span {
  flex-basis: 100%;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.model-references a {
  padding: 8px 10px;
  border: 1px solid rgba(8, 35, 95, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--royal);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.model-references a:hover,
.model-references a:focus-visible {
  border-color: rgba(185, 151, 91, 0.52);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.calculator-card .button {
  margin-top: 4px;
}

/* EDIT: Reveal animation timing. */
.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal.is-initial-visible {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 700px) {
  :root {
    --page: min(1180px, calc(100% - 56px));
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .framework-title {
    font-size: 2.5rem;
  }

  .section {
    padding: 108px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-intel {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-intel span {
    padding: 18px;
    border: 1px solid rgba(216, 194, 153, 0.24);
  }

  .hero-intel span:first-child {
    padding-left: 18px;
  }

  .hero-intel span:last-child {
    padding-right: 18px;
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority-grid article {
    padding: 32px;
  }

  .profile-panel {
    padding: 42px;
  }

  .profile-metrics {
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid rgba(8, 35, 95, 0.14);
  }

  .profile-metrics span {
    padding: 22px;
    border-right: 1px solid rgba(8, 35, 95, 0.14);
  }

  .value-case-board {
    grid-template-columns: repeat(4, 1fr);
  }

  .achievement-intro {
    grid-template-columns: minmax(380px, 0.98fr) minmax(0, 1.02fr);
    align-items: stretch;
  }

  .achievement-story,
  .achievement-copy {
    min-height: 720px;
  }

  .achievement-portrait {
    min-height: 540px;
  }

  .achievement-portrait img {
    min-height: 540px;
    aspect-ratio: auto;
  }

  .achievement-story {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .achievement-story-card {
    min-height: 0;
  }

  .achievement-story-card img {
    min-height: 0;
    aspect-ratio: auto;
  }

  .story-field {
    grid-column: 1;
    grid-row: 2;
  }

  .story-boardroom {
    grid-column: 1;
    grid-row: 1;
  }

  .story-handover {
    grid-column: 1;
    grid-row: 3;
  }

  .achievement-copy {
    padding: 46px;
  }

  .achievement-clusters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
  }

  .achievement-clusters article {
    padding: 28px;
  }

  .miningdoc-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.78fr);
  }

  .proof-ledger {
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--line-light);
  }

  .proof-ledger article {
    display: block;
    padding: 22px;
    border-right: 1px solid var(--line-light);
  }

  .proof-ledger span {
    display: block;
    margin-bottom: 16px;
  }

  .card-grid,
  .services-grid,
  .insight-grid,
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-driver-grid {
    grid-template-columns: 1fr;
  }

  .visual-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-panel-major,
  .visual-panel-wide {
    grid-column: 1 / -1;
  }

  .mandate-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .mandate-board article {
    padding: 28px;
  }

  .sector-grid {
    gap: 14px;
  }

  .sector-grid article {
    padding: 28px;
  }

  .contact-section {
    padding: 116px 0;
  }

  .contact-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-proof span {
    padding: 0 18px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .contact-proof span:first-child {
    padding-left: 0;
  }

  .contact-proof span:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .engagement-form {
    padding: 32px;
  }

  .calculator-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px;
  }

  .calculator-card-head,
  .calculator-result,
  .assumption-panel,
  .calculator-note,
  .model-references,
  .calculator-card .button {
    grid-column: 1 / -1;
  }

  .assumption-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-strip {
    grid-template-columns: repeat(5, 1fr);
  }

  .journey-strip span {
    min-height: 92px;
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .journey-strip span:last-child {
    border-right: 0;
  }
}

@media (min-width: 980px) {
  body.nav-open {
    overflow: auto;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 150px;
    padding: 10px 0;
  }

  .site-header::before,
  .site-header.is-scrolled::before {
    height: 150px;
  }

  .brand-mark {
    width: 130px;
    height: 130px;
    padding: 6px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .hero {
    min-height: 760px;
    padding: 178px 0 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: end;
  }

  .hero-brief {
    display: block;
  }

  .hero-brief-panel {
    display: block;
  }

  .hero-subheadline {
    font-size: 1.15rem;
  }

  .authority-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .authority-grid article {
    min-height: 148px;
  }

  .card-grid,
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .value-driver-grid {
    grid-template-columns: 1fr;
  }

  .visual-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(290px, auto);
    align-items: stretch;
    gap: 18px;
  }

  .visual-panel {
    grid-column: span 3;
    min-height: 290px;
  }

  .visual-panel img {
    min-height: 290px;
  }

  .visual-panel-major {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 598px;
  }

  .visual-panel-major img {
    min-height: 598px;
  }

  .visual-panel-small {
    grid-column: span 2;
    min-height: 290px;
  }

  .visual-panel-small img {
    min-height: 290px;
  }

  .visual-panel-wide {
    grid-column: auto;
  }

  .framework-layout,
  .about-layout,
  .faq-layout,
  .mandate-layout,
  .driver-layout {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }

  .value-case-grid {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }

  .profile-layout {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
  }

  .engage-case-section .about-layout {
    grid-template-columns: minmax(430px, 0.98fr) minmax(0, 1.02fr);
    align-items: stretch;
  }

  .engage-case-section .about-portrait,
  .engage-case-section .about-portrait img {
    min-height: 660px;
  }

  .flywheel-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  }

  .flywheel-chain {
    grid-template-columns: 1fr;
    padding: 28px;
    border: 1px solid rgba(216, 194, 153, 0.2);
    border-radius: var(--radius);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
      rgba(255, 255, 255, 0.035);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
  }

  .framework-stack {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }

  .sector-grid h3 {
    white-space: nowrap;
    font-size: 1.12rem;
  }

  .journey-strip {
    grid-column: 1 / -1;
  }

  .proof-layout {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
  }

  .proof-image,
  .proof-image img {
    min-height: 470px;
  }

  .framework-title {
    font-size: 2.18rem;
  }

  .insight-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sector-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-shell {
    grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1fr);
    align-items: start;
  }

  .calculator-hero {
    padding: 146px 0 88px;
  }

  .calculator-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 0.82fr);
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.75rem;
  }

  .framework-title {
    font-size: 2.62rem;
  }

  .sector-grid h3 {
    font-size: 1.22rem;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 54px;
    height: 54px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .framework-title {
    font-size: 1.68rem;
  }

  .button {
    width: 100%;
  }

  .hero-portrait,
  .hero-portrait img {
    min-height: 320px;
  }

  .hero-brief-panel {
    padding: 18px;
  }

  .visual-panel,
  .visual-panel img {
    min-height: 300px;
  }

  .calculator-result strong {
    font-size: 1.9rem;
  }

  .engagement-form {
    padding: 18px;
  }

  .engagement-field span,
  .terms-check span {
    font-size: 0.9rem;
  }

  .engagement-field input {
    min-height: 52px;
  }

  .engagement-field textarea {
    min-height: 190px;
  }
}
