/*
Theme Name: YMQ Cinematic
Theme URI: https://ymqservices.com/
Author: YMQ Services
Description: A cinematic, motion-led WordPress theme for YMQ Services.
Version: 3.0.3
Requires at least: 6.5
Requires PHP: 8.1
Text Domain: ymq-cinematic
*/

:root {
    --ymq-navy: #13255b;
    --ymq-indigo: #0e0f53;
    --ymq-orange: #f86522;
    --ymq-orange-dark: #c8440c;
    --ymq-steel: #6a7d9e;
    --ymq-sky: #6ec1e4;
    --ymq-white: #ffffff;
    --ymq-canvas: #e3e6ed;
    --ymq-ink: #1d1a4e;
    --ymq-body: #616670;
    --ymq-muted: #a5aec2;
    --ymq-border: #b9beca;
    --display: "Bebas Neue", "Arial Narrow", sans-serif;
    --sans: "Inter", Arial, sans-serif;
    --header-height: 92px;
    --gutter: clamp(22px, 4vw, 70px);
    --section-space: clamp(88px, 11vw, 190px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ymq-indigo);
}

body {
    margin: 0;
    color: var(--ymq-body);
    background: var(--ymq-canvas);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body.menu-open,
body.is-loading {
    overflow: hidden;
}

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

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

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

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

button,
input,
textarea {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
}

::selection {
    color: var(--ymq-white);
    background: var(--ymq-orange);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--ymq-white);
    background: var(--ymq-indigo);
    border: 1px solid var(--ymq-orange);
    transform: translateY(-160%);
}

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

.wrap {
    width: min(100%, 1600px);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.site-loader {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 26px;
    padding: var(--gutter);
    color: var(--ymq-white);
    background: var(--ymq-indigo);
    transition: visibility 0s linear 900ms, opacity 600ms ease 300ms;
}

.site-loader.is-complete {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.site-loader__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.site-loader__brand {
    font-family: var(--display);
    font-size: clamp(80px, 15vw, 260px);
    line-height: 0.74;
    letter-spacing: -0.02em;
}

.site-loader__count {
    color: var(--ymq-orange);
    font-family: var(--display);
    font-size: clamp(42px, 6vw, 100px);
    line-height: 0.8;
}

.site-loader__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.site-loader__line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--ymq-orange);
    transition: width 80ms linear;
}

.site-loader p {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.cursor {
    position: fixed;
    z-index: 4000;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    mix-blend-mode: difference;
    transition: width 200ms ease, height 200ms ease, opacity 200ms ease;
}

.cursor span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ymq-white);
    transform: translate(-50%, -50%);
}

.cursor.is-visible {
    opacity: 1;
}

.cursor.is-active {
    width: 58px;
    height: 58px;
}

.page-progress {
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    pointer-events: none;
}

.page-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--ymq-orange);
    transition: width 90ms linear;
}

html.is-scroll-transitioning .page-progress span {
    transition: none;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    align-items: center;
    width: 100%;
    height: var(--header-height);
    padding: 0 var(--gutter);
    color: var(--ymq-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: height 300ms ease, color 300ms ease, background 300ms ease, border-color 300ms ease;
}

.site-header::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: 0;
    background: rgba(8, 12, 40, 0.9);
    backdrop-filter: blur(18px);
    transition: opacity 300ms ease;
}

.site-header.is-compact {
    height: 72px;
}

.site-header.is-compact::before {
    opacity: 1;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    justify-self: start;
    gap: 9px;
    line-height: 1;
}

.brand__mark {
    font-family: var(--display);
    font-size: 36px;
    letter-spacing: 0.02em;
}

.brand__descriptor {
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.custom-logo-link {
    display: block;
}

.custom-logo {
    width: auto;
    max-height: 42px;
}

.site-nav {
    justify-self: center;
}

.site-nav__list,
.site-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 50px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    position: relative;
    display: block;
    padding: 12px 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--ymq-orange);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 260ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.site-nav li {
    position: relative;
}

.site-nav .sub-menu {
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    display: grid;
    visibility: hidden;
    gap: 0;
    width: 290px;
    padding: 12px 0;
    opacity: 0;
    background: rgba(8, 12, 52, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    transform: translate(-50%, 12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.site-nav .sub-menu a {
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.45;
}

.site-nav .sub-menu a::after {
    display: none;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible {
    color: var(--ymq-white);
    background: rgba(248, 101, 34, 0.13);
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
    transition-delay: 0s;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 26px;
    min-width: 132px;
    padding: 12px 16px;
    border: 1px solid var(--ymq-orange);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 220ms ease, background 220ms ease;
}

.header-contact:hover,
.header-contact:focus-visible {
    color: var(--ymq-indigo);
    background: var(--ymq-orange);
}

.header-contact b {
    font-size: 14px;
    font-weight: 400;
}

.menu-toggle {
    display: none;
}

.submenu-toggle,
.site-nav > .site-nav__mobile-contact {
    display: none;
}

.chapter {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.chapter--dark {
    color: var(--ymq-white);
    background: var(--ymq-indigo);
}

.chapter--light {
    color: var(--ymq-ink);
    background: var(--ymq-canvas);
}

.chapter__media {
    position: absolute;
    z-index: 0;
    inset: -6%;
    width: 112%;
    height: 112%;
    max-width: none;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.08);
    transform: scale(1.04);
    will-change: transform;
}

.chapter__shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 12, 31, 0.95) 0%, rgba(5, 14, 39, 0.68) 48%, rgba(4, 10, 29, 0.2) 77%),
        linear-gradient(0deg, rgba(4, 9, 27, 0.78) 0%, transparent 44%);
}

.chapter__shade--strong {
    background:
        linear-gradient(90deg, rgba(8, 11, 53, 0.93), rgba(7, 12, 45, 0.58)),
        linear-gradient(0deg, rgba(7, 10, 45, 0.85), transparent 58%);
}

.ambient-grid {
    position: absolute;
    z-index: 2;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 8vw 8vw;
    mask-image: linear-gradient(90deg, black, transparent 66%);
}

.chapter-marker {
    position: absolute;
    z-index: 8;
    top: 50%;
    left: 19px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--display);
    font-size: 15px;
    letter-spacing: 0.12em;
    transform: translateY(-50%) rotate(-90deg);
}

.chapter-marker i {
    width: 54px;
    height: 1px;
    background: var(--ymq-orange);
}

.display {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 0.88;
    text-transform: uppercase;
}

.display--hero {
    max-width: 980px;
    font-size: clamp(76px, 10vw, 174px);
}

.display--section {
    max-width: 1180px;
    font-size: clamp(64px, 8.5vw, 145px);
}

.display--contact {
    max-width: 1280px;
    font-size: clamp(72px, 9vw, 162px);
}

.display--hero.copy-scale-medium {
    font-size: clamp(72px, 8.8vw, 148px);
}

.display--hero.copy-scale-long {
    font-size: clamp(66px, 7.6vw, 126px);
}

.display--section.copy-scale-medium,
.display--contact.copy-scale-medium {
    font-size: clamp(58px, 7.1vw, 118px);
}

.display--section.copy-scale-long,
.display--contact.copy-scale-long {
    font-size: clamp(52px, 6vw, 98px);
    line-height: 0.92;
}

.split-heading .word {
    display: inline-block;
    overflow: hidden;
    margin-right: 0.16em;
    padding-bottom: 0.08em;
    vertical-align: top;
}

.split-heading .word > span {
    display: inline-block;
    transform: translateY(112%);
    transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.split-heading.is-visible .word > span {
    transform: translateY(0);
}

.split-heading .word:nth-child(2) > span {
    transition-delay: 50ms;
}

.split-heading .word:nth-child(3) > span {
    transition-delay: 100ms;
}

.split-heading .word:nth-child(4) > span {
    transition-delay: 150ms;
}

.split-heading .word:nth-child(5) > span {
    transition-delay: 200ms;
}

.split-heading .word:nth-child(6) > span {
    transition-delay: 250ms;
}

.split-heading .word:nth-child(7) > span {
    transition-delay: 300ms;
}

.split-heading .word:nth-child(8) > span {
    transition-delay: 350ms;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 700ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow,
.section-code {
    margin: 0 0 clamp(24px, 3.2vw, 54px);
    color: var(--ymq-orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.hero {
    display: flex;
    align-items: flex-end;
    min-height: max(740px, 100svh);
    padding: calc(var(--header-height) + 70px) 0 clamp(98px, 10vh, 145px);
}

.hero__media {
    object-position: 58% center;
}

.hero__content {
    position: relative;
    z-index: 4;
}

.hero__support {
    display: grid;
    grid-template-columns: minmax(260px, 520px) auto;
    align-items: end;
    gap: 42px;
    margin-top: 34px;
    padding-left: min(17vw, 260px);
}

.hero__support > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.75;
}

.action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    width: fit-content;
    min-width: 220px;
    min-height: 58px;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.action--solid {
    color: var(--ymq-white);
    background: var(--ymq-orange);
}

.action--solid:hover,
.action--solid:focus-visible {
    color: var(--ymq-indigo);
    background: var(--ymq-white);
    transform: translateY(-3px);
}

.action b {
    font-size: 18px;
    font-weight: 400;
}

.hero__foot {
    position: absolute;
    z-index: 4;
    right: var(--gutter);
    bottom: 30px;
    left: var(--gutter);
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero__foot i {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.section-heading {
    padding-top: var(--section-space);
}

.services-section {
    padding-bottom: var(--section-space);
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(380px, 0.9fr) minmax(480px, 1.1fr);
    gap: clamp(50px, 7vw, 120px);
    align-items: start;
    margin-top: clamp(65px, 8vw, 130px);
}

.service-list {
    border-top: 1px solid rgba(29, 26, 78, 0.22);
}

.service-item {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr 22px;
    gap: 20px;
    align-items: center;
    width: 100%;
    min-height: 82px;
    padding: 12px 4px;
    overflow: hidden;
    color: var(--ymq-ink);
    background: transparent;
    border-bottom: 1px solid rgba(29, 26, 78, 0.22);
    text-align: left;
    cursor: pointer;
}

.service-item::before {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--ymq-indigo);
    transform: translateX(-101%);
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item > * {
    position: relative;
    z-index: 1;
}

.service-item > span {
    color: var(--ymq-muted);
    font-size: 10px;
    letter-spacing: 0.18em;
}

.service-item strong {
    font-family: var(--display);
    font-size: clamp(28px, 2.7vw, 46px);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
}

.service-item b {
    color: var(--ymq-orange);
    font-size: 18px;
    font-weight: 400;
    opacity: 0;
    transform: translate(-12px, 12px);
    transition: opacity 240ms ease, transform 320ms ease;
}

.service-item:hover,
.service-item:focus-visible,
.service-item.is-active {
    color: var(--ymq-white);
    padding-inline: 18px;
}

.service-item:hover::before,
.service-item:focus-visible::before,
.service-item.is-active::before {
    transform: translateX(0);
}

.service-item:hover b,
.service-item:focus-visible b,
.service-item.is-active b {
    opacity: 1;
    transform: translate(0);
}

.service-stage {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    height: min(70vh, 760px);
    min-height: 560px;
    overflow: hidden;
    color: var(--ymq-white);
    background: var(--ymq-indigo);
}

.service-stage img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    filter: saturate(0.75) contrast(1.08);
    transition: opacity 360ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-stage.is-changing img {
    opacity: 0.2;
    transform: scale(1.08);
}

.service-stage__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 10, 47, 0.92), rgba(7, 15, 41, 0.08) 70%);
}

.service-stage > p {
    position: absolute;
    top: 24px;
    right: 24px;
    margin: 0;
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: 0.12em;
}

.service-stage__copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(28px, 5vw, 68px);
}

.service-stage__copy span {
    display: block;
    margin-bottom: 16px;
    color: var(--ymq-orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.service-stage__copy p {
    max-width: 660px;
    margin: 0;
    font-size: clamp(17px, 1.55vw, 24px);
    line-height: 1.55;
}

.service-stage__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--ymq-orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-stage__link b {
    color: var(--ymq-orange);
    font-size: 14px;
    font-weight: 400;
}

.about-section {
    display: grid;
    grid-template-columns: minmax(420px, 1.04fr) minmax(420px, 0.96fr);
    min-height: 100svh;
}

.about-section__image {
    min-height: 720px;
    overflow: hidden;
}

.about-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.06);
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section__image.is-visible img {
    transform: scale(1.025);
}

.about-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--section-space) var(--gutter);
    background:
        radial-gradient(circle at 90% 10%, rgba(110, 193, 228, 0.12), transparent 28%),
        var(--ymq-indigo);
}

