:root {
  --page-navy: #0d1d4f;
  --page-navy-soft: #14295f;
  --page-ink: #f3efe7;
  --page-muted: #b8bfd2;
  --page-panel: rgba(7, 15, 39, 0.76);
  --page-panel-soft: rgba(15, 30, 73, 0.78);
  --page-border: rgba(214, 179, 102, 0.24);
  --page-gold: #d6b366;
  --page-gold-soft: rgba(214, 179, 102, 0.16);
  --page-cyan: #4cc5d6;
  --shadow-deep: 0 28px 80px rgba(2, 6, 20, 0.42);
  --sans-stack: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif-stack: Georgia, "Times New Roman", serif;
  --proof-footer-reserve: 17.5rem;
  --hero-header-offset: 5.5rem;
  --hero-proof-offset: 18.5rem;
  --hero-viewport-trim: 10vh;
  --proof-frame-max-width: 1320px;
  --body-section-title-size: clamp(1.9rem, 2.75vw, 2.55rem);
  --body-section-title-measure: 14ch;
  --body-section-intro-measure: 44rem;
  --body-section-quiet-size: clamp(1.7rem, 2.2vw, 2.15rem);
  --body-grid-max-width: 74rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans-stack);
  color: var(--page-ink);
  background:
    radial-gradient(circle at top left, rgba(76, 197, 214, 0.08), transparent 28%),
    linear-gradient(145deg, #08112d 0%, #0d1d4f 44%, #091435 100%);
  line-height: 1.7;
  padding-bottom: var(--proof-footer-reserve);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  background:
    linear-gradient(120deg, rgba(214, 179, 102, 0.08), transparent 38%),
    radial-gradient(circle at 80% 15%, rgba(214, 179, 102, 0.08), transparent 18%);
}

.page-shell::after {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(8, 17, 45, 0.74);
  border-bottom: 1px solid rgba(214, 179, 102, 0.1);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.site-brand__mark {
  width: 2.15rem;
  height: 2.15rem;
  display: block;
  border-radius: 0.35rem;
  box-shadow: 0 8px 18px rgba(2, 6, 20, 0.22);
}

.site-brand__name,
.site-brand__meta {
  display: block;
}

.site-brand__name {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.site-brand__meta {
  color: var(--page-muted);
  font-size: 0.8rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--page-muted);
  font-size: 0.94rem;
}

.site-nav__links a,
.site-nav__cta,
.button-primary,
.button-secondary {
  text-decoration: none;
}

.site-nav__links a:hover,
.site-nav__links a:focus,
.button-secondary:hover,
.button-secondary:focus {
  color: var(--page-ink);
}

.site-nav__cta,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--page-gold), #c99737);
  color: #08112d;
  box-shadow: 0 18px 42px rgba(214, 179, 102, 0.16);
}

.site-nav__cta:hover,
.site-nav__cta:focus,
.button-primary:hover,
.button-primary:focus {
  color: #08112d;
  transform: translateY(-1px);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  border: 1px solid rgba(214, 179, 102, 0.36);
  color: var(--page-ink);
  background: rgba(255, 255, 255, 0.02);
}

.section-frame {
  position: relative;
}

.section-frame::before {
  content: "";
  position: absolute;
  inset: 2rem 1rem;
  border: 1px solid rgba(214, 179, 102, 0.12);
  border-radius: 2rem;
  pointer-events: none;
}

.content-section,
.hero-section {
  padding: 4rem 0;
}

.hero-section {
  padding-top: 3.2rem;
  padding-bottom: 3rem;
}

.hero-section.section-frame::before {
  content: none;
}

