:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #607078;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #d9dfdc;
  --teal: #0b7c7a;
  --coral: #e85d4f;
  --gold: #c8912c;
  --green: #596f44;
  --shadow: 0 24px 70px rgba(23, 33, 38, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

:focus-visible {
  outline: 3px solid rgba(11, 124, 122, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  transition: transform 180ms ease;
}

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

.top-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 3vw, 30px);
  padding: 9px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
}

.top-strip a,
.top-strip span {
  white-space: nowrap;
}

.top-strip a {
  color: var(--paper);
  transition: color 180ms ease;
}

.top-strip a:hover {
  color: #93d2c9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(217, 223, 220, 0.75);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.08);
}

.brand,
.site-nav,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.site-nav {
  flex: 1 1 520px;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.8vw, 24px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a,
.nav-action {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.nav-action:hover {
  color: var(--ink);
}

.site-nav a.is-active {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 7px;
}

.nav-action {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.4);
}

.nav-action:hover {
  border-color: rgba(23, 33, 38, 0.35);
  background: var(--panel);
  transform: translateY(-1px);
}

.welcome-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 223, 220, 0.8);
  background: #eef2ef;
}

.welcome-visual {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(11, 124, 122, 0.2);
  border-radius: 50%;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(23, 33, 38, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.welcome-visual span {
  display: block;
  font-size: 1.65rem;
  transform-origin: 70% 70%;
  animation: wave-hand 2.8s ease-in-out infinite;
}

.welcome-visual:hover,
.welcome-visual:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(11, 124, 122, 0.45);
  box-shadow: 0 18px 40px rgba(23, 33, 38, 0.13);
}

.welcome-visual:hover span,
.welcome-visual:focus-visible span,
.welcome-visual.is-tapped span {
  animation: wave-hand 700ms ease-in-out 1;
}

.welcome-banner div {
  display: grid;
  gap: 4px;
}

.welcome-banner div > span {
  flex: 0 0 auto;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.welcome-banner p {
  margin: 0;
  color: #334249;
  font-weight: 700;
}

@keyframes wave-hand {
  0%,
  100% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(16deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  45% {
    transform: rotate(14deg);
  }
  60% {
    transform: rotate(-4deg);
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 75px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 4vw, 56px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.78) 42%, rgba(251, 250, 247, 0.18) 78%),
    linear-gradient(180deg, rgba(251, 250, 247, 0) 72%, var(--paper) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  width: 100%;
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.hero-portrait {
  position: relative;
  margin: 0;
  align-self: center;
  justify-self: end;
  width: min(360px, 32vw);
  aspect-ratio: 4 / 5;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--panel);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-portrait:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(23, 33, 38, 0.18);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #334249;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary:hover {
  box-shadow: 0 18px 38px rgba(23, 33, 38, 0.28);
}

.button.secondary:hover {
  background: var(--panel);
  border-color: rgba(23, 33, 38, 0.32);
  box-shadow: 0 12px 26px rgba(23, 33, 38, 0.08);
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(23, 33, 38, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(23, 33, 38, 0.18);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 180ms ease, text-underline-offset 180ms ease;
}

.text-link:hover {
  color: var(--coral);
  text-underline-offset: 7px;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 30px;
  width: min(360px, calc(100% - 36px));
  padding: 20px;
  border-left: 4px solid var(--coral);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span,
.project-topline,
.site-footer {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 4vw, 56px);
  background: var(--line);
}

.metrics div {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  padding: 26px;
  background: var(--paper);
}

.metrics strong {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.metrics span {
  color: var(--muted);
  font-weight: 600;
}

.framework-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  background: var(--ink);
  color: var(--paper);
}

.framework-section .eyebrow {
  color: #93d2c9;
}

.framework-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.framework-steps article {
  min-height: 160px;
  padding: 24px;
  background: var(--ink);
}

.framework-steps strong {
  display: block;
  margin-bottom: 10px;
  color: #f5c16c;
  font-size: 1.35rem;
}

.framework-steps span {
  color: #d4dedb;
  font-weight: 600;
}

.section,
.impact-dashboard,
.framework-section,
.journey-section,
.certifications-section,
.education-section,
.case-study-section,
.solutions-section,
.proof-section,
.speaking-gallery,
.insights-section,
.skills-section,
.split-section,
.about-band,
.recommendations-section,
.availability-section,
.contact-section {
  padding: clamp(72px, 10vw, 130px) clamp(18px, 4vw, 56px);
}

.impact-dashboard,
.case-study-section,
.skills-section,
.recommendations-section {
  background: var(--paper);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1px;
  background: var(--line);
}

.impact-grid article {
  display: grid;
  gap: 10px;
  min-height: 160px;
  align-content: center;
  padding: 24px;
  background: var(--panel);
}

.impact-grid strong {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.impact-grid span {
  color: var(--muted);
  font-weight: 700;
}

.education-section {
  background: #f4f1eb;
}

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

.education-card {
  display: grid;
  gap: 14px;
  min-height: 290px;
  padding: 26px;
  border: 1px solid #d8d0c1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(23, 33, 38, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.education-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 124, 122, 0.3);
  box-shadow: 0 22px 52px rgba(23, 33, 38, 0.11);
}

.education-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
}

.education-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.education-card strong {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #d8d0c1;
  color: #334249;
}

.journey-section {
  background:
    linear-gradient(180deg, #fbfaf7 0%, #eef2ef 100%);
}

.journey-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 42px;
}

.journey-path::before {
  position: absolute;
  top: 65px;
  left: 9%;
  right: 9%;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
  box-shadow: 0 12px 30px rgba(23, 33, 38, 0.12);
}

.journey-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  gap: 16px;
  padding: 54px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 45px rgba(23, 33, 38, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.journey-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 124, 122, 0.28);
  box-shadow: 0 28px 65px rgba(23, 33, 38, 0.13);
}

.journey-card.highlighted {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.1);
}

.journey-year {
  position: absolute;
  top: 18px;
  left: 24px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-card.highlighted .journey-year {
  color: #f5c16c;
}

.journey-dot {
  position: absolute;
  top: -6px;
  left: 24px;
  z-index: 1;
  width: 24px;
  height: 24px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(23, 33, 38, 0.18);
}

.journey-card:nth-child(2) .journey-dot {
  background: var(--gold);
}

.journey-card:nth-child(3) .journey-dot {
  background: var(--coral);
}

.journey-card.highlighted .journey-dot {
  background: #f5c16c;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
}

.journey-card.highlighted p {
  color: #d4dedb;
}

.journey-card strong {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #334249;
}

.journey-card.highlighted strong {
  border-top-color: rgba(255, 255, 255, 0.2);
  color: var(--paper);
}

.journey-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
}

.journey-outcomes div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.journey-outcomes span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-outcomes strong {
  display: block;
  font-size: 1.08rem;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 880px;
}

.certifications-section {
  background: var(--paper);
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 16px;
}

.certification-card {
  display: grid;
  grid-template-rows: 150px auto;
  gap: 18px;
  min-height: 290px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(23, 33, 38, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.certification-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 124, 122, 0.28);
  box-shadow: 0 24px 56px rgba(23, 33, 38, 0.12);
}

.certification-card:hover img {
  transform: scale(1.04);
}

.certification-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.certification-card h3 {
  font-size: 1.02rem;
}

.certification-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 18px;
}

.collapsible-grid .project-card:nth-of-type(n + 7) {
  display: none;
}

.collapsible-grid.is-expanded .project-card:nth-of-type(n + 7) {
  display: flex;
}

.grid-toggle {
  display: flex;
  margin: 24px auto 0;
}

.project-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(23, 33, 38, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 93, 79, 0.28);
  box-shadow: 0 28px 65px rgba(23, 33, 38, 0.13);
}