.about-section__copy {
    max-width: 630px;
    margin: 34px 0 42px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(16px, 1.5vw, 23px);
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--ymq-orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.text-link b {
    color: var(--ymq-orange);
    font-size: 16px;
    font-weight: 400;
}

.strengths-section {
    display: flex;
    align-items: center;
    padding: var(--section-space) 0;
}

.strengths-section__inner {
    position: relative;
    z-index: 3;
}

.strength-lines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 54px;
    margin-top: clamp(70px, 9vw, 140px);
}

.strength-line {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    align-items: end;
    min-height: 92px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.strength-line span {
    color: var(--ymq-orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.strength-line strong {
    font-family: var(--display);
    font-size: clamp(27px, 2.7vw, 44px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}

.strength-line i {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: var(--ymq-orange);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 250ms;
}

.strength-line.is-visible i {
    transform: scaleX(1);
}

.team-section {
    padding-top: var(--section-space);
}

.team-section__heading {
    display: grid;
    grid-template-columns: minmax(500px, 1.3fr) minmax(280px, 0.7fr);
    gap: 70px;
    align-items: end;
}

.team-section__heading > p {
    margin: 0 0 12px;
    color: var(--ymq-body);
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.7;
}

.team-canvas {
    position: relative;
    height: min(78vh, 860px);
    min-height: 600px;
    margin-top: clamp(65px, 8vw, 125px);
    overflow: hidden;
    color: var(--ymq-white);
    background: var(--ymq-indigo);
}

.team-canvas::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(9, 12, 54, 0.78), transparent 55%);
}

.team-canvas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    filter: saturate(0.72) contrast(1.06);
}

.team-canvas__label {
    position: absolute;
    z-index: 2;
    right: var(--gutter);
    bottom: 42px;
    left: var(--gutter);
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.process-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: var(--ymq-white);
    background: var(--ymq-indigo);
}

.process-step {
    position: relative;
    min-height: 260px;
    padding: 38px var(--gutter) 46px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.process-step::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    content: "";
    background: var(--ymq-orange);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 200ms;
}

.process-step.is-visible::after {
    transform: scaleX(1);
}

.process-step span {
    display: block;
    color: var(--ymq-orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.process-step strong {
    position: absolute;
    bottom: 42px;
    left: var(--gutter);
    font-family: var(--display);
    font-size: clamp(48px, 5.2vw, 86px);
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
}

.contact-section {
    display: flex;
    min-height: 100svh;
    padding: var(--section-space) 0 0;
}

.contact-orbit {
    position: absolute;
    z-index: 2;
    top: 5%;
    right: -12vw;
    width: min(58vw, 900px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
    position: absolute;
    inset: 13%;
    content: "";
    border: 1px solid rgba(248, 101, 34, 0.28);
    border-radius: 50%;
}

.contact-orbit::after {
    inset: 32%;
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-section__inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.contact-section__lead {
    max-width: 630px;
    margin: 34px 0 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 1.5vw, 23px);
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(560px, 1.3fr);
    gap: clamp(70px, 10vw, 170px);
    margin-top: clamp(80px, 10vw, 150px);
    padding-bottom: var(--section-space);
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-details > span {
    margin-bottom: 22px;
    color: var(--ymq-orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-details a {
    position: relative;
    padding-bottom: 7px;
    font-family: var(--display);
    font-size: clamp(30px, 3.2vw, 54px);
    line-height: 1;
}

.contact-details a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background: var(--ymq-orange);
}

.contact-details p {
    margin: auto 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 34px;
}

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

.contact-form label > span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 0 15px;
    color: var(--ymq-white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 0;
    outline: 0;
    transition: border-color 220ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--ymq-orange);
}

.contact-form__message,
.contact-form .action,
.form-status {
    grid-column: 1 / -1;
}

.contact-form .action {
    margin-top: 8px;
}

.form-status {
    margin: 0;
    color: #ffb69a;
    font-size: 13px;
}

.form-status--success {
    color: #a9e4c4;
}

.form-status a {
    text-decoration: underline;
}

.contact-form__trap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.contact-form [aria-disabled="true"] {
    cursor: wait;
    opacity: 0.72;
    pointer-events: none;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 34px;
    align-items: center;
    padding: 38px var(--gutter);
    color: rgba(255, 255, 255, 0.68);
    background: #090b3d;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.site-footer__brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-self: start;
}

.site-footer__brand strong {
    color: var(--ymq-white);
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0;
}

.site-footer > p {
    margin: 0;
}

.site-footer nav {
    display: flex;
    justify-self: end;
    gap: 28px;
}

.site-footer__legal {
    grid-column: 1 / -1;
    justify-self: center;
    opacity: 0.62;
}

.content-shell {
    min-height: 100svh;
    padding: calc(var(--header-height) + 90px) var(--gutter) var(--section-space);
    color: var(--ymq-ink);
    background: var(--ymq-canvas);
}

.content-shell__header {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.content-shell__posts,
.content-entry__body {
    max-width: 900px;
    margin: 0 auto;
}

.content-entry__body {
    font-size: 18px;
    line-height: 1.8;
}

.post-card {
    padding: 38px 0;
    border-top: 1px solid var(--ymq-border);
}

.post-card h2 {
    margin: 6px 0 20px;
    font-family: var(--display);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.post-card > p:first-child {
    margin: 0;
    color: var(--ymq-orange-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.content-shell--centered {
    display: grid;
    place-content: center;
    justify-items: start;
}

.content-shell--centered > p {
    max-width: 620px;
    font-size: 19px;
}

.blog-index {
    display: flex;
    align-items: center;
}

.blog-index__inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.62fr) minmax(620px, 1.38fr);
    gap: clamp(56px, 8vw, 128px);
    align-items: center;
    width: 100%;
}

.blog-index__heading .display {
    max-width: 480px;
    margin-top: 22px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
}

.blog-card {
    min-width: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(29, 26, 78, 0.2);
}

.blog-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #d8dbe5;
}

.blog-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 48%, rgba(9, 13, 49, 0.48));
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.76) contrast(1.06);
    transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 320ms ease;
}

.blog-card:hover .blog-card__media img,
.blog-card:focus-within .blog-card__media img {
    transform: scale(1.045);
    filter: saturate(1) contrast(1.04);
}

.blog-card__media > span {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: var(--ymq-white);
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 50%;
}

.blog-card__body > p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 16px 0 12px;
    color: var(--ymq-orange-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(29px, 2.5vw, 42px);
    font-weight: 400;
    line-height: 0.96;
    text-transform: uppercase;
}

.blog-card__excerpt {
    margin-top: 13px;
    color: var(--ymq-body);
    font-size: 13px;
    line-height: 1.58;
}

.blog-card__excerpt p {
    margin: 0;
}

.blog-grid .navigation {
    grid-column: 1 / -1;
}

.blog-empty {
    align-self: center;
    max-width: 720px;
    padding: 36px 0;
    border-block: 1px solid rgba(29, 26, 78, 0.2);
}

.blog-empty h3 {
    margin: 22px 0 30px;
    font-family: var(--display);
    font-size: clamp(38px, 4vw, 66px);
    font-weight: 400;
    line-height: 0.98;
    text-transform: uppercase;
}

.interior-main {
    background: var(--ymq-canvas);
}

.interior-screen {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.interior-hero {
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + 70px) 0 clamp(90px, 12vh, 150px);
}

.interior-hero__content {
    position: relative;
    z-index: 4;
}

.interior-breadcrumb {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: clamp(32px, 5vh, 60px);
    color: rgba(255, 255, 255, 0.56);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.interior-breadcrumb i {
    width: 32px;
    height: 1px;
    background: var(--ymq-orange);
}

.display--interior {
    max-width: 1250px;
    font-size: clamp(78px, 10.2vw, 174px);
}

.display--interior.copy-scale-medium {
    font-size: clamp(70px, 8.2vw, 138px);
}

.display--interior.copy-scale-long {
    font-size: clamp(62px, 6.8vw, 112px);
    line-height: 0.92;
}

.interior-hero__copy {
    max-width: 650px;
    margin: 32px 0 0 auto;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(16px, 1.45vw, 22px);
    line-height: 1.7;
}

.interior-next {
    position: absolute;
    z-index: 5;
    right: var(--gutter);
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.interior-next b {
    color: var(--ymq-orange);
    font-size: 17px;
    font-weight: 400;
}

.interior-section {
    display: flex;
    align-items: center;
    padding: var(--section-space) 0;
}

.interior-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    padding: 0;
}

.interior-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--section-space) var(--gutter);
}

.interior-split__content .display--section {
    max-width: 760px;
    font-size: clamp(62px, 7.2vw, 118px);
}

.interior-split__media {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    color: var(--ymq-white);
    background: var(--ymq-indigo);
}

.interior-split__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(8, 12, 52, 0.74), transparent 52%);
}

