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

:root {
    --blue: #071A35;
    --navy: #071A35;
    --ink: #172033;
    --muted: #5E6675;
    --surface: #F6F8FB;
    --line: #DCE3EC;
    --radius: 0;
    --heading: "Manrope", sans-serif;
    --body: "Inter", sans-serif;
}

html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background: #fff;
    color: var(--ink);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
}
body.menu-open { overflow: hidden; }
img { width: 100%; height: 100%; display: block; object-fit: cover; }
a { color: inherit; }

.appointment-float {
    position: fixed;
    z-index: 80;
    right: clamp(14px, 2.4vw, 34px);
    bottom: clamp(14px, 2.4vw, 30px);
    min-height: 54px;
    padding: 9px 20px 9px 9px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(7,26,53,.94);
    color: #fff;
    box-shadow: 0 16px 42px rgba(7,26,53,.24);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font: 700 14px/1.2 var(--body);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.appointment-float > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    font-size: 20px !important;
}
.appointment-float strong { font-size: inherit !important; }
.appointment-float:hover,
.appointment-float:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(7,26,53,.32);
}
@media (max-width: 520px) {
    .appointment-float {
        min-height: 50px;
        padding: 7px 15px 7px 7px;
        font-size: 12px;
    }
    .appointment-float > span { width: 34px; height: 34px; }
}
@media (prefers-reduced-motion: reduce) {
    .appointment-float { transition: none; }
}

.site-header {
    height: 104px;
    padding: 0 clamp(12px, 2vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), background .25s ease, box-shadow .25s ease;
}
body.has-scrolled .site-header {
    position: fixed;
    height: 78px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 1px 0 rgba(7,26,53,.08);
    backdrop-filter: blur(14px);
}
body.scrolling-down .site-header { transform: translateY(-105%); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
    width: 42px;
    height: 42px;
}
.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand-name {
    color: var(--blue);
    font: 700 1.7rem/0.8 var(--heading);
    letter-spacing: -0.06em;
}
.brand-name small {
    display: block;
    margin-top: 7px;
    color: var(--blue);
    font: 600 .85rem/1.2 var(--body);
    letter-spacing: .03em;
}
.menu-button {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #E4E9F0;
    border-radius: 0;
    background: #fff;
    display: grid;
    place-content: center;
    gap: 6px;
    cursor: pointer;
}
.menu-button span { width: 19px; height: 2px; background: var(--navy); }
.menu-panel {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    width: 50vw;
    min-width: 420px;
    height: 100dvh;
    padding: 34px clamp(34px, 6vw, 72px) 48px;
    background: rgba(7, 26, 53, .92);
    color: #fff;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transform: translateX(102%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    display: flex;
    flex-direction: column;
}
.menu-panel.open { transform: translateX(0); }
.menu-panel.preview {
    width: min(280px, 82vw);
    min-width: 0;
    padding: 24px 24px 28px;
    transform: translateX(0);
    box-shadow: -18px 0 50px rgba(7,26,53,.18);
}
.menu-panel.preview .menu-label { margin-top: 12px; font-size: 12px !important; }
.menu-panel.preview nav { margin: 18px 0 0; overflow-y: auto; }
.menu-panel.preview nav > a,
.menu-panel.preview .menu-expertise summary { padding: 9px 10px; font-size: 13px !important; }
.menu-panel.preview .menu-expertise div a { padding: 8px 0; font-size: 12px !important; }
.menu-panel.preview .menu-close { font-size: 26px !important; }
.menu-close {
    align-self: flex-end;
    border: 0;
    background: transparent;
    color: #fff;
    font: 300 2.3rem/1 var(--body);
    cursor: pointer;
}
.menu-panel nav {
    margin: auto 0;
    display: flex;
    flex-direction: column;
}
.menu-panel nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
    font: 500 18px/1.35 var(--heading);
    text-decoration: none;
    transition: color .2s ease, padding-left .25s ease;
}
.menu-panel nav a:hover { padding-left: 8px; }
.menu-panel nav a { display: flex; justify-content: space-between; gap: 20px; }
.menu-panel nav a span { color: rgba(255,255,255,.35); font-size: 10px; }
.menu-panel nav a.active { color: #9EBAE7; }
.menu-label { margin: 28px 0 0; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.menu-panel nav a:hover, .menu-panel nav a:focus-visible { color: #9EBAE7; }
.menu-expertise { border-bottom: 1px solid rgba(255,255,255,.13); }
.menu-expertise summary {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 8px 0;
    padding: 15px 14px;
    background: var(--blue);
    color: #fff;
    font: 700 18px/1.35 var(--heading);
    cursor: pointer;
    list-style: none;
}
.menu-expertise summary::-webkit-details-marker { display: none; }
.menu-expertise summary span:last-child { transition: transform .25s ease; }
.menu-expertise[open] summary span:last-child { transform: rotate(45deg); }
.menu-expertise div { padding: 0 0 10px 18px; }
.menu-expertise div a { font-size: 15px !important; }
.menu-scrim {
    position: fixed;
    z-index: 90;
    inset: 0;
    border: 0;
    background: rgba(4, 13, 27, .38);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}
.menu-scrim.open { opacity: 1; visibility: visible; }

main {
    width: calc(100% - clamp(20px, 3vw, 44px));
    max-width: 1600px;
    margin: 0 auto;
}
.hero {
    min-height: auto;
    padding: 0 0 64px;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}
.hero-copy { max-width: 900px; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.hero-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 10px;
    padding: 0 22px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 20px 60px rgba(7,26,53,.22);
    backdrop-filter: blur(14px);
}
.site-search-results {
    position: absolute;
    z-index: 5;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: min(330px, 48vh);
    overflow-y: auto;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 22px 55px rgba(7,26,53,.22);
    backdrop-filter: blur(16px);
}
.site-search-results[hidden] { display: none; }
.site-search-results a {
    padding: 15px 20px;
    display: grid;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    text-decoration: none;
}
.site-search-results a:last-child { border-bottom: 0; }
.site-search-results a:hover,
.site-search-results a:focus-visible {
    outline: 0;
    background: var(--surface);
}
.site-search-results strong { color: var(--blue); font: 700 15px/1.3 var(--heading); }
.site-search-results span { color: var(--muted); font: 400 13px/1.45 var(--body); }
.search-icon {
    position: relative;
    width: 15px;
    height: 15px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    flex: 0 0 auto;
}
.search-icon::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    right: -5px;
    bottom: -2px;
    background: var(--blue);
    transform: rotate(45deg);
    transform-origin: left center;
}
.hero-search input {
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: 400 12px/1.5 var(--body);
}
.hero-search input::placeholder { color: var(--muted); opacity: 1; }
.hero-search input::-webkit-search-cancel-button { display: none; }
.search-suggestions {
    margin: 0 0 34px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.search-suggestions button {
    position: relative;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    color: var(--blue);
    font: 700 12px/1.5 var(--body);
    cursor: pointer;
}
.search-suggestions button::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--blue);
}
.hero-location {
    margin: 26px 0 0;
    color: var(--blue);
    font: 700 12px/1.5 var(--body);
}
.eyebrow {
    margin: 0 0 22px;
    color: var(--blue);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}
h1, h2 {
    margin: 0;
    font-family: var(--heading);
    letter-spacing: -.055em;
}
h1 {
    color: var(--navy);
    font-size: 32px;
    line-height: 1.15;
}
.hero-action-row {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}
.lead {
    max-width: 540px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}
.primary-button, .footer-button {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 17px 24px;
    border-radius: 0;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
}
.hero-image {
    order: -1;
    width: 100vw;
    height: 68vh;
    min-height: 480px;
    left: 50%;
    margin: 0 0 0 -50vw;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(14, 35, 68, .11);
    position: relative;
}
.hero-image video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,26,53,.18), rgba(7,26,53,.04) 45%, rgba(7,26,53,.22));
    pointer-events: none;
}
.hero-search-overlay {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: min(680px, calc(100% - 40px));
    transform: translate(-50%, -50%);
}
.hero-search-overlay .hero-search { margin: 0; }
.hero-search-overlay .hero-search input {
    min-height: 66px;
    background: transparent;
    color: var(--navy);
}
.hero-search-overlay .search-suggestions {
    justify-content: center;
    margin-top: 14px;
}
.hero-search-overlay .search-suggestions button {
    padding: 9px 13px;
    border-color: rgba(255,255,255,.52);
    background: rgba(7,26,53,.48);
    color: #fff;
    backdrop-filter: blur(10px);
}
.hero-search-overlay .search-suggestions button:hover,
.hero-search-overlay .search-suggestions button:focus-visible {
    background: #fff;
    color: var(--navy);
}
.hero-image img {
    width: 100%;
    height: 190%;
    object-position: 50% 0;
}