.project-card p,
.split-section p,
.about-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.project-meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

.project-meta div {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.project-meta dt {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.project-result {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #334249;
  font-weight: 800;
}

.project-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-transform: uppercase;
}

.additional-projects {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.additional-projects h3 {
  margin-bottom: 18px;
}

.additional-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}

.additional-project-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f5ef;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.additional-project-grid article:hover {
  transform: translateY(-3px);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(23, 33, 38, 0.08);
}

.additional-project-grid strong {
  display: block;
  margin-bottom: 8px;
}

.additional-project-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.case-study-list {
  display: grid;
  gap: 18px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(23, 33, 38, 0.06);
}

.case-study span,
.speaking-grid span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-study p {
  color: var(--muted);
}

.case-study dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.case-study dl div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.case-study dt {
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-study dd {
  margin: 0;
  color: #334249;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tags li,
.skill-list span {
  border-radius: 999px;
  padding: 8px 11px;
  background: #eef2ef;
  color: #334249;
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tags li:hover,
.skill-list span:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--paper);
}

.accent-teal {
  border-top: 5px solid var(--teal);
}

.accent-coral {
  border-top: 5px solid var(--coral);
}

.accent-gold {
  border-top: 5px solid var(--gold);
}

.solutions-section {
  background: #f4f1eb;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 18px;
}

.solution-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid #d8d0c1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.solution-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 145, 44, 0.38);
  box-shadow: 0 22px 52px rgba(23, 33, 38, 0.11);
}

.solution-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--paper);
  font-weight: 900;
}

