:root {
  --navy: #071a2e;
  --navy-2: #0d2942;
  --ink: #162538;
  --muted: #5e6c79;
  --teal: #0b868c;
  --teal-dark: #06696f;
  --gold: #c59a3d;
  --paper: #f7f4ed;
  --paper-2: #eee9de;
  --ice: #e8f2f1;
  --white: #ffffff;
  --line: rgba(7, 26, 46, 0.14);
  --shadow: 0 24px 70px rgba(7, 26, 46, 0.12);
  --max: 1180px;
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.65;
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  background: var(--teal);
  content: "";
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  width: 100%;
  z-index: 100;
}

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.3rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

::selection {
  background: var(--teal);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid rgba(11, 134, 140, 0.42);
  outline-offset: 4px;
}

.skip-link {
  background: var(--navy);
  color: var(--white);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  transition: top 160ms ease;
  z-index: 150;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.narrow {
  max-width: 810px;
}

.site-header {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 80;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  min-height: 78px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.78rem;
  justify-self: start;
}

.brand-mark {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  letter-spacing: 0.11em;
  position: relative;
  width: 44px;
}

.brand-mark::after {
  background: var(--teal);
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-top: 0.08rem;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
}

.main-nav > a,
.nav-trigger {
  background: none;
  border: 0;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  padding: 0.7rem 0;
  position: relative;
}

.main-nav > a::after,
.nav-trigger::after {
  background: var(--teal);
  bottom: 0.35rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after,
.nav-group:hover .nav-trigger::after,
.nav-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.nav-trigger {
  padding-right: 1rem;
}

.nav-trigger::before {
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  height: 5px;
  position: absolute;
  right: 0;
  top: 0.98rem;
  transform: rotate(45deg);
  width: 5px;
}

.nav-dropdown {
  background: var(--white);
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.25rem;
  left: -1rem;
  min-width: 230px;
  opacity: 0;
  padding: 0.75rem;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 0.1rem);
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.72rem 0.8rem;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: var(--ice);
}

.header-cta,
.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 48px;
  padding: 0 1.25rem;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.header-cta,
.button-primary {
  background: var(--navy);
  color: var(--white);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.button-secondary {
  border: 1px solid rgba(7, 26, 46, 0.35);
  color: var(--navy);
}

.button-secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-text {
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.button-text::after {
  content: " →";
}

.menu-toggle {
  align-items: center;
  background: var(--navy);
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  min-height: 44px;
  padding: 0 1rem;
}

.eyebrow {
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
}

.eyebrow-gold {
  color: var(--gold);
}

.lede {
  color: #405062;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.home-hero {
  background:
    linear-gradient(rgba(7, 26, 46, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 46, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 88% 10%, rgba(11, 134, 140, 0.16), transparent 28%),
    var(--paper);
  background-size: 46px 46px, 46px 46px, auto, auto;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) 0 0;
}

.home-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.76fr);
}

.home-hero h1 {
  margin-bottom: 1.7rem;
  max-width: 830px;
}

.home-hero h1 em,
.page-hero h1 em {
  color: var(--teal-dark);
  font-weight: inherit;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.availability {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.78rem;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.availability::before {
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(11, 134, 140, 0.12);
  content: "";
  flex: 0 0 8px;
  height: 8px;
}

.hero-visual {
  min-height: 530px;
  position: relative;
}

.hero-visual::before {
  border: 1px solid rgba(11, 134, 140, 0.55);
  content: "";
  height: 82%;
  position: absolute;
  right: -1.1rem;
  top: -1.1rem;
  width: 82%;
}

.hero-visual img {
  filter: saturate(0.88) contrast(1.02);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-caption {
  background: var(--navy);
  bottom: 1.5rem;
  color: var(--white);
  left: -2.2rem;
  max-width: 330px;
  padding: 1.2rem 1.35rem;
  position: absolute;
}

.hero-caption strong,
.hero-caption span {
  display: block;
}

.hero-caption strong {
  font-size: 1rem;
}

.hero-caption span {
  color: #b8c8d7;
  font-size: 0.72rem;
  margin-top: 0.2rem;
}

.metric-band {
  background: var(--navy);
  color: var(--white);
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

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

.metric {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.6rem clamp(1rem, 2vw, 1.7rem);
}

.metric:first-child {
  border-left: 0;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.metric span {
  color: #c2cdd7;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 0.55rem;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-tight {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

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

.section-dark {
  background: var(--navy);
  color: #d8e0e7;
}

.section-dark h2,
.section-dark h3,
.section-dark .section-title {
  color: var(--white);
}

.section-dark .lede,
.section-dark .muted {
  color: #b8c4ce;
}

.section-dark .case-card,
.section-dark .principle {
  background: #0c2942;
}

.section-dark .case-card p,
.section-dark .principle p {
  color: #c4d0d9;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-top {
  align-items: start;
}

.prose p,
.prose li {
  color: #405062;
}

.prose > :last-child {
  margin-bottom: 0;
}

.principle-grid,
.offer-grid,
.case-grid,
.recognition-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

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

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

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

.principle,
.offer,
.case-card,
.recognition {
  background: var(--paper);
  padding: clamp(1.4rem, 3vw, 2.25rem);
}

.section-alt .principle,
.section-alt .offer,
.section-alt .case-card,
.section-alt .recognition {
  background: var(--white);
}

.principle .number,
.offer .number,
.step-number {
  color: var(--gold);
  display: block;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.principle h3,
.offer h3,
.case-card h3 {
  margin-bottom: 0.9rem;
}

.principle p,
.offer p,
.case-card p,
.recognition p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.audience-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-panel {
  background: var(--white);
  border-top: 5px solid var(--teal);
  box-shadow: 0 18px 50px rgba(7, 26, 46, 0.08);
  padding: clamp(2rem, 4vw, 3.4rem);
}

.audience-panel.executive {
  border-top-color: var(--gold);
}

.leadership-quote {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.quote-attribution {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.section-dark .leadership-compact .audience-panel {
  background: #0c2942;
  box-shadow: none;
  color: var(--white);
}

.section-dark .leadership-compact .audience-panel p,
.section-dark .leadership-compact .audience-panel span {
  color: #c4d0d9;
}

.section-dark .leadership-compact .eyebrow-gold {
  color: var(--gold);
}

.compact-intro {
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.commitment-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem 0;
}

.commitment-list strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.commitment-list span {
  line-height: 1.65;
}

.compact-closing {
  border-left: 3px solid var(--gold);
  color: #d8e0e7;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  margin: 2.5rem 0 0;
  max-width: 850px;
  padding-left: 1.4rem;
}

.audience-panel h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.audience-panel p {
  color: var(--muted);
}

.evidence-card {
  background: var(--white);
  border-left: 5px solid var(--teal);
  box-shadow: 0 18px 50px rgba(7, 26, 46, 0.07);
  padding: clamp(1.7rem, 4vw, 3rem);
}

.evidence-card + .evidence-card {
  margin-top: 1.2rem;
}

.evidence-meta {
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 500;
  margin: 0.75rem 0 1rem;
}

.status-note {
  background: var(--ice);
  color: var(--teal-dark);
  font-size: 0.8rem;
  margin-top: 1.3rem;
  padding: 0.9rem 1rem;
}

.photo-panel {
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.photo-panel img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.photo-panel::after {
  background: linear-gradient(180deg, transparent 60%, rgba(7, 26, 46, 0.78));
  content: "";
  inset: 0;
  position: absolute;
}

.photo-label {
  bottom: 1.4rem;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  left: 1.5rem;
  letter-spacing: 0.03em;
  position: absolute;
  z-index: 2;
}

.quote-band {
  background: var(--teal-dark);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.quote-band blockquote {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.5vw, 4.5rem);
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  max-width: 1040px;
}

.quote-band cite {
  color: #cae2e0;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.name-cloud {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
}

.name-cloud span {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  white-space: nowrap;
}

.relationship-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
}

.recognition strong,
.recognition span {
  display: block;
}

.recognition span {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.recognition strong {
  color: var(--navy);
  line-height: 1.3;
}

.cta-band {
  background:
    radial-gradient(circle at 85% 5%, rgba(11, 134, 140, 0.32), transparent 28%),
    var(--navy);
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.cta-grid {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: #c2cdd7;
  margin-bottom: 0;
  max-width: 760px;
}

.page-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 88% 20%, rgba(11, 134, 140, 0.28), transparent 30%),
    var(--navy);
  background-size: 46px 46px, 46px 46px, auto, auto;
  color: var(--white);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1.6rem;
  max-width: 1000px;
}

.page-hero .lede {
  color: #c6d0da;
  max-width: 830px;
}

.page-hero .hero-actions {
  margin-top: 2.2rem;
}

.page-hero-media {
  padding-bottom: 0;
}

.page-hero-media .hero-media-wrap {
  margin-bottom: -6rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.hero-media-wrap img {
  height: clamp(360px, 52vw, 650px);
  object-fit: cover;
  width: 100%;
}

.after-media {
  padding-top: clamp(9rem, 14vw, 13rem);
}

.sticky-layout {
  align-items: start;
  display: grid;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
}

.sticky-aside {
  position: sticky;
  top: 120px;
}

.sticky-aside h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.sticky-aside p {
  color: var(--muted);
}

.case-study {
  border-top: 1px solid var(--line);
  padding: 3rem 0;
}

.case-study:first-child {
  border-top: 0;
  padding-top: 0;
}

.case-study h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.case-study h3 {
  margin-top: 2rem;
}

.case-facts {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 1.8rem 0 2.4rem;
}

.case-fact {
  background: var(--ice);
  padding: 1rem;
}

.case-fact strong,
.case-fact span {
  display: block;
}

.case-fact strong {
  color: var(--navy);
}

.case-fact span {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 0.2rem;
}

.check-list,
.arrow-list {
  list-style: none;
  padding-left: 0;
}

.check-list li,
.arrow-list li {
  border-bottom: 1px solid var(--line);
  color: #405062;
  padding: 0.8rem 0 0.8rem 1.7rem;
  position: relative;
}

.check-list li::before {
  color: var(--teal-dark);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.arrow-list li::before {
  color: var(--gold);
  content: "→";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.role-list {
  columns: 2;
  column-gap: 2.5rem;
  list-style: none;
  padding: 0;
}

.role-list li {
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
  padding: 0.72rem 0;
}

.lifecycle {
  counter-reset: lifecycle;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(6, 1fr);
}

.lifecycle-step {
  background: var(--white);
  min-height: 230px;
  padding: 1.3rem;
}

.lifecycle-step::before {
  color: var(--gold);
  content: "0" counter(lifecycle);
  counter-increment: lifecycle;
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.lifecycle-step h3 {
  font-size: 1rem;
}

.lifecycle-step p {
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 0;
}

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

.career-arc .lifecycle-step {
  min-height: 330px;
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.career-arc .lifecycle-step h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.career-arc .lifecycle-step p {
  font-size: 0.92rem;
  line-height: 1.68;
}

.framework-stack {
  display: grid;
  gap: 1rem;
}

.framework {
  background: var(--white);
  border-left: 5px solid var(--teal);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  padding: clamp(1.7rem, 4vw, 3rem);
}

.framework:nth-child(even) {
  border-left-color: var(--gold);
}

.framework h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 0.7rem;
}

.framework-tag {
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.three-c {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.3rem;
}

.three-c div {
  background: var(--ice);
  min-height: 130px;
  padding: 1rem;
}

.three-c strong {
  color: var(--navy);
  display: block;
  margin-bottom: 0.35rem;
}

.three-c span {
  color: var(--muted);
  font-size: 0.78rem;
}

.personal-intro {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
}

.personal-photo {
  position: relative;
}

.personal-photo::before {
  background: var(--gold);
  bottom: -1.1rem;
  content: "";
  height: 55%;
  position: absolute;
  right: -1.1rem;
  width: 48%;
}

.personal-photo img {
  position: relative;
  width: 100%;
  z-index: 1;
}

.belief-block {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  padding: 2.6rem 0;
}

.belief-block h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
}

.belief-block p,
.belief-block li {
  color: #405062;
}

.topic-list {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
}

.topic {
  background: var(--white);
  min-height: 230px;
  padding: clamp(1.7rem, 4vw, 2.8rem);
}

.topic h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 500;
}

.topic p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
}

.contact-card {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.contact-card h2,
.contact-card h3 {
  color: var(--white);
}

.contact-card a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.contact-card small {
  color: #afbdc9;
  display: block;
  margin-top: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field label,
.field legend {
  color: var(--navy);
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1px solid rgba(7, 26, 46, 0.25);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  width: 100%;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.78rem;
}

.download-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.download {
  background: var(--white);
  border-top: 4px solid var(--teal);
  padding: 1.6rem;
}

.download:nth-child(2) {
  border-top-color: var(--gold);
}

.download:nth-child(3) {
  border-top-color: var(--navy);
}

.download h3 {
  margin-bottom: 0.8rem;
}

.download p {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  background: #04111f;
  color: #b9c5cf;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(240px, 1.1fr) repeat(2, minmax(150px, 0.55fr));
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  font-size: 2.3rem;
  margin-bottom: 0.7rem;
}

.site-footer h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  font-size: 0.72rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.4rem;
}

.not-found {
  align-items: center;
  display: flex;
  min-height: 70vh;
}

.not-found h1 {
  margin-bottom: 1.5rem;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    left: 0;
    padding: 1rem 1.5rem 1.5rem;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a,
  .nav-trigger {
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 0;
    text-align: left;
    width: 100%;
  }

  .nav-dropdown {
    background: transparent;
    border-top: 0;
    box-shadow: none;
    display: none;
    left: 0;
    opacity: 1;
    padding: 0.3rem 0 0.3rem 1rem;
    pointer-events: auto;
    position: relative;
    top: 0;
    transform: none;
  }

  .nav-dropdown.is-open {
    display: grid;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

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

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

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

@media (max-width: 820px) {
  h1 {
    font-size: clamp(3rem, 13vw, 5.2rem);
  }

  .home-hero-grid,
  .section-heading,
  .split,
  .sticky-layout,
  .framework,
  .personal-intro,
  .belief-block,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    gap: 4rem;
  }

  .hero-visual {
    min-height: 580px;
  }

  .hero-caption {
    left: 1rem;
  }

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

  .metric:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .metric:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .offer-grid,
  .case-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .topic-list {
    grid-template-columns: 1fr;
  }

  .sticky-aside {
    position: static;
  }

  .case-facts {
    grid-template-columns: 1fr;
  }

  .role-list {
    columns: 1;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand-text small {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .home-hero {
    padding-top: 3.6rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-actions,
  .hero-actions .button {
    align-items: stretch;
    width: 100%;
  }

  .metric-grid,
  .principle-grid,
  .recognition-grid,
  .lifecycle,
  .three-c,
  .form-row {
    grid-template-columns: 1fr;
  }

  .career-arc {
    grid-template-columns: 1fr;
  }

  .metric {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .metric:first-child {
    border-top: 0;
  }

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 0.5rem;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .cta-band {
    display: none !important;
  }

  body {
    background: white;
  }

  .section,
  .page-hero {
    padding: 2rem 0;
  }
}
