:root {
  color-scheme: light dark;
  --ink: #101820;
  --muted: #516070;
  --line: #d7dee5;
  --paper: #f6f8f9;
  --white: #ffffff;
  --graphite: #17202a;
  --panel: #ffffff;
  --panel-muted: #eef3f4;
  --header-text: #ffffff;
  --header-wash: rgba(16, 24, 32, 0.82);
  --nav-muted: rgba(255, 255, 255, 0.78);
  --hero-base: #101820;
  --hero-copy: rgba(255, 255, 255, 0.82);
  --hero-overlay-a: rgba(9, 14, 18, 0.91);
  --hero-overlay-b: rgba(9, 14, 18, 0.78);
  --hero-overlay-c: rgba(9, 14, 18, 0.36);
  --hero-overlay-d: rgba(9, 14, 18, 0.18);
  --hero-overlay-e: rgba(9, 14, 18, 0.38);
  --hero-overlay-f: rgba(9, 14, 18, 0.06);
  --hero-overlay-g: rgba(9, 14, 18, 0.62);
  --amber: #c6862b;
  --amber-dark: #8e5d1f;
  --flourescent-green: #AAFF00;
  --flourescent-green-dark: #55FF00;
  --flourescent-blue: #00AAFF;
  --flourescent-blue-dark: #0077DD;
  --teal: #1f7a76;
  --accent: var(--flourescent-blue);
  --accent-strong: var(--flourescent-blue-dark);
  --accent-alt: var(--flourescent-pink);
  --button-text: #ffffff;
  --contact-bg: #101820;
  --contact-copy: rgba(255, 255, 255, 0.72);
  --proof-bg: var(--panel-muted);
  --proof-copy: var(--muted);
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.14);
  --glow: none;
}

:root[data-theme="light"] {
  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f7f3ff;
  --muted: #b9b3ce;
  --line: rgba(255, 255, 255, 0.16);
  --paper: #070817;
  --white: #ffffff;
  --graphite: #0d1025;
  --panel: #10132c;
  --panel-muted: #0b0d20;
  --header-text: #f9f2ff;
  --header-wash: rgba(7, 8, 23, 0.9);
  --nav-muted: rgba(249, 242, 255, 0.72);
  --hero-base: #070817;
  --hero-copy: rgba(249, 242, 255, 0.84);
  --hero-overlay-a: rgba(7, 8, 23, 0.94);
  --hero-overlay-b: rgba(25, 14, 45, 0.82);
  --hero-overlay-c: rgba(13, 16, 37, 0.46);
  --hero-overlay-d: rgba(7, 8, 23, 0.24);
  --hero-overlay-e: rgba(7, 8, 23, 0.58);
  --hero-overlay-f: rgba(255, 46, 136, 0.1);
  --hero-overlay-g: rgba(7, 8, 23, 0.86);
  --flourescent-green: #AAFF00;
  --flourescent-green-dark: #55DD00;
  --flourescent-blue: #00AAFF;
  --flourescent-blue-dark: #0077DD;
  --flourescent-pink: #FF00AA;
  --flourescent-pink-dark: #DD0077;
  --flourescent-yellow: #FFAA00;
  --flourescent-yellow-dark: #DD7700;
  --amber: #ffb86b;
  --amber-dark: #ff7a59;
  --teal: #2de2e6;
  --accent: var(--flourescent-pink);
  --accent-strong: var(--flourescent-pink-dark);
  --accent-alt: var(--flourescent-green);
  --button-text: #070817;
  --contact-bg: #050611;
  --contact-copy: rgba(249, 242, 255, 0.72);
  --proof-bg: #0d1025;
  --proof-copy: rgba(249, 242, 255, 0.68);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --glow: 0 0 28px rgba(255, 46, 136, 0.28), 0 0 42px rgba(45, 226, 230, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  transition: background 180ms ease, color 180ms ease;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--header-text);
  background: linear-gradient(180deg, var(--header-wash), rgba(16, 24, 32, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: var(--glow);
}

nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 600;
}

nav a {
  text-decoration: none;
  color: var(--nav-muted);
}

nav a:hover,
nav a:focus-visible {
  color: var(--header-text);
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--header-text);
  cursor: pointer;
  box-shadow: var(--glow);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
}

