:root {
    --brand-blue: #49a0ce;
    --brand-cyan: #63c6dd;
    --brand-orange: #f15a22;
    --ink: #5e5e5e;
    --ink-strong: #304049;
    --muted: #6e7a80;
    --line: #d7e3e8;
    --surface: #f5fafc;
    --surface-warm: #fff7f3;
    --white: #fff;
    --max: 1160px;
    --font-body: Arial;
    --font-display: Arial;
    --text-eyebrow: 13px;
    --text-lead: 20px;
    --text-page-title: clamp(54px, 6vw, 82px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
    text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
    top: 32px;
}

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

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(73, 160, 206, 0.4);
    outline-offset: 3px;
}

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

h1,
h2,
h3 {
    color: var(--ink-strong);
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
}

h1 {
    font-size: 64px;
    margin-bottom: 22px;
}

h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

h3 {
    font-size: 27px;
    margin-bottom: 14px;
}

p {
    margin-bottom: 18px;
}

.skip-link {
    background: var(--ink-strong);
    color: var(--white);
    left: 16px;
    padding: 10px 14px;
    position: absolute;
    top: -60px;
    z-index: 30;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.site-header__inner {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: auto 1fr;
    margin: 0 auto;
    max-width: var(--max);
    min-height: 96px;
    padding: 18px 24px;
}

.brand {
    align-items: center;
    display: flex;
    gap: 14px;
    text-decoration: none;
}

.brand__symbol {
    height: 58px;
    width: 58px;
}

.brand__text {
    border-left: 1px solid #9ca8ad;
    color: var(--ink-strong);
    display: grid;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15;
    padding-left: 14px;
    white-space: nowrap;
}

.primary-nav {
    justify-self: end;
}

.primary-nav__list,
.footer-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav__list {
    align-items: center;
    display: flex;
    gap: 26px;
}

.primary-nav a {
    color: var(--ink-strong);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
    color: var(--brand-blue);
}

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 6px;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    line-height: 1.2;
    min-height: 46px;
    padding: 13px 20px;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button--primary {
    background: var(--brand-orange);
    color: var(--white);
}

.button--primary:hover {
    background: #d84d1c;
    transform: translateY(-1px);
}

.button--secondary {
    background: var(--white);
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.button--secondary:hover {
    background: var(--surface);
}

.menu-toggle {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink-strong);
    display: none;
    font: inherit;
    font-weight: 700;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
    background: currentColor;
    display: block;
    height: 2px;
    width: 20px;
}

.menu-toggle__line {
    position: relative;
}

.menu-toggle__line::before,
.menu-toggle__line::after {
    content: "";
    left: 0;
    position: absolute;
}

.menu-toggle__line::before {
    top: -6px;
}

.menu-toggle__line::after {
    top: 6px;
}

.hero {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    min-height: 680px;
}

.hero__content {
    align-self: center;
    padding: 82px 48px 82px max(48px, calc((100vw - var(--max)) / 2 + 24px));
}

.hero__lead {
    color: var(--ink);
    font-size: var(--text-lead);
    line-height: 1.7;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__media {
    margin: 0;
    min-height: 520px;
    overflow: hidden;
}

.hero__media img {
    filter: grayscale(1);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.eyebrow {
    color: var(--brand-blue);
    font-size: var(--text-eyebrow);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.35;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.accent-rule {
    display: flex;
    gap: 8px;
    margin: 0 0 28px;
}

.accent-rule::before {
    background: repeating-linear-gradient(90deg, var(--brand-blue) 0 7px, transparent 7px 15px, var(--brand-orange) 15px 22px, transparent 22px 30px, var(--brand-cyan) 30px 37px, transparent 37px 45px);
    content: "";
    display: block;
    height: 8px;
    width: 300px;
}

.accent-rule--center {
    justify-content: center;
}

.trust-band {
    background: var(--brand-blue);
    color: var(--white);
}

.trust-band__inner {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: 240px 1fr;
    margin: 0 auto;
    max-width: var(--max);
    padding: 28px 24px;
}

.trust-band p {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.trust-band__logos {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trust-logo {
    align-items: center;
    background: var(--white);
    border-radius: 6px;
    display: flex;
    height: 64px;
    justify-content: center;
    margin: 0;
    padding: 10px 14px;
}

.trust-logo img {
    max-height: 42px;
    object-fit: contain;
}

.trust-logo figcaption {
    color: var(--ink);
    font-size: var(--text-eyebrow);
    font-weight: 700;
    text-align: center;
}

.section-pad {
    margin: 0 auto;
    max-width: var(--max);
    padding: 92px 24px;
}

.section-heading {
    max-width: 860px;
}

.section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading--split {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    max-width: none;
}

.text-link {
    color: var(--brand-orange);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.text-link:hover {
    text-decoration: underline;
}

.diagnostic {
    background: var(--white);
}

.diagnostic__panel {
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 36px;
}

.diagnostic__panel > div {
    padding: 42px;
}

.diagnostic__panel > div + div {
    border-left: 1px solid var(--line);
}

.check-list {
    display: grid;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li {
    padding-left: 36px;
    position: relative;
}

.check-list li::before {
    align-items: center;
    background: var(--brand-orange);
    border-radius: 50%;
    color: var(--white);
    content: "✓";
    display: flex;
    font-size: var(--text-eyebrow);
    font-weight: 700;
    height: 22px;
    justify-content: center;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 2px;
    width: 22px;
}

.outcomes {
    background: var(--surface);
    max-width: none;
    padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
    padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.outcomes__grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 56px auto 0;
    max-width: var(--max);
}

.outcome {
    padding: 0 34px;
    text-align: center;
}

.outcome + .outcome {
    border-left: 1px solid var(--line);
}

.outcome__mark {
    align-items: center;
    background: var(--brand-blue);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    font-size: 22px;
    font-weight: 700;
    height: 86px;
    justify-content: center;
    margin-bottom: 24px;
    width: 86px;
}

.outcome:nth-child(2) .outcome__mark {
    background: var(--brand-orange);
}

.outcome:nth-child(3) .outcome__mark {
    background: #8f8a73;
}

.feature-visual {
    margin: 0 auto;
    max-width: var(--max);
    padding: 68px 24px 30px;
    position: relative;
}

.feature-visual figure {
    border: 12px solid var(--surface);
    margin: 0;
}

.feature-visual img {
    filter: grayscale(1);
    max-height: 620px;
    object-fit: cover;
    width: 100%;
}

.feature-visual__quote {
    background: rgba(73, 160, 206, 0.92);
    bottom: 74px;
    color: var(--white);
    max-width: 520px;
    padding: 28px 34px;
    position: absolute;
    right: 58px;
}

.feature-visual__quote p {
    font-family: var(--font-display);
    font-size: 27px;
    line-height: 1.25;
    margin: 0;
}

.services__grid,
.updates__grid,
.related-services__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 40px;
}

.service-card,
.update-card,
.related-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.service-card:hover,
.update-card:hover,
.related-card:hover {
    background: var(--surface);
    border-color: #b8dce9;
    transform: translateY(-2px);
}

.service-card img {
    border-radius: 50%;
    height: 58px;
    margin-bottom: 22px;
    object-fit: cover;
    width: 58px;
}

.service-card h3,
.update-card h3,
.update-card h2 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.18;
}

.service-card p,
.update-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.service-card a,
.update-card a {
    color: var(--brand-orange);
    font-weight: 700;
    margin-top: auto;
    text-decoration: none;
}

.service-card a:hover,
.update-card a:hover {
    text-decoration: underline;
}

.updates {
    padding-top: 34px;
}

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

.update-card__kicker {
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.closing-cta {
    align-items: center;
    background: var(--ink-strong);
    color: var(--white);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin: 40px auto 0;
    max-width: var(--max);
    padding: 52px 56px;
}

.closing-cta h2,
.closing-cta .eyebrow {
    color: var(--white);
}

.closing-cta h2 {
    font-size: 38px;
    margin-bottom: 0;
    max-width: 760px;
}

.page-hero {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    min-height: 500px;
}

.page-hero--plain {
    background: var(--surface);
    display: block;
    min-height: 0;
}

.page-hero__content {
    align-self: center;
    padding: 76px 48px 76px max(48px, calc((100vw - var(--max)) / 2 + 24px));
}

.page-hero--plain .page-hero__content {
    margin: 0 auto;
    max-width: var(--max);
    padding: 82px 24px 76px;
}

.page-hero__content p:not(.eyebrow) {
    color: var(--muted);
    font-size: var(--text-lead);
    line-height: 1.7;
    max-width: 640px;
}

.page-hero__media {
    margin: 0;
    overflow: hidden;
}

.page-hero__media img {
    filter: grayscale(1);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.page-content-shell {
    margin: 0 auto;
    max-width: 920px;
    padding: 76px 24px 38px;
}

.page-content {
    color: var(--ink);
    font-size: 18px;
}

.page-content font,
.page-content span,
.page-content div {
    font-family: inherit !important;
}

.page-content font {
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.page-content h2 {
    font-size: 34px;
    margin-top: 46px;
}

.page-content h3 {
    font-family: var(--font-body);
    font-size: 23px;
    font-weight: 700;
    margin-top: 34px;
}

.page-content ul,
.page-content ol {
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 10px;
}

.inline-image {
    margin: 44px 0 0;
}

.inline-image img {
    border: 12px solid var(--surface);
}

.page-module {
    margin: 0 auto;
    max-width: var(--max);
    padding: 42px 24px;
}

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

.detail-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
}

.detail-card__label,
.news-card__meta {
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.detail-card h2,
.news-card h3 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.detail-card p:last-child,
.news-card p:last-child {
    margin-bottom: 0;
}

.section-index {
    align-items: start;
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(180px, 0.28fr) 1fr;
    margin-bottom: 14px;
    margin-top: 42px;
    padding: 26px 24px;
}

.section-index__root,
.section-index__links a {
    text-decoration: none;
}

.section-index__root {
    color: var(--brand-blue);
    display: block;
    font-size: var(--text-eyebrow);
    font-weight: 700;
    line-height: 1.35;
    padding-top: 3px;
    text-transform: uppercase;
}

.section-index__links {
    column-gap: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
}

.section-index__links a {
    border-left: 2px solid transparent;
    border-radius: 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    min-height: 48px;
    padding: 14px 0 14px 14px;
    transition: border-color 160ms ease, color 160ms ease;
}

.section-index__root:hover,
.section-index__root.is-active,
.section-index__links a:hover,
.section-index__links a.is-active {
    color: var(--brand-orange);
}

.section-index__links a.is-active {
    border-left-color: var(--brand-orange);
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 620px;
}

.about-hero__panel {
    align-content: center;
    background: var(--brand-blue);
    color: var(--white);
    display: grid;
    padding: 78px 72px 78px max(48px, calc((100vw - var(--max)) / 2 + 24px));
}

.about-hero__panel .eyebrow,
.about-hero__panel h1 {
    color: var(--white);
}

.about-hero__panel h1 {
    font-size: clamp(58px, 7vw, 100px);
    line-height: 0.92;
    margin-bottom: 28px;
}

.about-hero__panel p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.88);
    font-size: 22px;
    line-height: 1.65;
    max-width: 640px;
}

.about-hero__media,
.about-split__media,
.about-longform-section__media {
    margin: 0;
    overflow: hidden;
}

.about-hero__media img,
.about-split__media img,
.about-longform-section__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-split {
    background: var(--surface);
    display: block;
}

.about-split__content {
    margin: 0 auto;
    max-width: var(--max);
    padding: 96px 24px;
}

.about-split__content h2,
.about-principle__content h2,
.about-longform-section__heading h2,
.about-cta h2 {
    line-height: 1.02;
}

.about-split__content h2 {
    font-size: clamp(42px, 5.2vw, 72px);
    max-width: 960px;
}

.about-split__content > p {
    color: var(--muted);
    font-size: 21px;
    line-height: 1.75;
    max-width: 780px;
}

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

.about-tags li {
    border: 1px solid #b8dce9;
    color: var(--brand-blue);
    font-size: var(--text-eyebrow);
    font-weight: 700;
    padding: 9px 12px;
    text-transform: uppercase;
}

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

.about-principle {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 560px;
}

.about-principle--reverse .about-principle__visual {
    order: 2;
}

.about-principle__visual {
    margin: 0;
    overflow: hidden;
}

.about-principle__visual img {
    filter: grayscale(1);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-principle__visual--mark {
    align-items: center;
    background: var(--brand-blue);
    color: var(--white);
    display: flex;
    justify-content: center;
}

.about-principle__visual--mark span {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    display: flex;
    font-family: var(--font-display);
    font-size: clamp(86px, 12vw, 150px);
    height: 220px;
    justify-content: center;
    width: 220px;
}

.about-principle__content {
    align-content: center;
    background: var(--white);
    display: grid;
    max-width: none;
    padding: 72px max(48px, calc((100vw - var(--max)) / 2 + 24px)) 72px 72px;
}

.about-principle--reverse .about-principle__content {
    padding: 72px 72px 72px max(48px, calc((100vw - var(--max)) / 2 + 24px));
}

.about-principle__content h2 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.02;
    margin: 0 0 24px;
}

.about-principle__content h3 {
    display: none;
}

.about-principle__content p,
.about-principle__content li {
    color: var(--muted);
    font-size: var(--text-lead);
    line-height: 1.7;
}

.about-principle__content ul {
    counter-reset: about-values;
    display: grid;
    gap: 0;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.about-principle__content li {
    align-items: baseline;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 18px;
    grid-template-columns: 42px minmax(0, 1fr);
    font-weight: 700;
    margin: 0;
    padding: 18px 0;
}

.about-principle__content li::before {
    color: var(--brand-orange);
    content: counter(about-values, decimal-leading-zero);
    counter-increment: about-values;
    font-size: var(--text-eyebrow);
    font-weight: 700;
    line-height: 1;
}

.about-principle__content blockquote {
    border-left: 0;
    color: var(--ink-strong);
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1.45;
    margin: 42px 0 0;
    padding: 0;
}

.about-anchor-nav {
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 18px 24px;
    position: sticky;
    top: 96px;
    z-index: 10;
}

body.admin-bar .about-anchor-nav {
    top: 128px;
}

.about-anchor-nav a {
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 14px;
    text-decoration: none;
}

.about-anchor-nav a:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.about-longform {
    background: var(--white);
}

.about-longform-section {
    display: grid;
    align-items: start;
    gap: 56px;
    grid-template-columns: minmax(320px, 0.4fr) minmax(0, 0.6fr);
    padding: 88px max(24px, calc((100vw - var(--max)) / 2 + 24px));
    scroll-margin-top: 270px;
}

.about-longform-section--tinted {
    background: var(--surface);
}

.about-longform-section__heading {
    align-self: start;
    max-width: 380px;
    position: sticky;
    top: 230px;
}

body.admin-bar .about-longform-section {
    scroll-margin-top: 302px;
}

body.admin-bar .about-longform-section__heading {
    top: 262px;
}

.about-longform-section__heading h2 {
    font-size: clamp(34px, 3.4vw, 48px);
    line-height: 1.05;
    margin-bottom: 0;
}

.about-longform-section__content {
    max-width: 760px;
    padding: 0;
}

.about-longform-section__content h2:first-child {
    display: none;
}

.about-longform-section__content h3 {
    font-size: 28px;
    margin-top: 0;
}

.about-longform-section__content p,
.about-longform-section__content li {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.72;
}

.about-longform-section__content a {
    color: var(--brand-orange);
    font-weight: 700;
}

.about-longform-section__media {
    grid-column: 1 / -1;
    height: 260px;
}

.about-longform-section__media img {
    filter: grayscale(1);
}

.about-cta {
    align-items: center;
    background: var(--ink-strong);
    color: var(--white);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin: 0 auto 54px;
    max-width: var(--max);
    padding: 54px 56px;
}

.about-cta h2,
.about-cta .eyebrow {
    color: var(--white);
}

.about-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 0;
    max-width: 820px;
}

.coaching-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 650px;
}

.coaching-hero__content {
    align-content: center;
    background: var(--surface);
    display: grid;
    padding: 78px 72px 78px max(48px, calc((100vw - var(--max)) / 2 + 24px));
}

.coaching-hero__content h1 {
    font-size: clamp(58px, 7vw, 100px);
    line-height: 0.92;
    margin-bottom: 28px;
}

.coaching-hero__content p:not(.eyebrow) {
    color: var(--muted);
    font-size: 22px;
    line-height: 1.65;
    max-width: 660px;
}

.coaching-hero__content .button {
    justify-self: start;
    margin-top: 18px;
}

.coaching-hero__media,
.coaching-intro__media {
    margin: 0;
    overflow: hidden;
}

.coaching-hero__media img,
.coaching-intro__media img {
    filter: grayscale(1);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.coaching-intro {
    display: block;
}

.coaching-intro__content {
    background: var(--surface);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    max-width: none;
    padding: 86px 72px 86px max(48px, calc((100vw - var(--max)) / 2 + 24px));
}

.coaching-intro__content h2 {
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.03;
    margin-bottom: 30px;
    max-width: 980px;
}

.coaching-intro__content p,
.coaching-intro__content li {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.74;
    max-width: 900px;
}

.coaching-intro__media {
    height: 100vh;
}

.coaching-intro__continuation {
    padding: 86px 72px 86px max(48px, calc((100vw - var(--max)) / 2 + 24px));
}

.coaching-intro__continuation p,
.coaching-intro__continuation li {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

.coaching-intro__continuation ul,
.coaching-intro__continuation ol {
    margin: 0 0 28px;
    padding-left: 1.2em;
}

.coaching-path {
    background: var(--ink-strong);
    color: var(--white);
    padding: 86px max(24px, calc((100vw - var(--max)) / 2 + 24px));
    scroll-margin-top: 180px;
}

.coaching-path__heading {
    max-width: 760px;
}

.coaching-path__heading h2,
.coaching-path__heading .eyebrow {
    color: var(--white);
}

.coaching-path__heading h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.02;
}

.coaching-path__grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 56px;
}

.coaching-path-card {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    display: grid;
    min-height: 300px;
    padding: 28px;
    text-decoration: none;
}

.coaching-path-card + .coaching-path-card {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.coaching-path-card span {
    color: var(--brand-orange);
    font-size: var(--text-eyebrow);
    font-weight: 700;
}

.coaching-path-card strong {
    align-self: end;
    font-size: 28px;
    line-height: 1.1;
}

.coaching-path-card p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.55;
    margin-bottom: 0;
}

.coaching-anchor-nav {
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 18px 24px;
    position: sticky;
    top: 96px;
    z-index: 10;
}

body.admin-bar .coaching-anchor-nav {
    top: 128px;
}

.coaching-anchor-nav a {
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 14px;
    text-decoration: none;
}

.coaching-anchor-nav a:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.coaching-section {
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(410px, 0.43fr) minmax(0, 0.57fr);
    padding: 90px max(24px, calc((100vw - var(--max)) / 2 + 24px));
    scroll-margin-top: 320px;
}

.coaching-section--tinted {
    background: var(--surface);
}

.coaching-section__marker {
    align-self: start;
    color: var(--brand-blue);
    display: grid;
    font-family: var(--font-display);
    gap: 18px;
    max-width: 440px;
    position: sticky;
    top: 240px;
}

.coaching-section__marker span {
    font-size: clamp(50px, 7vw, 86px);
    line-height: 0.9;
}

.coaching-section__marker h2 {
    color: var(--ink-strong);
    font-size: clamp(30px, 2.9vw, 40px);
    line-height: 1.06;
    margin: 0;
}

body.admin-bar .coaching-section {
    scroll-margin-top: 352px;
}

body.admin-bar .coaching-section__marker {
    top: 272px;
}

.coaching-section__content {
    max-width: 720px;
    padding: 0;
}

.coaching-section__content h3 {
    font-size: 30px;
    margin-top: 38px;
}

.coaching-section__content h3:first-child {
    margin-top: 0;
}

.coaching-section__content p,
.coaching-section__content li {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.72;
}

.coaching-section__content ul,
.coaching-section__content ol {
    padding-left: 22px;
}

.coaching-section__content table {
    background: var(--white);
    border: 1px solid var(--line);
    border-collapse: collapse;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    margin: 28px 0;
    overflow-x: auto;
    width: 100%;
}

.coaching-section__content td,
.coaching-section__content th {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    min-width: 155px;
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.coaching-section__content tr:nth-child(odd) td {
    background: rgba(244, 249, 251, 0.72);
}

.coaching-section__content th,
.coaching-section__content tr:first-child td {
    background: #f4f9fb;
    color: var(--ink-strong);
    font-size: var(--text-eyebrow);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.coaching-section__content table p,
.coaching-section__content table li {
    font-size: 14px;
    line-height: 1.5;
}

.coaching-section__content table p,
.coaching-section__content table ul,
.coaching-section__content table ol {
    margin-bottom: 0;
}

.coaching-section__content table ul,
.coaching-section__content table ol {
    padding-left: 18px;
}

.coaching-cta {
    align-items: center;
    background: var(--brand-blue);
    color: var(--white);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin: 0 auto 54px;
    max-width: var(--max);
    padding: 54px 56px;
}

.coaching-cta h2,
.coaching-cta .eyebrow {
    color: var(--white);
}

.coaching-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 0;
    max-width: 820px;
}

.tool-access {
    align-items: center;
    background: var(--ink-strong);
    color: var(--white);
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-top: 28px;
    padding: 42px;
}

.tool-access h2,
.tool-access .eyebrow {
    color: var(--white);
}

.tool-access h2 {
    font-size: 34px;
    margin-bottom: 0;
    max-width: 760px;
}

.tools-hero {
    align-items: center;
    background: var(--ink-strong);
    color: var(--white);
    display: flex;
    gap: 36px;
    justify-content: space-between;
    padding: 96px max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.tools-hero__content {
    max-width: 820px;
}

.tools-hero__content .eyebrow,
.tools-hero__content h1 {
    color: var(--white);
}

.tools-hero__content h1 {
    font-size: clamp(54px, 6.4vw, 92px);
    line-height: 0.96;
}

.tools-hero__content p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
    font-size: 21px;
    line-height: 1.65;
    max-width: 680px;
}

.tools-intro,
.tools-survey {
    display: grid;
    gap: 58px;
    grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
    padding: 88px max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.tools-intro__heading,
.tools-survey__heading {
    align-self: start;
    max-width: 400px;
    position: sticky;
    top: 150px;
}

body.admin-bar .tools-intro__heading,
body.admin-bar .tools-survey__heading {
    top: 182px;
}

.tools-intro__heading h2,
.tools-survey__heading h2 {
    font-size: clamp(34px, 3.8vw, 52px);
    line-height: 1.04;
}

.tools-intro__content,
.tools-survey__content {
    max-width: 760px;
    padding: 0;
}

.tools-intro__content p,
.tools-survey__content p {
    color: var(--muted);
    font-size: var(--text-lead);
    line-height: 1.75;
}

.tools-capabilities {
    background: var(--surface);
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 72px max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.tools-capabilities article {
    background: var(--white);
    border: 1px solid var(--line);
    display: grid;
    min-height: 300px;
    padding: 34px 30px;
}

.tools-capabilities h2 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.16;
}

.tools-capabilities p:not(.eyebrow) {
    align-self: end;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 0;
}

.tools-survey {
    background: var(--white);
}

.client-showcase {
    display: grid;
    gap: 46px;
    grid-template-columns: minmax(260px, 0.38fr) 1fr;
    padding-bottom: 74px;
    padding-top: 74px;
}

.client-showcase__intro {
    align-self: start;
    position: sticky;
    top: 154px;
}

body.admin-bar .client-showcase__intro {
    top: 186px;
}

.client-showcase__intro h2 {
    font-size: 34px;
}

.client-showcase__stat {
    border-top: 1px solid var(--line);
    margin-top: 28px;
    padding-top: 24px;
}

.client-showcase__stat strong {
    color: var(--brand-orange);
    display: block;
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
}

.client-showcase__stat span {
    color: var(--muted);
    display: block;
    font-size: 14px;
    line-height: 1.45;
    margin-top: 8px;
}

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

.client-grid__item {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    min-height: 122px;
    padding: 18px;
    text-align: center;
}

.client-grid__item img {
    max-height: 54px;
    object-fit: contain;
}

.client-grid__item figcaption {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.3;
    margin-top: 12px;
}

.updates-showcase {
    padding-bottom: 74px;
    padding-top: 74px;
}

.updates-showcase__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 26px;
}

.news-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.news-card a {
    color: var(--brand-orange);
    font-weight: 700;
    margin-top: auto;
    text-decoration: none;
}

.news-card a:hover {
    text-decoration: underline;
}

.story-hero {
    background: var(--surface);
}

.story-hero__inner {
    margin: 0 auto;
    max-width: 920px;
    padding: 86px 24px 78px;
}

.story-hero h1 {
    margin-bottom: 24px;
}

.story-hero p:not(.eyebrow) {
    color: var(--muted);
    font-size: var(--text-lead);
    line-height: 1.7;
    max-width: 760px;
}

.story-back {
    color: var(--brand-orange);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    text-decoration: none;
}

.story-back:hover {
    text-decoration: underline;
}

.story-image-full {
    margin: 0;
    width: 100%;
}

.story-image-full img {
    filter: grayscale(1);
    height: min(68vh, 680px);
    min-height: 420px;
    object-fit: cover;
    width: 100%;
}

.story-content-shell {
    margin: 0 auto;
    max-width: 850px;
    padding: 78px 24px 34px;
}

.story-content {
    font-size: var(--text-lead);
    line-height: 1.75;
}

.story-content > p:first-child {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.35;
}

.story-resource {
    margin-top: 34px;
}

.story-cta {
    margin-top: 58px;
}

.contact-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(240px, 0.44fr) 1fr;
    padding: 32px;
}

.contact-panel h2,
.contact-panel > p:not(:has(iframe)) {
    grid-column: 1;
}

.contact-panel h2 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
}

.contact-panel > p:has(iframe) {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
}

.contact-panel iframe {
    border: 0;
    border-radius: 8px;
    height: 360px;
    width: 100%;
}

.contact-hero {
    background: var(--surface);
    padding: 82px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 54px;
}

.contact-hero h1 {
    font-size: var(--text-page-title);
    line-height: 1;
}

.contact-hero p:not(.eyebrow) {
    color: var(--muted);
    font-size: var(--text-lead);
    line-height: 1.7;
    max-width: 760px;
}

.contact-main {
    background: var(--white);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
    padding: 52px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 88px;
}

.contact-main__details,
.contact-form {
    border: 1px solid var(--line);
    padding: 42px;
}

.contact-main__details {
    background: var(--surface);
    display: grid;
    gap: 28px;
}

.contact-main__details h2 {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
}

.contact-main__details p {
    color: var(--ink);
    font-size: var(--text-lead);
    line-height: 1.75;
}

.contact-main__details a {
    color: var(--brand-blue);
    font-weight: 700;
}

.contact-main__map iframe {
    border: 0;
    display: block;
    height: 320px;
    width: 100%;
}

.contact-form {
    background: var(--ink-strong);
    color: var(--white);
    display: grid;
    gap: 18px;
}

.contact-form__heading .eyebrow,
.contact-form__heading h2 {
    color: var(--white);
}

.contact-form__heading h2 {
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.05;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label span {
    font-size: var(--text-eyebrow);
    font-weight: 700;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid transparent;
    color: var(--ink);
    font: inherit;
    padding: 13px 14px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .button {
    justify-self: start;
    margin-top: 8px;
}

.related-services {
    padding-top: 48px;
}

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

.related-card span {
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.related-card strong {
    color: var(--ink-strong);
    font-size: var(--text-lead);
    line-height: 1.25;
}

.archive-page {
    min-height: 56vh;
}

.site-footer {
    background: var(--surface);
    margin-top: 84px;
}

.site-footer__inner {
    display: grid;
    gap: 56px;
    grid-template-columns: 1.4fr 1fr 1fr;
    margin: 0 auto;
    max-width: var(--max);
    padding: 64px 24px;
}

.footer-intro h2,
.footer-nav h2 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-intro p {
    color: var(--muted);
    max-width: 420px;
}

.footer-link,
.footer-nav a,
.footer-bottom a {
    color: var(--brand-orange);
    font-weight: 700;
    text-decoration: none;
}

.footer-link:hover,
.footer-nav a:hover,
.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-nav__list {
    display: grid;
    gap: 10px;
}

.footer-nav a {
    color: var(--ink);
    font-size: 15px;
}

.footer-bottom {
    background: var(--white);
    border-top: 1px solid var(--line);
}

.footer-bottom__inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--max);
    padding: 18px 24px;
}

.footer-bottom p {
    color: var(--muted);
    font-size: var(--text-eyebrow);
    margin: 0;
}

.footer-badges {
    align-items: center;
    display: flex;
    gap: 24px;
}

.footer-badges img {
    max-height: 44px;
    object-fit: contain;
}

@media (max-width: 1180px) {
    .about-longform-section {
        grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
    }

    .about-longform-section__heading {
        max-width: 320px;
    }

    .about-longform-section__heading h2 {
        font-size: clamp(32px, 3.2vw, 40px);
    }

    .coaching-section {
        grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
    }

    .coaching-section__marker {
        max-width: 380px;
    }

    .coaching-section__marker h2 {
        font-size: clamp(29px, 3vw, 36px);
    }
}

@media (max-width: 1040px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 36px;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .primary-nav {
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav__list {
        align-items: stretch;
        border-top: 1px solid var(--line);
        display: grid;
        gap: 0;
        padding-top: 12px;
    }

    .primary-nav a {
        display: block;
        padding: 12px 0;
    }

    .hero,
    .page-hero,
    .about-hero,
    .about-split,
    .about-principle,
    .about-longform-section,
    .coaching-hero,
    .coaching-intro,
    .coaching-section,
    .tools-intro,
    .tools-survey,
    .contact-main {
        grid-template-columns: 1fr;
    }

    .hero__content,
    .page-hero__content,
    .about-hero__panel,
    .about-split__content,
    .about-principle__content,
    .about-longform-section__content,
    .coaching-hero__content,
    .coaching-intro__content,
    .coaching-intro__continuation {
        padding: 58px 24px;
    }

    .hero__media,
    .page-hero__media,
    .about-split__media,
    .about-principle__visual,
    .about-longform-section__media,
    .coaching-hero__media {
        min-height: 360px;
        order: -1;
    }

    .about-hero__media {
        min-height: 360px;
    }

    .coaching-intro__media {
        min-height: 360px;
        order: 0;
    }

    .about-principle--reverse .about-principle__visual {
        order: -1;
    }

    .about-anchor-nav {
        justify-content: flex-start;
        overflow-x: auto;
        position: static;
    }

    .coaching-anchor-nav {
        justify-content: flex-start;
        overflow-x: auto;
        position: static;
    }

    .coaching-path__grid {
        grid-template-columns: 1fr;
    }

    .coaching-path-card + .coaching-path-card {
        border-left: 0;
    }

    .coaching-section {
        gap: 28px;
        padding: 68px 24px;
    }

    .coaching-section__marker {
        max-width: none;
        position: static;
    }

    .coaching-section__marker span {
        font-size: 48px;
    }

    .coaching-section__marker h2 {
        font-size: 34px;
    }

    .about-longform-section__heading {
        position: static;
    }

    .tools-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 72px 24px;
    }

    .tools-intro,
    .tools-survey {
        gap: 28px;
        padding: 68px 24px;
    }

    .tools-intro__heading,
    .tools-survey__heading {
        max-width: none;
        position: static;
    }

    .tools-capabilities {
        grid-template-columns: 1fr;
        padding: 48px 24px;
    }

    .tools-capabilities article,
    .tools-capabilities article:last-child {
        border: 1px solid var(--line);
        min-height: 0;
        padding: 28px;
    }

    .contact-hero {
        padding: 58px 24px 38px;
    }

    .contact-main {
        padding: 36px 24px 68px;
    }

    .contact-main__details,
    .contact-form {
        padding: 30px 24px;
    }

    .trust-band__inner,
    .diagnostic__panel,
    .outcomes__grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

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

    .diagnostic__panel > div + div,
    .outcome + .outcome {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .outcome {
        padding: 34px 0;
    }

    .services__grid,
    .updates__grid,
    .related-services__grid,
    .detail-strip,
    .updates-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-showcase {
        grid-template-columns: 1fr;
    }

    .client-showcase__intro {
        position: static;
    }

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

    .feature-visual__quote {
        bottom: 44px;
        left: 48px;
        right: 48px;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    body.admin-bar .site-header {
        top: 0;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 31px;
    }

    h3 {
        font-size: 23px;
    }

    .site-header__inner {
        gap: 14px;
        min-height: 82px;
        padding: 12px 16px;
    }

    .brand__symbol {
        height: 42px;
        width: 42px;
    }

    .brand__text {
        font-size: 14px;
    }

    .hero {
        min-height: 0;
    }

    .hero__content {
        padding: 42px 18px 50px;
    }

    .hero__media {
        min-height: 280px;
    }

    .hero__lead,
    .page-hero__content p:not(.eyebrow) {
        font-size: 18px;
    }

    .button,
    .hero__actions {
        width: 100%;
    }

    .trust-band__inner,
    .section-pad,
    .page-content-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

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

    .section-pad {
        padding-bottom: 68px;
        padding-top: 68px;
    }

    .section-heading--split,
    .closing-cta,
    .about-cta,
    .coaching-cta,
    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .diagnostic__panel > div {
        padding: 28px 22px;
    }

    .services__grid,
    .updates__grid,
    .related-services__grid,
    .detail-strip,
    .updates-showcase__grid,
    .client-grid {
        grid-template-columns: 1fr;
    }

    .tool-access,
    .contact-panel,
    .section-index {
        display: flex;
        flex-direction: column;
    }

    .section-index__links {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .tool-access {
        align-items: flex-start;
        margin-left: 18px;
        margin-right: 18px;
        padding: 30px 24px;
    }

    .tool-access h2 {
        font-size: 28px;
    }

    .story-hero__inner {
        padding: 54px 18px 48px;
    }

    .story-hero p:not(.eyebrow) {
        font-size: 18px;
    }

    .story-image-full img {
        height: 360px;
        min-height: 360px;
    }

    .story-content-shell {
        padding: 48px 18px 20px;
    }

    .story-content,
    .story-content > p:first-child {
        font-size: 18px;
        line-height: 1.7;
    }

    .contact-panel {
        padding: 22px;
    }

    .contact-panel iframe {
        min-height: 300px;
    }

    .feature-visual {
        padding: 42px 18px 0;
    }

    .feature-visual figure {
        border-width: 8px;
    }

    .feature-visual__quote {
        bottom: auto;
        left: auto;
        margin-top: -4px;
        max-width: none;
        padding: 24px;
        position: relative;
        right: auto;
    }

    .feature-visual__quote p {
        font-size: 23px;
    }

    .closing-cta {
        margin-left: 18px;
        margin-right: 18px;
        padding: 34px 24px;
    }

    .closing-cta h2 {
        font-size: 30px;
    }

    .page-hero__content,
    .page-hero--plain .page-hero__content {
        padding: 42px 18px;
    }

    .page-hero__media {
        min-height: 260px;
    }

    .site-footer {
        margin-top: 56px;
    }

    .site-footer__inner {
        gap: 32px;
        padding: 44px 18px;
    }
}