.hero-section > .container {
  position: relative;
  width: 100%;
  max-width: var(--proof-frame-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.hero-section > .container::before {
  content: "";
  position: absolute;
  inset: 0.75rem 1rem 1.25rem;
  border: 1px solid rgba(214, 179, 102, 0.12);
  border-radius: 2rem;
  pointer-events: none;
}

.hero-grid,
.statement-grid,
.context-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 0.9rem;
}

.section-kicker {
  margin-bottom: 1rem;
  color: var(--page-gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.display-title,
.section-title {
  margin: 0;
  font-family: var(--serif-stack);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-title {
  font-size: clamp(3rem, 6vw, 5.3rem);
  max-width: 14ch;
}

.hero-context {
  margin: 0 0 0.95rem;
  color: var(--page-gold);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--page-ink);
  max-width: 33rem;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  max-width: 18ch;
}

.content-section--body .section-title {
  font-size: var(--body-section-title-size);
  max-width: var(--body-section-title-measure);
  line-height: 1.08;
}

.lead-copy {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  max-width: 40rem;
  color: var(--page-ink);
}

.supporting-copy,
.context-copy,
.cta-copy,
.statement-panel p,
.section-support-panel p,
.capability-card p,
.approach-card p,
.situation-card p {
  color: var(--page-muted);
}

.supporting-copy {
  max-width: 39rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-signals,
.outcome-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-signals li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(214, 179, 102, 0.2);
  background: rgba(214, 179, 102, 0.05);
  color: var(--page-ink);
  font-size: 0.8rem;
}

.hero-portrait-panel {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.hero-portrait-frame {
  border-radius: 2rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(76, 197, 214, 0.08), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(214, 179, 102, 0.18);
  box-shadow: var(--shadow-deep);
}

.hero-portrait {
  width: 100%;
  display: block;
  border-radius: 1.5rem;
}

.hero-portrait-caption {
  padding: 1.25rem 1.35rem;
  border-radius: 1.5rem;
  background: rgba(8, 17, 45, 0.58);
  border: 1px solid rgba(214, 179, 102, 0.1);
}

.hero-portrait-caption__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--page-gold);
}

.hero-portrait-caption__title {
  margin: 0;
  color: var(--page-ink);
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.section-heading--body {
  max-width: var(--body-section-intro-measure);
  gap: 0.7rem;
  margin-bottom: 1.7rem;
}

.section-heading--compact {
  margin-bottom: 1.5rem;
}

.section-heading--left {
  justify-items: start;
  text-align: left;
}

.section-heading--quiet .section-title,
.content-section--quiet .section-title {
  font-size: var(--body-section-quiet-size);
  max-width: 16ch;
}

.situation-grid,
.approach-grid,
.capability-grid,
.experience-grid {
  display: grid;
  gap: 1.25rem;
}

.situation-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.experience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
  align-items: stretch;
}

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

.situation-card,
.approach-card,
.capability-card,
.experience-card,
.statement-panel,
.cta-panel {
  border-radius: 1.5rem;
  border: 1px solid rgba(214, 179, 102, 0.12);
  background: linear-gradient(155deg, rgba(14, 26, 66, 0.86), rgba(7, 15, 39, 0.86));
  box-shadow: var(--shadow-deep);
}

.situation-card,
.approach-card,
.capability-card,
.experience-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.5rem;
}

.situation-card p,
.approach-card p,
.capability-card p,
.experience-card p {
  margin-top: auto;
}

.engagement-layout {
  display: grid;
  min-width: 0;
  gap: 1.5rem;
}

#engagement .section-heading--compact {
  margin-bottom: 1rem;
}

#engagement .section-title {
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
  max-width: 12ch;
}

#engagement .section-support-panel {
  padding: 1.6rem 1.8rem;
}

.engagement-table-panel {
  padding: 1.5rem;
  min-width: 0;
  border-radius: 1.5rem;
  border: 1px solid rgba(214, 179, 102, 0.12);
  background: linear-gradient(155deg, rgba(14, 26, 66, 0.86), rgba(7, 15, 39, 0.86));
  box-shadow: var(--shadow-deep);
}

.engagement-table-panel h3 {
  margin-bottom: 1rem;
}

.engagement-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.engagement-table {
  width: 100%;
  min-width: 38rem;
  border-collapse: separate;
  border-spacing: 0;
}

