:root {
  --graphite-950: #0d0d0f;
  --graphite-900: #151518;
  --graphite-850: #1a1a1e;
  --graphite-800: #232327;
  --graphite-700: #333338;
  --silver-100: #f1ede6;
  --silver-200: #e2ddd4;
  --silver-300: #c6c0b7;
  --champagne: #d7b46a;
  --gold: #b98a36;
  --copper: #9f6334;
  --paper: #f6f2ec;
  --paper-muted: #e9e3da;
  --white: #ffffff;
  --text-dark: #171719;
  --text-muted: #5f5b55;
  --border-light: rgba(23, 23, 25, 0.14);
  --border-gold: rgba(215, 180, 106, 0.38);
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
  --max-width: 1200px;
  --header-height: 78px;
  --section-separator-offset: clamp(2.5rem, 5vw, 3.75rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: calc(var(--header-height) + 1.5rem);
  color: var(--text-dark);
  background: var(--graphite-950);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--gold);
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.72rem 1rem;
  color: var(--graphite-950);
  background: var(--champagne);
  border-radius: 4px;
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: clamp(0.45rem, 1vw, 0.75rem);
  right: 0;
  left: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: var(--header-height);
  align-items: center;
  gap: 2rem;
  margin-inline: clamp(0.5rem, 1.5vw, 1.25rem);
  padding: 0.7rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  background: rgba(13, 13, 15, 0.82);
  border: 1px solid rgba(215, 180, 106, 0.28);
  border-radius: 6px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  transition:
    min-height 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(13, 13, 15, 0.94);
  border-color: rgba(215, 180, 106, 0.5);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

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

.brand-logo {
  width: 132px;
  height: 48px;
  object-fit: contain;
  transition: width 180ms ease, height 180ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: 116px;
  height: 42px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  color: var(--silver-200);
  font-size: 0.91rem;
}

.primary-nav a {
  position: relative;
  padding-block: 0.4rem;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="true"] {
  color: var(--champagne);
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.18rem;
  left: 0;
  height: 2px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

section[id] {
  scroll-margin-top: 108px;
}

.mobile-nav-cta {
  display: none;
}

.header-cta,
.button,
.offer-quote-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.76rem 1.15rem;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.header-cta,
.button-primary,
.offer-quote-link {
  color: var(--graphite-950);
  background: var(--champagne);
  border: 1px solid var(--champagne);
  box-shadow: 0 12px 30px rgba(185, 138, 54, 0.22);
}

.header-cta:hover,
.button-primary:hover,
.offer-quote-link:hover {
  color: var(--graphite-950);
  background: #e3c47e;
  border-color: #e3c47e;
}

.button-secondary {
  color: var(--silver-100);
  background: rgba(13, 13, 15, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button-secondary:hover {
  color: var(--white);
  border-color: var(--champagne);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: inherit;
  font-family: Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1,
h2,
h3,
h4,
p,
li,
blockquote,
dt,
dd {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin-bottom: 1.4rem;
  font-size: 4rem;
  font-weight: 800;
}

h2 {
  max-width: 850px;
  margin-bottom: 1.2rem;
  font-size: 2.65rem;
  font-weight: 750;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.22rem;
  font-weight: 750;
  line-height: 1.25;
}

h4 {
  margin: 0 0 0.75rem;
  font-size: 1.16rem;
  font-weight: 750;
  line-height: 1.3;
}

p {
  margin-top: 0;
}

.eyebrow,
.case-label,
.offer-kicker,
.offer-label {
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark .case-label,
.section-dark .offer-kicker,
.section-dark .offer-label {
  color: var(--champagne);
}

.section {
  position: relative;
  padding: 6.5rem clamp(1rem, 5vw, 4.5rem);
}

.section > * {
  width: min(100%, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.section-light {
  color: var(--text-dark);
  background: var(--paper);
}

.section-muted {
  color: var(--text-dark);
  background: var(--paper-muted);
}

.section-dark {
  color: var(--silver-100);
  background: var(--graphite-950);
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading > p:not(.eyebrow),
.compact-heading > p:not(.eyebrow) {
  max-width: 760px;
  color: inherit;
  opacity: 0.76;
  font-size: 1.08rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.split-heading > p,
.split-heading > div > p:not(.eyebrow) {
  margin-bottom: 0.25rem;
  color: inherit;
  opacity: 0.75;
  font-size: 1.08rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: flex;
  align-items: center;
  padding: 6.5rem clamp(1rem, 5vw, 4.5rem) 5rem;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 12, 0.98) 0%, rgba(10, 10, 12, 0.91) 48%, rgba(10, 10, 12, 0.48) 72%, rgba(10, 10, 12, 0.28) 100%),
    linear-gradient(0deg, rgba(10, 10, 12, 0.7), transparent 44%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(215, 180, 106, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 180, 106, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 45%, #000 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 3;
  min-width: 0;
  width: min(100%, var(--max-width));
  max-width: 100%;
  margin: 0 auto;
}

.hero-content > * {
  width: 100%;
  max-width: 750px;
}

.hero-copy {
  margin-bottom: 1.4rem;
  color: var(--silver-200);
  font-size: 1.14rem;
}

.hero-advisor {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--champagne);
  color: var(--silver-300);
  font-size: 0.92rem;
}

.hero-advisor strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 840px;
  padding: 0;
  margin: 3.2rem 0 0;
}

.hero-proof div {
  padding-top: 1rem;
  border-top: 1px solid var(--border-gold);
}

.hero-proof dt {
  color: var(--champagne);
  font-weight: 850;
}

.hero-proof dd {
  margin: 0.25rem 0 0;
  color: var(--silver-300);
  font-size: 0.88rem;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 34%;
}

.hero-image figcaption {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 1.25rem;
  z-index: 4;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.challenge-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.challenge-list article {
  padding-top: 1.25rem;
  border-top: 2px solid var(--graphite-950);
}

.challenge-list span,
.scope-grid span {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.challenge-list p,
.scope-grid p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.offer-section {
  background: linear-gradient(180deg, var(--graphite-950), var(--graphite-900));
}

.offer-paths {
  padding-top: 0.5rem;
}

.offer-section-subtitle {
  margin: -1.35rem 0 1.5rem;
  color: var(--champagne);
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 750;
}

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

.offer-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 2rem;
  color: var(--silver-200);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.offer-card.featured-offer {
  background: var(--graphite-800);
  border-color: var(--champagne);
  box-shadow: var(--shadow);
}

.offer-card.featured-offer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--champagne);
  content: "";
}

.offer-card h3 {
  min-height: 3.1rem;
  color: var(--white);
  font-size: 1.48rem;
}

.offer-duration {
  color: var(--champagne);
  font-weight: 750;
}

.offer-fit {
  min-height: 8rem;
}

.offer-label {
  margin-top: 0.6rem;
}

.offer-card ul {
  padding-left: 1.15rem;
  margin: 0 0 2rem;
}

.offer-card li + li {
  margin-top: 0.5rem;
}

.offer-quote-link {
  width: 100%;
  margin-top: auto;
}

.implementation-scope {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-gold);
}

.compact-heading {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

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

.scope-grid article {
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-gold);
}

.scope-grid h3 {
  color: var(--white);
}

.scope-grid p {
  color: var(--silver-300);
}

.workshops-section {
  background: #f8f5f0;
}

.workshop-note {
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: var(--text-dark);
  font-weight: 650;
}

.workshop-group {
  padding: 3rem 0 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border-light);
}

.workshop-group-heading {
  display: block;
  margin-bottom: 1.75rem;
}

.workshop-group-heading p {
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.workshop-group-heading h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.55rem;
}

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

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

.program-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 230px;
  flex-direction: column;
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}

.program-card h4 {
  color: var(--graphite-950);
}

.program-grid-single .program-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1fr) auto;
  gap: 1.75rem;
  align-items: center;
}

.program-card.featured {
  background: #fffaf0;
  border-color: rgba(185, 138, 54, 0.45);
}

.program-card p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.program-card > p {
  flex-grow: 1;
}

.program-details {
  padding-left: 1.15rem;
  margin: 0;
  color: var(--text-muted);
}

.program-details li + li {
  margin-top: 0.45rem;
}

.program-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.68rem 0.95rem;
  color: var(--graphite-950);
  background: var(--champagne);
  border: 1px solid var(--champagne);
  border-radius: 4px;
  font-weight: 800;
  text-align: center;
}

.program-cta:hover {
  color: var(--graphite-950);
  background: #e3c47e;
  border-color: #e3c47e;
}

.method-section {
  background: var(--graphite-850);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-gold);
  counter-increment: process;
}

.process-list li::before {
  display: block;
  margin-bottom: 2rem;
  color: var(--champagne);
  font-weight: 850;
  content: "0" counter(process);
}

.process-list p {
  margin-bottom: 0;
  color: var(--silver-300);
}

.featured-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.case-card {
  min-width: 0;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}

.case-card strong {
  display: block;
  padding-top: 1rem;
  margin-top: 1.2rem;
  color: var(--text-dark);
  border-top: 1px solid var(--border-light);
}

.training-results {
  position: relative;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: var(--section-separator-offset);
}

.training-results::before,
.client-logo-strip::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(23, 23, 25, 0.2);
  content: "";
}