.solution-grid p,
.proof-list p,
.insight-grid p,
.contact-section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  background: var(--paper);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list article {
  padding: 24px;
  border-left: 5px solid var(--coral);
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(23, 33, 38, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.proof-list article:hover {
  transform: translateX(5px);
  border-left-color: var(--teal);
  box-shadow: 0 22px 48px rgba(23, 33, 38, 0.11);
}

.proof-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.speaking-gallery,
.availability-section {
  background: #eef2ef;
}

.speaking-grid,
.skills-matrix,
.recommendation-grid,
.availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 18px;
}

.speaking-grid article,
.skills-matrix article,
.recommendation-grid article,
.availability-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(23, 33, 38, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.speaking-grid article:hover,
.skills-matrix article:hover,
.recommendation-grid article:hover,
.availability-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 124, 122, 0.3);
  box-shadow: 0 22px 52px rgba(23, 33, 38, 0.11);
}

.skills-matrix p,
.speaking-grid p,
.recommendation-grid p,
.availability-section p {
  color: var(--muted);
}

.recommendation-grid article {
  min-height: 190px;
  border-left: 5px solid var(--gold);
}

.recommendation-grid span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.availability-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 7vw, 80px);
}

.availability-grid article {
  min-height: 160px;
}

.availability-grid strong {
  display: block;
  margin-bottom: 8px;
}

.availability-grid span {
  color: var(--muted);
}

.insights-section {
  background: #f4f1eb;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 18px;
}

.insight-grid article {
  min-height: 250px;
  padding: 28px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid #d8d0c1;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.insight-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 124, 122, 0.3);
  box-shadow: 0 22px 52px rgba(23, 33, 38, 0.11);
}

.insight-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--coral);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 90px);
  background: #eef2ef;
}

.split-section > div:first-child {
  position: sticky;
  top: 108px;
  align-self: start;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-content: start;
  gap: 14px;
  min-height: 230px;
  padding: 24px;
  border: 1px solid #cfd8d4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.timeline article:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 124, 122, 0.3);
  box-shadow: 0 20px 48px rgba(23, 33, 38, 0.1);
}

.timeline span {
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--coral);
  font-weight: 900;
}

.timeline h3 {
  grid-column: 2;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.timeline p {
  grid-column: 2;
  margin: 0;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 80px);
  background: var(--ink);
  color: var(--paper);
}

