:root {
  --ink: #17211b;
  --ink-soft: #314038;
  --paper: #f7f7f2;
  --white: #ffffff;
  --sage: #b5cebf;
  --sage-deep: #6f8978;
  --sage-pale: #e7efe9;
  --lilac: #e3d9f2;
  --lilac-deep: #8d7ea5;
  --lilac-pale: #f3eef9;
  --line: rgba(23, 33, 27, .15);
  --muted: #667069;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 70px rgba(23, 33, 27, .10);
  --container: 1180px;
  --font: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 {
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 500;
  max-width: 900px;
  margin-bottom: 30px;
}
h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 500;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 550;
  margin-bottom: 12px;
}
p { color: var(--ink-soft); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 128px 0; }
.section-tight { padding: 78px 0; }
.large-text { font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.55; }
.eyebrow {
  margin-bottom: 22px;
  color: var(--sage-deep);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--sage); }
.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 12px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 15px 26px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: var(--ink);
  color: white;
  font-size: .94rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); background: #2a3b31; }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #8f65d4; outline-offset: 3px; }
.button-small { min-height: 43px; padding: 10px 18px; font-size: .82rem; }
.button-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button-light:hover { background: white; }
.button-ghost { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.button-wide { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 650;
  text-underline-offset: 5px;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
}
.site-header.is-scrolled { padding: 8px 0; background: rgba(247,247,242,.92); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: block; width: 174px; flex: 0 0 auto; }
.brand img { width: 100%; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.5vw, 35px); }
.main-nav a { position: relative; color: var(--ink-soft); font-size: .84rem; font-weight: 550; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; bottom: -7px; left: 0; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.accessibility-toggle {
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}
.accessibility-toggle:hover { background: white; }
.menu-toggle { display: none; width: 43px; height: 43px; padding: 11px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1.5px; margin: 4px 0; background: var(--ink); transition: transform .2s, opacity .2s; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 790px;
  padding: 165px 0 85px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8f8f3 0%, #f2f3ec 55%, #edf1eb 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .72fr); gap: clamp(50px, 8vw, 110px); align-items: end; }
.hero-copy { padding-top: 40px; }
.hero-lead { max-width: 680px; margin-bottom: 36px; font-size: clamp(1.18rem, 2vw, 1.55rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 9px 26px; margin: 42px 0 0; padding: 0; list-style: none; }
.trust-list li { position: relative; padding-left: 18px; color: var(--muted); font-size: .84rem; }
.trust-list li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--sage-deep); }
.hero-card { padding: 38px; border-radius: var(--radius-lg); background: var(--ink); color: white; box-shadow: var(--shadow); }
.hero-card h2 { font-size: clamp(1.9rem, 3vw, 2.75rem); letter-spacing: -.04em; }
.hero-card p { color: #c7cec9; }
.hero-card .card-kicker { color: var(--sage); font-size: .76rem; text-transform: uppercase; letter-spacing: .11em; }
.hero-card .button { width: 100%; margin-top: 12px; }
.hero-card small { display: block; margin-top: 17px; color: #9ea8a1; font-size: .72rem; line-height: 1.5; }
.hero-card-mark { display: flex; width: 95px; height: 61px; margin-bottom: 30px; }
.hero-card-mark span { display: block; width: 60px; height: 60px; border-radius: 50%; background: var(--sage); }
.hero-card-mark span:last-child { margin-left: -25px; background: var(--lilac); mix-blend-mode: screen; }
.hero-art { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .75; }
.orb-sage { width: 360px; height: 360px; right: 16%; top: 2%; background: var(--sage); }
.orb-lilac { width: 290px; height: 290px; right: 3%; top: 15%; background: var(--lilac); }
.orbit-line { position: absolute; width: 670px; height: 670px; right: -75px; top: -80px; border: 1px solid rgba(23,33,27,.09); border-radius: 50%; }

.section-heading { max-width: 780px; margin-bottom: 58px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p:last-child { max-width: 520px; margin: 0; }
.section-heading-row { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .6fr); align-items: end; gap: 60px; max-width: none; }
.section-heading-row > div h2 { margin-bottom: 0; }
.centered { margin-inline: auto; text-align: center; }
.centered > p:last-child { margin: 0 auto; }

.quick-choice { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.quick-choice h2 { font-size: clamp(2rem, 3.4vw, 3.6rem); }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.choice-card { position: relative; min-height: 330px; padding: 34px; border-radius: var(--radius-md); color: var(--ink); text-decoration: none; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.choice-card::after { content: ""; position: absolute; width: 145px; height: 145px; right: -42px; bottom: -42px; border: 1px solid rgba(23,33,27,.18); border-radius: 50%; transition: transform .4s ease; }
.choice-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.choice-card:hover::after { transform: scale(1.25); }
.choice-individual { background: var(--sage-pale); }
.choice-group { background: var(--lilac-pale); }
.choice-complex { background: var(--ink); color: white; }
.choice-complex p { color: #bbc4be; }
.choice-number { display: block; margin-bottom: 70px; font-size: .75rem; opacity: .65; }
.choice-card p { max-width: 325px; margin-bottom: 25px; }
.card-link { position: absolute; left: 34px; bottom: 30px; font-size: .84rem; font-weight: 650; text-decoration: underline; text-underline-offset: 4px; }

.about { background: var(--paper); }
.split-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(70px, 10vw, 150px); align-items: start; }
.sticky-intro { position: sticky; top: 130px; }
.about-content > p:first-child { font-size: 1.1rem; }
.principles { margin: 50px 0; border-top: 1px solid var(--line); }
.principles article { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.principles h3, .principles p { margin-bottom: 5px; }
.principle-icon { display: grid; place-items: center; width: 45px; height: 45px; border: 1px solid var(--line); border-radius: 50%; color: var(--sage-deep); font-size: 1.3rem; }
.note-card { padding: 30px; border-radius: var(--radius-md); background: var(--lilac-pale); }
.note-card p { margin: 0; }

.skills { background: var(--sage-pale); }
.skills-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.skill-card { min-height: 400px; padding: 28px; border: 1px solid rgba(23,33,27,.11); border-radius: var(--radius-md); background: rgba(255,255,255,.58); }
.skill-card:nth-child(even) { background: rgba(227,217,242,.58); }
.skill-index { font-size: .72rem; opacity: .65; }
.skill-symbol { display: grid; place-items: center; width: 76px; height: 76px; margin: 62px 0 45px; border: 1px solid var(--ink); border-radius: 50%; font-size: 2rem; font-weight: 300; }
.skill-card p { font-size: .94rem; }

.program { background: var(--ink); color: white; }
.program-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); gap: clamp(70px, 10vw, 150px); align-items: start; }
.program h2 { color: white; }
.program-copy > p:not(.eyebrow) { color: #b9c3bc; }
.program-list { margin: 0; padding: 0; list-style: none; }
.program-list li { display: grid; grid-template-columns: 60px 1fr; gap: 25px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.17); }
.program-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.17); }
.program-list li > span { color: var(--sage); font-size: .75rem; }
.program-list h3 { color: white; }
.program-list p { margin-bottom: 0; color: #aeb9b1; }

.team { background: white; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px 18px; }
.person-card { overflow: hidden; }
.person-card img { width: 100%; aspect-ratio: 1 / 1.06; object-fit: cover; object-position: center top; border-radius: var(--radius-md); background: var(--sage-pale); filter: saturate(.82); transition: filter .3s ease, transform .45s ease; }
.person-card:hover img { filter: saturate(1); transform: scale(1.015); }
.person-card > div { padding: 20px 8px 0; }
.person-card h3 { margin-bottom: 4px; }
.person-card p { color: var(--muted); font-size: .9rem; }
.person-card .person-role { min-height: 2.8em; margin-bottom: 10px; color: var(--ink-soft); font-weight: 600; }
.person-card .person-meta { min-height: 4.6em; margin-bottom: 14px; font-size: .8rem; line-height: 1.55; }
.person-card a { color: var(--sage-deep); font-size: .82rem; font-weight: 650; text-underline-offset: 4px; }

.groups { background: var(--paper); }
.groups-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(60px, 9vw, 120px); align-items: center; }
.groups-visual { position: relative; display: grid; place-items: center; min-height: 580px; border-radius: var(--radius-lg); background: var(--sage); overflow: hidden; }
.groups-visual p { position: relative; z-index: 2; max-width: 360px; color: var(--ink); font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.18; text-align: center; letter-spacing: -.04em; }
.speech { position: absolute; width: 280px; height: 210px; border-radius: 48% 52% 46% 54%; }
.speech::after { content: ""; position: absolute; bottom: -35px; width: 70px; height: 70px; border-radius: 0 0 0 100%; background: inherit; }
.speech-one { left: 12%; top: 19%; background: rgba(255,255,255,.72); transform: rotate(-8deg); }
.speech-one::after { left: 20px; }
.speech-two { right: 8%; bottom: 16%; background: rgba(227,217,242,.86); transform: rotate(9deg); }
.speech-two::after { right: 25px; transform: scaleX(-1); }
.check-list { margin: 34px 0 38px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { position: relative; padding: 17px 0 17px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 4px; color: var(--sage-deep); font-weight: 700; }

.training-catalog { margin-top: 115px; }
.training-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr); gap: 60px; align-items: end; margin-bottom: 55px; }
.training-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -25px; }
.training-heading h2 { margin: 0; }
.training-heading > p:last-child { margin: 0; }
.catalog-label { margin: 52px 0 18px; color: var(--sage-deep); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.training-grid { display: grid; gap: 16px; }
.training-grid-three { grid-template-columns: repeat(3, 1fr); }
.training-card { display: flex; flex-direction: column; min-height: 410px; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.training-card-lilac { background: var(--lilac-pale); }
.training-card-sage { background: var(--sage-pale); }
.training-tag { align-self: flex-start; margin-bottom: 55px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 100px; color: var(--sage-deep); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.training-card h3 { font-size: 1.55rem; }
.training-card > p { margin-bottom: 30px; font-size: .9rem; }
.training-card dl { margin: auto 0 0; }
.training-card dl div { padding: 13px 0; border-top: 1px solid var(--line); }
.training-card dt { margin-bottom: 3px; color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.training-card dd { margin: 0; color: var(--ink-soft); font-size: .82rem; line-height: 1.45; }
.training-cta { display: grid; grid-template-columns: 1fr auto; gap: 55px; align-items: center; margin-top: 22px; padding: 35px; border-radius: var(--radius-md); background: var(--ink); color: white; }
.training-cta h3 { color: white; }
.training-cta p { max-width: 720px; margin: 0; color: #b9c3bc; }
.training-cta .button { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.values { padding: 120px 0; background: var(--lilac-deep); color: white; text-align: center; }
.values-inner { max-width: 1000px; }
.values blockquote { margin: 0 auto 48px; max-width: 960px; font-size: clamp(2.2rem, 5.2vw, 5.1rem); line-height: 1.09; letter-spacing: -.055em; font-weight: 450; text-wrap: balance; }
.value-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.value-tags span { padding: 10px 18px; border: 1px solid rgba(255,255,255,.4); border-radius: 100px; font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; }

.faq { background: white; }
.faq-grid { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.accordion { border-top: 1px solid var(--line); }
.accordion .faq-category { margin: 36px 0 4px; color: var(--sage-deep); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.accordion .faq-category:first-child { margin-top: 22px; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 27px 0; cursor: pointer; list-style: none; font-size: 1.15rem; font-weight: 600; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 30px; height: 30px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 8px; right: 8px; top: 14px; height: 1px; background: var(--ink); }
.accordion summary span::after { transform: rotate(90deg); transition: transform .2s; }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details div { padding: 0 60px 25px 0; }
.accordion details p { margin: 0; }

.appointment { background: white; padding-top: 0; }
.appointment-card { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr); gap: 70px; align-items: center; padding: clamp(45px, 7vw, 85px); border-radius: var(--radius-lg); background: var(--ink); color: white; }
.appointment-card h2 { color: white; }
.appointment-card p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; color: #bdc6c0; }
.appointment-actions { display: flex; flex-direction: column; gap: 12px; }
.appointment-actions small { margin-top: 6px; color: #9aa69e; font-size: .72rem; line-height: 1.5; text-align: center; }

.site-footer { padding: 75px 0 30px; background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .55fr .55fr; gap: 70px; padding-bottom: 65px; }
.footer-brand img { width: 220px; margin-bottom: 25px; }
.footer-brand p { max-width: 330px; }
.footer-grid h2 { margin-bottom: 20px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a { color: var(--ink-soft); font-size: .9rem; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 50px; padding-top: 25px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; font-size: .75rem; }
.footer-bottom p:last-child { max-width: 630px; text-align: right; }

.legal-page { min-height: 100vh; padding: 70px 0 110px; background: linear-gradient(145deg, var(--paper), var(--sage-pale)); }
.legal-inner { max-width: 850px; }
.legal-logo { display: block; width: 210px; margin-bottom: 85px; }
.legal-page h1 { max-width: none; font-size: clamp(3.4rem, 8vw, 6.5rem); }
.legal-lead { margin-bottom: 70px; font-size: clamp(1.2rem, 2vw, 1.55rem); }
.legal-page section { padding: 32px 0; border-top: 1px solid var(--line); }
.legal-page section:last-of-type { margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.legal-page section h2 { margin-bottom: 13px; font-size: 1.5rem; letter-spacing: -.025em; }
.legal-page section p { margin-bottom: 0; }
.legal-page section a { color: var(--sage-deep); font-weight: 650; text-underline-offset: 4px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

body.readable-mode {
  --paper: #ffffff;
  --sage-pale: #f3f7f4;
  --lilac-pale: #f8f5fc;
  font-size: 20px;
  line-height: 1.72;
}
body.readable-mode h1, body.readable-mode h2, body.readable-mode h3 { letter-spacing: -.02em; }
body.readable-mode .accessibility-toggle { background: var(--ink); color: white; }
body.readable-mode .muted, body.readable-mode p { color: #26332b; }

@media (max-width: 1040px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .header-actions > .button { display: none; }
  .mobile-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 100px max(24px, calc((100vw - 820px) / 2));
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .mobile-nav.is-open { opacity: 1; visibility: visible; }
  .mobile-nav a:not(.button) { font-size: clamp(1.7rem, 4vw, 2.8rem); line-height: 1.1; letter-spacing: -.04em; text-decoration: none; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 600px; }
  .hero { padding-top: 135px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .choice-card:last-child { grid-column: 1 / -1; min-height: 280px; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .training-grid-three { grid-template-columns: 1fr 1fr; }
  .training-grid-three .training-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 88px 0; }
  .section-tight { padding: 62px 0; }
  .brand { width: 145px; }
  .site-header { padding: 9px 0; }
  h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .hero { min-height: auto; padding: 120px 0 65px; }
  .hero-copy { padding-top: 0; }
  .hero-grid { gap: 52px; }
  .hero-card { padding: 30px 25px; border-radius: 28px; }
  .hero-lead { font-size: 1.15rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .trust-list { display: grid; gap: 8px; margin-top: 32px; }
  .orb-sage { width: 230px; height: 230px; right: -15%; }
  .orb-lilac { width: 180px; height: 180px; right: -20%; top: 10%; }
  .orbit-line { width: 420px; height: 420px; right: -240px; }
  .section-heading, .section-heading-row { display: block; margin-bottom: 38px; }
  .section-heading-row > p { margin-top: 24px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card, .choice-card:last-child { grid-column: auto; min-height: 310px; }
  .split-layout, .program-grid, .groups-grid, .faq-grid, .appointment-card { grid-template-columns: 1fr; }
  .sticky-intro, .faq-intro { position: static; }
  .split-layout, .program-grid, .groups-grid, .faq-grid { gap: 55px; }
  .skills-grid { grid-template-columns: 1fr; }
  .skill-card { min-height: 330px; }
  .skill-symbol { margin: 45px 0 35px; }
  .program-list li { grid-template-columns: 42px 1fr; gap: 14px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 34px 12px; }
  .person-card > div { padding: 15px 2px 0; }
  .person-card h3 { font-size: 1.05rem; }
  .person-card .person-role, .person-card .person-meta { min-height: 0; }
  .groups-visual { min-height: 420px; }
  .speech { width: 210px; height: 155px; }
  .values { padding: 90px 0; }
  .training-catalog { margin-top: 80px; }
  .training-heading { display: block; margin-bottom: 38px; }
  .training-heading .eyebrow { margin-bottom: 22px; }
  .training-heading > p:last-child { margin-top: 24px; }
  .training-grid-three { grid-template-columns: 1fr; }
  .training-grid-three .training-card:last-child { grid-column: auto; }
  .training-card { min-height: 350px; }
  .training-tag { margin-bottom: 40px; }
  .training-cta { grid-template-columns: 1fr; gap: 28px; padding: 30px 24px; }
  .appointment-card { padding: 42px 24px; gap: 40px; border-radius: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-bottom p:last-child { text-align: left; }
}

@media (max-width: 430px) {
  .team-grid { grid-template-columns: 1fr; }
  .person-card img { aspect-ratio: 1 / 1; }
  .header-actions { gap: 6px; }
  .accessibility-toggle, .menu-toggle { width: 40px; height: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