.training-results::after,
.client-logo-strip::after {
  position: absolute;
  left: 0;
  width: clamp(3.75rem, 8vw, 6rem);
  height: 2px;
  background: var(--gold);
  content: "";
}

.training-results::before,
.training-results::after {
  top: 0;
}

.subsection-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.subsection-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.training-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.training-result-card {
  min-width: 0;
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.55);
  border-top: 2px solid var(--graphite-950);
}

.training-result-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.training-result-card p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
}

.client-logo-strip {
  position: relative;
  margin: calc(var(--section-separator-offset) + clamp(2.5rem, 5vw, 4rem)) 0 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text-dark);
  background: var(--paper);
  border: 1px solid rgba(13, 13, 15, 0.12);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(13, 13, 15, 0.08);
}

.client-logo-strip::before,
.client-logo-strip::after {
  top: calc(var(--section-separator-offset) * -1);
}

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

.client-logo-strip h3 {
  color: var(--graphite-950);
}

.client-logo-viewport {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--graphite-700) rgba(13, 13, 15, 0.12);
  scrollbar-width: thin;
}

.client-logo-viewport:focus-visible {
  outline: 2px solid var(--graphite-700);
  outline-offset: 4px;
}

.client-logo-track {
  min-width: 1080px;
}

.client-logo-track img {
  display: block;
  width: 100%;
  height: auto;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.proof-block {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-light);
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.client-list li {
  padding: 0.48rem 0.72rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 0.88rem;
}

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

.reference-group + .reference-group {
  margin-top: 3rem;
}

.reference-group .subsection-heading {
  margin-bottom: 1rem;
}

.corporate-reference-grid,
.linkedin-highlight-grid {
  align-items: stretch;
}

.linkedin-highlight-card {
  background: rgba(255, 255, 255, 0.82);
}

.testimonial-card {
  min-width: 0;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.64);
  border-left: 3px solid var(--gold);
}