.interior-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.06);
}

.interior-split__media > span {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 30px;
    left: 34px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.editorial-copy {
    max-width: 640px;
    margin-top: 34px;
}

.editorial-copy p {
    margin: 0;
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.75;
}

.editorial-copy p + p {
    margin-top: 18px;
}

.principles-section,
.service-method {
    display: flex;
    align-items: center;
}

.principles-section__inner,
.service-method__inner {
    position: relative;
    z-index: 3;
}

.editorial-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: clamp(62px, 8vw, 110px);
}

.editorial-list article {
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.editorial-list span,
.strengths-detail__grid span,
.service-outcomes__grid span {
    color: var(--ymq-orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.editorial-list h3,
.strengths-detail__grid h3,
.service-outcomes__grid h3 {
    margin: 28px 0 13px;
    font-family: var(--display);
    font-size: clamp(32px, 3vw, 50px);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.editorial-list p,
.strengths-detail__grid p,
.service-outcomes__grid p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.65;
}

.interior-cta {
    display: flex;
    align-items: center;
}

.interior-cta__content {
    position: relative;
    z-index: 3;
}

.interior-cta__content > p:not(.section-code) {
    max-width: 620px;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.7;
}

.service-directory__inner,
.strengths-detail__inner,
.service-outcomes__inner {
    width: 100%;
}

.service-directory__heading {
    display: grid;
    grid-template-columns: minmax(440px, 1.1fr) minmax(520px, 0.9fr);
    align-items: end;
    gap: 70px;
}

.service-directory__heading .section-code {
    align-self: start;
}

.service-directory__heading .display--section {
    font-size: clamp(60px, 6vw, 96px);
}

.service-directory__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 44px;
    margin-top: 54px;
}

.service-directory__item {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(180px, 0.8fr) minmax(200px, 1.2fr) 20px;
    gap: 16px;
    align-items: center;
    min-height: 92px;
    padding: 14px 0;
    border-top: 1px solid rgba(29, 26, 78, 0.22);
}

.service-directory__item > span {
    color: var(--ymq-orange-dark);
    font-size: 9px;
    font-weight: 700;
}

.service-directory__item strong {
    font-family: var(--display);
    font-size: clamp(27px, 2.3vw, 39px);
    font-weight: 400;
    line-height: 0.96;
    text-transform: uppercase;
}

.service-directory__item p {
    margin: 0;
    color: var(--ymq-body);
    font-size: 12px;
    line-height: 1.55;
}

.service-directory__item b {
    color: var(--ymq-orange);
    font-size: 18px;
    font-weight: 400;
    transition: transform 220ms ease;
}

.service-directory__item:hover b,
.service-directory__item:focus-visible b {
    transform: translate(5px, -5px);
}

.strengths-detail__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 42px;
    margin-top: clamp(52px, 7vw, 96px);
}

.strengths-detail__grid article {
    min-height: 190px;
    padding: 24px 0;
    border-top: 1px solid rgba(29, 26, 78, 0.22);
}

.strengths-detail__grid h3 {
    color: var(--ymq-ink);
}

.strengths-detail__grid p {
    color: var(--ymq-body);
}

.contact-page-section__inner {
    display: grid;
    grid-template-columns: minmax(360px, 0.85fr) minmax(540px, 1.15fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: center;
    width: 100%;
}

.contact-page-section__intro > p:not(.section-code) {
    max-width: 570px;
    margin: 30px 0;
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.7;
}

.contact-form--light label > span {
    color: var(--ymq-body);
}

.contact-form--light input,
.contact-form--light textarea {
    color: var(--ymq-ink);
    border-bottom-color: rgba(29, 26, 78, 0.3);
}

.contact-form--light input:focus,
.contact-form--light textarea:focus {
    border-bottom-color: var(--ymq-orange);
}

.contact-form--light .form-status--success {
    color: #1c7648;
}

.contact-form--light .form-status {
    color: var(--ymq-orange-dark);
}

.service-outcomes__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: clamp(60px, 8vw, 110px);
}

.service-outcomes__grid article {
    min-height: 250px;
    padding: 28px 0;
    border-top: 1px solid rgba(29, 26, 78, 0.24);
}

.service-outcomes__grid h3 {
    color: var(--ymq-ink);
}

.service-outcomes__grid p {
    color: var(--ymq-body);
}

.service-method__inner > p:not(.section-code) {
    max-width: 610px;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.7;
}

@media (min-width: 1101px) {
    .home .chapter {
        height: 100svh;
        min-height: 100svh;
        max-height: 100svh;
    }

    .home .hero {
        min-height: 100svh;
        padding-top: calc(var(--header-height) + 34px);
        padding-bottom: clamp(72px, 9vh, 100px);
    }

    .home .services-section {
        display: grid;
        grid-template-rows: auto minmax(0, 1fr);
        padding: calc(var(--header-height) + 22px) 0 28px;
    }

    .home .services-section .section-heading {
        padding-top: 0;
    }

    .home .services-section .section-code {
        margin-bottom: 14px;
    }

    .home .services-section .display--section {
        max-width: 1040px;
        font-size: clamp(58px, 5.5vw, 88px);
    }

    .home .services-section .display--section.copy-scale-medium {
        max-width: 940px;
        font-size: clamp(52px, 4.8vw, 76px);
        line-height: 0.92;
    }

    .home .services-section .display--section.copy-scale-long {
        max-width: 900px;
        font-size: clamp(48px, 4.35vw, 68px);
        line-height: 0.94;
    }

    .home .services-layout {
        grid-template-columns: minmax(370px, 0.92fr) minmax(430px, 1.08fr);
        gap: clamp(38px, 5vw, 82px);
        height: 100%;
        min-height: 0;
        margin-top: 24px;
    }

    .home .service-item {
        min-height: 0;
        height: calc(100% / 6);
        padding-block: 6px;
    }

    .home .service-item strong {
        font-size: clamp(25px, 2.2vw, 36px);
    }

    .home .service-stage {
        position: relative;
        top: auto;
        height: 100%;
        min-height: 0;
    }

    .home .service-stage__copy {
        padding: clamp(22px, 3vw, 42px);
    }

    .home .service-stage__copy p {
        font-size: clamp(15px, 1.28vw, 19px);
    }

    .home .about-section {
        height: 100svh;
        min-height: 100svh;
    }

    .home .about-section__image {
        height: 100%;
        min-height: 0;
    }

    .home .about-section__content {
        height: 100%;
        padding: calc(var(--header-height) + 24px) var(--gutter) 34px;
    }

    .home .about-section__content .section-code {
        margin-bottom: 18px;
    }

    .home .about-section__content .display--section {
        font-size: clamp(60px, 6.2vw, 92px);
    }

    .home .about-section__copy {
        margin: 24px 0 28px;
        font-size: clamp(15px, 1.25vw, 18px);
    }

    .home .strengths-section {
        align-items: center;
        padding: calc(var(--header-height) + 20px) 0 34px;
    }

    .home .strengths-section .section-code {
        margin-bottom: 16px;
    }

    .home .strengths-section .display--section {
        font-size: clamp(60px, 6.4vw, 96px);
    }

    .home .strength-lines {
        gap: 0 42px;
        margin-top: clamp(30px, 5vh, 50px);
    }

    .home .strength-line {
        min-height: 66px;
        padding: 12px 0;
    }

    .home .strength-line strong {
        font-size: clamp(25px, 2.2vw, 35px);
    }

    .home .team-section {
        display: grid;
        grid-template-rows: auto minmax(0, 1fr) 128px;
        padding-top: calc(var(--header-height) + 18px);
    }

    .home .team-section__intro .section-code {
        margin-bottom: 12px;
    }

    .home .team-section__heading {
        grid-template-columns: minmax(440px, 1.25fr) minmax(280px, 0.75fr);
        gap: 52px;
    }

    .home .team-section__heading .display--section {
        font-size: clamp(54px, 5.1vw, 76px);
    }

    .home .team-section__heading > p {
        font-size: clamp(15px, 1.15vw, 17px);
    }

    .home .team-canvas {
        height: auto;
        min-height: 0;
        margin-top: 20px;
    }

    .home .team-canvas__label {
        bottom: 20px;
    }

    .home .process-strip {
        height: 128px;
    }

    .home .process-step {
        min-height: 128px;
        padding: 18px var(--gutter);
    }

    .home .process-step strong {
        bottom: 20px;
        font-size: clamp(38px, 4vw, 58px);
    }

    .home .contact-section {
        padding: calc(var(--header-height) + 20px) 0 0;
    }

    .home .contact-section__inner {
        height: 100%;
    }

    .home .contact-section .section-code {
        margin-bottom: 14px;
    }

    .home .contact-section .display--contact {
        max-width: 1100px;
        font-size: clamp(60px, 6.3vw, 94px);
    }

    .home .contact-section__lead {
        max-width: 560px;
        margin-top: 18px;
        font-size: clamp(15px, 1.25vw, 18px);
    }

    .home .contact-grid {
        grid-template-columns: minmax(260px, 0.7fr) minmax(520px, 1.3fr);
        gap: clamp(52px, 7vw, 110px);
        margin-top: clamp(24px, 4vh, 42px);
        padding-bottom: 28px;
    }

    .home .contact-form {
        gap: 12px 28px;
    }

    .home .contact-form input,
    .home .contact-form textarea {
        padding: 6px 0 9px;
    }

    .home .contact-form textarea {
        max-height: 52px;
        resize: none;
    }

    .home .contact-form .action {
        min-height: 48px;
        margin-top: 0;
    }

    .interior-screen {
        height: 100svh;
        min-height: 100svh;
        max-height: 100svh;
    }

    .interior-hero {
        padding-top: calc(var(--header-height) + 34px);
        padding-bottom: clamp(70px, 10vh, 100px);
    }

    .interior-hero .eyebrow {
        margin-bottom: 18px;
    }

    .display--interior {
        font-size: clamp(76px, 7.6vw, 116px);
    }

    .display--interior.copy-scale-medium {
        font-size: clamp(68px, 6.7vw, 104px);
        line-height: 0.91;
    }

    .display--interior.copy-scale-long {
        font-size: clamp(60px, 5.8vw, 90px);
        line-height: 0.94;
    }

    .interior-hero__copy {
        margin-top: 20px;
        max-width: 700px;
        font-size: clamp(16px, 1.3vw, 19px);
        line-height: 1.65;
    }

    .interior-section {
        padding: calc(var(--header-height) + 24px) 0 34px;
    }

    .interior-split {
        padding: 0;
    }

    .interior-split__content {
        height: 100%;
        padding: calc(var(--header-height) + 26px) var(--gutter) 38px;
    }

    .interior-split__content .section-code {
        margin-bottom: 16px;
    }

    .interior-split__content .display--section {
        font-size: clamp(58px, 5.8vw, 86px);
    }

    .interior-split__media {
        height: 100%;
        min-height: 0;
    }

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

    .editorial-copy p {
        font-size: clamp(15px, 1.18vw, 17px);
        line-height: 1.68;
    }

    .principles-section .section-code,
    .service-method .section-code,
    .strengths-detail .section-code,
    .service-outcomes .section-code,
    .contact-page-section .section-code {
        margin-bottom: 16px;
    }

    .principles-section .display--section,
    .service-method .display--section,
    .strengths-detail .display--section,
    .service-outcomes .display--section,
    .contact-page-section .display--section {
        font-size: clamp(58px, 5.7vw, 86px);
    }

    .principles-section .display--section.copy-scale-medium,
    .service-method .display--section.copy-scale-medium,
    .strengths-detail .display--section.copy-scale-medium,
    .service-outcomes .display--section.copy-scale-medium,
    .contact-page-section .display--section.copy-scale-medium {
        font-size: clamp(52px, 4.8vw, 72px);
        line-height: 0.94;
    }

    .principles-section .display--section.copy-scale-long,
    .service-method .display--section.copy-scale-long,
    .strengths-detail .display--section.copy-scale-long,
    .service-outcomes .display--section.copy-scale-long,
    .contact-page-section .display--section.copy-scale-long {
        max-width: 1100px;
        font-size: clamp(46px, 4.25vw, 64px);
        line-height: 0.96;
    }

    .editorial-list {
        margin-top: clamp(28px, 5vh, 48px);
    }

    .editorial-list article {
        padding-top: 18px;
    }

    .editorial-list h3,
    .strengths-detail__grid h3,
    .service-outcomes__grid h3 {
        margin: 16px 0 9px;
        font-size: clamp(29px, 2.5vw, 40px);
    }

    .interior-cta {
        padding-top: var(--header-height);
    }

    .interior-cta .display--contact {
        font-size: clamp(64px, 7vw, 104px);
    }

    .interior-cta .display--contact.copy-scale-medium {
        font-size: clamp(56px, 5.7vw, 86px);
        line-height: 0.94;
    }

    .interior-cta .display--contact.copy-scale-long {
        font-size: clamp(50px, 4.9vw, 74px);
        line-height: 0.96;
    }

    .service-directory__heading {
        grid-template-columns: minmax(340px, 0.75fr) minmax(520px, 1.25fr);
        gap: 50px;
    }

    .service-directory__heading .section-code {
        margin-bottom: 0;
    }

    .service-directory__heading .display--section {
        font-size: clamp(55px, 5vw, 76px);
    }

    .service-directory__heading .display--section.copy-scale-medium {
        font-size: clamp(48px, 4.25vw, 64px);
        line-height: 0.94;
    }

    .service-directory__heading .display--section.copy-scale-long {
        font-size: clamp(44px, 3.8vw, 58px);
        line-height: 0.96;
    }

    .service-directory__list {
        margin-top: 24px;
    }

    .service-directory__item {
        min-height: 0;
        height: clamp(70px, 9vh, 82px);
        padding-block: 8px;
    }

    .service-directory__item strong {
        font-size: clamp(21px, 1.7vw, 27px);
        line-height: 0.98;
    }

    .service-directory__item p {
        font-size: 12px;
        line-height: 1.5;
    }

    .strengths-detail__grid {
        margin-top: 26px;
    }

    .strengths-detail__grid article {
        min-height: clamp(145px, 21vh, 170px);
        height: auto;
        padding: 16px 0;
    }

    .team-grid {
        align-items: start;
    }

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

    .team-grid--experts {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0 26px;
    }

    .team-grid article {
        height: auto;
        min-height: 0;
    }

    .team-grid--leadership article {
        padding-right: clamp(20px, 3vw, 46px);
    }

    .team-grid--experts h3 {
        font-size: clamp(27px, 2.15vw, 34px);
    }

    .team-grid--experts p {
        font-size: clamp(13px, 1.05vw, 14px);
    }

    .strengths-detail__grid p {
        font-size: 14px;
        line-height: 1.58;
    }

    .contact-page-section__inner {
        gap: clamp(58px, 8vw, 120px);
    }

    .contact-page-section .contact-form {
        gap: 14px 28px;
    }

    .contact-page-section .contact-form input,
    .contact-page-section .contact-form textarea {
        padding: 7px 0 10px;
    }

    .contact-page-section .contact-form textarea {
        max-height: 72px;
        resize: none;
    }

    .service-outcomes__grid {
        margin-top: clamp(32px, 5vh, 54px);
    }

    .service-outcomes__grid article {
        min-height: 0;
        height: clamp(190px, 30vh, 250px);
        padding: 22px 0;
    }

    .service-outcomes__grid p,
    .editorial-list p {
        font-size: 14px;
        line-height: 1.6;
    }

    .service-method__inner > p:not(.section-code) {
        margin: 22px 0;
    }
}

@media (max-width: 1100px) {
    :root {
        --header-height: 78px;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        background: rgba(7, 12, 42, 0.96);
        border-bottom-color: rgba(255, 255, 255, 0.12);
        box-shadow: 0 14px 36px rgba(2, 6, 28, 0.22);
        backdrop-filter: blur(18px) saturate(120%);
    }

    .site-nav {
        position: fixed;
        z-index: -1;
        inset: 0;
        justify-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100vw;
        height: 100svh;
        visibility: hidden;
        padding: calc(var(--header-height) + 48px) max(28px, var(--gutter)) 48px;
        overflow-y: auto;
        overscroll-behavior: contain;
        opacity: 0;
        background: var(--ymq-indigo);
        transition: opacity 380ms ease, visibility 0s linear 380ms;
    }

    .site-nav__list,
    .site-nav ul {
        flex-direction: column;
        gap: 10px;
        width: min(100%, 520px);
        margin: auto;
    }

    .site-nav .sub-menu {
        position: static;
        display: none;
        visibility: visible;
        width: auto;
        padding: 4px 0 12px;
        opacity: 1;
        background: transparent;
        border: 0;
        transform: none;
    }

    .site-nav li.is-submenu-open > .sub-menu {
        display: grid;
        transform: none;
    }

    .site-nav .sub-menu a {
        padding: 5px 12px;
        color: rgba(255, 255, 255, 0.6);
        font-family: var(--sans);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.14em;
        line-height: 1.45;
    }

    .site-nav a {
        font-family: var(--display);
        font-size: clamp(48px, 10vw, 88px);
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1;
    }

    .menu-open .site-nav {
        z-index: 1;
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
    }

    body.menu-open {
        overflow: hidden;
    }

    .site-nav li {
        width: 100%;
        text-align: center;
    }

    .site-nav li.menu-item-has-children {
        padding-inline: 42px;
    }

    .submenu-toggle {
        position: absolute;
        top: 5px;
        right: 0;
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        padding: 0;
        color: var(--ymq-white);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50%;
        cursor: pointer;
    }

    .submenu-toggle span {
        font-family: var(--sans);
        font-size: 20px;
        font-weight: 400;
        line-height: 1;
        transition: transform 220ms ease;
    }

    .is-submenu-open > .submenu-toggle span {
        transform: rotate(45deg);
    }

    .site-nav > .site-nav__mobile-contact {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        width: min(100%, 280px);
        min-height: 50px;
        margin: 32px auto 0;
        padding: 0 18px;
        color: var(--ymq-indigo);
        background: var(--ymq-orange);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .header-contact {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: auto 30px;
        gap: 4px 14px;
        align-items: center;
        justify-content: end;
        min-width: 96px;
        min-height: 44px;
        padding: 0;
        color: var(--ymq-white);
        background: transparent;
        cursor: pointer;
    }

    .menu-open .brand {
        position: relative;
        z-index: 2;
    }

    .menu-toggle:focus-visible {
        outline: 1px solid var(--ymq-orange);
        outline-offset: 4px;
    }

    .menu-toggle span {
        grid-row: 1 / 3;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .menu-toggle i {
        display: block;
        width: 30px;
        height: 1px;
        background: currentColor;
        transition: transform 300ms ease;
    }

    .menu-open .menu-toggle i:first-of-type {
        grid-row: 1 / 3;
        grid-column: 2;
        align-self: center;
        transform: rotate(45deg);
    }

    .menu-open .menu-toggle i:last-of-type {
        grid-row: 1 / 3;
        grid-column: 2;
        align-self: center;
        transform: rotate(-45deg);
    }

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

    .service-stage {
        position: relative;
        top: auto;
        order: -1;
        height: 64vh;
    }

    .blog-index__inner {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-block: var(--section-space);
    }

    .blog-index__heading .display {
        max-width: 760px;
    }

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

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-section__image {
        min-height: 62vh;
    }

    .strength-lines {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-section__heading {
        grid-template-columns: 1fr;
    }

    .process-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-details p {
        margin-top: 42px;
    }

    .interior-hero {
        min-height: 100svh;
        padding-bottom: 96px;
    }

    .interior-hero__copy {
        margin-left: 0;
    }

    .interior-section {
        min-height: 100svh;
        height: auto;
    }

    .interior-split {
        grid-template-columns: 1fr;
    }

    .interior-split__content {
        min-height: 74svh;
    }

    .interior-split__media {
        min-height: 62svh;
    }

    .editorial-list {
        grid-template-columns: 1fr;
    }

    .service-directory__heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-directory__list {
        grid-template-columns: 1fr;
    }

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

    .contact-page-section__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card h3 {
        font-size: clamp(36px, 11vw, 52px);
    }
}

@media (max-width: 782px) {
    body.admin-bar .site-header,
    body.admin-bar .site-loader {
        top: 46px;
    }
}

@media (max-width: 720px) {
    :root {
        --gutter: 20px;
        --section-space: 86px;
    }

    .cursor,
    .chapter-marker {
        display: none;
    }

    .display--hero {
        font-size: clamp(64px, 20vw, 96px);
    }

    .display--section,
    .display--contact {
        font-size: clamp(55px, 17vw, 84px);
    }

    .hero {
        align-items: flex-end;
        padding-bottom: 105px;
    }

    .hero__media {
        object-position: 65% center;
    }

    .hero__support {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-left: 0;
    }

    .hero__foot {
        right: 20px;
        left: 20px;
    }

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

    .service-stage {
        min-height: 440px;
    }

    .service-item {
        grid-template-columns: 30px 1fr 20px;
        gap: 10px;
        min-height: 68px;
    }

    .service-item strong {
        font-size: 28px;
    }

    .about-section__image {
        min-height: 480px;
    }

    .strengths-section {
        min-height: auto;
    }

    .strength-lines {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .team-canvas {
        min-height: 520px;
    }

    .team-canvas__label {
        gap: 20px;
    }

    .process-strip {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: 180px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    }

    .process-step strong {
        bottom: 32px;
    }

    .contact-section__lead {
        margin-left: 0;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form__message,
    .contact-form .action,
    .form-status {
        grid-column: auto;
    }

    .contact-details a {
        font-size: 34px;
    }

    .display--interior {
        font-size: clamp(62px, 19vw, 92px);
    }

    .display--hero.copy-scale-medium,
    .display--interior.copy-scale-medium {
        font-size: clamp(54px, 15.5vw, 74px);
        line-height: 0.92;
    }

    .display--hero.copy-scale-long,
    .display--interior.copy-scale-long {
        font-size: clamp(46px, 12.5vw, 62px);
        line-height: 0.96;
    }

    .display--section.copy-scale-medium,
    .display--contact.copy-scale-medium {
        font-size: clamp(48px, 13.5vw, 68px);
        line-height: 0.94;
    }

    .display--section.copy-scale-long,
    .display--contact.copy-scale-long {
        font-size: clamp(42px, 11.5vw, 58px);
        line-height: 0.98;
    }

    .hero__support > p,
    .about-section__copy,
    .team-section__heading > p,
    .contact-section__lead,
    .interior-hero__copy,
    .editorial-copy p,
    .strengths-detail__grid p,
    .service-outcomes__grid p,
    .editorial-list p,
    .service-method__inner > p:not(.section-code) {
        font-size: 16px;
        line-height: 1.65;
    }

    .interior-breadcrumb {
        margin-bottom: 34px;
    }

    .interior-breadcrumb a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        margin-block: -15px;
    }

    .interior-next {
        right: 20px;
        bottom: 22px;
    }

    .interior-split__content {
        min-height: auto;
        padding: var(--section-space) 20px;
    }

    .interior-split__media {
        min-height: 540px;
    }

    .editorial-list {
        margin-top: 50px;
    }

    .service-directory__item {
        grid-template-columns: 28px 1fr 20px;
        gap: 10px;
        min-height: 88px;
    }

    .service-directory__item p {
        display: none;
    }

    .strengths-detail__grid,
    .service-outcomes__grid {
        grid-template-columns: 1fr;
    }

    .strengths-detail__grid article,
    .service-outcomes__grid article {
        min-height: auto;
    }

    .contact-page-section__inner {
        gap: 58px;
    }

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

    .site-footer__brand,
    .site-footer nav,
    .site-footer__legal {
        justify-self: start;
    }

    .site-footer nav {
        flex-wrap: wrap;
    }

    .site-footer__legal {
        grid-column: auto;
    }
}

/*
 * Composition system 2.0
 * Desktop layouts use one dominant focal point per full-screen chapter.
 */
@media (min-width: 1101px) {
    .site-header {
        top: 14px;
        grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
        height: 54px;
        padding: 0 26px;
        border: 0;
        pointer-events: none;
    }

    .site-header::before {
        display: none;
    }

    .site-header.is-compact {
        top: 10px;
        height: 54px;
    }

    .site-header > * {
        pointer-events: auto;
    }

    .brand,
    .site-nav,
    .header-contact {
        min-height: 54px;
        color: var(--ymq-ink);
        background: rgba(255, 255, 255, 0.96);
        border-radius: 2px;
        box-shadow: 0 16px 44px rgba(5, 10, 38, 0.14);
        backdrop-filter: blur(16px);
    }

    .brand {
        gap: 7px;
        padding: 0 18px;
    }

    .brand__mark {
        font-size: 29px;
    }

    .brand__descriptor {
        color: rgba(29, 26, 78, 0.62);
        font-size: 8px;
    }

    .site-nav {
        display: flex;
        align-items: center;
        padding: 0 26px;
    }

    .site-nav__list,
    .site-nav ul {
        gap: 30px;
    }

    .site-nav a {
        padding: 18px 0;
        font-size: 9px;
    }

    .site-nav .sub-menu {
        top: calc(100% + 9px);
    }

    .header-contact {
        min-width: 158px;
        padding: 0 18px;
        border: 0;
    }

    .header-contact:hover,
    .header-contact:focus-visible {
        color: var(--ymq-white);
        background: var(--ymq-orange-dark);
    }

    .home .hero {
        padding: 0;
    }

    .home .hero .chapter-marker {
        display: none;
    }

    .home .hero__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
        grid-template-rows: 1fr auto;
        gap: 34px;
        align-items: end;
        height: 100%;
        padding-top: 116px;
        padding-bottom: 54px;
    }

    .home .hero .eyebrow {
        position: absolute;
        top: 47%;
        left: var(--gutter);
        margin: 0;
    }

    .home .hero .display--hero {
        grid-column: 1;
        grid-row: 2;
        max-width: 800px;
        font-size: clamp(64px, 6.2vw, 92px);
        line-height: 0.95;
    }

    .home .hero__support {
        display: grid;
        grid-column: 2;
        grid-row: 2;
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0;
        padding: 28px;
        color: var(--ymq-ink);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 24px 70px rgba(6, 10, 37, 0.2);
        backdrop-filter: blur(16px);
    }

    .home .hero__support > p {
        color: var(--ymq-body);
        font-size: 14px;
        line-height: 1.62;
    }

    .home .hero__support .action {
        width: 100%;
        min-width: 0;
    }

    .home .hero__foot {
        right: 26px;
        bottom: 17px;
        left: 26px;
    }

    .home .services-section {
        position: relative;
        display: block;
        padding: 0;
    }

    .home .services-section > .section-heading {
        position: absolute;
        z-index: 3;
        top: 108px;
        left: 0;
        width: 46%;
        padding-top: 0;
    }

    .home .services-section .section-code {
        margin-bottom: 14px;
    }

    .home .services-section .display--section,
    .home .services-section .display--section.copy-scale-medium {
        max-width: 510px;
        font-size: clamp(45px, 4.1vw, 62px);
        line-height: 0.96;
    }

    .home .services-layout {
        grid-template-columns: minmax(380px, 0.82fr) minmax(520px, 1.18fr);
        gap: clamp(44px, 6vw, 92px);
        height: 100%;
        margin-top: 0;
        padding-top: 108px;
        padding-bottom: 34px;
    }

    .home .service-list {
        align-self: end;
        height: 380px;
    }

    .home .service-item {
        height: calc(100% / 6);
    }

    .home .service-item strong {
        font-size: clamp(22px, 1.8vw, 28px);
    }

    .home .service-stage {
        height: 100%;
        min-height: 0;
    }

    .home .service-stage__copy {
        padding: 34px;
    }

    .home .about-section {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .home .about-section__content {
        padding-right: max(var(--gutter), calc((100vw - 1500px) / 2 + var(--gutter)));
        padding-left: clamp(58px, 7vw, 116px);
    }

    .home .about-section__content .display--section {
        font-size: clamp(58px, 5.3vw, 82px);
    }

    .home .strengths-section {
        padding: 0;
    }

    .home .strengths-section__inner {
        display: grid;
        grid-template-columns: minmax(300px, 0.72fr) minmax(600px, 1.28fr);
        grid-template-rows: auto 1fr;
        gap: 18px clamp(60px, 8vw, 130px);
        align-items: center;
        width: 100%;
    }

    .home .strengths-section .section-code {
        grid-column: 1;
        grid-row: 1;
        align-self: end;
        margin: 0;
    }

    .home .strengths-section .display--section {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
        font-size: clamp(68px, 7vw, 106px);
    }

    .home .strength-lines {
        grid-column: 2;
        grid-row: 1 / 3;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-self: center;
        gap: 0 38px;
        margin: 0;
    }

    .home .strength-line {
        min-height: 118px;
        padding: 22px 0;
    }

    .home .strength-line strong {
        font-size: clamp(26px, 2.35vw, 36px);
    }

    .home .team-section {
        display: grid;
        grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
        grid-template-rows: minmax(0, 1fr) 214px;
        padding: 0;
    }

    .home .team-section__intro {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        width: 100%;
        padding: 106px var(--gutter) 38px clamp(58px, 6vw, 96px);
    }

    .home .team-section__heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home .team-section__heading .display--section {
        max-width: 620px;
        font-size: clamp(58px, 5.4vw, 84px);
    }

    .home .team-section__heading > p {
        max-width: 540px;
        margin: 0;
        font-size: 16px;
    }

    .home .team-canvas {
        grid-column: 1;
        grid-row: 1 / 3;
        height: 100%;
        min-height: 0;
        margin: 0;
    }

    .home .team-canvas__label {
        bottom: 28px;
    }

    .home .process-strip {
        grid-column: 2;
        grid-row: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        height: 214px;
    }

    .home .process-step {
        min-height: 107px;
        padding: 16px 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    }

    .home .process-step strong {
        right: 18px;
        bottom: 15px;
        left: 22px;
        font-size: clamp(26px, 2.2vw, 34px);
        line-height: 0.96;
    }

    .interior-hero {
        padding: 0;
    }

    .interior-hero__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
        grid-template-rows: 1fr auto;
        gap: 40px;
        align-items: end;
        height: 100%;
        padding-top: 118px;
        padding-bottom: 54px;
    }

    .interior-breadcrumb {
        position: absolute;
        top: 154px;
        left: var(--gutter);
        margin: 0;
    }

    .interior-hero .display--interior {
        grid-column: 1;
        grid-row: 2;
        max-width: 850px;
        font-size: clamp(70px, 7vw, 104px);
        line-height: 0.94;
    }

    .interior-hero .display--interior.copy-scale-medium {
        font-size: clamp(62px, 6.15vw, 92px);
    }

    .interior-hero .display--interior.copy-scale-long {
        font-size: clamp(54px, 5.15vw, 78px);
        line-height: 0.96;
    }

    .interior-hero__copy {
        grid-column: 2;
        grid-row: 2;
        max-width: none;
        margin: 0;
        padding: 25px 26px;
        color: var(--ymq-body);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 24px 70px rgba(6, 10, 37, 0.2);
        font-size: 14px;
        line-height: 1.65;
        backdrop-filter: blur(16px);
    }

    .interior-next {
        right: 26px;
        bottom: 17px;
    }

    .service-directory__inner {
        display: grid;
        grid-template-columns: minmax(290px, 0.68fr) minmax(620px, 1.32fr);
        gap: clamp(58px, 8vw, 128px);
        align-items: center;
    }

    .service-directory__heading {
        display: block;
    }

    .service-directory__heading .section-code {
        margin-bottom: 24px;
    }

    .service-directory__heading .display--section,
    .service-directory__heading .display--section.copy-scale-medium {
        max-width: 420px;
        font-size: clamp(50px, 4.6vw, 70px);
        line-height: 0.96;
    }

    .service-directory__list {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0;
    }

    .service-directory__item {
        grid-template-columns: 34px minmax(190px, 0.75fr) minmax(240px, 1.25fr) 20px;
        height: 68px;
        min-height: 68px;
        padding: 8px 0;
    }

    .service-directory__item strong {
        font-size: clamp(21px, 1.75vw, 27px);
    }

    .service-directory__item p {
        font-size: 12px;
    }

    .strengths-detail__inner,
    .service-outcomes__inner {
        display: grid;
        grid-template-columns: minmax(300px, 0.72fr) minmax(620px, 1.28fr);
        grid-template-rows: auto 1fr;
        gap: 18px clamp(58px, 8vw, 128px);
        align-items: center;
    }

    .strengths-detail__inner > .section-code,
    .service-outcomes__inner > .section-code {
        grid-column: 1;
        grid-row: 1;
        align-self: end;
        margin: 0;
    }

    .strengths-detail__inner > .display,
    .service-outcomes__inner > .display {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
        max-width: 430px;
        font-size: clamp(52px, 4.8vw, 72px);
        line-height: 0.96;
    }

    .strengths-detail__grid,
    .service-outcomes__grid {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
        margin: 0;
    }

    .strengths-detail__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 30px;
    }

    .strengths-detail__grid article {
        min-height: 0;
        padding: 18px 0 20px;
    }

    .strengths-detail__grid h3 {
        margin: 13px 0 8px;
        font-size: clamp(25px, 2vw, 31px);
    }

    .strengths-detail__grid p {
        font-size: 13px;
        line-height: 1.55;
    }

    .service-outcomes__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-outcomes__grid article {
        display: grid;
        grid-template-columns: 38px minmax(220px, 0.8fr) minmax(260px, 1.2fr);
        gap: 20px;
        align-items: center;
        height: auto;
        min-height: 108px;
        padding: 15px 0;
    }

    .service-outcomes__grid h3 {
        margin: 0;
        font-size: clamp(27px, 2.2vw, 34px);
    }

    .service-outcomes__grid p {
        font-size: 14px;
        line-height: 1.58;
    }

    .team-grid--leadership {
        grid-template-columns: 1fr;
    }

    .team-grid--experts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 28px;
    }

    .team-grid--leadership article,
    .team-grid--experts article {
        padding: 15px 0 17px;
    }

    .team-grid--leadership p,
    .team-grid--experts p {
        font-size: 12px;
        line-height: 1.5;
    }

    .principles-section__inner {
        display: grid;
        grid-template-columns: minmax(300px, 0.72fr) minmax(620px, 1.28fr);
        grid-template-rows: auto 1fr;
        gap: 18px clamp(58px, 8vw, 128px);
        align-items: center;
        width: 100%;
    }

    .principles-section__inner > .section-code {
        grid-column: 1;
        grid-row: 1;
        align-self: end;
        margin: 0;
    }

    .principles-section__inner > .display {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
        max-width: 430px;
        font-size: clamp(50px, 4.6vw, 70px);
        line-height: 0.96;
    }

    .principles-section .editorial-list {
        grid-column: 2;
        grid-row: 1 / 3;
        grid-template-columns: 1fr;
        align-self: center;
        gap: 0;
        margin: 0;
    }

    .principles-section .editorial-list article {
        display: grid;
        grid-template-columns: 36px minmax(200px, 0.78fr) minmax(260px, 1.22fr);
        gap: 20px;
        align-items: center;
        min-height: 126px;
        padding: 17px 0;
    }

    .principles-section .editorial-list h3 {
        margin: 0;
        font-size: clamp(27px, 2.2vw, 34px);
    }

    .principles-section .editorial-list p {
        font-size: 14px;
        line-height: 1.58;
    }

    .service-method__inner {
        display: grid;
        grid-template-columns: minmax(480px, 1.08fr) minmax(340px, 0.92fr);
        grid-template-rows: auto auto auto;
        gap: 18px clamp(70px, 10vw, 160px);
        align-items: end;
        width: 100%;
    }

    .service-method__inner > .section-code {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
    }

    .service-method__inner > .display {
        grid-column: 1;
        grid-row: 2 / 4;
        max-width: 760px;
        font-size: clamp(58px, 5.6vw, 84px);
        line-height: 0.95;
    }

    .service-method__inner > p:not(.section-code) {
        grid-column: 2;
        grid-row: 2;
        align-self: end;
        margin: 0;
        font-size: 16px;
    }

    .service-method__inner > .action {
        grid-column: 2;
        grid-row: 3;
        align-self: start;
        margin-top: 10px;
    }

    .interior-cta__content {
        display: grid;
        grid-template-columns: minmax(480px, 1.08fr) minmax(340px, 0.92fr);
        grid-template-rows: auto auto auto;
        gap: 18px clamp(70px, 10vw, 160px);
        align-items: end;
        width: 100%;
    }

    .interior-cta__content > .section-code {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
    }

    .interior-cta__content > .display {
        grid-column: 1;
        grid-row: 2 / 4;
        max-width: 780px;
        font-size: clamp(62px, 6vw, 90px);
        line-height: 0.95;
    }

    .interior-cta__content > p:not(.section-code) {
        grid-column: 2;
        grid-row: 2;
        align-self: end;
        margin: 0;
        font-size: 16px;
    }

    .interior-cta__content > .action {
        grid-column: 2;
        grid-row: 3;
        align-self: start;
        margin-top: 10px;
    }
}

/*
 * Surface system 2.2
 * Replaces disconnected white cards with atmospheric navy glass and
 * softens light chapters into a cool steel canvas.
 */
.chapter--light,
.content-shell,
.interior-main {
    background-color: var(--ymq-canvas);
}

.chapter--light {
    background-image:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.2), transparent 31%),
        linear-gradient(135deg, #dfe2e9 0%, #cdd3de 100%);
}

.action--solid:hover,
.action--solid:focus-visible {
    color: var(--ymq-white);
    background: var(--ymq-orange-dark);
}

@media (min-width: 1101px) {
    .site-header {
        top: 0;
        height: 74px;
        padding: 0 34px;
        background:
            linear-gradient(90deg, rgba(7, 12, 42, 0.94), rgba(12, 18, 55, 0.88));
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 16px 42px rgba(2, 6, 28, 0.22);
        backdrop-filter: blur(20px) saturate(125%);
        pointer-events: auto;
    }

    .site-header.is-compact {
        top: 0;
        height: 64px;
        background:
            linear-gradient(90deg, rgba(7, 12, 42, 0.98), rgba(12, 18, 55, 0.94));
    }

    .brand,
    .site-nav {
        min-height: 0;
        color: var(--ymq-white);
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .brand {
        padding: 0;
    }

    .brand__mark {
        font-size: 31px;
    }

    .brand__descriptor {
        color: rgba(255, 255, 255, 0.64);
    }

    .site-nav {
        padding: 0;
    }

    .site-nav__list,
    .site-nav ul {
        gap: 34px;
    }

    .site-nav a {
        padding: 24px 0;
    }

    .header-contact {
        min-width: 150px;
        min-height: 40px;
        padding: 0 16px;
        color: var(--ymq-indigo);
        background: rgba(248, 101, 34, 0.94);
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .header-contact:hover,
    .header-contact:focus-visible {
        color: var(--ymq-indigo);
        background: #ff8750;
    }

    .site-nav a {
        color: inherit;
    }

    .site-nav .current-menu-item > a,
    .site-nav .current-menu-parent > a,
    .site-nav .current_page_parent > a,
    .site-nav .current_page_item > a {
        color: #ff8750;
    }

    .site-nav .current-menu-item > a::after,
    .site-nav .current-menu-parent > a::after,
    .site-nav .current_page_parent > a::after,
    .site-nav .current_page_item > a::after {
        transform: scaleX(1);
    }

    .home .hero__support,
    .interior-hero__copy {
        color: var(--ymq-white);
        background:
            linear-gradient(145deg, rgba(12, 18, 55, 0.94), rgba(7, 12, 42, 0.82));
        border: 1px solid rgba(255, 255, 255, 0.13);
        box-shadow: 0 26px 76px rgba(2, 6, 28, 0.34);
        backdrop-filter: blur(22px) saturate(125%);
    }

    .home .hero__support > p,
    .interior-hero__copy {
        color: rgba(255, 255, 255, 0.76);
    }

    .chapter--light .service-item:not(.is-active),
    .chapter--light .service-directory__item,
    .chapter--light .strengths-detail__grid article,
    .chapter--light .service-outcomes__grid article,
    .chapter--light .team-grid article,
    .chapter--light .editorial-list article {
        border-color: rgba(29, 26, 78, 0.18);
    }
}

/* Team portrait system */
.team-profile__media {
    position: relative;
    height: clamp(108px, 15vh, 136px);
    margin: 0 0 17px;
    overflow: hidden;
    background: #15194a;
    border: 1px solid rgba(255, 255, 255, 0.14);
    isolation: isolate;
}

.team-profile__media::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, transparent 48%, rgba(7, 11, 39, 0.58)),
        linear-gradient(90deg, rgba(248, 101, 34, 0.12), transparent 44%);
    pointer-events: none;
}

.team-profile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    filter: saturate(0.88) contrast(1.04);
    transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 350ms ease;
}