.sun-icon,
.moon-icon {
  position: absolute;
  transition: opacity 160ms ease, transform 160ms ease;
}

.sun-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 -10px 0 -7px currentColor,
    0 10px 0 -7px currentColor,
    10px 0 0 -7px currentColor,
    -10px 0 0 -7px currentColor,
    7px 7px 0 -7px currentColor,
    -7px -7px 0 -7px currentColor,
    7px -7px 0 -7px currentColor,
    -7px 7px 0 -7px currentColor;
}

.moon-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: -5px 0 0 0 currentColor;
  transform: translateX(4px);
}

:root[data-theme="light"] .moon-icon,
:root[data-theme="dark"] .sun-icon {
  opacity: 0;
  transform: scale(0.72);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--hero-base);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease;
}

:root[data-theme="dark"] .hero-image {
  filter: saturate(1.18) contrast(1.08) hue-rotate(285deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--hero-overlay-a) 0%, var(--hero-overlay-b) 34%, var(--hero-overlay-c) 72%, var(--hero-overlay-d) 100%),
    linear-gradient(180deg, var(--hero-overlay-e) 0%, var(--hero-overlay-f) 45%, var(--hero-overlay-g) 100%);
}

:root[data-theme="dark"] .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  pointer-events: none;
  background:
    linear-gradient(rgba(45, 226, 230, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0%, rgba(255, 46, 136, 0.12) 52%, transparent 100%);
  background-size: 100% 24px, 100% 100%;
  transform: perspective(360px) rotateX(62deg);
  transform-origin: bottom;
  z-index: 0;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 104px);
  padding-top: 64px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8.2vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--hero-copy);
  font-size: clamp(1.16rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--button-text);
  background: var(--accent);
  box-shadow: var(--glow);
}

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

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

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.services {
  background: var(--panel);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 320px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--panel);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--accent-alt);
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.service-card p {
  color: var(--muted);
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.service-hero {
  min-height: 78svh;
}

.service-hero-content h1 {
  max-width: 12ch;
  font-size: clamp(3.5rem, 7vw, 7.4rem);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 8vw, 100px);
  align-items: start;
  background: var(--panel);
}

.detail-copy {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.detail-copy p {
  margin-bottom: 0;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding-top: 1px;
  padding-bottom: 1px;
}

.service-points article {
  min-height: 260px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--panel-muted);
}

.service-points h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.service-points p {
  color: var(--muted);
}

.services-hero .service-hero-content h1 {
  max-width: 11ch;
}

.services-intro,
.services-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 8vw, 100px);
  align-items: start;
  background: var(--panel);
}

.service-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
  background: var(--line);
}

.service-index a {
  display: grid;
  gap: 32px;
  min-height: 190px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--panel-muted);
  text-decoration: none;
}

.service-index span {
  color: var(--accent-alt);
  font-weight: 800;
}

.service-index strong {
  max-width: 14ch;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  background: var(--panel-muted);
}

.service-feature-alt {
  background: var(--panel);
}

.service-feature-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--hero-base);
  box-shadow: var(--shadow);
}

.service-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root[data-theme="dark"] .service-feature-media img {
  filter: saturate(1.16) contrast(1.08) hue-rotate(285deg);
}

.service-feature-copy {
  max-width: 780px;
}

.service-feature-copy h2 {
  margin-bottom: 26px;
}

.service-feature-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 800;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 2px;
  background: var(--accent);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.fit-grid p {
  min-height: 150px;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  background: var(--panel-muted);
  color: var(--ink);
  font-weight: 800;
}

.service-program {
  background: var(--panel);
}