.service-section {
    margin: clamp(48px, 6vw, 82px) 0;
    border-bottom: 1px solid var(--line);
}
.service-summary {
    list-style: none;
    padding: clamp(38px, 5vw, 70px) 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: end;
    cursor: pointer;
}
.service-summary::-webkit-details-marker { display: none; }
.service-summary::marker { content: ""; }
.service-title { display: block; }
.service-title .eyebrow { display: block; }
.service-heading {
    display: block;
    max-width: 930px;
    color: var(--ink);
    font: 600 32px/1.2 var(--heading);
    letter-spacing: -.055em;
}
.summary-action {
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--blue);
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}
.show-less { display: none; }
.summary-symbol { font-size: 1.6rem; font-weight: 400; transition: transform .25s ease; }
.service-section[open] .show-more { display: none; }
.service-section[open] .show-less { display: inline; }
.service-section[open] .summary-symbol { transform: rotate(45deg); }
.service-content {
    padding: 0 0 clamp(46px, 7vw, 90px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
}
.service-section.reverse .service-content { grid-template-columns: 1fr; }
.service-copy {
    max-width: 760px;
    padding: 0 0 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}
.process h2 {
    max-width: 650px;
    font-size: 32px;
    line-height: 1.2;
}
.service-copy > p:not(.eyebrow) {
    max-width: 500px;
    margin: 28px 0 32px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}
.text-link {
    color: var(--blue);
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    text-decoration: none;
}
.text-link span { margin-left: 12px; }
.service-image {
    min-height: min(62vw, 720px);
    max-height: 720px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
}
.service-image img[src="gears-research-process.png"] {
    object-fit: contain;
    background: #F6F1E9;
}

.statement-band {
    margin: 40px 0 110px;
    padding: clamp(55px, 8vw, 110px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
}
.statement-band > p { margin: 0 0 26px; color: var(--blue); font-size: 13px; font-weight: 600; }
.statement-band h2 { max-width: 1100px; font-size: clamp(30px, 4vw, 58px); line-height: 1.12; }
.overview-section, .advantage-section, .track-record, .impact-section { padding: 90px 0; }
.section-heading { max-width: 780px; margin-bottom: 46px; }
.section-heading h2, .track-record h2, .impact-section h2 { color: var(--navy); font-size: clamp(30px, 4vw, 52px); line-height: 1.14; }
.section-heading > p:last-child { max-width: 650px; margin: 24px 0 0; color: var(--muted); line-height: 1.7; }
.division-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.expertise-disclosure { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.expertise-disclosure > summary {
    min-height: 88px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--blue);
    color: #fff;
    font: 700 32px/1.15 var(--heading);
    cursor: pointer;
    list-style: none;
}
.expertise-disclosure > summary::-webkit-details-marker { display: none; }
.expertise-toggle { color: #fff; font-size: 30px !important; transition: transform .3s ease; }
.expertise-disclosure[open] .expertise-toggle { transform: rotate(45deg); }
.expertise-disclosure .division-grid { border-top: 1px solid var(--line); }
.expertise-disclosure > summary > span:first-child {
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
}
@keyframes expertise-pulse {
    0%, 100% {
        opacity: .55;
        box-shadow: 0 0 0 0 rgba(255,255,255,.32);
        transform: scale(.94);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(255,255,255,0);
        transform: scale(1);
    }
}
@media (max-width: 760px) {
    .expertise-disclosure > summary {
        padding: 0 18px;
        gap: 12px;
    }
    .expertise-disclosure > summary > span:first-child {
        font-size: 23px !important;
    }
}
.publication-page .page-hero,
.tools-page .page-hero { grid-template-columns: 1fr; }
.publication-page .page-hero > div,
.tools-page .page-hero > div { max-width: 1050px; }
.publication-page .page-hero h1,
.tools-page .page-hero h1 {
    font-size: clamp(48px, 7vw, 92px) !important;
    line-height: 1.02 !important;
}
.pilot-call {
    margin: 80px 0 0;
    padding: clamp(45px, 7vw, 85px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 45px;
    align-items: end;
    background: var(--blue);
    color: #fff;
}
.pilot-call .eyebrow { color: #BFD3F1; }
.pilot-call h2 {
    max-width: 850px;
    color: #fff;
    font: 700 clamp(30px, 4vw, 54px)/1.12 var(--heading);
    letter-spacing: -.045em;
}
.pilot-call a {
    padding: 17px 24px;
    border: 1px solid rgba(255,255,255,.65);
    color: #fff;
    font-size: 16px !important;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.home-pilot-call { margin-bottom: 90px; }

.statistics-page {
    background: var(--blue);
    color: #fff;
}
.statistics-page .site-header { background: #fff; }
.statistics-page main {
    width: calc(100% - clamp(32px, 7vw, 110px));
    max-width: 1500px;
    padding: 150px 0 100px;
}
.statistics-intro {
    max-width: 900px;
    padding: 70px 0 80px;
}
.statistics-intro .eyebrow,
.statistics-page .statistics-block h2 { color: #BFD3F1; }
.statistics-intro h1 { color: #fff; }
.statistics-intro > p:last-child {
    max-width: 720px;
    margin-top: 28px;
    color: rgba(255,255,255,.76);
    font-size: 18px !important;
    line-height: 1.7 !important;
}
.statistics-block {
    padding: 55px 0;
    border-top: 1px solid rgba(255,255,255,.25);
}
.statistics-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,.25);
}
.market-statistics { grid-template-columns: repeat(3, 1fr); }
.statistics-list article {
    min-height: 150px;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.25);
    border-bottom: 1px solid rgba(255,255,255,.25);
}
.statistics-list article:nth-child(4n) { border-right: 0; }
.market-statistics article:nth-child(3n) { border-right: 0; }
.statistics-list strong {
    display: block;
    color: #fff;
    font-size: 16px !important;
}
.statistics-list span,
.statistics-list small {
    display: block;
    margin-top: 18px;
    color: #DCE8F8;
    font-size: 16px !important;
    line-height: 1.45 !important;
}
.statistics-list small { margin-top: 6px; color: rgba(255,255,255,.6); }
.statistics-contact {
    margin-top: 50px;
    padding: 17px 24px;
    display: inline-flex;
    border: 1px solid rgba(255,255,255,.65);
    color: #fff;
    font-size: 16px !important;
    font-weight: 700;
    text-decoration: none;
}

.scroll-orb {
    --orb-scale: 1;
    --orb-opacity: .12;
    position: fixed;
    z-index: 6;
    top: 50%;
    right: max(12px, 1.2vw);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    opacity: var(--orb-opacity);
    transform: translateY(-50%) scale(var(--orb-scale));
    transform-origin: center;
    transition: transform .18s ease-out, opacity .25s ease;
    pointer-events: none;
}

@media (max-width: 850px) {
    .scroll-orb {
        top: 62%;
        right: 5px;
        width: 8px;
        height: 8px;
    }
}
.division-card { min-height: 410px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; text-decoration: none; transition: background .25s, color .25s; }
.division-card,
.content-card,
.tool-card,
.gallery-item,
.market-grid article {
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, background .25s ease, color .25s ease;
}
@media (hover: hover) {
    .division-card:hover,
    .content-card:hover,
    .tool-card:hover,
    .gallery-item:hover,
    .market-grid article:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(7,26,53,.09);
        position: relative;
        z-index: 2;
    }
}
.division-card:hover { background: var(--surface); color: var(--ink); }
.division-card:hover p { color: var(--muted); }
.division-card:hover .card-number { color: var(--blue); }
.card-number { color: var(--blue); font-size: 11px; font-weight: 600; }
.division-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--blue);
    font: 600 30px/1 var(--heading);
    overflow: hidden;
}
.division-icon.image-icon { background: #ff7417; border-color: #ff7417; }
.division-icon img { width: 100%; height: 100%; object-fit: cover; }
.division-card h3 { margin: 45px 0 18px; font: 700 25px/1.2 var(--heading); letter-spacing: -.04em; }
.division-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.card-link { margin-top: auto; padding-top: 28px; color: var(--blue); font-size: 11px; font-weight: 600; }
.division-card:hover .card-link { color: var(--blue); }
.philosophy-section { margin: 60px 0; padding: clamp(70px, 9vw, 130px) clamp(28px, 6vw, 90px); background: var(--surface); }
.philosophy-copy { max-width: 950px; }
.philosophy-copy h2 { color: var(--navy); font-size: clamp(30px, 4.5vw, 62px); line-height: 1.12; }
.sequence { position: relative; margin: 85px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); }
.sequence::before { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 1px; background: #AABBD1; }
.sequence li { position: relative; min-height: 130px; padding: 42px 24px 0 0; }
.sequence li::before { content: ""; position: absolute; z-index: 1; top: 3px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px var(--surface); }
.sequence strong { display: block; margin: 0; font: 600 20px/1.2 var(--heading); }
.sequence p { margin: 9px 0 0; color: var(--muted); font-size: 12px; }
.track-record { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; border-bottom: 1px solid var(--line); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--surface); }
.metric-grid article { min-height: 210px; padding: 28px; border-right: 1px solid var(--line); }
.metric-grid article:last-child { border-right: 0; }
.metric-grid strong { display: block; color: var(--blue); font: 600 38px/1 var(--heading); }
.metric-grid span { display: block; margin-top: 54px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.advantage-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.advantage-list li { position: relative; padding: 28px 0 28px 34px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: baseline; }
.advantage-list li::before { content: ""; position: absolute; top: 34px; left: 2px; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); }
.advantage-list h3 { margin: 0; font: 600 19px/1.35 var(--heading); }
.advantage-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.market-section { width: 100vw; margin-left: calc(50% - 50vw); padding: clamp(75px, 9vw, 130px) max(24px, calc((100vw - 1500px) / 2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.section-heading.light h2 { color: var(--navy); }
.market-section .eyebrow { color: var(--blue); }
.market-grid { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); background: #fff; }
.market-grid article { min-height: 230px; padding: 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; background: #fff; }
.market-grid article:last-child { border-right: 0; }
.market-grid span { color: var(--muted); font-size: 12px; }
.market-grid strong { margin-top: auto; color: var(--blue); font: 600 44px/1 var(--heading); }
.market-grid small { margin-top: 10px; color: var(--muted); font-size: 10px; }
.vision-section { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.vision-section article { padding: clamp(65px, 7vw, 105px) clamp(28px, 5vw, 75px); }
.vision-section article:first-child { border-right: 1px solid var(--line); }
.vision-section h2 { color: var(--navy); font-size: clamp(28px, 3.5vw, 46px); line-height: 1.15; }
.impact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.impact-points p { margin: 0; padding: 23px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.impact-points p:last-child { border-bottom: 1px solid var(--line); }

.expertise-brief {
    padding: clamp(70px, 8vw, 110px) 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
    gap: clamp(45px, 7vw, 100px);
    align-items: center;
}
.expertise-brief > div:first-child { max-width: 660px; }
.expertise-brief h2 {
    color: var(--navy);
    font: 700 clamp(30px, 4vw, 52px)/1.12 var(--heading);
    letter-spacing: -.045em;
}
.expertise-brief > div:first-child > p:last-child {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px !important;
    line-height: 1.7 !important;
}
.value-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
}
.value-flow span {
    position: relative;
    min-width: 0;
    padding: 58px 10px 0;
    color: var(--navy);
    font-size: 13px !important;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}
.value-flow span::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 50%;
    width: 28px;
    height: 28px;
    border: 8px solid #DDE7F5;
    border-radius: 50%;
    background: var(--blue);
    transform: translateX(-50%);
}
.value-flow span:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 15px;
    right: -10px;
    color: var(--blue);
    font-size: 22px !important;
    font-weight: 400;
}

/* Dedicated content pages */
.inner-page main { padding-top: 150px; }
.simple-expertise-page {
    min-height: 100vh;
    padding-top: 0 !important;
    display: grid;
    align-items: center;
}
.simple-expertise {
    width: min(920px, 100%);
    padding: clamp(150px, 19vh, 230px) 0 clamp(90px, 13vh, 150px);
}
.simple-expertise figure {
    width: 100%;
    height: min(52vh, 540px);
    min-height: 320px;
    margin: 0 0 clamp(50px, 7vw, 82px);
    overflow: hidden;
    background: var(--surface);
}
.simple-expertise figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.simple-expertise-content { max-width: 780px; }
.simple-expertise h1 {
    max-width: 820px;
    color: var(--navy);
    font: 700 clamp(38px, 6vw, 78px)/1.04 var(--heading);
    letter-spacing: -.055em;
}
.simple-expertise > p:last-child {
    max-width: 760px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: 18px !important;
    line-height: 1.75 !important;
}
.simple-expertise-content > p:not(.eyebrow) {
    max-width: 720px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 18px !important;
    line-height: 1.7 !important;
}
.simple-expertise-content ul {
    margin: 30px 0 0;
    padding-left: 24px;
    color: var(--ink);
}
.simple-expertise-content li {
    margin: 10px 0;
    padding-left: 5px;
    font-size: 17px !important;
    line-height: 1.55 !important;
}
.simple-expertise-content li::marker { color: var(--blue); }
.expertise-contact {
    margin-top: 42px;
    padding: 17px 24px;
    display: inline-flex;
    align-items: center;
    background: var(--blue);
    color: #fff;
    font-size: 16px !important;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.expertise-contact:hover,
.expertise-contact:focus-visible {
    background: var(--navy);
    transform: translateY(-2px);
}
.seller-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid var(--navy);
}
.seller-eyebrow span {
    animation: expertise-pulse 1.6s ease-in-out infinite;
}
.seller-action {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.seller-action .seller-primary-action {
    margin-top: 0;
    min-height: 58px;
    padding-inline: 30px;
    box-shadow: 0 14px 34px rgba(7,26,53,.18);
}
.seller-action > p {
    max-width: 280px;
    margin: 0;
    color: var(--muted);
    font-size: 14px !important;
    line-height: 1.55;
}
@media (max-width: 600px) {
    .seller-action {
        align-items: stretch;
        flex-direction: column;
    }
    .seller-action .seller-primary-action {
        justify-content: center;
        text-align: center;
    }
}
.menu-panel nav a > span { display: none; }
.page-hero { min-height: 58vh; padding: 70px 0 90px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: end; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; font-size: clamp(42px, 6vw, 82px); line-height: 1.02; }
.page-hero .lead { margin-top: 28px; max-width: 680px; }
.page-index { color: var(--blue); font: 600 13px/1 var(--heading); }
.content-section { padding: 90px 0; border-bottom: 1px solid var(--line); }
.content-section > .section-heading { max-width: 900px; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.content-card { min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.content-card h3 { margin: 45px 0 15px; color: var(--navy); font: 600 20px/1.3 var(--heading); }
.content-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.content-card .card-number { display: block; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(35px, 7vw, 100px); }
.rich-copy h2 { color: var(--navy); font-size: clamp(30px, 4vw, 52px); line-height: 1.12; }
.rich-copy h3 { margin: 42px 0 14px; color: var(--navy); font: 600 22px/1.3 var(--heading); }
.rich-copy p, .rich-copy li { color: var(--muted); font-size: 15px; line-height: 1.8; }
.rich-copy ul { padding-left: 20px; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th, .data-table td { padding: 18px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { background: var(--surface); color: var(--navy); font-family: var(--heading); }
.data-table td { color: var(--muted); line-height: 1.55; }
.callout { padding: clamp(38px, 6vw, 80px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.callout h2 { max-width: 900px; color: var(--navy); font-size: clamp(30px, 4vw, 55px); line-height: 1.12; }
.callout p { max-width: 700px; margin: 24px 0 0; color: var(--muted); line-height: 1.7; }
.filter-bar { margin-bottom: 34px; display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { padding: 11px 17px; border: 1px solid var(--line); background: #fff; color: var(--muted); font: 600 11px/1 var(--body); cursor: pointer; }
.filter-button.active, .filter-button:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { min-height: 360px; border: 1px solid var(--line); background: #fff; }
.publication-list-section { padding-top: 42px; }
.publication-list { border-top: 1px solid var(--line); }
.publication-row {
    min-height: 190px;
    padding: 34px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(32px, 7vw, 110px);
    border-bottom: 1px solid var(--line);
}
.publication-row-main { max-width: 900px; }
.publication-row h2 {
    margin: 0;
    color: var(--navy);
    font: 700 clamp(23px, 3vw, 32px)/1.2 var(--heading);
    letter-spacing: -.04em;
}
.publication-row p {
    max-width: 760px;
    margin: 17px 0 0;
    color: var(--muted);
    font-size: 16px !important;
    line-height: 1.65 !important;
}
.publication-row > a {
    padding-bottom: 3px;
    color: var(--navy);
    font-size: 15px !important;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.publication-row > a:hover,
.publication-row > a:focus-visible { text-decoration: underline; }
.offer-pill {
    width: fit-content;
    margin: 0 0 18px;
    padding: 7px 12px;
    display: inline-flex;
    border-radius: 999px;
    background: #178447;
    color: #fff;
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 720px) {
    .publication-row {
        min-height: 0;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 24px;
    }
    .publication-row > a { justify-self: start; }
}
.gallery-item[hidden] { display: none; }
.gallery-item figure { height: 210px; margin: 0; overflow: hidden; background: var(--surface); }
.gallery-item figure img { object-fit: cover; }
.gallery-item div { padding: 22px; }
.gallery-item small { color: var(--blue); font-weight: 600; }
.gallery-item h3 { margin: 14px 0 10px; color: var(--navy); font: 600 19px/1.35 var(--heading); }
.gallery-item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.publication-gallery-page .gallery-grid,
.gallery-grid {
    display: block;
    border-top: 1px solid var(--line);
}
.gallery-item {
    min-height: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
}
.gallery-item div {
    padding: 28px 0;
    display: grid;
    grid-template-columns: minmax(130px, .35fr) minmax(220px, .8fr) minmax(280px, 1.2fr);
    gap: 32px;
    align-items: baseline;
}
.gallery-item h3 { margin: 0; }
.gallery-item p { margin: 0; }
.tool-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.tool-card { min-height: 250px; padding: 32px; border: 1px solid var(--line); background: var(--surface); }
.tool-card h3 { margin: 55px 0 12px; color: var(--navy); font: 600 23px/1.25 var(--heading); }
.tool-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-list { border-top: 1px solid var(--line); }
.contact-list a, .contact-list div { padding: 22px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--navy); text-decoration: none; font-size: 14px; }
.contact-list span { color: var(--muted); }

.process {
    min-height: 75vh;
    padding: clamp(100px, 12vw, 180px) clamp(20px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.process-intro { max-width: 750px; margin-bottom: clamp(80px, 10vw, 130px); }
.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 5vw, 80px);
}
.timeline li {
    position: relative;
    padding-top: 28px;
    color: var(--ink);
    font: 500 18px/1.5 var(--body);
}
.timeline li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 0;
    background: var(--blue);
    z-index: 2;
}
.timeline li::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #AABBD1;
}
.timeline li:last-child::after { display: none; }
.timeline li strong {
    display: block;
    margin-bottom: 12px;
    color: var(--navy);
    font: 600 18px/1.4 var(--heading);
}
.about-section {
    padding: clamp(70px, 8vw, 120px) 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 7vw, 100px);
}
.about-section h2 { font-size: 32px; line-height: 1.2; }
.about-action {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}
.about-action p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }

.site-footer {
    margin-top: 60px;
    padding: clamp(100px, 12vw, 170px) clamp(24px, 7vw, 110px) 48px;
    background: var(--navy);
    color: #fff;
}
.footer-inner { max-width: 1300px; margin: 0 auto; }
.site-footer .eyebrow { color: #A9C5ED; }
.site-footer h2 {
    max-width: 1050px;
    font-size: 32px;
    line-height: 1.2;
}
.footer-button { background: #fff; color: var(--navy); }
.footer-action-row {
    margin-top: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
}
.footer-stats {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.16);
    border-left: 1px solid rgba(255,255,255,.16);
}
.footer-stats > div {
    min-height: 130px;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.footer-stats strong {
    display: block;
    color: #fff;
    font: 700 32px/1 var(--heading);
}
.footer-stats span {
    display: block;
    margin-top: 16px;
    color: #A9C5ED;
    font: 700 12px/1.5 var(--body);
}
.contact-details {
    font-size: 18px;
    line-height: 1.6;
}
.contact-details p { margin: 0 0 8px; color: rgba(255,255,255,.68); }
.contact-details a { color: #fff; font-weight: 600; text-decoration: none; }
.contact-phone-row { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 13px; }
.contact-phone-row a { border-bottom: 1px solid rgba(255,255,255,.25); }
.quick-contact {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.quick-contact a {
    width: 76px;
    min-height: 76px;
    border: 1px solid rgba(255,255,255,.28);
    display: grid;
    place-content: center;
    gap: 6px;
    text-align: center;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.quick-contact a span { font: 700 19px/1 var(--heading); }
.quick-contact a small { color: #A9C5ED; font-size: 9px !important; font-weight: 600; }
.quick-contact a:hover,
.quick-contact a:focus-visible { background: #fff; color: var(--navy); transform: translateY(-3px); }
.quick-contact a:hover small,
.quick-contact a:focus-visible small { color: var(--blue); }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
}
.reveal.revealed { opacity: 1; transform: none; }
.hero-search.needs-input { animation: search-nudge .4s ease; }
@keyframes search-nudge {
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-3px); }
}
.footer-meta {
    margin-top: clamp(100px, 12vw, 160px);
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.16);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    color: rgba(255,255,255,.62);
    font-size: 12px;
}
.footer-meta a { text-decoration: none; }
.legal-links { display: flex; gap: 24px; }

@media (max-width: 850px) {
    body { font-size: 16px; }
    .site-header { height: 84px; }
    .menu-panel { width: 88vw; min-width: 0; }
    main { width: calc(100% - 16px); }
    .hero {
        min-height: auto;
        padding: 0 0 40px;
        grid-template-columns: 1fr;
        gap: 28px;
    }
    h1 { font-size: 28px; }
    .hero-image { min-height: 390px; height: 58vh; }
    .service-summary {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }
    .eyebrow {
        margin-bottom: 16px;
        font-size: 1rem;
        line-height: 1.5;
        letter-spacing: 0;
    }
    .service-heading { font-size: 32px; line-height: 1.2; }
    .summary-action { padding: 0; }
    .summary-action,
    .text-link,
    .primary-button,
    .footer-button {
        font-size: 12px;
        line-height: 1.4;
    }
    .service-content,
    .service-section.reverse .service-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .service-copy { padding: 0 0 28px; }
    .hero-action-row,
    .service-copy,
    .about-section,
    .about-action,
    .footer-action-row {
        grid-template-columns: 1fr;
    }
    .primary-button,
    .text-link,
    .footer-button {
        justify-self: end;
    }
    .service-copy > p:not(.eyebrow),
    .lead {
        font-size: 18px;
        line-height: 1.7;
    }
    .service-image { min-height: 360px; }
    .process { min-height: auto; padding-inline: 12px; }
    .timeline { grid-template-columns: 1fr; gap: 0; }
    .timeline li { min-height: 120px; padding: 0 0 0 32px; }
    .timeline li { font-size: 18px; line-height: 1.5; }
    .timeline li::after { top: 0; left: 5px; width: 1px; height: 100%; }
    .footer-meta { flex-direction: column; }
    .footer-meta { font-size: 12px; line-height: 1.65; }
    .legal-links { flex-wrap: wrap; }
    .footer-stats,
    .metric-grid {
        grid-template-columns: repeat(4, minmax(170px, 1fr));
        overflow-x: auto;
    }
    .market-grid {
        grid-template-columns: repeat(6, minmax(170px, 1fr));
        overflow-x: auto;
    }
    .division-grid { grid-template-columns: 1fr; }
    .sequence { grid-template-columns: repeat(4, minmax(145px, 1fr)); overflow-x: auto; }
    .division-card { min-height: 330px; }
    .track-record, .impact-section, .vision-section { grid-template-columns: 1fr; gap: 36px; }
    .vision-section article:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
    .metric-grid article { border-right: 1px solid var(--line); }
    .metric-grid article:last-child { border-right: 0; }
    .advantage-list li { grid-template-columns: 1fr; gap: 10px; }
    .advantage-list p { grid-column: auto; }
    .inner-page main { padding-top: 105px; }
    .inner-page .simple-expertise-page { padding-top: 0; }
    .simple-expertise { padding: 130px 12px 80px; }
    .simple-expertise figure { height: 42vh; min-height: 280px; margin-bottom: 45px; }
    .pilot-call { grid-template-columns: 1fr; align-items: start; }
    .statistics-list,
    .market-statistics { grid-template-columns: repeat(2, 1fr); }
    .statistics-list article:nth-child(n) { border-right: 1px solid rgba(255,255,255,.25); }
    .statistics-list article:nth-child(even) { border-right: 0; }
    .page-hero, .content-grid, .two-column, .contact-grid { grid-template-columns: 1fr; }
    .expertise-brief { grid-template-columns: 1fr; gap: 42px; }
    .value-flow { min-width: 650px; }
    .expertise-brief { overflow-x: auto; }
    .page-hero { min-height: auto; gap: 25px; }
    .content-grid, .gallery-grid, .tool-grid { grid-template-columns: 1fr; }
    .data-table { display: block; overflow-x: auto; }
    .gallery-item { min-height: 330px; }
    body.has-scrolled .site-header { height: 68px; }
    .quick-contact a { width: 68px; min-height: 68px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .menu-panel, .menu-scrim, .site-header, .reveal { transition: none; }
    .reveal { opacity: 1; transform: none; }
}

/* Typography system: 32 bold, 12 light, 12 bold blue */
body,
p,
li,
td,
small,
span {
    font-size: 12px;
    font-weight: 400;
}
h1,
h2,
.page-hero h1,
.service-heading,
.process h2,
.about-section h2,
.site-footer h2,
.statement-band h2,
.section-heading h2,
.track-record h2,
.impact-section h2,
.philosophy-copy h2,
.vision-section h2,
.rich-copy h2,
.callout h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}
h3,
.division-card h3,
.content-card h3,
.tool-card h3,
.gallery-item h3,
.advantage-list h3 {
    color: var(--blue);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
}
.eyebrow,
.card-number,
.card-link,
.text-link,
.page-index,
.filter-button,
.menu-label,
.market-grid small,
.gallery-item small {
    color: var(--blue);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
}
.lead,
.service-copy > p:not(.eyebrow),
.about-action p,
.contact-details,
.timeline li {
    font-size: 12px;
    line-height: 1.7;
    font-weight: 400;
}
.metric-grid strong,
.market-grid strong {
    font-size: 16px;
    font-weight: 700;
}
.brand-name {
    font-size: 32px;
    font-weight: 700;
}
.brand-name small {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}
.menu-panel nav a,
.primary-button,
.footer-button,
.summary-action {
    font-size: 12px;
    font-weight: 700;
}

body * {
    font-size: 12px !important;
}
h1,
h2,
.page-hero h1,
.service-heading,
.process h2,
.about-section h2,
.site-footer h2,
.statement-band h2,
.section-heading h2,
.track-record h2,
.impact-section h2,
.philosophy-copy h2,
.vision-section h2,
.rich-copy h2,
.callout h2,
.brand-name,
.footer-stats strong,
.metric-grid strong,
.market-grid strong {
    font-size: 16px !important;
    font-weight: 700;
}
.brand-name small {
    font-size: 12px !important;
}

@media (max-width: 600px) {
    h1,
    h2,
    .page-hero h1,
    .service-heading,
    .process h2,
    .about-section h2,
    .site-footer h2,
    .statement-band h2,
    .section-heading h2,
    .track-record h2,
    .impact-section h2,
    .philosophy-copy h2,
    .vision-section h2,
    .rich-copy h2,
    .callout h2 {
        font-size: clamp(23px, 7vw, 28px) !important;
        line-height: 1.18;
        overflow-wrap: anywhere;
    }
    .brand-name { font-size: 25px !important; }
    .footer-stats strong,
    .metric-grid strong,
    .market-grid strong { font-size: 16px !important; }
    .hero-image { min-height: 360px; height: 56vh; }
    .hero-search-overlay { width: calc(100% - 24px); }
    .hero-search-overlay .hero-search { padding: 0 14px; }
    .hero-search-overlay .hero-search input { min-height: 58px; }
    .hero-search-overlay .search-suggestions { gap: 7px; }
    .page-hero { padding: 45px 0 60px; }
    .statement-band,
    .content-section,
    .overview-section,
    .philosophy-section,
    .track-record,
    .advantage-section,
    .market-section,
    .vision-section,
    .impact-section { padding-top: 64px; padding-bottom: 64px; }
}

.division-card h3 {
    font-size: 24px !important;
    line-height: 1.18 !important;
}
.division-icon {
    font-size: 30px !important;
}
.sequence strong {
    font-size: 18px !important;
}

.section-heading > p:last-child,
.division-card p,
.sequence p,
.metric-grid span,
.market-grid span,
.market-grid small,
.advantage-list p,
.impact-points p,
.rich-copy p,
.content-card p,
.gallery-item p,
.tool-card p,
.callout p {
    font-size: 18px !important;
    line-height: 1.65 !important;
}
.eyebrow,
.card-link,
.page-index,
.filter-button {
    font-size: 16px !important;
}
.footer-stats span,
.footer-meta {
    font-size: 16px !important;
}

.hero-search input {
    font-size: 18px !important;
}
.search-suggestions button {
    font-size: 15px !important;
}
.hero .lead,
.hero-action-row .lead {
    font-size: 18px !important;
    line-height: 1.65 !important;
}
.hero .primary-button {
    font-size: 16px !important;
}
.menu-label {
    font-size: 16px !important;
}
.menu-panel nav a {
    font-size: 18px !important;
}
.menu-panel nav a span {
    font-size: 14px !important;
}
.menu-close {
    font-size: 34px !important;
}
.site-search-results strong {
    font-size: 15px !important;
}
.site-search-results span {
    font-size: 13px !important;
}
.simple-expertise h1 {
    font-size: clamp(38px, 6vw, 78px) !important;
    line-height: 1.04 !important;
}

@media (max-width: 600px) {
    .section-heading > p:last-child,
    .division-card p,
    .sequence p,
    .metric-grid span,
    .market-grid span,
    .market-grid small,
    .advantage-list p,
    .impact-points p,
    .rich-copy p,
    .content-card p,
    .gallery-item p,
    .tool-card p,
    .callout p {
        font-size: 16px !important;
    }
    .hero-search input,
    .hero .lead,
    .hero-action-row .lead,
    .menu-panel nav a {
        font-size: 16px !important;
    }
    .search-suggestions button {
        font-size: 13px !important;
    }
    .simple-expertise h1 {
        font-size: clamp(32px, 10vw, 46px) !important;
    }
    .expertise-disclosure > summary { font-size: 24px; }
    .publication-page .page-hero h1,
    .tools-page .page-hero h1 { font-size: clamp(38px, 12vw, 56px) !important; }
    .gallery-item div {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 24px 0;
    }
}

/* Final heading scale: no page heading may exceed 32px. */
html body h1:not(#heading-size-override),
html body h2:not(#heading-size-override) {
    font-size: clamp(26px, 4vw, 32px) !important;
    line-height: 1.2 !important;
}

/* Home page horizontal story slider */
.home-slider {
    padding: 90px 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.home-slider-heading { order: 1; }
.home-slider-track { order: 2; }
.home-slider-status { order: 3; }
.home-slider-heading {
    margin-bottom: 34px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}
.home-slider-heading > div:first-child { max-width: 720px; }
.home-slider-heading .eyebrow { margin-bottom: 16px; }
.home-slider-controls { display: flex; gap: 10px; }
.home-slider-button {
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    color: var(--navy);
    font: 500 22px/1 var(--body);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.home-slider-button:hover,
.home-slider-button:focus-visible {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}
.home-slider-track {
    display: flex;
    gap: clamp(18px, 2.2vw, 34px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    outline: none;
}
.home-slider-track::-webkit-scrollbar { display: none; }
.home-slide {
    flex: 0 0 min(88vw, 1120px);
    min-height: 470px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    background: var(--surface);
    color: inherit;
    text-decoration: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.home-slide-image { min-height: 470px; overflow: hidden; }
.home-slide-image img { transition: transform .7s cubic-bezier(.22, 1, .36, 1); }
.home-slide:hover .home-slide-image img { transform: scale(1.025); }
.home-slide-copy {
    padding: clamp(34px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-slide-copy h3 {
    margin: 0 0 20px;
    color: var(--navy);
    font: 700 clamp(32px, 4vw, 52px)/1.08 var(--heading);
    letter-spacing: -.04em;
}
.home-slide-copy p {
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}
.home-slide-link {
    align-self: flex-start;
    color: var(--blue);
    font-size: 15px;
    font-weight: 600;
}
.home-slider-status {
    margin-top: 24px;
    display: grid;
    grid-template-columns: auto minmax(100px, 240px) auto;
    align-items: center;
    justify-content: end;
    gap: 14px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
}
.home-slider-progress {
    height: 2px;
    overflow: hidden;
    background: var(--line);
}
.home-slider-progress i {
    width: 25%;
    height: 100%;
    display: block;
    background: var(--blue);
    transform-origin: left center;
    transition: transform .3s ease;
}

@media (max-width: 850px) {
    .home-slider { padding: 64px 0; }
    .home-slider-heading { align-items: center; }
    .home-slide {
        flex-basis: 92%;
        min-height: 0;
        grid-template-columns: 1fr;
    }
    .home-slide-image { min-height: 280px; aspect-ratio: 16 / 10; }
    .home-slide-copy { padding: 32px 26px 38px; }
    .home-slide-copy > span { margin-bottom: 18px; }
}

@media (max-width: 520px) {
    .home-slider-heading { align-items: end; }
    .home-slider-button { width: 44px; height: 44px; }
    .home-slider-controls .home-slider-button:first-child { display: none; }
    .home-slide { flex-basis: 94%; }
    .home-slide-image { min-height: 220px; }
    .home-slider-status { grid-template-columns: auto minmax(80px, 1fr) auto; }
}

@media (prefers-reduced-motion: reduce) {
    .home-slider-track { scroll-behavior: auto; }
    .home-slide-image img,
    .home-slider-progress i { transition: none; }
    .seller-eyebrow span { animation: none; }
}

/* Final compact typography scale */
html body {
    font-size: 16px;
}
html body h1,
html body h2,
html body .page-hero h1,
html body .simple-expertise h1,
html body .publication-page .page-hero h1,
html body .tools-page .page-hero h1 {
    font-size: clamp(25px, 3.4vw, 30px) !important;
    line-height: 1.18 !important;
}
html body .home-slide-copy h3 {
    font-size: clamp(27px, 3.2vw, 36px) !important;
    line-height: 1.12 !important;
}
html body .division-card h3,
html body .content-card h3,
html body .tool-card h3,
html body .gallery-item h3,
html body .advantage-list h3,
html body .publication-row h2 {
    font-size: clamp(19px, 2vw, 23px) !important;
}
html body p,
html body li,
html body .lead,
html body .hero .lead,
html body .hero-action-row .lead,
html body .section-heading > p:last-child,
html body .division-card p,
html body .sequence p,
html body .advantage-list p,
html body .impact-points p,
html body .rich-copy p,
html body .content-card p,
html body .gallery-item p,
html body .tool-card p,
html body .callout p,
html body .simple-expertise-content > p:not(.eyebrow),
html body .simple-expertise-content li,
html body .publication-row p,
html body .home-slide-copy p {
    font-size: 16px !important;
    line-height: 1.65 !important;
}
html body .eyebrow,
html body .card-link,
html body .text-link,
html body .page-index,
html body .filter-button,
html body .home-slide-link,
html body .primary-button,
html body .footer-button,
html body .expertise-contact,
html body .menu-label {
    font-size: 14px !important;
}
html body .menu-panel nav a {
    font-size: 16px !important;
}

@media (max-width: 600px) {
    html body h1,
    html body h2,
    html body .page-hero h1,
    html body .simple-expertise h1 {
        font-size: clamp(23px, 7vw, 27px) !important;
    }
    html body .home-slide-copy h3 {
        font-size: clamp(25px, 8vw, 31px) !important;
    }
}