.team-profile:hover .team-profile__media img {
    transform: scale(1.045);
    filter: saturate(1) contrast(1.04);
}

.team-profile__media b {
    position: absolute;
    z-index: 2;
    right: 10px;
    bottom: 8px;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.chapter--light .team-profile__media {
    background: #e4e5ef;
    border-color: rgba(29, 26, 78, 0.16);
}

.chapter--light .team-profile__media::after {
    background:
        linear-gradient(180deg, transparent 54%, rgba(13, 17, 58, 0.5)),
        linear-gradient(90deg, rgba(248, 101, 34, 0.1), transparent 44%);
}

@media (min-width: 1101px) {
    .team-grid--leadership .team-profile {
        display: grid;
        grid-template-columns: clamp(120px, 10vw, 152px) minmax(0, 1fr);
        gap: clamp(18px, 2vw, 30px);
        align-items: stretch;
    }

    .team-grid--leadership .team-profile__media {
        height: 100%;
        min-height: 210px;
        margin: 0;
    }

    .team-grid--leadership .team-profile__body {
        align-self: start;
    }

    .team-page .principles-section .editorial-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        align-self: center;
    }

    .team-page .principles-section .editorial-list article {
        display: block;
        min-height: 0;
        padding-top: 15px;
    }

    .team-page .principles-section .team-profile__media {
        height: clamp(100px, 14vh, 122px);
    }

    .team-page .principles-section .editorial-list h3 {
        margin-top: 13px;
        font-size: clamp(27px, 2.15vw, 34px);
    }

    .team-page .principles-section .editorial-list p {
        font-size: 12px;
        line-height: 1.52;
    }

    .team-grid--experts .team-profile__media {
        height: clamp(94px, 13vh, 116px);
    }

    .team-grid--experts .team-profile__media img {
        object-position: center 42%;
    }

    .team-grid--experts .team-profile__body > span {
        display: block;
        min-height: 23px;
    }
}