.engagement-table th,
.engagement-table td {
  padding: 1rem 1rem 0.95rem;
  border-bottom: 1px solid rgba(214, 179, 102, 0.14);
  vertical-align: top;
}

.engagement-table thead th {
  color: var(--page-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.engagement-table tbody th {
  width: 50%;
  color: var(--page-text);
  font-weight: 600;
}

.engagement-table--fit tbody th {
  width: auto;
}

.engagement-table--models tbody th {
  width: 20%;
}

.engagement-table--models tbody td:nth-child(2) {
  width: 60%;
}

.engagement-table--models tbody td:nth-child(3) {
  width: 20%;
}

.engagement-table tbody tr:last-child th,
.engagement-table tbody tr:last-child td {
  border-bottom: 0;
}

.engagement-table--fit th:not(:first-child),
.engagement-table--fit td:not(:first-child) {
  width: 8rem;
  text-align: center;
  vertical-align: middle;
}

.engagement-table--fit th,
.engagement-table--fit td {
  padding-top: 0.82rem;
  padding-bottom: 0.78rem;
}

.fit-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
}

.fit-marker--yes {
  color: #041327;
  background: linear-gradient(135deg, #6be7cf, #d6b366);
}

.fit-marker--no {
  color: #ffe7e2;
  background: rgba(179, 72, 56, 0.8);
}

.engagement-note {
  margin: 1rem 0 0;
  color: var(--page-muted);
}

.engagement-mobile-list {
  display: none;
}

.engagement-mobile-card {
  padding: 1rem 1rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(214, 179, 102, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.engagement-mobile-list--fit,
.engagement-mobile-list--models {
  gap: 0.8rem;
}

.engagement-mobile-list--fit .engagement-mobile-row__label {
  display: none;
}

.engagement-mobile-card__title {
  margin: 0 0 0.85rem;
  color: var(--page-ink);
  font-weight: 600;
  line-height: 1.35;
}

.engagement-mobile-row {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(214, 179, 102, 0.12);
}

.engagement-mobile-row + .engagement-mobile-row {
  margin-top: 0.8rem;
}

.engagement-mobile-row__label {
  color: var(--page-cyan);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.engagement-mobile-row__value {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--page-ink);
  font-weight: 600;
  line-height: 1.35;
}

.engagement-mobile-row__value--text {
  display: block;
  font-weight: 400;
}

.statement-grid,
.context-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section-intro {
  display: grid;
  margin-bottom: 2rem;
}

.section-visual {
  max-width: var(--body-grid-max-width);
  margin: 0 auto 2rem 0;
  padding: 0;
}

.section-visual__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  border: 1px solid rgba(214, 179, 102, 0.12);
  box-shadow: var(--shadow-deep);
}

.section-intro .section-heading--body {
  margin-bottom: 0;
}

.content-section--body.content-section--left .situation-grid,
.content-section--body.content-section--left .context-grid {
  max-width: var(--body-grid-max-width);
  margin-right: auto;
}

.section-split {
  gap: 3rem;
  align-items: center;
}

.section-split--body {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.section-split--quiet {
  align-items: start;
}

.statement-panel,
.section-support-panel,
.cta-panel {
  padding: 2rem;
}

.section-footnote {
  width: 100%;
  margin: 1.25rem 0 0;
  color: var(--page-muted);
  font-size: 0.88rem;
  font-style: italic;
  text-align: center;
}

.section-support-panel {
  border-radius: 1.5rem;
  border: 1px solid rgba(214, 179, 102, 0.12);
  background: linear-gradient(155deg, rgba(14, 26, 66, 0.86), rgba(7, 15, 39, 0.86));
  box-shadow: var(--shadow-deep);
}

.section-support-panel--quiet {
  background: linear-gradient(155deg, rgba(12, 23, 59, 0.8), rgba(7, 15, 39, 0.82));
}

.section-support-panel > :first-child {
  margin-top: 0;
}

.section-support-panel > :last-child {
  margin-bottom: 0;
}

.outcome-list--compact {
  margin-top: 1.2rem;
}

.outcome-list {
  display: grid;
  gap: 0.8rem;
}

.outcome-list li {
  padding-left: 1.25rem;
  position: relative;
}

.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--page-cyan);
}

.cta-note {
  color: var(--page-muted);
  font-size: 0.92rem;
}

.company-details-link {
  color: inherit;
  text-decoration-color: rgba(214, 179, 102, 0.55);
  text-underline-offset: 0.16em;
}

.company-details-link:hover,
.company-details-link:focus {
  color: var(--page-ink);
  text-decoration-color: currentColor;
}

.experience-card {
  gap: 1rem;
  min-height: 16rem;
}

.experience-card__header {
  display: grid;
  gap: 0.5rem;
}

.experience-card__label {
  margin: 0;
  color: var(--page-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.experience-wordmarks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: auto;
  min-width: 0;
}

.experience-wordmarks--single {
  grid-template-columns: minmax(0, 1fr);
}

.experience-wordmarks--balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.experience-wordmark {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  min-height: 4.9rem;
  min-width: 0;
  padding: 0.75rem 0.8rem;
  border-radius: 1rem;
  border: 1px solid rgba(214, 179, 102, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--page-ink);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.experience-wordmark--placeholder {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.experience-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 2.25rem;
  object-fit: contain;
  object-position: left center;
  justify-self: start;
}

.experience-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
}

.experience-logo-plate--lloyds {
  width: 4.9rem;
  height: 2.25rem;
  overflow: hidden;
  border-radius: 0.15rem;
  background-color: white;
}

.experience-logo--lloyds {
  width: 6.6rem;
  max-width: none;
  height: 2.25rem;
  object-fit: contain;
  object-position: center;
  transform: translateX(-0.02rem);
}

.experience-name {
  display: block;
  min-width: 0;
  color: var(--page-ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: left;
  overflow-wrap: anywhere;
  justify-self: start;
}

.experience-logo.oceanmind {
  width: auto;
  max-width: 6.1rem;
  padding: 0.32rem 0.42rem;
  border-radius: 0.2rem;
  background-color: white;
}

.experience-wordmark--oceanmind {
  padding: 0.7rem 0.8rem;
}

.experience-logo--oceanmind {
  height: 2.7rem;
}

.experience-card .experience-wordmarks:first-of-type {
  margin-top: 0.25rem;
}
.context-copy {
  display: grid;
  gap: 1rem;
}

.section-split--quiet .context-copy {
  max-width: 36rem;
}

.section-frame--cta::before {
  inset: 2rem 1rem 1rem;
}

.hero-actions--cta {
  align-items: center;
}

.cta-panel {
  max-width: var(--body-grid-max-width);
  margin-right: auto;
}

.company-disclosure {
  max-width: var(--body-grid-max-width);
  margin: 1.1rem auto 0 0;
  padding: 1rem 1.2rem 0;
  border-top: 1px solid rgba(214, 179, 102, 0.16);
  color: rgba(184, 191, 210, 0.72);
  font-size: 0.8rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.company-disclosure p {
  margin: 0;
}

.company-disclosure p + p {
  margin-top: 0.22rem;
}

.company-disclosure__name {
  color: rgba(243, 239, 231, 0.74);
  font-weight: 500;
}

.cta-panel .section-intro {
  align-items: stretch;
}

.cta-panel__lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.section-support-panel--cta {
  align-self: start;
  max-width: 42rem;
  padding: 1.7rem 2rem;
}

.cta-panel__lead .section-title {
  max-width: 11.5ch;
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  line-height: 1.02;
}

.cta-panel__lead .hero-actions--cta {
  align-items: flex-start;
  gap: 0.85rem;
}

.cta-panel__lead .cta-note {
  display: block;
}

.outcome-list--cta {
  gap: 0.7rem;
}

.outcome-sublist {
  margin: 0.55rem 0 0 0;
  padding-left: 1.15rem;
  list-style: disc;
}

.outcome-sublist li {
  padding-left: 0;
  color: var(--page-muted);
}

.outcome-sublist li::before {
  content: none;
}

@media (min-width: 1200px) {
  .situation-grid--centered {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .situation-grid--centered > * {
    grid-column: span 2;
  }

  .situation-grid--centered > :nth-child(4) {
    grid-column: 3 / span 2;
    width: 110%;
    justify-self: center;
  }
}

@media (min-width: 992px) {
  .section-frame--cta {
    padding-bottom: calc(4rem + min(8rem, calc(var(--proof-footer-reserve) * 0.5)));
  }
}

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

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

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

@media (max-width: 991.98px) {
  :root {
    --hero-header-offset: 7.5rem;
    --hero-proof-offset: 18rem;
    --hero-viewport-trim: 0;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .site-nav__links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.9rem;
  }

  .hero-grid,
  .statement-grid,
  .context-grid,
  .capability-grid,
  .experience-grid,
  .situation-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .section-heading--body {
    max-width: none;
    margin-left: 0;
    text-align: left;
    justify-items: start;
  }

  .content-section--body.content-section--left .situation-grid,
  .content-section--body.content-section--left .context-grid {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .section-split {
    gap: 1.75rem;
  }

  .section-split--body {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 767.98px) {
  :root {
    --proof-footer-reserve: 19rem;
    --hero-header-offset: 8.5rem;
    --hero-proof-offset: 22.5rem;
    --hero-viewport-trim: 0;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .content-section,
  .hero-section {
    padding: 3.8rem 0;
  }

  .section-frame::before {
    inset: 1rem 0.65rem;
    border-radius: 1.6rem;
  }

  .hero-section > .container::before {
    inset: 0 0.65rem -1rem;
    border-radius: 1.6rem;
  }

  .site-nav__links {
    flex-wrap: wrap;
  }

  .site-nav__cta,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .display-title {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .hero-context {
    font-size: 0.92rem;
  }

  .hero-copy {
    padding-top: 1.5rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary {
    width: auto;
    min-width: min(100%, 17rem);
  }

  .hero-signals {
    padding-left: 0.3rem;
    gap: 0.75rem;
  }

  .hero-portrait-panel {
    width: min(100%, 18.75rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-portrait-frame,
  .hero-portrait-caption {
    margin-left: auto;
    margin-right: auto;
  }

  .approach-grid,
  .capability-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .engagement-table-panel {
    padding: 1.25rem;
  }

  .engagement-mobile-list {
    display: grid;
  }

  .engagement-table-wrap {
    display: none;
  }

  .engagement-note {
    margin-top: 1.1rem;
  }

  .experience-wordmark {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .experience-logo,
  .experience-logo-plate {
    justify-self: center;
  }

  .experience-logo {
    object-position: center;
  }

  .experience-name {
    text-align: center;
    justify-self: center;
  }

  .section-intro,
  .statement-grid,
  .context-grid {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .section-visual {
    margin-right: 0.3rem;
    margin-left: 0.3rem;
  }

  .statement-panel,
  .section-support-panel,
  .cta-panel {
    padding: 1.5rem;
  }

  .section-footnote {
    margin: 1rem 0.3rem 0;
  }

  .cta-panel {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }

  .company-disclosure {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .cta-panel__lead {
    gap: 1.5rem;
  }

  .cta-note {
    font-size: 0.85rem;
  }
}

@media (min-width: 992px) {
  .hero-section {
    min-height: calc(100vh - var(--hero-header-offset) - var(--hero-proof-offset) - var(--hero-viewport-trim));
    min-height: calc(100dvh - var(--hero-header-offset) - var(--hero-proof-offset) - var(--hero-viewport-trim));
    display: flex;
    align-items: center;
  }

  .hero-section > .container {
    min-height: calc(100vh - var(--hero-header-offset) - var(--hero-proof-offset) - var(--hero-viewport-trim));
    min-height: calc(100dvh - var(--hero-header-offset) - var(--hero-proof-offset) - var(--hero-viewport-trim));
    display: flex;
    align-items: center;
  }

  .hero-grid {
    width: 100%;
    transform: translateY(-1rem);
  }
}