.service-section-heading {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-section-heading h2 {
  margin-bottom: 20px;
}

.service-section-heading p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.service-section-heading-compact {
  margin-top: clamp(56px, 8vw, 92px);
}

.service-section-heading-compact h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.program-grid,
.topic-grid,
.advisory-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

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

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

.program-grid article,
.topic-grid article,
.advisory-grid article {
  min-height: 230px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--panel-muted);
}

.program-grid article {
  background: var(--panel);
}

.program-grid .service-icon {
  margin-bottom: 46px;
}

.program-grid h3,
.topic-grid h3,
.advisory-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

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

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: clamp(42px, 6vw, 70px) auto 0;
  text-align: center;
}

.section-cta p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  font-weight: 800;
}

.consulting-section {
  background: var(--contact-bg);
  color: var(--white);
}

.consulting-section .service-section-heading p:not(.eyebrow),
.section-cta-dark p {
  color: var(--contact-copy);
}

.consulting-list {
  display: grid;
  gap: clamp(20px, 4vw, 34px);
  max-width: 980px;
  margin: 0 auto;
}

.consulting-list article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}

.consulting-list article:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 110px;
}

.consulting-list article:nth-child(even) span {
  order: 2;
}

.consulting-list span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--accent);
  font-weight: 800;
  box-shadow: var(--glow);
}

.consulting-list div {
  padding: clamp(24px, 4vw, 38px);
  background: var(--panel);
  color: var(--ink);
}

.consulting-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.consulting-list p {
  margin: 0;
  color: var(--muted);
}

.advisory-section {
  background: var(--panel-muted);
}

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

.training-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(38px, 8vw, 108px);
  align-items: start;
  background: var(--panel);
}

.training-lede h2 {
  margin-bottom: 28px;
}

.training-lede p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

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

.training-facts {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.training-facts div {
  padding: clamp(22px, 3vw, 32px);
  background: var(--panel-muted);
}

.training-facts dt {
  margin-bottom: 10px;
  color: var(--accent-alt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.training-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 700;
  line-height: 1.35;
}

.course-formats {
  background: var(--panel-muted);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.format-grid article {
  padding: clamp(28px, 4vw, 46px);
  background: var(--panel);
}

.format-grid .service-icon {
  margin-bottom: 48px;
}

.format-grid h3 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.format-grid p,
.format-grid li {
  color: var(--muted);
}

.format-grid ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.format-grid li {
  position: relative;
  padding-left: 20px;
}

.format-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

.curriculum {
  background: var(--panel);
}

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

.curriculum-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  padding: clamp(28px, 5vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}

.curriculum-list span {
  color: var(--accent-alt);
  font-weight: 800;
}

.curriculum-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  line-height: 1.05;
}

.curriculum-list p {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.training-outcomes {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 8vw, 100px);
  align-items: start;
  background: var(--panel-muted);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.outcome-grid p {
  min-height: 128px;
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  background: var(--panel);
  color: var(--ink);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  font-weight: 800;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 8vw, 100px);
  align-items: start;
  background: var(--panel-muted);
}

.approach-copy {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.approach-copy p {
  margin-bottom: 0;
}

.about-page {
  background: var(--paper);
}

.about-page .site-header {
  background: linear-gradient(180deg, var(--header-wash), rgba(16, 24, 32, 0));
}

.about-container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: 78svh;
  padding: clamp(110px, 12vw, 160px) clamp(20px, 5vw, 64px) clamp(70px, 8vw, 112px);
  background: var(--contact-bg);
  color: var(--white);
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero h1 {
  max-width: 11ch;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 7.4vw, 7.6rem);
  line-height: 0.9;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--contact-copy);
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
}

.about-hero-media {
  position: relative;
  min-height: min(56vw, 620px);
  overflow: hidden;
  background: var(--hero-base);
  box-shadow: var(--shadow);
}

.about-hero-media::after,
.about-work-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 14, 18, 0.04), rgba(9, 14, 18, 0.28)),
    linear-gradient(90deg, rgba(9, 14, 18, 0.24), transparent 42%);
}