@media (min-width: 1101px) and (max-height: 820px) {
    .team-grid--experts .team-profile {
        display: grid;
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 17px;
        align-items: start;
    }

    .team-grid--experts .team-profile__media {
        height: 184px;
        margin: 0;
    }

    .team-grid--experts .team-profile__body h3 {
        margin-top: 11px;
    }
}

@media (max-width: 1100px) {
    .team-grid .team-profile,
    .team-page .principles-section .editorial-list .team-profile {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 18px;
        align-items: start;
    }

    .team-page .principles-section .editorial-list .team-profile {
        min-height: 0;
    }

    .team-profile__media,
    .team-grid--leadership .team-profile__media,
    .team-grid--experts .team-profile__media {
        width: 100%;
        height: 148px;
        min-height: 0;
        margin: 0;
    }

    .team-profile__body h3,
    .team-page .principles-section .editorial-list .team-profile__body h3 {
        margin: 11px 0 7px;
    }
}

@media (max-width: 720px) {
    .team-grid .team-profile,
    .team-page .principles-section .editorial-list .team-profile {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 16px;
        padding-block: 18px;
    }

    .team-profile__media,
    .team-grid--leadership .team-profile__media,
    .team-grid--experts .team-profile__media {
        height: 138px;
    }

    .team-profile__body p,
    .team-page .principles-section .editorial-list .team-profile__body p {
        font-size: 12px;
        line-height: 1.55;
    }
}