.about-band .eyebrow {
  color: #93d2c9;
}

.about-copy p {
  color: #d4dedb;
  max-width: 720px;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
}

.skill-list span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: clamp(34px, 7vw, 80px);
}

.contact-section h2 {
  max-width: 720px;
}

.contact-section .contact-actions {
  justify-content: flex-start;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(23, 33, 38, 0.08);
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.booking-form:hover {
  border-color: rgba(11, 124, 122, 0.28);
  box-shadow: 0 22px 52px rgba(23, 33, 38, 0.12);
}

.form-header {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.form-header span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-header strong {
  font-size: 1.35rem;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #334249;
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover {
  background: var(--panel);
  border-color: rgba(11, 124, 122, 0.42);
}

.booking-form input:user-valid,
.booking-form select:user-valid,
.booking-form textarea:user-valid {
  border-color: rgba(89, 111, 68, 0.5);
}

.booking-form input:user-invalid,
.booking-form select:user-invalid,
.booking-form textarea:user-invalid {
  border-color: rgba(232, 93, 79, 0.65);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(11, 124, 122, 0.18);
  border-color: var(--teal);
}

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

.booking-form .button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #f4f1eb;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(23, 33, 38, 0.18);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 14px 34px rgba(23, 33, 38, 0.18);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 18px 42px rgba(23, 33, 38, 0.26);
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

  .top-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    align-items: start;
    padding-top: 72px;
    padding-bottom: 190px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    justify-self: start;
    width: min(260px, 62vw);
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.74) 58%, rgba(251, 250, 247, 0.34) 100%),
      linear-gradient(180deg, rgba(251, 250, 247, 0) 72%, var(--paper) 100%);
  }

  .metrics,
  .framework-section,
  .framework-steps,
  .journey-path,
  .journey-outcomes,
  .education-grid,
  .case-study,
  .proof-section,
  .split-section,
  .about-band,
  .availability-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .contact-section,
  .site-footer {
    align-items: start;
  }

  .split-section > div:first-child {
    position: static;
  }

  .split-section {
    gap: 28px;
  }

  .timeline {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  }

  .contact-section .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .journey-path {
    gap: 14px;
  }

  .journey-path::before {
    top: 0;
    bottom: 0;
    left: 12px;
    right: auto;
    width: 4px;
    height: auto;
  }

  .journey-card {
    min-height: auto;
    padding-top: 28px;
    padding-left: 54px;
  }

  .journey-dot {
    top: 28px;
    left: 0;
  }

  .journey-year {
    position: static;
  }
}

@media (max-width: 760px) {
  .top-strip {
    gap: 10px 18px;
  }

  .welcome-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-header {
    position: static;
  }

  .nav-action {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-bottom: 220px;
  }

  .hero-copy {
    margin-top: 22px;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .certification-card,
  .solution-grid article,
  .insight-grid article {
    min-height: auto;
  }

  .certification-grid,
  .project-grid,
  .solution-grid,
  .insight-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 240px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .metrics div,
  .project-card {
    padding: 22px;
  }

  .project-card {
    min-height: auto;
  }

  .timeline article {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
    padding: 22px;
  }

  .timeline span {
    grid-row: auto;
    width: 36px;
    height: 36px;
  }

  .timeline h3,
  .timeline p {
    grid-column: auto;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .top-strip,
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section,
  .impact-dashboard,
  .framework-section,
  .certifications-section,
  .education-section,
  .case-study-section,
  .solutions-section,
  .proof-section,
  .speaking-gallery,
  .insights-section,
  .skills-section,
  .split-section,
  .about-band,
  .recommendations-section,
  .availability-section,
  .contact-section,
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-portrait {
    width: min(230px, 72vw);
    border-width: 7px;
  }

  .hero-panel {
    left: 14px;
    right: 14px;
  }
}

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