.testimonial-card blockquote {
  margin: 0.7rem 0 1rem;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-source {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.source-proof {
  margin-top: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.source-proof summary {
  color: var(--text-dark);
  font-weight: 800;
  cursor: pointer;
}

.source-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.source-proof-grid img {
  width: 100%;
  height: 240px;
  padding: 0.75rem;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--border-light);
}

.linkedin-proof-grid {
  align-items: stretch;
}

.corporate-proof-grid {
  grid-template-columns: minmax(0, 1fr);
}

.corporate-proof-grid img {
  height: auto;
  max-height: 240px;
}

.conditions-list {
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.conditions-list li + li {
  margin-top: 0.7rem;
}

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

.faq-grid article {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-light);
}

.faq-grid article:last-child {
  border-bottom: 1px solid var(--border-light);
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.bio-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.bio-main > * {
  width: auto;
  margin: 0;
}

.bio-image {
  position: relative;
  max-width: 470px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 4px solid var(--champagne);
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio-content {
  max-width: 760px;
}

.bio-content .lead {
  color: var(--white);
  font-size: 1.15rem;
}

.bio-content p:not(.eyebrow):not(.lead) {
  color: var(--silver-300);
}

.bio-experience {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding-top: 3.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-gold);
}

.bio-experience h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.55rem;
}

.bio-experience p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--silver-300);
}

.bio-experience .client-list {
  align-content: flex-start;
  margin-top: 0;
}

.bio-experience .client-list li {
  color: var(--silver-100);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-gold);
}

:where(
  .challenge-list > article,
  .offer-card,
  .scope-grid > article,
  .program-card,
  .process-list > li,
  .case-card,
  .training-result-card,
  .testimonial-card,
  .faq-grid > article
) {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

:where(
  .challenge-list > article,
  .offer-card,
  .scope-grid > article,
  .program-card,
  .process-list > li,
  .case-card,
  .training-result-card,
  .testimonial-card,
  .faq-grid > article
)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--champagne);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