@supports selector(:user-invalid) {
    .contact-form input:user-invalid,
    .contact-form textarea:user-invalid {
        border-bottom-color: #dd5637;
    }
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
    outline: 2px solid var(--ymq-orange);
    outline-offset: 3px;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: 2px solid rgba(248, 101, 34, 0.52);
    outline-offset: 4px;
}

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

    .site-loader {
        display: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .split-heading .word > span {
        transform: none;
    }
}

/*
 * Cinematic composition 3.0
 * A deliberate split-stage system: copy lives on a deep navy canvas while
 * photography is treated as a moving aperture instead of a full-page poster.
 */
@media (min-width: 1101px) {
    .home .hero,
    .interior-hero {
        isolation: isolate;
        color: var(--ymq-white);
        background:
            radial-gradient(circle at 51% 78%, rgba(248, 101, 34, 0.15), transparent 28%),
            linear-gradient(135deg, #070a28 0%, #0b1242 62%, #111a54 100%);
    }

    .home .hero__media,
    .interior-hero > .chapter__media {
        z-index: 0;
        inset: 104px 0 32px 55%;
        width: 45%;
        height: auto;
        max-width: none;
        object-position: center;
        filter: saturate(0.88) contrast(1.08);
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
        transform: scale(1.04);
    }

    .home .hero .chapter__shade,
    .interior-hero > .chapter__shade {
        z-index: 1;
        background:
            linear-gradient(90deg, #070a28 0%, #080c31 42%, rgba(8, 12, 42, 0.85) 56%, rgba(8, 12, 42, 0.08) 87%),
            linear-gradient(0deg, rgba(7, 10, 40, 0.74) 0%, transparent 42%);
    }

    .home .hero .ambient-grid,
    .interior-hero > .ambient-grid {
        z-index: 2;
        opacity: 0.09;
        background-size: 6.25vw 6.25vw;
        mask-image: linear-gradient(90deg, black 0%, black 52%, transparent 82%);
    }

    .home .hero::before,
    .interior-hero::before {
        position: absolute;
        z-index: 2;
        inset: 116px 24px 44px calc(55% - 12px);
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.19);
        border-top-color: rgba(248, 101, 34, 0.78);
        clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%, 0 11%);
        pointer-events: none;
    }

    .home .hero::after,
    .interior-hero::after {
        position: absolute;
        z-index: 3;
        top: 104px;
        right: 28px;
        color: transparent;
        content: "01";
        font-family: var(--display);
        font-size: clamp(132px, 13vw, 210px);
        letter-spacing: -0.04em;
        line-height: 0.8;
        -webkit-text-stroke: 1px rgba(248, 101, 34, 0.82);
        opacity: 0.75;
        pointer-events: none;
    }

    .interior-hero::after {
        content: "YMQ";
        font-size: clamp(106px, 10.5vw, 170px);
        opacity: 0.62;
    }

    .home .hero__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 18px 40px;
        align-items: stretch;
        height: 100%;
        padding-top: 126px;
        padding-bottom: 78px;
    }

    .home .hero .eyebrow {
        position: static;
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        margin: 0;
        padding-left: 74px;
    }

    .home .hero .eyebrow::before {
        display: inline-block;
        width: 54px;
        height: 1px;
        margin: 0 20px 3px -74px;
        content: "";
        background: var(--ymq-orange);
    }

    .home .hero .display--hero,
    .home .hero .display--hero.copy-scale-medium,
    .home .hero .display--hero.copy-scale-long {
        z-index: 5;
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: center;
        max-width: min(1120px, 92vw);
        font-size: clamp(78px, 8.05vw, 126px);
        line-height: 0.84;
        text-wrap: balance;
        text-shadow: 0 14px 34px rgba(2, 5, 24, 0.42);
    }

    .home .hero .display--hero .word {
        margin-right: 0.11em;
    }

    .home .hero .display--hero .word:nth-child(2) > span,
    .home .hero .display--hero .word:nth-child(4) > span {
        color: var(--ymq-orange);
    }

    .home .hero__support,
    .home .hero__support.reveal {
        z-index: 5;
        display: grid;
        grid-column: 1 / -1;
        grid-row: 3;
        grid-template-columns: minmax(320px, 470px) minmax(250px, 300px);
        gap: 28px;
        align-items: stretch;
        justify-content: start;
        margin: 0;
        padding: 0;
        color: var(--ymq-white);
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .home .hero__support > p {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 3px 0 3px 22px;
        color: rgba(255, 255, 255, 0.74);
        border-left: 2px solid var(--ymq-orange);
        font-size: 13px;
        line-height: 1.55;
    }

    .home .hero__support .action {
        width: 100%;
        min-width: 0;
        min-height: 64px;
        padding-inline: 24px;
    }

    .home .hero__foot {
        right: 24px;
        bottom: 18px;
        left: 24px;
    }

    .interior-hero {
        padding: 0;
    }

    .interior-hero__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
        grid-template-rows: auto auto minmax(0, 1fr) auto;
        gap: 18px 44px;
        align-items: stretch;
        height: 100%;
        padding-top: 126px;
        padding-bottom: 76px;
    }

    .interior-breadcrumb {
        position: static;
        grid-column: 1 / -1;
        grid-row: 1;
        margin: 0;
    }

    .interior-hero .eyebrow {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
        padding-left: 74px;
    }

    .interior-hero .eyebrow::before {
        display: inline-block;
        width: 54px;
        height: 1px;
        margin: 0 20px 3px -74px;
        content: "";
        background: var(--ymq-orange);
    }

    .interior-hero .display--interior,
    .interior-hero .display--interior.copy-scale-medium,
    .interior-hero .display--interior.copy-scale-long {
        z-index: 5;
        grid-column: 1 / -1;
        grid-row: 3;
        align-self: center;
        max-width: min(1130px, 91vw);
        font-size: clamp(72px, 7.55vw, 118px);
        line-height: 0.86;
        text-wrap: balance;
        text-shadow: 0 14px 34px rgba(2, 5, 24, 0.42);
    }

    .interior-hero__copy,
    .interior-hero__copy.reveal {
        z-index: 5;
        grid-column: 2;
        grid-row: 4;
        max-width: none;
        margin: 0;
        padding: 3px 0 3px 22px;
        color: rgba(255, 255, 255, 0.76);
        background: transparent;
        border: 0;
        border-left: 2px solid var(--ymq-orange);
        box-shadow: none;
        font-size: 14px;
        line-height: 1.58;
        backdrop-filter: none;
    }

    .interior-next {
        right: 24px;
        bottom: 19px;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: no-preference) {
    .home .hero__media,
    .interior-hero > .chapter__media {
        animation: ymq-aperture-in 1200ms 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }
}