.about-hero-media img,
.about-work-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root[data-theme="dark"] .about-hero-media img,
:root[data-theme="dark"] .about-work-media img {
  filter: saturate(1.16) contrast(1.08) hue-rotate(285deg);
}

.about-intro,
.about-principles,
.about-fit {
  padding: clamp(76px, 9vw, 120px) clamp(20px, 5vw, 64px);
}

.about-intro {
  background: var(--panel);
}

.about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.about-section-heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 5rem);
  line-height: 0.98;
}

.about-lede {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 62px);
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
}

.about-lede p {
  margin-bottom: 0;
}

.about-principles {
  background: var(--panel-muted);
}

.about-principle-grid,
.about-fit-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

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

.about-principle-grid article,
.about-fit-grid p {
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  background: var(--panel);
}

.about-principle-grid article {
  min-height: 300px;
}

.about-principle-grid span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--accent-alt);
  font-weight: 800;
}

.about-principle-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.05;
}

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

.about-work {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
  padding: clamp(76px, 9vw, 120px) clamp(20px, 5vw, 64px);
  background: var(--contact-bg);
  color: var(--white);
}

.about-work-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--hero-base);
  box-shadow: var(--shadow);
}

.about-work-copy {
  max-width: 760px;
}

.about-work-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(2.25rem, 4.4vw, 4.8rem);
  line-height: 0.98;
}

.about-step-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-step-list article {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(18px, 4vw, 38px);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-step-list strong {
  color: var(--white);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
}

.about-step-list p {
  margin: 0;
  color: var(--contact-copy);
}

.about-fit {
  background: var(--panel);
}

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

.about-fit-grid p {
  min-height: 160px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 800;
  line-height: 1.35;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.about-actions .button-secondary {
  color: var(--white);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: var(--panel-muted);
}

.proof-item {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 32px;
  border-top: 3px solid var(--accent);
  background: var(--proof-bg);
  color: var(--white);
  box-shadow: var(--glow);
}

.proof-item strong {
  font-size: 1.18rem;
}

.proof-item span {
  color: var(--proof-copy);
}

.contact {
  padding: clamp(78px, 9vw, 130px) clamp(20px, 5vw, 64px);
  background: var(--contact-bg);
  color: var(--white);
}

.contact-inner {
  max-width: 850px;
}

.contact p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 32px;
  color: var(--contact-copy);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .brand {
    white-space: normal;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 94svh;
    align-items: end;
    padding-bottom: 58px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, var(--hero-overlay-e) 0%, var(--hero-overlay-b) 35%, var(--hero-overlay-a) 100%),
      linear-gradient(90deg, var(--hero-overlay-b), var(--hero-overlay-d));
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5rem);
  }

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

  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 130px;
  }

  .about-hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .about-hero-media,
  .about-work-media {
    min-height: 320px;
  }

  .about-section-heading,
  .about-lede,
  .about-principle-grid,
  .about-work,
  .about-step-list article,
  .about-fit-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-detail,
  .service-points,
  .services-intro,
  .services-fit,
  .service-index,
  .service-feature,
  .fit-grid,
  .program-grid,
  .topic-grid,
  .advisory-grid,
    .training-overview,
    .format-grid,
    .training-outcomes,
    .outcome-grid,
    .approach,
    .proof {
    grid-template-columns: 1fr;
  }

  .curriculum-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .consulting-list article,
  .consulting-list article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .consulting-list article:nth-child(even) span {
    order: 0;
  }

  .service-card {
    min-height: 250px;
  }

  .service-feature-media {
    min-height: 300px;
  }

  .service-icon {
    margin-bottom: 32px;
  }
}

@media (max-width: 430px) {
  .brand {
    max-width: 250px;
    font-size: 0.95rem;
  }

  .section h2,
  .contact h2 {
    font-size: 2.05rem;
  }
}