@media (hover: hover) {
  :where(
    .challenge-list > article,
    .offer-card,
    .scope-grid > article,
    .program-card,
    .process-list > li,
    .case-card,
    .training-result-card,
    .testimonial-card,
    .faq-grid > article
  ):hover,
  :where(
    .challenge-list > article,
    .offer-card,
    .scope-grid > article,
    .program-card,
    .process-list > li,
    .case-card,
    .training-result-card,
    .testimonial-card,
    .faq-grid > article
  ):focus-within {
    transform: translateY(-3px);
    border-color: rgba(207, 172, 89, 0.72);
    box-shadow: 0 16px 34px rgba(13, 13, 15, 0.12);
  }

  :where(
    .challenge-list > article,
    .offer-card,
    .scope-grid > article,
    .program-card,
    .process-list > li,
    .case-card,
    .training-result-card,
    .testimonial-card,
    .faq-grid > article
  ):hover::after,
  :where(
    .challenge-list > article,
    .offer-card,
    .scope-grid > article,
    .program-card,
    .process-list > li,
    .case-card,
    .training-result-card,
    .testimonial-card,
    .faq-grid > article
  ):focus-within::after {
    transform: scaleX(1);
  }
}

.final-cta {
  max-width: none;
  text-align: center;
  background: var(--paper);
}

.final-cta h2,
.final-cta p {
  margin-right: auto;
  margin-left: auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .button-secondary {
  color: var(--graphite-950);
  background: transparent;
  border-color: var(--border-light);
}

address {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-style: normal;
}

address a {
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: var(--silver-300);
  background: var(--graphite-950);
  border-top: 1px solid var(--border-gold);
}

.footer-logo {
  width: 120px;
  height: 48px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.footer-brand,
.footer-contact {
  display: grid;
  gap: 0.45rem;
}

.footer-contact {
  font-style: normal;
  text-align: right;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .site-header {
    gap: 1.2rem;
  }

  .primary-nav {
    gap: 0.85rem;
    font-size: 0.85rem;
  }

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

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

  .program-grid-single {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
    max-height: calc(100dvh - 1rem);
    margin-inline: 0.5rem;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .primary-nav[data-open="true"] {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100dvh - 6.5rem);
    padding-top: 0.6rem;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .primary-nav[data-open="true"] a {
    padding: 0.85rem 0;
    border-top: 1px solid var(--border-gold);
  }

  .primary-nav[data-open="true"] .mobile-nav-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--graphite-950);
    background: var(--champagne);
    border-radius: 4px;
    font-weight: 800;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(10, 10, 12, 0.98) 0%, rgba(10, 10, 12, 0.9) 62%, rgba(10, 10, 12, 0.56) 100%);
  }

  .hero-content > * {
    max-width: 680px;
  }

  .split-heading,
  .experience-layout,
  .bio-main,
  .bio-experience {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .featured-case-grid,
  .training-results-grid,
  .scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-fit {
    min-height: 0;
  }

  .program-grid-single .program-card {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  }

  .program-grid-single .program-cta {
    grid-column: 1 / -1;
  }

  .bio-image {
    width: min(100%, 520px);
  }

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

  .site-footer nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4.5rem 1rem;
  }

  .hero {
    min-height: auto;
    padding: 5rem 1rem 3.5rem;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.91) 0%, rgba(10, 10, 12, 0.94) 60%, rgba(10, 10, 12, 0.99) 100%);
  }

  .hero::after {
    display: none;
  }

  .hero-image img {
    object-position: 67% top;
    opacity: 0.52;
  }

  .hero-image figcaption {
    display: none;
  }

  .hero-advisor {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .hero-proof,
  .challenge-list,
  .offer-grid,
  .scope-grid,
  .program-grid,
  .process-list,
  .featured-case-grid,
  .training-results-grid,
  .testimonial-grid,
  .source-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 0.75rem;
  }

  .hero-actions,
  address {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
    white-space: normal;
  }

  .offer-card {
    padding: 1.45rem;
  }

  .implementation-scope,
  .proof-block {
    margin-top: 4rem;
    padding-top: 3rem;
  }

  .workshop-group {
    padding-top: 2rem;
  }

  .program-grid-single .program-card {
    display: block;
  }

  .program-cta {
    width: 100%;
  }

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

  .source-proof-grid img {
    height: auto;
    max-height: 320px;
  }

  .client-logo-strip {
    margin-right: -1rem;
    margin-left: -1rem;
    border-radius: 0;
  }

  .client-logo-track {
    min-width: 980px;
  }

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

  .site-footer nav {
    grid-column: auto;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .brand-logo {
    width: 112px;
  }

  .hero-copy,
  .section-heading > p:not(.eyebrow),
  .split-heading > p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