@keyframes ymq-aperture-in {
    from {
        opacity: 0;
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 88% 100%, 88% 12%);
    }

    to {
        opacity: 1;
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
    }
}

/*
 * Continuous canvas 4.0
 * Native scrolling with cinematic pacing, soft chapter bleeds, and natural
 * content height. No wheel interception, scroll snapping, or pinned panels.
 */
main {
    position: relative;
    isolation: isolate;
    overflow: clip;
}

main > section {
    isolation: isolate;
}

@media (min-width: 1101px) {
    body.home #main-content::before,
    .interior-main::before {
        position: absolute;
        z-index: 20;
        top: 0;
        bottom: 0;
        left: 24px;
        width: 1px;
        content: "";
        background:
            linear-gradient(
                180deg,
                rgba(248, 101, 34, 0.72),
                rgba(255, 255, 255, 0.12) 12%,
                rgba(248, 101, 34, 0.42) 38%,
                rgba(255, 255, 255, 0.1) 72%,
                rgba(248, 101, 34, 0.7)
            );
        pointer-events: none;
    }

    .home .chapter,
    .interior-screen {
        height: auto;
        min-height: 100svh;
        max-height: none;
    }

    .home main > section:not(:first-child)::before,
    .interior-main > section:not(:first-child)::before {
        position: absolute;
        z-index: 4;
        top: 0;
        right: 0;
        left: 0;
        height: 180px;
        content: "";
        pointer-events: none;
    }

    .home .services-section::before,
    .interior-main > .chapter--light::before {
        background:
            linear-gradient(
                180deg,
                #090d39 0%,
                rgba(81, 94, 133, 0.72) 34%,
                rgba(205, 212, 225, 0.54) 72%,
                rgba(223, 227, 234, 0) 100%
            );
    }

    .home .about-section::before,
    .home .contact-section::before,
    .interior-main > .chapter--dark::before {
        background:
            linear-gradient(
                180deg,
                #dfe3ea 0%,
                rgba(83, 94, 131, 0.72) 36%,
                rgba(22, 27, 79, 0.52) 72%,
                rgba(11, 15, 66, 0) 100%
            );
    }

    .home .strengths-section::before {
        background:
            linear-gradient(
                180deg,
                rgba(11, 15, 66, 0.96),
                rgba(9, 13, 57, 0.54) 58%,
                rgba(9, 13, 57, 0)
            );
    }

    .home .team-section::before {
        background:
            linear-gradient(
                180deg,
                #090d39 0%,
                rgba(83, 96, 136, 0.72) 36%,
                rgba(203, 211, 224, 0.54) 72%,
                rgba(223, 227, 234, 0) 100%
            );
    }

    .home .hero {
        min-height: max(760px, 100svh);
    }

    .home .services-section {
        min-height: 0;
        padding: clamp(145px, 13vw, 205px) 0 clamp(190px, 16vw, 250px);
        overflow: visible;
        background:
            radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.7), transparent 25%),
            linear-gradient(145deg, #e5e8ef 0%, #cbd2df 100%);
    }

    .home .services-section > .section-heading {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        padding-top: 0;
    }

    .home .services-section .display--section,
    .home .services-section .display--section.copy-scale-medium {
        max-width: 880px;
        font-size: clamp(58px, 5.6vw, 86px);
        line-height: 0.92;
    }

    .home .services-layout {
        align-items: start;
        height: auto;
        min-height: 690px;
        margin-top: clamp(58px, 6vw, 90px);
        padding-top: 0;
        padding-bottom: 0;
    }

    .home .service-list {
        align-self: center;
        height: auto;
    }

    .home .service-item {
        height: auto;
        min-height: 76px;
    }

    .home .service-item strong {
        font-size: clamp(25px, 2.15vw, 34px);
    }

    .home .service-stage {
        position: sticky;
        top: 108px;
        height: min(72vh, 720px);
        min-height: 590px;
        border: 1px solid rgba(255, 255, 255, 0.52);
        box-shadow: 0 34px 90px rgba(14, 19, 61, 0.2);
        clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
    }

    .home .about-section {
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
        gap: 0;
        min-height: 0;
        padding: clamp(150px, 13vw, 210px) var(--gutter) clamp(185px, 15vw, 240px);
        background:
            radial-gradient(circle at 78% 22%, rgba(110, 193, 228, 0.13), transparent 28%),
            linear-gradient(145deg, #11175b 0%, #080c35 100%);
    }

    .home .about-section__image {
        min-height: 760px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 0 100%);
        box-shadow: 0 40px 100px rgba(2, 5, 28, 0.34);
    }

    .home .about-section__content {
        min-height: 760px;
        padding: clamp(74px, 7vw, 112px);
        background:
            linear-gradient(145deg, rgba(22, 31, 99, 0.9), rgba(9, 13, 55, 0.96));
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-left: 0;
    }

    .home .about-section__content .display--section {
        font-size: clamp(66px, 6vw, 94px);
    }

    .home .strengths-section {
        min-height: 940px;
        padding: clamp(165px, 14vw, 225px) 0 clamp(190px, 16vw, 250px);
        background-color: #090d39;
    }

    .home .strengths-section::after {
        position: absolute;
        z-index: 2;
        right: var(--gutter);
        bottom: 76px;
        left: var(--gutter);
        height: 1px;
        content: "";
        background:
            linear-gradient(90deg, var(--ymq-orange), rgba(255, 255, 255, 0.18) 28%, transparent);
        pointer-events: none;
    }

    .home .team-section {
        grid-template-rows: auto auto;
        min-height: 0;
        padding: clamp(150px, 13vw, 205px) 0 clamp(100px, 9vw, 140px);
        background:
            radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.7), transparent 25%),
            linear-gradient(145deg, #e5e8ef 0%, #cbd2df 100%);
    }

    .home .team-section__intro {
        align-self: start;
        padding: 26px var(--gutter) 62px clamp(58px, 6vw, 96px);
    }

    .home .team-canvas {
        height: 100%;
        min-height: 940px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 0 100%);
    }

    .home .process-strip {
        height: auto;
        min-height: 250px;
    }

    .home .process-step {
        min-height: 125px;
    }

    .home .contact-section {
        min-height: 0;
        padding: clamp(180px, 15vw, 240px) 0 clamp(80px, 8vw, 130px);
        background-color: #090d39;
    }

    .home .contact-section__inner {
        min-height: 880px;
    }

    .home .contact-grid {
        margin-top: clamp(70px, 8vw, 120px);
        padding-bottom: 0;
    }

    .interior-main {
        overflow: clip;
        background:
            linear-gradient(180deg, #080c35 0%, #dfe3ea 28%, #cdd4e0 64%, #090d39 100%);
    }

    .interior-main > .interior-hero {
        min-height: max(760px, 100svh);
    }

    .interior-main > .interior-section,
    .interior-main > .interior-cta {
        min-height: max(780px, 92svh);
        padding-top: clamp(165px, 14vw, 225px);
        padding-bottom: clamp(165px, 14vw, 225px);
    }

    .interior-main > .chapter--light {
        background:
            radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.72), transparent 25%),
            linear-gradient(145deg, #e5e8ef 0%, #cbd2df 100%);
    }

    .interior-main > .chapter--dark {
        background-color: #090d39;
    }

    .interior-main > section:last-child {
        padding-bottom: clamp(190px, 16vw, 260px);
    }
}

@media (max-width: 1100px) {
    main {
        overflow: hidden;
    }

    .home main > section,
    .interior-main > section {
        max-height: none;
    }
}

/*
 * Fluid typography 4.1
 * Keeps the editorial scale expressive while smoothing the transitions
 * between compact phones, tablets, and the desktop composition.
 */
@media (max-width: 1100px) {
    .display--hero,
    .display--interior {
        font-size: clamp(64px, calc(43px + 4.3vw), 90px);
        line-height: 0.9;
    }

    .display--hero.copy-scale-medium,
    .display--interior.copy-scale-medium {
        font-size: clamp(62px, calc(38px + 4.8vw), 88px);
        line-height: 0.92;
    }

    .display--hero.copy-scale-long,
    .display--interior.copy-scale-long {
        font-size: clamp(54px, calc(34px + 4vw), 76px);
        line-height: 0.96;
    }

    .display--section,
    .display--contact {
        font-size: clamp(60px, calc(40px + 4.5vw), 88px);
        line-height: 0.9;
    }

    .display--section.copy-scale-medium,
    .display--contact.copy-scale-medium {
        font-size: clamp(56px, calc(38px + 3.8vw), 78px);
        line-height: 0.94;
    }

    .display--section.copy-scale-long,
    .display--contact.copy-scale-long {
        font-size: clamp(50px, calc(35px + 3.3vw), 68px);
        line-height: 0.98;
    }

    .hero__support > p,
    .about-section__copy,
    .team-section__heading > p,
    .contact-section__lead,
    .interior-hero__copy,
    .editorial-copy p,
    .strengths-detail__grid p,
    .service-outcomes__grid p,
    .editorial-list p,
    .service-method__inner > p:not(.section-code),
    .interior-cta__content > p:not(.section-code),
    .content-entry__body {
        font-size: clamp(15px, calc(13.4px + 0.34vw), 17px);
    }

    .service-item strong {
        font-size: clamp(26px, calc(21px + 1vw), 31px);
    }

    .service-directory__item strong,
    .strength-line strong,
    .process-step strong,
    .editorial-list h3,
    .strengths-detail__grid h3,
    .service-outcomes__grid h3,
    .blog-card h3,
    .post-card h2 {
        font-size: clamp(25px, calc(19px + 1.8vw), 34px);
    }

    .contact-details a {
        font-size: clamp(29px, calc(23px + 1.8vw), 40px);
    }

    .site-nav a {
        font-size: clamp(42px, 8.5vw, 72px);
    }

    .site-nav .sub-menu a {
        font-size: clamp(11px, calc(10px + 0.3vw), 13px);
        line-height: 1.55;
    }
}

@media (max-width: 480px) {
    .display--hero,
    .display--interior {
        font-size: clamp(56px, 17.5vw, 64px);
    }

    .display--hero.copy-scale-medium,
    .display--interior.copy-scale-medium {
        font-size: clamp(50px, 14.4vw, 60px);
    }

    .display--hero.copy-scale-long,
    .display--interior.copy-scale-long {
        font-size: clamp(44px, 12.5vw, 54px);
    }

    .display--section,
    .display--contact {
        font-size: clamp(50px, 16vw, 64px);
    }

    .display--section.copy-scale-medium,
    .display--contact.copy-scale-medium {
        font-size: clamp(45px, 13.25vw, 57px);
    }

    .display--section.copy-scale-long,
    .display--contact.copy-scale-long {
        font-size: clamp(40px, 11.5vw, 52px);
    }

    .hero__support > p,
    .about-section__copy,
    .team-section__heading > p,
    .contact-section__lead,
    .interior-hero__copy,
    .editorial-copy p,
    .strengths-detail__grid p,
    .service-outcomes__grid p,
    .editorial-list p,
    .service-method__inner > p:not(.section-code),
    .interior-cta__content > p:not(.section-code),
    .content-entry__body {
        font-size: clamp(15px, 4vw, 16px);
        line-height: 1.65;
    }

    .service-item strong,
    .service-directory__item strong {
        font-size: clamp(22px, 6.6vw, 27px);
    }

    .strength-line strong,
    .process-step strong,
    .editorial-list h3,
    .strengths-detail__grid h3,
    .service-outcomes__grid h3,
    .blog-card h3,
    .post-card h2 {
        font-size: clamp(24px, 7vw, 29px);
    }

    .contact-details a {
        font-size: clamp(27px, 8vw, 34px);
    }

    .site-nav a {
        font-size: clamp(36px, 10.5vw, 48px);
    }
}

/*
 * Original YMQ identity
 * Uses the official white lockup on dark interface surfaces and the original
 * full-color mark as the browser icon.
 */
.site-loader__logo {
    display: block;
    width: clamp(160px, 25vw, 360px);
    height: auto;
}

.brand {
    align-items: center;
}

.brand__picture {
    display: block;
    width: auto;
    height: 60px;
}

.brand__logo {
    display: block;
    width: auto;
    height: 100%;
    max-width: none;
}

.site-footer__brand {
    align-items: center;
}

.site-footer__brand img {
    display: block;
    width: clamp(138px, 12vw, 178px);
    height: auto;
}

@media (min-width: 1101px) {
    .brand {
        min-height: 72px;
        padding-block: 5px;
    }
}

@media (max-width: 1100px) {
    .brand__picture {
        height: 58px;
    }
}

@media (max-width: 480px) {
    .brand__picture {
        height: 52px;
    }

    .site-loader__logo {
        width: min(54vw, 190px);
    }

    .site-footer__brand img {
        width: 150px;
    }
}
