:root {
    --ink: #11314a;
    --ink-soft: #48627a;
    --ocean: #2d5fbe;
    --lagoon: #62b6df;
    --reef: #d9f4f3;
    --sun: #f3c56a;
    --sand: #fcf4d2;
    --forest: #056c43;
    --paper: #f8f6ee;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: rgba(255, 255, 255, 0.88);
    --line: rgba(17, 49, 74, 0.1);
    --line-soft: rgba(17, 49, 74, 0.08);
    --shadow: 0 18px 42px rgba(17, 49, 74, 0.08);
    --radius: 24px;
    --container: 1180px;
    --font-sans: 'Manrope', 'Avenir Next', 'Segoe UI', sans-serif;
    --font-display: 'Inter', 'Avenir Next', 'Segoe UI', sans-serif;
    --tracking-label: 0.1em;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background:
        radial-gradient(circle at top left, rgba(98, 182, 223, 0.18), transparent 25rem),
        linear-gradient(180deg, #fcf8ef 0%, var(--paper) 46%, #eff5f4 100%);
    color: var(--ink);
    line-height: 1.68;
    letter-spacing: -0.005em;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
}

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

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

p,
ul {
    margin: 0;
}

ul {
    padding-left: 1.25rem;
}

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin: 0 auto;
}

.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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(248, 246, 238, 0.84);
    border-bottom: 1px solid var(--line-soft);
}

.header-inner,
.hero-grid,
.page-hero-grid,
.two-column,
.cta-grid,
.footer-grid,
.form-layout,
.contact-grid {
    display: grid;
    gap: 2rem;
}

.header-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 0.9rem 0;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(45, 95, 190, 0.18);
}

.brand-copy {
    display: grid;
    gap: 0.1rem;
}

.brand-name,
.eyebrow,
.proof-index,
.timeline-period,
.site-nav a,
.menu-toggle {
    text-transform: uppercase;
    letter-spacing: var(--tracking-label);
    font-size: 0.7rem;
    line-height: 1.35;
}

.brand-name {
    font-weight: 700;
}

.brand-tagline {
    color: var(--ink-soft);
    font-size: 0.8rem;
    line-height: 1.45;
    letter-spacing: 0.005em;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.85rem;
}

.site-nav a {
    position: relative;
    padding-bottom: 0.24rem;
    color: var(--ink-soft);
    font-weight: 600;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.08rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ocean), var(--lagoon));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    justify-self: end;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(17, 49, 74, 0.14);
    border-radius: 8px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.42);
    color: var(--ink);
    box-shadow: none;
    cursor: pointer;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.72);
    transform: translateY(-1px);
}

.menu-toggle-box {
    position: relative;
    display: block;
    width: 1rem;
    height: 0.78rem;
}

.menu-toggle-box::before,
.menu-toggle-box::after {
    content: '';
}

.menu-toggle-box::before,
.menu-toggle-box::after,
.menu-toggle-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition:
        top 220ms ease,
        transform 220ms ease,
        opacity 180ms ease;
}

.menu-toggle-box::before {
    top: 0;
}

.menu-toggle-bar {
    top: calc(50% - 0.75px);
}

.menu-toggle-box::after {
    top: calc(100% - 1.5px);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-box::before {
    top: calc(50% - 0.75px);
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-bar {
    opacity: 0;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-box::after {
    top: calc(50% - 0.75px);
    transform: rotate(-45deg);
}

.status-banner {
    background: var(--forest);
    color: white;
}

.status-banner p {
    padding: 0.95rem 0;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.25rem, 5vw, 4rem) 0 clamp(2.75rem, 5vw, 4.75rem);
    background:
        linear-gradient(140deg, rgba(5, 108, 67, 0.26), rgba(17, 49, 74, 0.12)),
        linear-gradient(135deg, rgba(252, 244, 210, 0.92), rgba(217, 244, 243, 0.94));
    border-bottom: 1px solid var(--line-soft);
}

.home-hero::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 46%;
    width: min(68rem, 76vw);
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translate(-50%, -46%);
    background:
        radial-gradient(circle at 50% 50%, rgba(247, 225, 131, 0.22) 0 11%, transparent 11.5%),
        repeating-conic-gradient(
            from -10deg,
            rgba(252, 241, 185, 0.3) 0deg 13deg,
            rgba(219, 242, 237, 0.02) 13deg 24deg,
            rgba(197, 231, 226, 0.18) 24deg 34deg,
            rgba(252, 241, 185, 0.06) 34deg 45deg
        );
    opacity: 0.62;
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 26%, rgba(5, 108, 67, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(5, 108, 67, 0.08), rgba(5, 108, 67, 0.18));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.38fr) minmax(260px, 0.72fr);
    align-items: start;
    gap: clamp(1.5rem, 3vw, 3rem);
    min-height: calc(100svh - 7.5rem);
    padding-top: 0.15rem;
}

.hero-copy {
    width: 100%;
    max-width: 50rem;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-grid h2,
.contact-card h2,
.sector-card h2,
.team-card h2,
.project-group h2,
.insight-card h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.02em;
    word-spacing: 0.02em;
    text-wrap: balance;
}

.home-hero-brand,
.home-section-title,
.home-cta-title {
    font-weight: 600;
    letter-spacing: -0.017em;
    text-wrap: balance;
}

.home-hero-shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 2.5rem), 72rem);
    min-height: auto;
    margin: 0 auto;
    display: grid;
    justify-items: center;
    align-content: start;
    row-gap: 1.1rem;
    padding-top: 0;
    padding-bottom: 0;
}

.home-hero-copy {
    width: min(100%, 48rem);
    display: grid;
    justify-items: center;
    gap: 0.3rem;
    text-align: center;
}

.home-hero-actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    position: relative;
    z-index: 2;
}

.home-hero-actions .button {
    min-height: 2.5rem;
    padding: 0.64rem 1rem;
    font-size: 0.88rem;
}

.hero-copy h1 {
    font-size: clamp(1.85rem, 3.3vw, 2.9rem);
    max-width: 18ch;
    line-height: 1.08;
    letter-spacing: -0.018em;
    word-spacing: 0.025em;
    text-wrap: initial;
}

.home-hero-brand {
    width: min(100%, 38rem);
    font-size: clamp(2.2rem, 4.55vw, 4rem);
    max-width: 12ch;
    margin: 0 auto;
    display: block;
    line-height: 0.94;
    letter-spacing: -0.042em;
    word-spacing: 0;
    text-wrap: balance;
    hyphens: none;
}

.home-hero-line {
    display: block;
    white-space: normal;
}

.home-hero-support {
    margin: 0;
    width: min(100%, 36rem);
    max-width: 31ch;
    color: rgba(17, 49, 74, 0.82);
    font-size: clamp(0.94rem, 1.12vw, 1.08rem);
    font-weight: 500;
    line-height: 1.34;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.home-section-heading {
    gap: 0.65rem;
}

.home-section-title {
    margin: 0;
    max-width: 14ch;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.034em;
    text-wrap: balance;
}

.home-cta-title {
    font-size: clamp(1.26rem, 2vw, 1.68rem);
    max-width: 24ch;
    line-height: 1.14;
}

.home-section-intro {
    max-width: 36rem;
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.7;
    letter-spacing: -0.004em;
}

.home-split,
.home-block-intro,
.home-capability-header,
.home-capability-grid,
.home-capability-cards,
.home-capability-card,
.home-project-list,
.home-preview-grid,
.home-preview-card {
    display: grid;
}

.home-split {
    grid-template-columns: minmax(240px, 0.76fr) minmax(0, 1.24fr);
    gap: 2rem;
    align-items: start;
}

.home-block-intro {
    gap: 0.8rem;
    align-content: start;
}

.home-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
    margin-top: 0.2rem;
}

.home-capability-cards {
    gap: 1rem;
    align-content: start;
}

.home-capability-header {
    gap: 0.7rem;
    max-width: 36rem;
    margin-bottom: 1rem;
}

.home-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-capability-card {
    gap: 0.8rem;
    padding: 1.2rem 1.25rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line-soft);
    border-radius: calc(var(--radius) - 0.1rem);
}

.home-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-tag-list span {
    padding: 0.7rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
}

.home-tag-list-sectors span {
    background: rgba(45, 95, 190, 0.06);
}

.home-read-more-link {
    width: fit-content;
}

.home-directory-shell {
    display: grid;
    gap: 1.8rem;
}

.home-directory-intro {
    display: grid;
    gap: 0.55rem;
    max-width: 40rem;
}

.home-directory-title {
    margin: 0;
    max-width: 18ch;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.8vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.024em;
}

.home-preview-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.15rem;
}

.home-preview-card {
    --preview-accent: rgba(45, 95, 190, 0.08);
    grid-column: span 5;
    gap: 0.9rem;
    align-content: start;
    min-height: 15.5rem;
    padding: 1.35rem 1.4rem 1.45rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
        linear-gradient(135deg, var(--preview-accent), transparent 62%);
    border: 1px solid rgba(17, 49, 74, 0.08);
    border-radius: calc(var(--radius) - 0.1rem);
    box-shadow: 0 18px 42px rgba(17, 49, 74, 0.05);
    position: relative;
    overflow: hidden;
}

.home-preview-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(45, 95, 190, 0.85), rgba(98, 182, 223, 0.55));
    opacity: 0.9;
}

.home-preview-card::after {
    content: '';
    position: absolute;
    right: -2.5rem;
    bottom: -2.5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 70%);
    opacity: 0.9;
    pointer-events: none;
}

.home-preview-card-wide {
    grid-column: span 7;
}

.home-preview-card-about {
    --preview-accent: rgba(243, 197, 106, 0.22);
}

.home-preview-card-services {
    --preview-accent: rgba(45, 95, 190, 0.14);
}

.home-preview-card-projects {
    --preview-accent: rgba(98, 182, 223, 0.16);
}

.home-preview-card-team {
    --preview-accent: rgba(5, 108, 67, 0.12);
}

.home-preview-card-work {
    --preview-accent: rgba(243, 197, 106, 0.16);
}

.home-preview-card-contact {
    --preview-accent: rgba(17, 49, 74, 0.08);
}

.home-preview-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.home-preview-index {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-preview-card .eyebrow {
    color: var(--ink-soft);
}

.home-preview-icon {
    position: absolute;
    right: 1.1rem;
    top: 1.1rem;
    width: 3.3rem;
    height: 3.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    color: rgba(17, 49, 74, 0.78);
    border: 1px solid rgba(17, 49, 74, 0.08);
    box-shadow: 0 10px 20px rgba(17, 49, 74, 0.06);
}

.home-preview-icon-svg {
    width: 1.45rem;
    height: 1.45rem;
}

.home-preview-card .home-section-title {
    max-width: 16ch;
    font-size: clamp(1.35rem, 2.15vw, 1.95rem);
    line-height: 1.12;
    padding-right: 3.8rem;
}

.home-preview-card .home-section-intro {
    max-width: 26rem;
    font-size: 0.88rem;
    line-height: 1.58;
}

.home-preview-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.005em;
}

.home-preview-link::after {
    content: '→';
    transition: transform 180ms ease;
}

.home-preview-link:hover::after {
    transform: translateX(3px);
}

.home-preview-card-wide .home-section-title {
    max-width: 18ch;
}

.home-preview-card-wide .home-section-intro {
    max-width: 30rem;
}

.home-directory-shell {
    gap: 1.35rem;
}

.home-directory-intro {
    gap: 0.45rem;
    max-width: 30rem;
}

.home-directory-title {
    max-width: 14ch;
    font-size: clamp(1.5rem, 2.3vw, 2.2rem);
    line-height: 1.06;
    letter-spacing: -0.022em;
}

.home-feature-band,
.home-preview-card,
.home-work-cta {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 49, 74, 0.08);
    border-radius: calc(var(--radius) - 0.1rem);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.home-feature-band:hover,
.home-preview-card:hover,
.home-work-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(17, 49, 74, 0.14);
    box-shadow: 0 16px 36px rgba(17, 49, 74, 0.08);
}

.home-feature-band {
    min-height: 16rem;
    padding: 1.5rem 1.65rem 1.6rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
        linear-gradient(135deg, rgba(243, 197, 106, 0.16), transparent 55%);
}

.home-feature-band::after,
.home-preview-card::after,
.home-work-cta::after {
    content: '';
    position: absolute;
    inset: auto -3rem -3rem auto;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 72%);
    pointer-events: none;
}

.home-feature-band-about {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
        linear-gradient(135deg, rgba(243, 197, 106, 0.18), transparent 60%),
        url('../images/hero-ray.svg');
    background-repeat: no-repeat;
    background-size: auto, auto, 20rem;
    background-position: 0 0, 0 0, right -3rem center;
}

.home-feature-band-team {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
        linear-gradient(135deg, rgba(98, 182, 223, 0.18), transparent 62%),
        radial-gradient(circle at right 18%, rgba(17, 49, 74, 0.06), transparent 28%);
}

.home-feature-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
    max-width: 30rem;
}

.home-preview-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.home-preview-card {
    min-height: 14.5rem;
    grid-column: auto;
    gap: 0.85rem;
    padding: 1.35rem 1.45rem 1.45rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgba(17, 49, 74, 0.04), transparent 62%);
    box-shadow: none;
}

.home-preview-card::before {
    display: none;
}

.home-preview-card-services {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
        linear-gradient(135deg, rgba(45, 95, 190, 0.14), transparent 60%),
        url('../images/hero-ray.svg');
    background-repeat: no-repeat;
    background-size: auto, auto, 12rem;
    background-position: 0 0, 0 0, right -2rem top -2rem;
}

.home-preview-card-projects {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
        linear-gradient(135deg, rgba(98, 182, 223, 0.15), transparent 60%),
        radial-gradient(circle at right 14% top 20%, rgba(243, 197, 106, 0.18), transparent 20%);
}

.home-preview-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.home-preview-visual {
    width: 4.5rem;
    height: 4.5rem;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.74);
    color: rgba(17, 49, 74, 0.78);
    border: 1px solid rgba(17, 49, 74, 0.08);
    box-shadow: 0 10px 20px rgba(17, 49, 74, 0.06);
}

.home-preview-visual-mark {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
}

.home-preview-mark {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.45rem;
}

.home-preview-icon-svg {
    width: 1.7rem;
    height: 1.7rem;
}

.home-feature-band .home-section-title,
.home-preview-card .home-section-title,
.home-work-cta .home-section-title {
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.06;
    letter-spacing: -0.02em;
    padding-right: 0;
}

.home-feature-band .home-section-title,
.home-work-cta .home-section-title {
    max-width: 12ch;
    font-size: clamp(1.8rem, 2.7vw, 2.65rem);
}

.home-preview-card .home-section-title {
    max-width: 10ch;
    font-size: clamp(1.45rem, 2.1vw, 1.8rem);
}

.home-preview-note {
    margin: 0;
    max-width: 30rem;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.58;
}

.home-preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.home-preview-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.78rem;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(17, 49, 74, 0.08);
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.home-preview-link::after {
    content: '->';
}

.home-work-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: end;
    padding: 1.45rem 1.55rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
        linear-gradient(135deg, rgba(243, 197, 106, 0.16), transparent 62%);
}

.home-work-cta-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
    max-width: 34rem;
}

.home-work-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
    align-items: center;
}

.home-cta-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.005em;
}

.home-cta-inline-link::after {
    content: '->';
    transition: transform 180ms ease;
}

.home-cta-inline-link:hover::after {
    transform: translateX(3px);
}

.home-section-note {
    margin: 0;
    max-width: 34rem;
    color: var(--ink-soft);
    font-size: 0.99rem;
    line-height: 1.68;
}

.home-foundation,
.home-capability-board {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(1.6rem, 3vw, 3rem);
    align-items: start;
}

.home-foundation-copy,
.home-capability-copy,
.home-track-record-copy,
.home-cta-panel-copy {
    display: grid;
    gap: 0.75rem;
}

.home-stat-stack {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line-soft);
}

.home-stat {
    display: grid;
    gap: 0.35rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--line-soft);
}

.home-stat-value {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

.home-stat h3 {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-stat p {
    margin: 0;
    max-width: 29rem;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.6;
}

.home-inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.4rem;
}

.home-capability-lists {
    display: grid;
    gap: 1.25rem;
}

.home-capability-list {
    display: grid;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--line-soft);
}

.home-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.home-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 49, 74, 0.09);
    background: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.012em;
    line-height: 1.2;
}

.home-pill-list-muted .home-pill {
    background: rgba(17, 49, 74, 0.04);
}

.home-track-record {
    display: grid;
    gap: 1.5rem;
}

.home-track-record-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

.home-track-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-track-panel {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid var(--line-soft);
    border-radius: calc(var(--radius) - 0.12rem);
    background: rgba(255, 255, 255, 0.56);
}

.home-track-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0.75rem;
}

.home-track-items {
    display: grid;
    gap: 0.9rem;
}

.home-track-item {
    display: grid;
    gap: 0.25rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line-soft);
}

.home-track-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.home-track-period {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-track-item h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.home-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem 2rem;
    align-items: end;
    padding-top: 0.2rem;
}

.home-cta-panel-title {
    margin: 0;
    max-width: 16ch;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 2.8vw, 2.9rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.034em;
    text-wrap: balance;
}

.home-cta-panel-note {
    margin: 0;
    max-width: 34rem;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.62;
}

.home-cta-panel-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.8rem;
}

.home-intro-layout {
    display: grid;
    gap: 1rem;
}

.home-intro-top {
    display: grid;
    grid-template-columns: minmax(17rem, 0.92fr) minmax(0, 1.48fr);
    align-items: start;
}

.home-stats-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    padding-top: 0.4rem;
}

.home-intro-top .home-stats-band {
    grid-template-columns: 1fr;
    padding-top: 0;
}

.home-stats-item,
.home-overview-panel,
.home-track-link {
    border: 1px solid var(--line-soft);
    border-radius: calc(var(--radius) - 0.12rem);
    background: rgba(255, 255, 255, 0.58);
}

.home-stats-item {
    display: grid;
    gap: 0.35rem;
    padding: 1.25rem 1.2rem;
}

.home-stats-value {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

.home-stats-item h2 {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-stats-item p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.58;
}

.home-overview-panel {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
}

.home-overview-panel-primary {
    background:
        linear-gradient(135deg, rgba(252, 244, 210, 0.42), rgba(255, 255, 255, 0.66)),
        rgba(255, 255, 255, 0.58);
}

.home-overview-panel-secondary {
    align-items: start;
}

.home-overview-panel-secondary .home-section-title,
.home-overview-panel-secondary .home-section-note {
    max-width: 44rem;
}

.home-keyline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.home-keyline-list span {
    display: inline-flex;
    align-items: center;
    padding: 0.46rem 0.72rem;
    border-radius: 999px;
    background: rgba(17, 49, 74, 0.05);
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.home-track-strip {
    display: grid;
    gap: 1.35rem;
}

.home-track-strip-head {
    display: grid;
    gap: 0.7rem;
    max-width: 42rem;
}

.home-track-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-track-link {
    display: grid;
    gap: 0.7rem;
    padding: 1.25rem;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.home-track-link:hover {
    transform: translateY(-2px);
    border-color: rgba(45, 95, 190, 0.22);
    background: rgba(255, 255, 255, 0.72);
}

.home-track-link-title {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.home-track-link-items {
    color: var(--ink-soft);
    font-size: 0.93rem;
    line-height: 1.58;
}

.home-pathways {
    display: grid;
    gap: clamp(2rem, 4vw, 3.15rem);
}

.home-pathways-intro {
    display: grid;
    gap: 0.7rem;
    max-width: 44rem;
}

.home-pathways-title {
    margin: 0;
    max-width: 11ch;
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 3.6vw, 3.65rem);
    line-height: 1.02;
    letter-spacing: -0.038em;
}

.home-pathways-note {
    margin: 0;
    max-width: 40rem;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.68;
}

.home-pathways-list {
    border-top: 1px solid var(--line-soft);
}

.home-pathway-row {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: 1rem 1.35rem;
    align-items: center;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line-soft);
    transition: color 180ms ease, transform 180ms ease;
}

.home-pathway-row:hover {
    color: var(--ocean);
}

.home-pathway-number {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
}

.home-pathway-copy {
    display: grid;
    gap: 0.25rem;
}

.home-pathway-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.026em;
}

.home-pathway-description {
    max-width: 38rem;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.6;
}

.home-pathway-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.home-pathway-action::after {
    content: '->';
    transition: transform 180ms ease;
}

.home-pathway-row:hover .home-pathway-action::after {
    transform: translateX(3px);
}

.home-pathways-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem 2rem;
    align-items: end;
    padding-top: 0.4rem;
}

.home-pathways-cta-copy {
    display: grid;
    gap: 0.75rem;
    max-width: 34rem;
}

.home-pathways-cta-title {
    margin: 0;
    max-width: 15ch;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 2.8vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -0.032em;
}

.home-pathways-cta-note {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.6;
}

.home-pathways-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.8rem;
}

.home-overview {
    display: grid;
    gap: clamp(2.25rem, 4vw, 3.75rem);
}

.home-story {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(16rem, 1.08fr);
    gap: clamp(1.4rem, 3vw, 2.8rem);
    align-items: center;
}

.home-story-services {
    grid-template-columns: minmax(16rem, 1.08fr) minmax(0, 0.92fr);
}

.home-story-copy {
    display: grid;
    gap: 0.9rem;
    max-width: 28rem;
}

.home-story-title {
    margin: 0;
    max-width: 12ch;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.home-story-note {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.62;
}

.home-story-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
}

.home-story-media {
    min-height: clamp(18rem, 34vw, 25rem);
    border-radius: calc(var(--radius) - 0.08rem);
    overflow: hidden;
    box-shadow: 0 20px 38px rgba(17, 49, 74, 0.08);
}

.home-story-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-story-about .home-story-media img {
    object-position: center 64%;
}

.home-story-services .home-story-media img {
    object-position: center 34%;
}

.home-project-band {
    position: relative;
    min-height: clamp(20rem, 36vw, 28rem);
    overflow: hidden;
    border-radius: calc(var(--radius) - 0.08rem);
}

.home-project-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 29, 44, 0.74), rgba(7, 29, 44, 0.18) 62%),
        linear-gradient(180deg, rgba(243, 197, 106, 0.08), transparent 42%);
    pointer-events: none;
}

.home-project-band-media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 58%;
}

.home-project-band-overlay {
    position: absolute;
    inset: auto auto 0 0;
    z-index: 1;
    display: grid;
    gap: 0.8rem;
    max-width: 34rem;
    padding: 1.5rem 1.6rem 1.7rem;
    color: white;
}

.home-project-band-overlay .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.home-project-band-title {
    margin: 0;
    max-width: 13ch;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 1.03;
    letter-spacing: -0.032em;
}

.home-project-band-note {
    margin: 0;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.98rem;
    line-height: 1.62;
}

.home-final-row {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.4rem, 3vw, 2.6rem);
    align-items: start;
}

.home-editorial-split {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(1.4rem, 3vw, 2.6rem);
    align-items: center;
}

.home-editorial-split-team {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.home-editorial-copy {
    display: grid;
    gap: 0.95rem;
    align-content: center;
    max-width: 30rem;
}

.home-editorial-title {
    margin: 0;
    max-width: 13ch;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.032em;
}

.home-editorial-note {
    margin: 0;
    max-width: 30rem;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.home-editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.home-editorial-link::after {
    content: '->';
    transition: transform 180ms ease;
}

.home-editorial-link:hover::after {
    transform: translateX(3px);
}

.home-editorial-link-light {
    color: #fff;
}

.home-editorial-media {
    position: relative;
    min-height: clamp(22rem, 42vw, 31rem);
    overflow: hidden;
    border-radius: calc(var(--radius) - 0.05rem);
    background: rgba(17, 49, 74, 0.06);
    box-shadow: 0 22px 40px rgba(17, 49, 74, 0.08);
}

.home-editorial-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(13, 39, 59, 0.68));
    pointer-events: none;
}

.home-editorial-media img,
.home-media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-editorial-media img {
    min-height: inherit;
}

.home-editorial-split-about .home-editorial-media img {
    object-position: center 64%;
}

.home-editorial-media-team img {
    object-position: center 35%;
}

.home-editorial-caption {
    position: absolute;
    left: 1.25rem;
    bottom: 1.1rem;
    z-index: 1;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-visual-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.home-media-panel {
    position: relative;
    min-height: clamp(18rem, 34vw, 24rem);
    overflow: hidden;
    border-radius: calc(var(--radius) - 0.1rem);
    background: rgba(17, 49, 74, 0.08);
}

.home-media-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 29, 44, 0.08), rgba(7, 29, 44, 0.62)),
        linear-gradient(135deg, rgba(243, 197, 106, 0.22), transparent 46%);
    pointer-events: none;
}

.home-media-panel:first-child .home-media-image {
    object-position: center 40%;
}

.home-media-panel:last-child .home-media-image {
    object-position: center 58%;
}

.home-media-overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    display: grid;
    gap: 0.75rem;
    padding: 1.35rem 1.4rem 1.5rem;
    color: #fff;
}

.home-media-overlay .eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.home-media-title {
    margin: 0;
    max-width: 15ch;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.35vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.home-work-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem 2rem;
    align-items: end;
    padding: 1.8rem 0 0;
    border-top: 1px solid rgba(17, 49, 74, 0.08);
}

.home-work-strip-copy {
    display: grid;
    gap: 0.75rem;
    max-width: 30rem;
}

.home-work-strip-title {
    margin: 0;
    max-width: 14ch;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 2.8vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.home-work-strip-note {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.6;
}

.home-work-strip-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.8rem;
}

.home-project-list {
    gap: 0;
    border-top: 1px solid var(--line-soft);
}

.home-project-item {
    display: grid;
    gap: 0.55rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line-soft);
}

.home-project-item h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.home-project-meta {
    color: var(--ink-soft);
}

.home-project-item .read-more-content {
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.62;
}

.home-hero-support,
.text-link,
.button {
    font-weight: 700;
}

.hero-intro,
.page-intro {
    margin-top: 0.8rem;
    max-width: 42rem;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.58;
}

.read-more-block {
    display: grid;
    gap: 0.35rem;
    align-content: start;
}

.read-more-content {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--read-more-lines, 3);
}

.read-more-block.is-expanded .read-more-content {
    display: block;
    overflow: visible;
}

.read-more-toggle {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ocean);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
}

.read-more-toggle:hover {
    color: var(--ink);
}

.brand-poster .read-more-block {
    gap: 0.28rem;
}

.brand-poster,
.page-support,
.contact-card,
.sector-card,
.team-card,
.insight-card,
.table-shell,
.site-form,
.project-group,
.proof-item,
.pillar {
    background: var(--surface-strong);
    border: 1px solid var(--line-soft);
    border-radius: 0;
    box-shadow: var(--shadow);
}

.proof-item,
.pillar {
    background: rgba(255, 255, 255, 0.52);
    box-shadow: none;
}

.brand-poster,
.proof-item,
.pillar,
.contact-card,
.sector-card,
.team-card,
.insight-card,
.site-form,
.project-group {
    padding: 1.5rem;
}

.project-group-header h2 {
    margin: 0;
    font-size: clamp(1.28rem, 2vw, 1.72rem);
    line-height: 1.14;
    letter-spacing: -0.018em;
}

.brand-poster {
    display: grid;
    gap: 1.4rem;
    max-width: 23rem;
}

.brand-poster img {
    width: 7rem;
}

.button-row,
.proof-grid,
.pillars-grid,
.team-list,
.sector-grid,
.service-list,
.timeline-list,
.footer-grid,
.card-links,
.support-stack,
.field-grid,
.checkbox-grid {
    display: grid;
    gap: 1.25rem;
}

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

.button-row {
    grid-auto-flow: column;
    justify-content: start;
    gap: 0.9rem;
    margin-top: 1rem;
}

.hero-panel {
    justify-self: end;
    align-self: start;
    margin-top: 1.25rem;
}

@media (min-width: 981px) and (max-width: 1500px) {
    .home-hero {
        padding: 0.85rem 0 1.05rem;
    }

    .home-hero::after {
        height: 4.4rem;
        bottom: -1.3rem;
    }

    .home-hero-shell {
        width: min(calc(100% - 2rem), 68rem);
        min-height: auto;
        row-gap: 0.62rem;
        padding-top: clamp(0.5rem, 1.6vh, 0.95rem);
        padding-bottom: clamp(3.8rem, 5.2vw, 4.4rem);
    }

    .home-hero-copy {
        width: min(100%, 46rem);
        gap: 0.24rem;
    }

    .home-hero-brand {
        width: min(100%, 35rem);
        max-width: 16ch;
        font-size: clamp(1.85rem, 3vw, 2.8rem);
        line-height: 0.99;
    }

    .home-hero-support {
        width: min(100%, 34rem);
        max-width: 34ch;
        font-size: 0.84rem;
        font-weight: 500;
        line-height: 1.34;
    }

    .home-hero-actions .button {
        min-height: 2.45rem;
        padding: 0.62rem 0.96rem;
        font-size: 0.86rem;
    }
}

@media (min-width: 981px) and (max-height: 860px) {
    .home-hero {
        padding: 1.8rem 0 2.6rem;
    }

    .home-hero::after {
        display: none;
    }

    .home-hero-shell {
        width: min(calc(100% - 2rem), 62rem);
        min-height: auto;
        row-gap: 0.9rem;
        padding-top: 0;
        padding-bottom: 0;
    }

    .home-hero-copy {
        width: min(100%, 38rem);
        gap: 0.38rem;
    }

    .home-hero-brand {
        width: min(100%, 31rem);
        max-width: 14ch;
        font-size: clamp(2rem, 3.65vw, 3rem);
    }

    .home-hero-support {
        width: min(100%, 32rem);
        max-width: 33ch;
        font-size: 0.88rem;
        font-weight: 500;
        line-height: 1.34;
    }

    .home-hero-actions .button {
        min-height: 2.35rem;
        padding: 0.58rem 0.9rem;
        font-size: 0.84rem;
    }

    .page-hero {
        min-height: 18rem;
        padding: 3.4rem 0 2.8rem;
    }

    .page-hero-grid.has-support {
        grid-template-columns: minmax(0, 1.55fr) minmax(210px, 0.58fr);
        min-height: calc(100svh - 6.85rem);
    }

    .page-hero-copy {
        max-width: 48rem;
        gap: 0.95rem;
    }

    .page-hero-heading {
        font-size: 2.35rem;
        max-width: 15ch;
        line-height: 1.06;
    }

    .page-hero-lead {
        max-width: 34rem;
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .page-intro {
        max-width: 39rem;
        font-size: 0.84rem;
        line-height: 1.48;
    }

    .page-support {
        gap: 0.85rem;
        max-width: 18rem;
        padding: 0 0 0 1rem;
    }

    .page-support-logo {
        width: 4.5rem;
    }

    .page-support .support-stack p {
        line-height: 1.46;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.66rem 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease;
    box-shadow: none;
}

.button-compact {
    min-height: 2.2rem;
    padding: 0.5rem 0.82rem;
    font-size: 0.78rem;
}

.button-flat {
    border: 1px solid rgba(17, 49, 74, 0.14);
    background: transparent;
    color: var(--ink);
    box-shadow: none;
}

.button-flat:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

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

.button-primary {
    background: linear-gradient(135deg, #356fc9, #59a6d7);
    border-color: rgba(17, 49, 74, 0.04);
    color: white;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.54);
    border-color: rgba(17, 49, 74, 0.12);
    color: var(--ink);
}

.button-primary:hover {
    box-shadow: 0 8px 14px rgba(45, 95, 190, 0.12);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.68);
}

.section {
    padding: 4.5rem 0;
}

.section-compact {
    padding: 1rem 0 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(252, 244, 210, 0.46), rgba(217, 244, 243, 0.46)),
        var(--paper);
}

.section-dark {
    background: linear-gradient(135deg, rgba(17, 49, 74, 0.94), rgba(45, 95, 190, 0.92));
    color: white;
}

.section-heading {
    display: grid;
    gap: 0.95rem;
    max-width: 42rem;
    margin-bottom: 1.6rem;
}

.section-intro,
.work-form-intro,
.contact-form-heading {
    display: grid;
    gap: 0.95rem;
    max-width: 42rem;
}

.section-heading .eyebrow,
.section-intro .eyebrow,
.work-form-intro .eyebrow,
.contact-form-heading .eyebrow {
    margin: 0;
    color: rgba(17, 49, 74, 0.68);
    font-size: 0.64rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.section-heading h2,
.section-intro h2,
.work-form-intro h2,
.contact-form-heading h2 {
    margin: 0;
    max-width: 24ch;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 1.72vw, 1.62rem);
    font-weight: 500;
    line-height: 1.32;
    letter-spacing: -0.012em;
    text-wrap: balance;
}

.section-heading p:last-child,
.section-intro p:last-child,
.work-form-intro p:last-child,
.contact-form-heading p:last-child {
    max-width: 34rem;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.8;
}

.section-heading-light .eyebrow,
.section-heading-light h2 {
    color: white;
}

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

.proof-grid.compact,
.pillars-grid-tight,
.team-list,
.footer-grid {
    grid-template-columns: 1fr;
}

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

.two-column {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.service-list article,
.timeline-list article,
.bullet-stack article {
    padding-bottom: 1.3rem;
    border-bottom: 1px solid rgba(17, 49, 74, 0.1);
}

.bullet-stack article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
}

.bullet-stack-icon {
    display: inline-grid;
    width: 2.15rem;
    height: 2.15rem;
    place-items: center;
    border-radius: 999px;
    background: rgba(217, 244, 243, 0.72);
    color: var(--forest);
}

.bullet-stack-icon svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.service-list article:last-child,
.timeline-list article:last-child,
.bullet-stack article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.accordion-list {
    gap: 0;
}

.accordion-item {
    position: relative;
    border-top: 1px solid rgba(17, 49, 74, 0.1);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.accordion-item.is-opening,
.accordion-item.is-closing {
    overflow: hidden;
}

.accordion-item:last-child {
    border-bottom: 1px solid rgba(17, 49, 74, 0.1);
}

.accordion-summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    padding: 1.25rem 0;
}

.accordion-summary::-webkit-details-marker {
    display: none;
}

.accordion-copy {
    display: grid;
    gap: 0.25rem;
}

.accordion-summary h3 {
    margin: 0;
    max-width: 34rem;
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0;
    transition:
        color 180ms ease,
        font-weight 180ms ease;
}

.accordion-summary:active h3,
.accordion-item[open] .accordion-summary h3,
.accordion-item.is-opening .accordion-summary h3 {
    font-weight: 600;
}

.accordion-item.is-closing .accordion-summary h3 {
    font-weight: 400;
}

.accordion-meta {
    color: var(--ink-soft);
}

.accordion-submeta {
    color: var(--ink-soft);
    font-size: 0.95rem;
    transition: color 180ms ease;
}

.accordion-panel-submeta {
    display: none;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}

.accordion-toggle {
    position: relative;
    flex: 0 0 1.4rem;
    width: 1.4rem;
    height: 1.4rem;
    margin-top: 0.15rem;
    border-radius: 50%;
    border: 1px solid rgba(17, 49, 74, 0.14);
    background: rgba(255, 255, 255, 0.76);
    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 260ms ease,
        border-color 260ms ease;
}

.accordion-toggle::before,
.accordion-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.7rem;
    height: 1.5px;
    background: var(--ink);
    transform: translate(-50%, -50%);
    transition:
        transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 260ms ease;
}

.accordion-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item[open] .accordion-toggle::after {
    opacity: 0;
}

.accordion-panel-wrap {
    overflow: hidden;
    height: 0;
    opacity: 0;
    will-change: height, opacity;
}

.accordion-panel {
    display: grid;
    gap: 0.9rem;
    padding: 0 0 1.35rem;
    max-width: 42rem;
    color: var(--ink-soft);
}

.accordion-item[open] .accordion-toggle,
.accordion-item.is-opening .accordion-toggle {
    transform: rotate(180deg);
    background: rgba(45, 95, 190, 0.08);
    border-color: rgba(45, 95, 190, 0.22);
}

.accordion-bullets {
    margin-top: 0.9rem;
}

.accordion-bullets li + li {
    margin-top: 0.7rem;
}

.sector-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sector-strip span {
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.text-link {
    position: relative;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding-bottom: 0.18rem;
    color: rgba(17, 49, 74, 0.76);
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.text-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.02rem;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--ocean), var(--lagoon));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.text-link:hover {
    color: var(--ink);
}

.text-link:hover::after {
    transform: scaleX(1);
}

.sector-overview,
.sector-overview-heading,
.sector-row,
.sector-row-main,
.sector-row-copy {
    display: grid;
}

.sector-overview {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.sector-overview-heading {
    gap: 0.8rem;
    margin-bottom: 0;
}

.sector-overview-intro {
    max-width: 34rem;
    color: var(--ink-soft);
}

.sector-listing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
    border-top: 1px solid rgba(17, 49, 74, 0.1);
}

.sector-row {
    gap: 0.85rem;
    padding: 1.25rem 0 1.3rem;
    border-bottom: 1px solid rgba(17, 49, 74, 0.1);
}

.sector-row-main {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.sector-row-copy {
    gap: 0.45rem;
}

.sector-row-copy h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.12rem, 1.75vw, 1.35rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    word-spacing: 0.02em;
}

.sector-row-copy p {
    color: var(--ink-soft);
}

.sector-row-meta,
.sector-row-projects {
    color: var(--ink-soft);
    font-size: 0.84rem;
    line-height: 1.6;
}

.sector-row-meta span,
.sector-row-projects span {
    display: block;
    margin-bottom: 0.22rem;
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sector-row-link {
    margin-top: 0.15rem;
    font-size: 0.88rem;
}

.sector-card-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.8rem;
}

.sector-card-header h2 {
    margin: 0;
}

.sector-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(45, 95, 190, 0.12), rgba(98, 182, 223, 0.18));
    color: var(--ocean);
    border: 1px solid rgba(45, 95, 190, 0.12);
    flex: 0 0 auto;
}

.sector-icon {
    width: 1.45rem;
    height: 1.45rem;
}

.section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.15rem;
    align-items: center;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid var(--line-soft);
}

.section-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0 0 0.18rem;
    color: var(--ink-soft);
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.section-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.02rem;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--ocean), var(--lagoon));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.section-nav a:hover {
    color: var(--ink);
}

.section-nav a:hover::after {
    transform: scaleX(1);
}

.table-row {
    display: grid;
    grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line-soft);
}

.table-row:last-child {
    border-bottom: 0;
}

.table-head {
    background: rgba(17, 49, 74, 0.03);
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.table-shell {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line-soft);
    border-radius: calc(var(--radius) + 0.1rem);
    box-shadow: none;
}

#capabilities,
#sectors,
#safeguards,
#track-record,
#insights,
.project-group {
    scroll-margin-top: 6.5rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    min-height: 20rem;
    padding: 4.7rem 0 3.8rem;
    background:
        linear-gradient(135deg, rgba(232, 246, 240, 0.98), rgba(242, 247, 238, 0.98) 54%, rgba(193, 236, 224, 0.86)),
        var(--paper);
    border-bottom: 1px solid rgba(17, 49, 74, 0.1);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 108, 67, 0.14), transparent 46%),
        linear-gradient(180deg, transparent 0%, rgba(5, 108, 67, 0.14) 100%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    left: max(1.25rem, calc((100vw - var(--container)) / 2));
    right: max(1.25rem, calc((100vw - var(--container)) / 2));
    bottom: 2.1rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(5, 108, 67, 0.68), rgba(45, 95, 190, 0.38), transparent 72%);
    pointer-events: none;
}

.page-hero-ray {
    position: absolute;
    top: 50%;
    right: max(-5rem, calc((100vw - var(--container)) / 2 - 6rem));
    width: min(31rem, 38vw);
    aspect-ratio: 1;
    opacity: 0.2;
    filter: drop-shadow(0 18px 40px rgba(17, 49, 74, 0.08));
    pointer-events: none;
    transform: translateY(-50%) rotate(8deg);
}

.page-hero-shell {
    position: relative;
    z-index: 1;
}

.page-hero-grid {
    align-items: start;
    gap: clamp(1.35rem, 2.6vw, 2.6rem);
}

.page-hero-grid.has-support {
    grid-template-columns: minmax(0, 1.42fr) minmax(230px, 0.68fr);
    min-height: auto;
}

.page-hero-grid.is-solo {
    grid-template-columns: minmax(0, 1fr);
}

.page-hero-copy {
    display: grid;
    align-content: start;
    gap: 1.1rem;
    max-width: 48rem;
}

.page-hero-eyebrow {
    color: rgba(17, 49, 74, 0.66);
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.page-hero-heading {
    margin: 0;
    font-family: var(--font-display);
    max-width: 15ch;
    color: var(--ink);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

.page-hero-lead {
    margin: 0;
    max-width: 34rem;
    color: var(--ink-soft);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.66;
    letter-spacing: 0;
}

.page-support {
    justify-self: end;
    align-self: start;
    display: grid;
    gap: 1rem;
    max-width: 18.5rem;
    padding: 0 0 0 1.35rem;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
}

.page-support-logo {
    width: 4.75rem;
}

.page-support .support-stack {
    gap: 0.9rem;
}

.page-support .support-stack p {
    color: var(--ink);
    line-height: 1.54;
}

.page-support .support-stack p + p {
    padding-top: 0.9rem;
    border-top: 1px solid rgba(17, 49, 74, 0.08);
}

.support-stack p,
.team-credentials {
    color: var(--ink-soft);
}

main p,
main li {
    line-height: 1.76;
}

main h3 {
    margin: 0 0 0.55rem;
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    font-weight: 600;
    line-height: 1.34;
    letter-spacing: -0.015em;
    text-wrap: balance;
}

.project-groups,
.contact-links {
    display: grid;
    gap: 1rem;
}

.project-group.is-focused {
    border-color: rgba(45, 95, 190, 0.22);
    box-shadow:
        0 18px 44px rgba(17, 49, 74, 0.1),
        0 0 0 1px rgba(45, 95, 190, 0.08);
}

.contact-page-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: start;
}

.contact-form-card {
    display: grid;
    gap: 1.5rem;
    padding: 1.75rem;
}

.contact-form-heading p:last-child {
    max-width: 40rem;
    color: var(--ink-soft);
}

.contact-info-stack {
    display: grid;
    gap: 1.25rem;
}

.contact-card-rich {
    display: grid;
    gap: 0.75rem;
}

.contact-card-rich h2 {
    max-width: 16ch;
}

.contact-role {
    color: var(--ink-soft);
}

.contact-detail-list {
    display: grid;
    gap: 0.95rem;
    padding: 0;
    list-style: none;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
}

.contact-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(45, 95, 190, 0.12), rgba(98, 182, 223, 0.18));
    color: var(--ocean);
    border: 1px solid rgba(45, 95, 190, 0.12);
    flex: 0 0 auto;
}

.contact-icon {
    width: 1.22rem;
    height: 1.22rem;
}

.contact-detail-copy {
    display: grid;
    gap: 0;
    padding-top: 0.45rem;
    color: var(--ink);
    line-height: 1.55;
}

.contact-detail-copy a {
    text-decoration: none;
}

.team-highlights li + li {
    margin-top: 0.7rem;
}

.field-grid label,
.field-grid fieldset {
    display: grid;
    gap: 0.7rem;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
    width: 100%;
    padding: 0.92rem 1rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(17, 49, 74, 0.12);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.field-grid input:focus-visible,
.field-grid select:focus-visible,
.field-grid textarea:focus-visible {
    outline: none;
    border-color: rgba(45, 95, 190, 0.3);
    box-shadow: 0 0 0 4px rgba(45, 95, 190, 0.08);
    background: white;
}

.field-grid small {
    color: #a0362d;
}

.field-grid fieldset {
    padding: 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 1.2rem;
    background: rgba(248, 246, 238, 0.46);
}

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

.check-option {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.field-full {
    grid-column: 1 / -1;
}

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

.work-section-layout {
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
    align-items: start;
}

.work-form-intro {
    max-width: 25rem;
    padding-top: 0.35rem;
}

.work-form-intro p:last-child {
    color: var(--ink-soft);
}

.work-form {
    display: grid;
    gap: 1.35rem;
    padding: 1.85rem;
}

.work-form .field-grid {
    gap: 1.05rem 1rem;
}

.work-form .field-grid > label,
.work-form .field-grid > fieldset {
    gap: 0.55rem;
    min-inline-size: 0;
}

.work-form .field-grid > label > span,
.work-form .field-grid > fieldset > legend {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.work-form .field-grid > fieldset {
    padding: 1rem;
    border-radius: 1.2rem;
    border: 1px solid var(--line-soft);
    background: rgba(248, 246, 238, 0.44);
}

.work-form .field-grid > fieldset > legend {
    padding: 0;
}

.work-form input:not([type="checkbox"]),
.work-form select,
.work-form textarea {
    min-height: 3.3rem;
    padding: 0.95rem 1rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(17, 49, 74, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
}

.work-form textarea {
    min-height: 8.75rem;
    resize: vertical;
}

.work-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
        linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
    background-position:
        calc(100% - 1.25rem) calc(50% - 0.12rem),
        calc(100% - 0.9rem) calc(50% - 0.12rem);
    background-size: 0.42rem 0.42rem;
    background-repeat: no-repeat;
    padding-right: 2.9rem;
}

.work-form input[type="file"] {
    padding: 0.8rem 1rem;
}

.work-form input[type="file"]::file-selector-button {
    margin-right: 0.85rem;
    padding: 0.72rem 0.95rem;
    border: none;
    border-radius: 0.8rem;
    background: rgba(45, 95, 190, 0.1);
    color: var(--ink);
    font: inherit;
    font-weight: 600;
}

.option-group .checkbox-grid {
    gap: 0.75rem;
    margin-top: 0.25rem;
}

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

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

.check-option {
    position: relative;
    display: block;
}

.check-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.check-option-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 3.7rem;
    padding: 0.95rem 1rem 0.95rem 2.95rem;
    border-radius: 1rem;
    border: 1px solid rgba(17, 49, 74, 0.1);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.96rem;
    line-height: 1.38;
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.check-option-card::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 0.32rem;
    border: 1.6px solid rgba(17, 49, 74, 0.28);
    background: white;
    transform: translateY(-50%);
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.check-option input:checked + .check-option-card {
    border-color: rgba(45, 95, 190, 0.28);
    background: rgba(45, 95, 190, 0.08);
    box-shadow: inset 0 0 0 1px rgba(45, 95, 190, 0.08);
}

.check-option input:checked + .check-option-card::before {
    border-color: var(--ocean);
    background: var(--ocean);
    box-shadow: inset 0 0 0 0.22rem white;
}

.check-option input:focus-visible + .check-option-card {
    outline: 2px solid rgba(45, 95, 190, 0.26);
    outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
    .check-option:hover .check-option-card {
        transform: translateY(-1px);
        border-color: rgba(45, 95, 190, 0.22);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 20px rgba(17, 49, 74, 0.06);
    }
}

.choice-drawer {
    display: grid;
    gap: 0.5rem;
    min-inline-size: 0;
}

.choice-drawer-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    min-height: 3.15rem;
    padding: 0.78rem 0.9rem;
    border: 1px solid rgba(17, 49, 74, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    list-style: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.choice-drawer-summary::-webkit-details-marker {
    display: none;
}

.choice-drawer-label {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.choice-drawer-title {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.choice-drawer-count {
    color: rgba(17, 49, 74, 0.74);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.35;
    transition: color 180ms ease;
}

.choice-drawer.has-selection .choice-drawer-count {
    color: var(--ink);
}

.choice-drawer-toggle {
    position: relative;
    width: 1rem;
    height: 1rem;
    color: var(--ink);
}

.choice-drawer-toggle::before,
.choice-drawer-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.82rem;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.choice-drawer-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.choice-drawer[open] .choice-drawer-toggle::after {
    opacity: 0;
}

.choice-drawer-panel {
    margin: 0;
    padding: 0.82rem;
    border: 1px solid rgba(17, 49, 74, 0.1);
    border-radius: 8px;
    background: rgba(248, 246, 238, 0.42);
}

.choice-drawer .checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0;
}

.choice-drawer .check-option-card {
    min-height: 2.82rem;
    padding: 0.64rem 0.72rem 0.64rem 2.3rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.28;
}

.choice-drawer .check-option-card::before {
    left: 0.78rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 0.25rem;
}

@media (hover: hover) and (pointer: fine) {
    .choice-drawer-summary:hover {
        transform: translateY(-1px);
        border-color: rgba(45, 95, 190, 0.22);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 20px rgba(17, 49, 74, 0.06);
    }

    .choice-drawer-summary:hover .choice-drawer-title,
    .choice-drawer-summary:hover .choice-drawer-count {
        color: var(--ink);
    }
}

.choice-drawer > small {
    color: #a0362d;
}

.work-form button {
    margin-top: 0.2rem;
}

.cta-section {
    padding-top: 2rem;
}

.cta-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1.8rem;
    border-radius: calc(var(--radius) + 0.5rem);
    background: linear-gradient(120deg, rgba(5, 108, 67, 0.96), rgba(45, 95, 190, 0.94));
    color: white;
    box-shadow: var(--shadow);
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 3.2rem;
    padding: 2.55rem 0 1.1rem;
    background:
        radial-gradient(circle at top right, rgba(243, 197, 106, 0.16), transparent 22rem),
        radial-gradient(circle at bottom left, rgba(98, 182, 223, 0.18), transparent 30rem),
        linear-gradient(180deg, #102f46 0%, #0a2235 100%);
    color: rgba(255, 255, 255, 0.86);
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -6rem;
    right: -4rem;
    width: min(24rem, 30vw);
    aspect-ratio: 1;
    background: url('../images/hero-ray.svg') center/contain no-repeat;
    opacity: 0.08;
    transform: rotate(12deg);
    pointer-events: none;
}

.site-footer .eyebrow,
.footer-label {
    color: rgba(243, 197, 106, 0.88);
}

.footer-shell,
.footer-brand-block,
.footer-brand-copy,
.footer-column,
.footer-link-list,
.footer-contact-stack {
    display: grid;
}

.footer-shell {
    position: relative;
    z-index: 1;
    gap: 1.2rem;
}

.footer-link-groups {
    display: contents;
}

.footer-top {
    display: grid;
    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(8.5rem, 0.64fr)
        minmax(10.5rem, 0.8fr)
        minmax(15rem, 0.96fr);
    gap: clamp(1rem, 1.7vw, 1.55rem);
    align-items: start;
}

.footer-brand-block {
    gap: 0.9rem;
    max-width: 38rem;
    padding-right: 1.5rem;
}

.footer-brand-lockup {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.footer-mark {
    width: 4.35rem;
    height: 4.35rem;
    padding: 0.28rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.22);
    object-fit: contain;
}

.footer-brand-copy {
    gap: 0.4rem;
}

.footer-brand-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.2vw, 1.95rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    word-spacing: 0.02em;
    color: white;
}

.footer-brand-copy p,
.footer-bottom-copy,
.footer-address {
    color: rgba(255, 255, 255, 0.72);
}

.footer-column {
    gap: 0.7rem;
    min-width: 0;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-label {
    text-transform: uppercase;
    letter-spacing: var(--tracking-label);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35;
}

.footer-link-list,
.footer-contact-stack {
    gap: 0.65rem;
}

.footer-link-list a,
.footer-contact-stack a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    letter-spacing: 0.005em;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.footer-link-list a:hover,
.footer-contact-stack a:hover {
    color: white;
    transform: translateX(0.12rem);
}

.footer-contact-stack {
    gap: 0.75rem;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 1.18rem minmax(0, 1fr);
    gap: 0.58rem;
    align-items: start;
}

.footer-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 1.18rem;
    height: 1.18rem;
    margin-top: 0.18rem;
    color: rgba(243, 197, 106, 0.9);
}

.footer-contact-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-item span:last-child {
    min-width: 0;
}

.footer-address {
    max-width: 18rem;
}

.footer-column-contact {
    min-width: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-note {
    display: grid;
    gap: 0.2rem;
}

.footer-bottom-copy {
    font-size: 0.84rem;
}

.footer-bottom-meta {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
    line-height: 1.5;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

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

.reveal-delay-1 {
    transition-delay: 120ms;
}

@media (max-width: 1180px) {
    .home-foundation,
    .home-capability-board,
    .home-pathways-cta {
        grid-template-columns: 1fr;
    }

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

    .home-cta-panel {
        grid-template-columns: 1fr;
    }

    .home-cta-panel-copy,
    .home-pathways-cta-copy {
        max-width: 100%;
    }

    .home-track-record-head,
    .home-cta-panel-actions,
    .home-pathways-cta-actions {
        justify-content: flex-start;
    }

    .home-story,
    .home-story-services,
    .home-final-row,
    .home-work-strip {
        grid-template-columns: 1fr;
    }

    .home-story-copy,
    .home-work-strip-copy {
        max-width: 100%;
    }

    .home-story-about .home-story-media,
    .home-story-services .home-story-media {
        order: -1;
    }

    .home-work-strip-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .site-nav {
        position: absolute;
        inset: calc(100% + 0.75rem) 1.25rem auto;
        padding: 1rem;
        border-radius: 1.25rem;
        background: rgba(248, 246, 238, 0.98);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav.is-open,
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero-grid,
    .page-hero-grid,
    .two-column,
    .cta-grid,
    .form-layout,
    .contact-page-layout,
    .contact-grid,
    .home-split,
    .home-capability-grid,
    .proof-grid,
    .pillars-grid,
    .sector-grid,
    .button-row {
        grid-template-columns: 1fr;
    }

    .section-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .sector-overview,
    .sector-listing {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 2.25rem 0 2.9rem;
    }

    .home-hero-shell {
        min-height: auto;
        padding-bottom: 0;
        row-gap: 0.95rem;
    }

    .home-foundation,
    .home-capability-board,
    .home-cta-panel {
        grid-template-columns: 1fr;
    }

    .home-stats-band,
    .home-track-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-intro-top {
        grid-template-columns: 1fr;
    }

    .home-intro-top .home-stats-band {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-hero-brand {
        max-width: 10ch;
        font-size: clamp(1.95rem, 7vw, 3.1rem);
    }

    .home-hero-support {
        max-width: 22ch;
    }

    .home-hero-intro,
    .home-section-note,
    .home-cta-panel-note {
        max-width: 100%;
    }

    .page-hero {
        min-height: 18.5rem;
        padding: 3.6rem 0 2.9rem;
    }

    .page-hero-grid.has-support,
    .page-hero-grid.is-solo {
        min-height: auto;
    }

    .page-hero-copy {
        max-width: 100%;
        gap: 0.95rem;
    }

    .page-hero-heading {
        max-width: 100%;
        font-size: 2.2rem;
        line-height: 1.08;
    }

    .page-hero-lead {
        max-width: 34rem;
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .section-heading h2,
    .section-intro h2,
    .work-form-intro h2,
    .contact-form-heading h2,
    .section-heading p:last-child,
    .section-intro p:last-child,
    .work-form-intro p:last-child,
    .contact-form-heading p:last-child {
        max-width: 100%;
    }

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

    .footer-brand-block {
        grid-column: 1 / -1;
        max-width: 100%;
        padding-right: 0;
        padding-bottom: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-column {
        padding-left: 0;
        border-left: 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .home-story-title {
        max-width: 12ch;
        font-size: clamp(1.8rem, 7vw, 2.75rem);
    }

    .home-project-band-title,
    .home-work-strip-title {
        max-width: 14ch;
    }

    .home-story-media,
    .home-project-band,
    .home-team-strip-media {
        min-height: 18rem;
    }

    .page-support {
        justify-self: start;
        max-width: min(100%, 24rem);
        padding: 1rem 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

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

    .checkbox-grid-sectors,
    .checkbox-grid-services,
    .checkbox-grid-focus {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 720px) {
    .home-stats-band,
    .home-track-strip-grid {
        grid-template-columns: 1fr;
    }

    .home-intro-top .home-stats-band {
        grid-template-columns: 1fr;
    }

    .home-stats-item,
    .home-overview-panel,
    .home-track-link {
        padding: 1.1rem;
    }

    .home-keyline-list {
        gap: 0.45rem;
    }

    .home-keyline-list span,
    .home-pill {
        font-size: 0.8rem;
    }

    .home-track-link-title {
        font-size: 1.05rem;
    }

    .home-hero {
        padding: 1.9rem 0 2.4rem;
    }

    .home-hero-copy {
        gap: 0.42rem;
    }

    .home-hero-brand {
        max-width: 10ch;
        font-size: clamp(1.8rem, 9.8vw, 2.55rem);
        line-height: 0.95;
    }

    .home-hero-support {
        width: min(100%, 20.5rem);
        max-width: 23ch;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.36;
    }

    .home-hero-intro {
        font-size: 0.94rem;
    }

    .home-section-title,
    .home-cta-panel-title {
        max-width: 100%;
        font-size: clamp(1.7rem, 8.6vw, 2.35rem);
    }

    .home-track-record-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-track-panel {
        padding: 1.15rem;
    }

    .home-track-item h3 {
        font-size: 1.05rem;
    }

    .home-cta-panel-actions {
        justify-content: flex-start;
    }

    .home-pathways {
        gap: 1.7rem;
    }

    .home-pathways-intro {
        gap: 0.55rem;
    }

    .home-pathways-title {
        max-width: 100%;
        font-size: clamp(1.85rem, 8.8vw, 2.65rem);
    }

    .home-pathway-row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        padding: 1.1rem 0 1.15rem;
    }

    .home-pathway-number {
        font-size: 0.72rem;
    }

    .home-pathway-title {
        font-size: clamp(1.18rem, 6vw, 1.45rem);
    }

    .home-pathway-description {
        font-size: 0.94rem;
    }

    .home-pathways-cta {
        gap: 1rem;
    }

    .home-pathways-cta-copy {
        gap: 0.65rem;
    }

    .home-pathways-cta-title {
        max-width: 100%;
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .home-pathways-cta-actions {
        justify-content: flex-start;
    }

    .home-story,
    .home-story-services,
    .home-final-row,
    .home-work-strip {
        gap: 1rem;
    }

    .home-story-copy,
    .home-work-strip-copy {
        gap: 0.7rem;
    }

    .home-story-title,
    .home-project-band-title,
    .home-work-strip-title {
        max-width: 100%;
        font-size: clamp(1.65rem, 9vw, 2.35rem);
    }

    .home-story-media,
    .home-project-band,
    .home-team-strip-media {
        min-height: 15rem;
    }

    .page-hero-heading {
        font-size: 1.8rem;
    }

    .page-hero-lead,
    .section-heading p:last-child,
    .section-intro p:last-child,
    .work-form-intro p:last-child,
    .contact-form-heading p:last-child {
        font-size: 0.9rem;
        line-height: 1.72;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .footer-brand-block {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .footer-column {
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
}

.home-clean-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.8rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, rgba(252, 244, 210, 0.9), rgba(217, 244, 243, 0.92));
    border-bottom: 1px solid var(--line-soft);
}

.home-clean-hero::before {
    content: '';
    position: absolute;
    right: min(-10rem, -8vw);
    top: 50%;
    width: min(58rem, 72vw);
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translateY(-50%);
    background:
        radial-gradient(circle at 50% 50%, rgba(247, 225, 131, 0.16) 0 12%, transparent 12.5%),
        repeating-conic-gradient(
            from -12deg,
            rgba(252, 241, 185, 0.26) 0deg 14deg,
            rgba(219, 242, 237, 0.04) 14deg 25deg,
            rgba(197, 231, 226, 0.14) 25deg 35deg,
            rgba(252, 241, 185, 0.05) 35deg 46deg
        );
    opacity: 0.58;
    pointer-events: none;
}

.home-clean-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(16rem, 0.58fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
    min-height: clamp(26rem, calc(100svh - 8.25rem), 36rem);
}

.home-clean-copy,
.home-clean-story-copy,
.home-clean-services,
.home-clean-work,
.home-clean-cta-copy {
    display: grid;
}

.home-clean-copy {
    gap: 1rem;
    max-width: 43rem;
}

.home-clean-kicker {
    margin: 0;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.4;
}

.home-clean-title,
.home-clean-section-title,
.home-clean-cta-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.018em;
    text-wrap: balance;
}

.home-clean-title {
    max-width: 10.5ch;
    font-size: clamp(2.9rem, 5.8vw, 5.2rem);
    line-height: 0.94;
}

.home-clean-lead {
    margin: 0;
    max-width: 20ch;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.9vw, 1.48rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.home-clean-body,
.home-clean-section-body,
.home-clean-aside-text,
.home-clean-proof-note,
.home-clean-work-clients {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.66;
}

.home-clean-body {
    max-width: 38rem;
}

.home-clean-actions,
.home-clean-links,
.home-clean-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.3rem;
}

.home-clean-actions {
    padding-top: 0.15rem;
}

.home-clean-proof {
    display: grid;
    gap: 0;
    padding-left: clamp(1rem, 2vw, 1.5rem);
    border-left: 1px solid rgba(17, 49, 74, 0.12);
}

.home-clean-proof-entry {
    border-color: rgba(17, 49, 74, 0.09);
}

.home-clean-proof-summary {
    align-items: center;
    padding: 1rem 0;
}

.home-clean-proof-heading {
    display: grid;
    gap: 0.32rem;
    min-width: 0;
}

.home-clean-proof-value {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    transition: color 180ms ease;
}

.home-clean-proof-label {
    margin: 0;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 180ms ease;
}

.home-clean-proof-detail {
    margin: 0;
    max-width: 35rem;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.6;
}

.home-clean-proof-panel {
    padding-bottom: 1.05rem;
}

@media (hover: hover) and (pointer: fine) {
    .accordion-item:hover {
        transform: translateX(3px);
        border-top-color: rgba(45, 95, 190, 0.2);
        background-color: rgba(255, 255, 255, 0.38);
        box-shadow: 0 8px 18px rgba(17, 49, 74, 0.045);
    }

    .accordion-item:last-child:hover {
        border-bottom-color: rgba(45, 95, 190, 0.2);
    }

    .accordion-item:hover .accordion-summary h3 {
        color: var(--ocean);
        font-weight: 600;
    }

    .accordion-item:hover .accordion-meta,
    .accordion-item:hover .accordion-submeta,
    .accordion-item:hover .home-clean-proof-label {
        color: rgba(17, 49, 74, 0.82);
    }

    .home-clean-proof-entry:hover .home-clean-proof-value {
        color: var(--ocean);
    }

    .accordion-item:not([open]):not(.is-opening):hover .accordion-toggle {
        transform: scale(1.06);
        background: rgba(45, 95, 190, 0.1);
        border-color: rgba(45, 95, 190, 0.24);
    }

    .accordion-item[open]:hover .accordion-toggle,
    .accordion-item.is-opening:hover .accordion-toggle {
        transform: rotate(180deg) scale(1.04);
        background: rgba(45, 95, 190, 0.12);
        border-color: rgba(45, 95, 190, 0.28);
    }
}

.home-clean-intro-section {
    padding: 5.4rem 0 5.1rem;
}

.home-clean-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(14rem, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.home-clean-intro-copy,
.home-clean-capability-copy,
.home-clean-work,
.home-clean-cta-copy {
    gap: 1.3rem;
}

.home-clean-intro-copy > .eyebrow,
.home-clean-capability-copy > .eyebrow,
.home-clean-work-head > .eyebrow,
.home-clean-cta-copy > .eyebrow {
    margin: 0;
    color: rgba(17, 49, 74, 0.68);
    font-size: 0.64rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.home-clean-section-title {
    max-width: 26ch;
    font-size: clamp(1.3rem, 1.72vw, 1.62rem);
    font-weight: 500;
    line-height: 1.32;
    letter-spacing: -0.012em;
}

.home-clean-section-body {
    max-width: 34rem;
    font-size: 0.94rem;
    line-height: 1.8;
}

.home-clean-capability {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.home-clean-intro-copy,
.home-clean-capability-copy,
.home-clean-work-head {
    display: grid;
    gap: 0.95rem;
    max-width: 42rem;
}

.home-clean-links {
    align-items: center;
    gap: 0.55rem 0.95rem;
    padding-top: 0.45rem;
}

.home-clean-lists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2.25rem;
    padding-top: 0.35rem;
}

.home-clean-list-block {
    display: grid;
    gap: 0.9rem;
}

.home-clean-list-block h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.01em;
}

.home-clean-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.home-clean-list li {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink-soft);
    font-size: 0.97rem;
    line-height: 1.45;
}

.home-clean-work-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.56fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.home-clean-work-rows {
    border-top: 1px solid var(--line);
}

.home-clean-work-row {
    display: grid;
    grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1fr) auto;
    gap: 1rem 1.4rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-soft);
    transition: transform 180ms ease, color 180ms ease;
}

.home-clean-work-row:hover {
    transform: translateX(4px);
}

.home-clean-work-title {
    font-family: var(--font-display);
    font-size: clamp(0.96rem, 1.2vw, 1.08rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.home-clean-work-action {
    color: var(--ocean);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.4;
}

.home-clean-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem 2rem;
    align-items: end;
    padding-top: 0.25rem;
    border-top: 1px solid var(--line);
}

.home-clean-cta-title {
    max-width: 22ch;
    font-size: clamp(1.45rem, 1.9vw, 1.95rem);
    line-height: 1.14;
}

.home-clean-cta-actions {
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 980px) {
    .home-clean-intro-section {
        padding: 4.4rem 0 4.2rem;
    }

    .home-clean-hero-grid,
    .home-clean-intro,
    .home-clean-capability,
    .home-clean-work-layout,
    .home-clean-lists,
    .home-clean-cta {
        grid-template-columns: 1fr;
    }

    .home-clean-hero-grid {
        min-height: auto;
    }

    .home-clean-proof {
        padding-top: 1rem;
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .home-clean-work-row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .home-clean-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .home-clean-intro-section {
        padding: 3.6rem 0 3.4rem;
    }

    .home-clean-hero {
        padding: 2.3rem 0 2.9rem;
    }

    .home-clean-hero::before {
        right: -14rem;
        width: min(42rem, 120vw);
        opacity: 0.46;
    }

    .home-clean-title {
        max-width: 100%;
        font-size: clamp(2.35rem, 11vw, 3.55rem);
    }

    .home-clean-section-title,
    .home-clean-cta-title {
        max-width: 100%;
        font-size: clamp(1.16rem, 5vw, 1.42rem);
        line-height: 1.28;
    }

    .home-clean-actions .button,
    .home-clean-cta-actions .button {
        width: 100%;
    }
}

@media (max-width: 980px) {
    body {
        line-height: 1.62;
    }

    .container {
        width: min(calc(100% - 2rem), var(--container));
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(17, 49, 74, 0.18);
        backdrop-filter: blur(10px);
        z-index: 19;
    }

    .site-header {
        z-index: 30;
        background: rgba(248, 246, 238, 0.92);
        backdrop-filter: blur(18px);
    }

    .header-inner {
        position: relative;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1rem;
        padding: 0.72rem 0;
    }

    .brand-lockup {
        min-width: 0;
        gap: 0.72rem;
    }

    .brand-mark {
        width: 3rem;
        height: 3rem;
    }

    .brand-copy {
        min-width: 0;
        gap: 0.04rem;
    }

    .brand-tagline {
        font-size: 0.74rem;
        line-height: 1.34;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        inset: calc(100% + 0.45rem) 0 auto;
        padding: 0.5rem;
        border-radius: 10px;
        border: 1px solid rgba(17, 49, 74, 0.08);
        background: rgba(248, 246, 238, 0.97);
        box-shadow: 0 22px 40px rgba(17, 49, 74, 0.1);
        display: grid;
        gap: 0.12rem;
        align-items: flex-start;
        opacity: 0;
        transform: translateY(-0.4rem);
        pointer-events: none;
        transition:
            opacity 180ms ease,
            transform 180ms ease;
    }

    .site-nav.is-open {
        display: grid;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-nav a {
        width: 100%;
        padding: 0.78rem 0.82rem 0.96rem;
        border-radius: 8px;
        background: transparent;
    }

    .site-nav a::after {
        left: 0.82rem;
        bottom: 0.52rem;
        width: calc(100% - 1.64rem);
    }

    .site-nav a:hover,
    .site-nav a.is-active {
        background: rgba(255, 255, 255, 0.62);
    }

    .hero-grid,
    .page-hero-grid,
    .two-column,
    .cta-grid,
    .form-layout,
    .contact-page-layout,
    .contact-grid,
    .home-split,
    .home-capability-grid,
    .proof-grid,
    .pillars-grid,
    .sector-grid,
    .button-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section {
        padding: 3.55rem 0;
    }

    .section-compact {
        padding: 0.55rem 0 0;
    }

    .text-link,
    .read-more-toggle {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }

    .home-hero {
        padding: 2rem 0 2.5rem;
    }

    .home-hero-shell {
        row-gap: 0.82rem;
    }

    .home-hero-brand {
        max-width: 9.8ch;
        font-size: clamp(1.82rem, 6.8vw, 2.85rem);
        line-height: 0.93;
    }

    .home-hero-support {
        width: min(100%, 24rem);
        max-width: 25ch;
        font-size: 0.88rem;
        font-weight: 500;
        line-height: 1.3;
    }

    .home-hero-actions {
        width: min(100%, 30rem);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .home-hero-actions .button,
    .home-clean-actions .button,
    .home-clean-cta-actions .button {
        min-height: 2.4rem;
        padding: 0.62rem 0.9rem;
        font-size: 0.84rem;
    }

    .page-hero {
        min-height: 16.8rem;
        padding: 3rem 0 2.35rem;
    }

    .page-hero-copy {
        gap: 0.78rem;
    }

    .page-hero-heading {
        max-width: 16ch;
        font-size: 1.9rem;
        line-height: 1.08;
    }

    .page-hero-lead,
    .section-heading p:last-child,
    .section-intro p:last-child,
    .work-form-intro p:last-child,
    .contact-form-heading p:last-child {
        max-width: 30rem;
        font-size: 0.88rem;
        font-weight: 400;
        line-height: 1.66;
    }

    .section-heading h2,
    .section-intro h2,
    .work-form-intro h2,
    .contact-form-heading h2 {
        font-size: clamp(1.24rem, 4vw, 1.54rem);
        line-height: 1.16;
    }

    .brand-poster,
    .page-support,
    .contact-card,
    .sector-card,
    .team-card,
    .insight-card,
    .table-shell,
    .site-form,
    .project-group,
    .proof-item,
    .pillar,
    .cta-grid {
        border-radius: 10px;
        box-shadow: 0 10px 24px rgba(17, 49, 74, 0.05);
    }

    .brand-poster,
    .contact-card,
    .sector-card,
    .team-card,
    .insight-card,
    .site-form,
    .project-group,
    .cta-grid {
        padding: 1.2rem;
    }

    .field-grid label,
    .field-grid fieldset {
        gap: 0.55rem;
    }

    .field-grid input,
    .field-grid select,
    .field-grid textarea,
    .work-form input:not([type='checkbox']),
    .work-form select,
    .work-form textarea {
        min-height: 3rem;
        padding: 0.82rem 0.88rem;
        border-radius: 8px;
        font-size: 0.92rem;
    }

    .field-grid fieldset,
    .work-form .field-grid > fieldset {
        padding: 0.9rem;
        border-radius: 10px;
    }

    .work-form {
        gap: 1rem;
        padding: 1.35rem;
    }

    .work-form .field-grid {
        gap: 0.85rem;
    }

    .work-form input[type='file']::file-selector-button {
        padding: 0.62rem 0.8rem;
        border-radius: 8px;
    }

    .accordion-summary {
        gap: 0.8rem;
        padding: 1rem 0;
    }

    .accordion-summary h3 {
        max-width: 24rem;
        font-size: 1rem;
        line-height: 1.24;
    }

    .accordion-submeta {
        font-size: 0.88rem;
    }

    .accordion-toggle {
        flex-basis: 1.2rem;
        width: 1.2rem;
        height: 1.2rem;
        margin-top: 0.1rem;
    }

    .accordion-toggle::before,
    .accordion-toggle::after {
        width: 0.6rem;
    }

    .accordion-panel {
        gap: 0.75rem;
        padding: 0 0 1.1rem;
        font-size: 0.9rem;
        line-height: 1.62;
    }

    .page-support {
        max-width: min(100%, 22rem);
        padding: 0.85rem 0 0;
    }

    .home-clean-intro-section {
        padding: 3.8rem 0 3.7rem;
    }

    .home-clean-hero {
        padding: 2.35rem 0 3rem;
    }

    .home-clean-copy {
        gap: 0.8rem;
        max-width: 36rem;
    }

    .home-clean-title {
        max-width: 8.8ch;
        font-size: clamp(2.55rem, 8vw, 4rem);
        line-height: 0.92;
    }

    .home-clean-lead {
        max-width: 24ch;
        font-size: clamp(0.98rem, 2.4vw, 1.18rem);
        font-weight: 500;
        line-height: 1.28;
    }

    .home-clean-body,
    .home-clean-section-body,
    .home-clean-aside-text,
    .home-clean-proof-note,
    .home-clean-work-clients {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .home-clean-intro-copy,
    .home-clean-capability-copy,
    .home-clean-work,
    .home-clean-cta-copy {
        gap: 1rem;
    }

    .home-clean-proof-detail {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .home-clean-capability-copy,
    .home-clean-work-head {
        gap: 0.75rem;
    }

    .home-clean-actions,
    .home-clean-links,
    .home-clean-cta-actions {
        gap: 0.65rem 0.9rem;
    }

    .home-clean-list li {
        padding: 0.82rem 0;
        font-size: 0.92rem;
        line-height: 1.42;
    }

    .home-clean-work-row {
        gap: 0.38rem;
        padding: 0.82rem 0;
    }

    .site-footer {
        margin-top: 2.6rem;
        padding: 2rem 0 0.95rem;
    }

    .footer-shell {
        gap: 1rem;
    }

    .footer-top {
        gap: 0.95rem 1.1rem;
    }

    .footer-brand-block {
        gap: 0.75rem;
        padding-bottom: 0.9rem;
    }

    .footer-brand-lockup {
        gap: 0.8rem;
    }

    .footer-mark {
        width: 3.65rem;
        height: 3.65rem;
        padding: 0.22rem;
        border-radius: 50%;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
    }

    .footer-brand-copy h2 {
        font-size: clamp(1.2rem, 3.4vw, 1.45rem);
    }

    .footer-brand-copy p,
    .footer-link-list a,
    .footer-contact-stack a,
    .footer-address {
        font-size: 0.9rem;
        line-height: 1.58;
    }

    .footer-column {
        gap: 0.55rem;
    }

    .footer-link-list,
    .footer-contact-stack {
        gap: 0.55rem;
    }

    .footer-bottom {
        gap: 0.65rem;
        padding-top: 0.85rem;
    }

    .footer-bottom-copy {
        font-size: 0.8rem;
    }

    .footer-bottom-meta {
        font-size: 0.74rem;
    }
}

@media (max-width: 720px) {
    body {
        line-height: 1.58;
    }

    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .header-inner {
        gap: 0.75rem;
        padding: 0.58rem 0;
    }

    .brand-lockup {
        gap: 0.6rem;
    }

    .brand-mark {
        width: 2.6rem;
        height: 2.6rem;
    }

    .brand-tagline {
        display: none;
    }

    .site-nav {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 4.05rem);
        left: 0.7rem;
        right: 0.7rem;
        bottom: auto;
        z-index: 31;
        max-height: calc(100svh - 4.95rem);
        overflow: auto;
        padding: 0.38rem;
        border-radius: 10px;
        background: #f8f6ee;
        box-shadow: 0 18px 36px rgba(17, 49, 74, 0.14);
    }

    .site-nav a {
        padding: 0.88rem 0.9rem 0.96rem;
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.18;
        letter-spacing: 0;
        text-transform: none;
    }

    .site-nav a::after {
        left: 0.9rem;
        bottom: 0.46rem;
        width: calc(100% - 1.8rem);
    }

    .section {
        padding: 2.75rem 0;
    }

    .section-compact {
        padding: 0.35rem 0 0;
    }

    .text-link,
    .read-more-toggle {
        font-size: 0.58rem;
    }

    .button,
    .home-hero-actions .button {
        min-height: 2.3rem;
        font-size: 0.82rem;
    }

    .button-row .button,
    .home-clean-actions .button,
    .home-clean-cta-actions .button,
    .home-work-strip-actions .button,
    .home-pathways-cta-actions .button {
        width: 100%;
    }

    .home-hero {
        padding: 1.1rem 0 1.55rem;
    }

    .home-hero::before {
        left: 72%;
        top: 52%;
        width: min(30rem, 112vw);
        opacity: 0.26;
    }

    .home-hero::after {
        background:
            radial-gradient(circle at 18% 22%, rgba(5, 108, 67, 0.08), transparent 30%),
            linear-gradient(180deg, rgba(5, 108, 67, 0.03), rgba(5, 108, 67, 0.11));
    }

    .home-hero-shell {
        width: min(calc(100% - 1.25rem), 22rem);
        justify-items: start;
        row-gap: 0.62rem;
    }

    .home-hero-copy {
        width: min(100%, 18.75rem);
        justify-items: start;
        gap: 0.4rem;
        text-align: left;
    }

    .home-hero-brand {
        max-width: none;
        margin: 0;
        font-size: clamp(1.34rem, 6.7vw, 1.72rem);
        line-height: 0.94;
    }

    .home-hero-support {
        width: min(100%, 18.75rem);
        max-width: 27ch;
        font-size: 0.76rem;
        font-weight: 400;
        line-height: 1.38;
        color: rgba(17, 49, 74, 0.78);
    }

    .home-hero-line {
        white-space: nowrap;
    }

    .home-hero-actions {
        width: min(100%, 18.75rem);
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 0.34rem;
        padding: 0.32rem;
        background: rgba(248, 246, 238, 0.42);
        border: 1px solid rgba(17, 49, 74, 0.08);
        border-radius: 10px;
        backdrop-filter: blur(12px);
    }

    .home-hero-actions .button,
    .home-clean-cta-actions .button {
        position: relative;
        width: 100%;
        min-height: 2.42rem;
        padding: 0.68rem 0.84rem;
        justify-content: space-between;
        border-radius: 7px;
        box-shadow: none;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .home-hero-actions .button::after,
    .home-clean-cta-actions .button::after {
        content: '';
        flex: 0 0 auto;
        width: 0.42rem;
        height: 0.42rem;
        margin-left: 0.55rem;
        border-top: 1.5px solid currentColor;
        border-right: 1.5px solid currentColor;
        transform: rotate(45deg);
        opacity: 0.72;
    }

    .home-hero-actions .button-secondary,
    .home-clean-cta-actions .button-secondary {
        min-height: 2.34rem;
        padding: 0.66rem 0.84rem;
        border: 1px solid rgba(17, 49, 74, 0.1);
        background: rgba(255, 255, 255, 0.76);
        color: var(--ink);
        font-size: 0.78rem;
        letter-spacing: 0;
        text-transform: none;
    }

    .home-hero-actions .button-secondary:hover,
    .home-clean-cta-actions .button-secondary:hover {
        background: rgba(255, 255, 255, 0.88);
        box-shadow: none;
    }

    .page-hero {
        min-height: 15.8rem;
        padding: 2.65rem 0 2.05rem;
    }

    .page-hero-copy {
        gap: 0.65rem;
    }

    .page-hero-eyebrow {
        font-size: 0.62rem;
    }

    .page-hero-heading {
        font-size: 1.62rem;
        line-height: 1.08;
    }

    .page-hero-lead,
    .section-heading p:last-child,
    .section-intro p:last-child,
    .work-form-intro p:last-child,
    .contact-form-heading p:last-child {
        max-width: 26rem;
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .section-heading h2,
    .section-intro h2,
    .work-form-intro h2,
    .contact-form-heading h2 {
        font-size: clamp(1.12rem, 5.4vw, 1.34rem);
        line-height: 1.18;
    }

    .brand-poster,
    .page-support,
    .contact-card,
    .sector-card,
    .team-card,
    .insight-card,
    .table-shell,
    .site-form,
    .project-group,
    .proof-item,
    .pillar,
    .cta-grid,
    .field-grid fieldset,
    .work-form .field-grid > fieldset {
        border-radius: 8px;
        box-shadow: none;
    }

    .brand-poster,
    .contact-card,
    .sector-card,
    .team-card,
    .insight-card,
    .site-form,
    .project-group,
    .cta-grid {
        padding: 1rem;
    }

    .field-grid input,
    .field-grid select,
    .field-grid textarea,
    .work-form input:not([type='checkbox']),
    .work-form select,
    .work-form textarea {
        min-height: 2.8rem;
        padding: 0.76rem 0.82rem;
        font-size: 0.95rem;
    }

    .field-grid fieldset,
    .work-form .field-grid > fieldset {
        padding: 0.78rem;
    }

    .work-form {
        gap: 0.85rem;
        padding: 1rem;
    }

    .work-form .field-grid {
        gap: 0.78rem;
    }

    .accordion-summary {
        gap: 0.72rem;
        padding: 0.82rem 0;
    }

    .accordion-summary h3 {
        font-size: 1rem;
    }

    .accordion-submeta,
    .accordion-panel {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .accordion-panel {
        padding-bottom: 0.95rem;
    }

    .home-clean-intro-section {
        padding: 2.35rem 0 2.15rem;
    }

    .home-clean-intro {
        gap: 1.05rem;
    }

    .home-clean-intro-copy {
        gap: 0.72rem;
    }

    .home-clean-intro-copy > .eyebrow,
    .home-clean-capability-copy > .eyebrow,
    .home-clean-work-head > .eyebrow,
    .home-clean-cta-copy > .eyebrow {
        font-size: 0.64rem;
    }

    .home-clean-section-title {
        max-width: 18ch;
        font-size: clamp(1.28rem, 5.8vw, 1.5rem);
        line-height: 1.18;
    }

    .home-clean-section-body {
        max-width: 20rem;
        font-size: 0.95rem;
        line-height: 1.62;
    }

    .home-clean-links {
        padding-top: 0;
        gap: 0.4rem 0.78rem;
    }

    .home-clean-proof {
        width: min(calc(100% - 2.5rem), 27rem);
        margin-inline: auto;
        padding-top: 0.72rem;
        align-items: start;
        border-top: 0;
    }

    .home-clean-proof-entry {
        min-width: 0;
    }

    .home-clean-proof-summary {
        padding: 0.78rem 0;
    }

    .home-clean-proof-value {
        font-size: clamp(0.98rem, 5.2vw, 1.18rem);
        line-height: 0.95;
        letter-spacing: 0;
    }

    .home-clean-proof-label {
        font-size: 0.58rem;
        line-height: 1.3;
        letter-spacing: 0.1em;
    }

    .home-clean-proof-detail {
        font-size: 0.78rem;
        line-height: 1.48;
    }

    .home-clean-capability,
    .home-clean-work-layout {
        gap: 1.05rem;
    }

    .home-clean-capability-copy,
    .home-clean-work-head,
    .home-clean-cta-copy {
        gap: 0.68rem;
    }

    .home-clean-lists {
        gap: 0.9rem;
        padding-top: 0;
    }

    .home-clean-list-block {
        gap: 0.5rem;
        padding: 0.82rem 0.9rem;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(17, 49, 74, 0.08);
        border-radius: 8px;
    }

    .home-clean-list-block h3 {
        font-size: 1rem;
        line-height: 1.22;
    }

    .home-clean-list li {
        padding: 0.58rem 0;
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .home-clean-work-rows {
        display: grid;
        gap: 0.5rem;
        border-top: 0;
    }

    .home-clean-work-row {
        gap: 0.26rem;
        padding: 0.76rem 0.82rem;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(17, 49, 74, 0.08);
        border-radius: 8px;
    }

    .home-clean-work-title {
        font-size: 1rem;
        line-height: 1.24;
    }

    .home-clean-work-clients {
        max-width: 18rem;
        font-size: 0.8rem;
        line-height: 1.42;
    }

    .home-clean-work-action {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        color: rgba(17, 49, 74, 0.62);
    }

    .home-clean-cta {
        gap: 0.8rem;
        padding-top: 0;
        border-top: 0;
    }

    .home-clean-cta-title {
        max-width: 15ch;
        font-size: clamp(1.22rem, 5vw, 1.38rem);
        line-height: 1.18;
    }

    .home-clean-cta-actions {
        display: grid;
        justify-items: stretch;
        gap: 0.34rem;
        padding: 0.32rem;
        background: rgba(248, 246, 238, 0.42);
        border: 1px solid rgba(17, 49, 74, 0.08);
        border-radius: 10px;
        backdrop-filter: blur(12px);
    }

    .site-footer {
        margin-top: 2.1rem;
        padding: 1.7rem 0 0.85rem;
    }

    .footer-top {
        gap: 0.85rem;
    }

    .footer-brand-lockup {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.7rem;
        align-items: start;
    }

    .footer-brand-block {
        padding-bottom: 0.2rem;
    }

    .footer-column {
        gap: 0.45rem;
        padding-top: 0.8rem;
    }

    .footer-mark {
        width: 3.45rem;
        height: 3.45rem;
        padding: 0.22rem;
        border-radius: 50%;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
    }

    .footer-brand-copy h2 {
        font-size: 1.18rem;
        line-height: 1.08;
    }

    .footer-brand-copy p,
    .footer-link-list a,
    .footer-contact-stack a,
    .footer-address {
        font-size: 0.9rem;
        line-height: 1.58;
    }

    .footer-contact-stack {
        gap: 0.55rem;
    }

    .footer-bottom-copy {
        font-size: 0.82rem;
    }

    .footer-bottom-meta {
        font-size: 0.74rem;
    }
}

@media (max-width: 980px) {
    .header-inner > *,
    .page-hero-grid > *,
    .two-column > *,
    .form-layout > *,
    .contact-page-layout > *,
    .contact-grid > *,
    .work-section-layout > *,
    .home-clean-intro > *,
    .home-clean-capability > *,
    .home-clean-work-layout > *,
    .home-clean-cta > *,
    .field-grid > *,
    .checkbox-grid > * {
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 1.5rem), var(--container));
    }

    .section-compact,
    .home-clean-section-body,
    .section-heading p:last-child,
    .section-intro p:last-child,
    .work-form-intro p:last-child,
    .contact-form-heading p:last-child {
        display: none;
    }

    .home-hero-shell,
    .page-hero-shell,
    .home-clean-intro,
    .home-clean-capability,
    .home-clean-work-layout,
    .home-clean-cta,
    .section-nav,
    .accordion-list,
    .contact-info-stack {
        width: 100%;
        margin-inline: auto;
    }

    .container.page-hero-shell,
    .container.two-column,
    .container.work-section-layout,
    .container.contact-page-layout,
    .container.project-groups {
        width: min(calc(100% - 2rem), var(--container));
    }

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

    .home-clean-list li:nth-child(n + 4),
    .home-clean-work-row:nth-child(n + 3) {
        display: none;
    }

    .page-hero-ray {
        display: none;
    }

    .home-hero-shell {
        justify-items: center;
        width: min(100%, 22.5rem);
        row-gap: 0.9rem;
    }

    .home-hero-copy,
    .page-hero-copy,
    .section-intro,
    .section-heading,
    .work-form-intro,
    .contact-form-heading,
    .home-clean-intro-copy,
    .home-clean-capability-copy,
    .home-clean-work-head,
    .home-clean-cta-copy {
        width: 100%;
        max-width: 22rem;
        margin-inline: auto;
        justify-items: center;
        text-align: center;
    }

    .home-hero-brand,
    .home-hero-support {
        margin-inline: auto;
        max-width: 22rem;
    }

    .home-hero-copy {
        justify-items: center;
        text-align: center;
    }

    .home-hero-line {
        white-space: normal;
    }

    .home-hero-actions,
    .home-clean-links,
    .home-clean-cta-actions,
    .section-nav,
    .footer-link-list,
    .footer-contact-stack {
        justify-content: center;
        justify-items: center;
    }

    .section-nav {
        padding: 0.9rem 1rem;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(17, 49, 74, 0.08);
        border-radius: 1.1rem;
        gap: 0.5rem;
    }

    .section-nav a {
        width: 100%;
        justify-content: center;
        padding-bottom: 0.35rem;
    }

    .page-hero-heading,
    .section-heading h2,
    .section-intro h2,
    .work-form-intro h2,
    .contact-form-heading h2,
    .home-clean-section-title,
    .home-clean-cta-title {
        max-width: 22ch;
        margin-inline: auto;
        overflow-wrap: break-word;
        text-wrap: pretty;
    }

    .home-clean-section-title {
        max-width: 24ch;
        font-size: clamp(1.12rem, 5.2vw, 1.34rem);
        font-weight: 500;
        line-height: 1.34;
        letter-spacing: -0.006em;
    }

    .home-clean-list-block,
    .home-clean-work-row,
    .site-form,
    .contact-card,
    .project-group,
    .accordion-item {
        border-radius: 0;
    }

    .home-clean-list-block,
    .home-clean-work-row,
    .contact-card,
    .project-group,
    .accordion-item {
        background: rgba(255, 255, 255, 0.74);
        box-shadow: 0 12px 28px rgba(17, 49, 74, 0.05);
        border: 1px solid rgba(17, 49, 74, 0.08);
    }

    .home-clean-list-block,
    .home-clean-work-row,
    .project-group,
    .accordion-item,
    .contact-card,
    .site-form {
        width: 100%;
        margin-inline: auto;
    }

    .specialisations-list {
        display: grid;
        width: min(calc(100% - 2.5rem), 27rem);
        margin-inline: auto;
        gap: 0.55rem;
    }

    .specialisations-list article {
        width: 100%;
        padding: 0.88rem 0.95rem;
        border: 1px solid rgba(17, 49, 74, 0.08);
        border-radius: 0;
        background: rgba(255, 255, 255, 0.74);
        box-shadow: 0 12px 28px rgba(17, 49, 74, 0.05);
        text-align: left;
    }

    .specialisations-list article:last-child {
        padding-bottom: 0.88rem;
        border-bottom: 1px solid rgba(17, 49, 74, 0.08);
    }

    .specialisations-list h3 {
        margin: 0;
        font-size: 0.96rem;
        line-height: 1.32;
    }

    .specialisations-list .bullet-stack-icon {
        width: 2rem;
        height: 2rem;
    }

    .home-clean-lists,
    .home-clean-work-rows {
        width: min(calc(100% - 2.5rem), 27rem);
        margin-inline: auto;
    }

    .home-clean-work-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.8rem;
        align-items: center;
        justify-items: start;
        padding: 0.9rem 1rem;
    }

    .home-clean-work-title {
        text-align: left;
    }

    .home-clean-work-action {
        justify-self: end;
        align-self: center;
    }

    .home-clean-list-block h3,
    .footer-brand-copy h2,
    .footer-column,
    .footer-bottom-note {
        text-align: center;
    }

    .accordion-list {
        gap: 0.75rem;
    }

    .accordion-item,
    .accordion-item:last-child {
        overflow: hidden;
        border: 1px solid rgba(17, 49, 74, 0.08);
    }

    .accordion-summary {
        padding: 0.95rem 1rem 0.92rem;
    }

    .accordion-copy {
        gap: 0.32rem;
        min-width: 0;
    }

    .accordion-summary h3 {
        max-width: 100%;
    }

    .accordion-panel {
        padding: 0 1rem 1rem;
        gap: 0.45rem;
    }

    .team-accordion .accordion-summary .accordion-submeta {
        display: none;
    }

    .team-accordion .accordion-panel-submeta {
        display: block;
        font-size: 0.9rem;
    }

    .team-accordion {
        width: min(calc(100% - 1rem), 42rem);
        margin-inline: auto;
    }

    .home-clean-work-clients {
        display: none;
    }

    .project-group {
        padding: 1.15rem 0.95rem;
    }

    .project-group-header {
        margin-bottom: 0.35rem;
        padding-inline: 0.1rem;
    }

    .site-form,
    .contact-card {
        padding: 1.2rem 1rem;
    }

    .contact-card-rich,
    .contact-detail-list {
        gap: 0.9rem;
    }

    .contact-detail-item {
        gap: 0.85rem;
        align-items: center;
    }

    .contact-detail-copy {
        min-width: 0;
    }

    .contact-detail-copy a,
    .contact-detail-copy span {
        display: block;
        overflow-wrap: anywhere;
    }

    .footer-top,
    .footer-bottom,
    .footer-shell,
    .footer-brand-lockup,
    .footer-brand-copy,
    .footer-link-groups,
    .footer-column,
    .footer-bottom-note,
    .footer-link-list,
    .footer-contact-stack {
        width: 100%;
        min-width: 0;
    }

    .footer-shell {
        gap: 1.3rem;
    }

    .footer-brand-block,
    .footer-column,
    .footer-bottom-note {
        justify-items: center;
    }

    .footer-brand-lockup {
        width: 100%;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.85rem;
        text-align: center;
    }

    .footer-brand-copy,
    .footer-link-list,
    .footer-contact-stack {
        justify-items: center;
    }

    .footer-brand-copy p,
    .footer-link-list a,
    .footer-contact-stack a,
    .footer-address,
    .footer-bottom-copy,
    .footer-bottom-meta {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .footer-brand-copy p {
        display: none;
    }

    .footer-link-list a,
    .footer-contact-stack a,
    .footer-address {
        text-align: center;
    }

    .site-footer {
        padding-top: 1.45rem;
    }

    .footer-shell {
        width: min(calc(100% - 2rem), var(--container));
        gap: 0.95rem;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
        align-items: start;
    }

    .footer-brand-block,
    .footer-column,
    .footer-bottom-note {
        justify-items: start;
        text-align: left;
    }

    .footer-brand-lockup {
        grid-template-columns: auto minmax(0, 1fr);
        justify-items: start;
        align-items: center;
        gap: 0.7rem;
        text-align: left;
    }

    .footer-brand-copy {
        justify-items: start;
        text-align: left;
    }

    .footer-mark {
        width: 3.45rem;
        height: 3.45rem;
        padding: 0.22rem;
        border-radius: 50%;
    }

    .footer-brand-copy h2 {
        max-width: 18rem;
        font-size: 1.08rem;
        font-weight: 600;
        line-height: 1.22;
        letter-spacing: 0;
        text-align: left;
    }

    .footer-link-groups {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.62rem;
        padding: 0.82rem 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 8px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    }

    .footer-link-groups .footer-column {
        gap: 0.42rem;
        padding: 0;
        border: 0;
    }

    .footer-link-groups .footer-column + .footer-column {
        padding-left: 0.68rem;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-link-groups .footer-label {
        font-size: 0.62rem;
        line-height: 1.2;
    }

    .footer-link-groups .footer-link-list {
        gap: 0.34rem;
        justify-items: start;
    }

    .footer-link-groups .footer-link-list a {
        width: 100%;
        font-size: 0.79rem;
        font-weight: 500;
        line-height: 1.32;
        letter-spacing: 0;
        text-align: left;
        color: rgba(255, 255, 255, 0.86);
    }

    .footer-column-contact {
        gap: 0.58rem;
        padding-top: 0.82rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-column-contact .footer-contact-stack {
        gap: 0.58rem;
        justify-items: start;
    }

    .footer-contact-item {
        grid-template-columns: 1.08rem minmax(0, 1fr);
        gap: 0.54rem;
        align-items: start;
    }

    .footer-contact-icon {
        width: 1.08rem;
        height: 1.08rem;
        margin-top: 0.14rem;
    }

    .footer-column-contact .footer-contact-stack a,
    .footer-address {
        font-size: 0.8rem;
        font-weight: 500;
        line-height: 1.48;
        text-align: left;
    }

    .footer-bottom {
        justify-content: flex-start;
        padding-top: 0.72rem;
    }

    .footer-bottom-note {
        gap: 0.12rem;
    }

    .footer-bottom-copy,
    .footer-bottom-meta {
        text-align: left;
    }
}

/* Keep the home hero aligned with the shared inner-page hero treatment. */
.home-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    min-height: 22rem;
    padding: 5.25rem 0 4.3rem;
    background:
        linear-gradient(90deg, rgba(5, 108, 67, 0.2), transparent 48%),
        linear-gradient(180deg, rgba(5, 108, 67, 0.03) 0%, rgba(5, 108, 67, 0.2) 100%),
        linear-gradient(135deg, rgba(218, 242, 231, 1), rgba(232, 246, 233, 0.99) 52%, rgba(160, 224, 204, 0.92)),
        var(--paper);
    border-bottom: 1px solid rgba(17, 49, 74, 0.1);
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: max(-5rem, calc((100vw - var(--container)) / 2 - 6rem));
    left: auto;
    width: min(31rem, 38vw);
    aspect-ratio: 1;
    border-radius: 0;
    background: url('../images/hero-ray.svg') center / contain no-repeat;
    opacity: 0.24;
    filter: drop-shadow(0 18px 40px rgba(17, 49, 74, 0.08));
    transform: translateY(-50%) rotate(8deg);
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    left: max(1.25rem, calc((100vw - var(--container)) / 2));
    right: max(1.25rem, calc((100vw - var(--container)) / 2));
    bottom: 2.1rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(5, 108, 67, 0.82), rgba(45, 95, 190, 0.32), transparent 72%);
    pointer-events: none;
}

.home-hero-shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 2.5rem), var(--container));
    margin: 0 auto;
    display: grid;
    justify-items: start;
    align-content: center;
    row-gap: 1.35rem;
    padding: 0;
}

.home-hero-copy {
    width: min(100%, 48rem);
    display: grid;
    justify-items: start;
    gap: 1rem;
    text-align: left;
}

.home-hero-brand {
    width: min(100%, 48rem);
    max-width: 15ch;
    margin: 0;
    color: var(--ink);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
    word-spacing: 0;
    text-wrap: balance;
}

.home-hero-support {
    width: min(100%, 34rem);
    max-width: 34rem;
    margin: 0;
    color: var(--ink-soft);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.66;
    letter-spacing: 0;
    text-wrap: balance;
}

.home-hero-actions {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.85rem;
    position: relative;
    z-index: 2;
}

.home-hero-actions .button {
    min-height: 2.65rem;
    padding: 0.72rem 1.08rem;
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .home-hero {
        min-height: 19rem;
        padding: 3.6rem 0 3rem;
    }

    .home-hero-shell {
        width: min(calc(100% - 2rem), var(--container));
        row-gap: 1rem;
    }

    .home-hero-brand {
        font-size: 2.2rem;
        line-height: 1.08;
    }

    .home-hero-support {
        font-size: 0.94rem;
        line-height: 1.62;
    }
}

@media (max-width: 720px) {
    .home-hero {
        min-height: 16.4rem;
        padding: 2.75rem 0 2.15rem;
    }

    .home-hero::before {
        right: -8rem;
        width: min(24rem, 82vw);
        opacity: 0.16;
    }

    .home-hero::after {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.05rem;
    }

    .home-hero-shell {
        width: min(calc(100% - 1.5rem), 24rem);
        justify-items: center;
        row-gap: 0.9rem;
    }

    .home-hero-copy {
        width: 100%;
        justify-items: center;
        gap: 0.65rem;
        text-align: center;
    }

    .home-hero-brand {
        max-width: 14ch;
        margin-inline: auto;
        font-size: 1.62rem;
        line-height: 1.08;
    }

    .home-hero-support {
        width: min(100%, 22rem);
        max-width: 22rem;
        margin-inline: auto;
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .home-hero-actions {
        width: min(100%, 22rem);
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.42rem;
        justify-content: stretch;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .home-hero-actions .button {
        width: 100%;
        min-height: 2.42rem;
        padding: 0.68rem 0.9rem;
        justify-content: center;
    }

    .home-hero-actions .button::after {
        display: none;
    }

    .home-clean-intro,
    .home-clean-capability,
    .home-clean-work-layout,
    .home-clean-cta {
        width: min(calc(100% - 2rem), 27rem);
    }

    .home-clean-intro-copy,
    .home-clean-capability-copy,
    .home-clean-work-head,
    .home-clean-cta-copy {
        max-width: 100%;
        justify-items: start;
        text-align: left;
        gap: 0.58rem;
    }

    .section-intro,
    .section-heading,
    .work-form-intro,
    .contact-form-heading {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        justify-items: start;
        text-align: left;
        gap: 0.58rem;
    }

    .home-clean-section-title,
    .home-clean-cta-title {
        max-width: 100%;
        margin-inline: 0;
        font-size: 1.14rem;
        font-weight: 500;
        line-height: 1.42;
        letter-spacing: 0;
        text-wrap: pretty;
    }

    .section-heading h2,
    .section-intro h2,
    .work-form-intro h2,
    .contact-form-heading h2 {
        max-width: 100%;
        margin-inline: 0;
        font-size: 1.14rem;
        font-weight: 500;
        line-height: 1.42;
        letter-spacing: 0;
        text-wrap: pretty;
    }

    .home-clean-intro-section {
        padding: 2.2rem 0 2rem;
    }

    .home-clean-intro {
        gap: 0.9rem;
    }

    .home-clean-links {
        justify-content: flex-start;
        justify-items: start;
        gap: 0.55rem 0.8rem;
        padding-top: 0.1rem;
    }

    .home-clean-proof {
        width: 100%;
        margin-inline: 0;
    }

    .home-clean-capability,
    .home-clean-work-layout {
        gap: 0.9rem;
    }

    .home-clean-list-block {
        padding: 0.95rem 1rem;
    }

    .home-clean-list-block h3 {
        text-align: left;
    }

    .home-clean-work-head {
        padding-top: 0.85rem;
        border-top: 1px solid rgba(17, 49, 74, 0.12);
    }

    .home-clean-work-rows {
        width: 100%;
    }

    .home-clean-cta-section {
        padding-top: 1.35rem;
    }

    .home-clean-cta {
        display: grid;
        gap: 0.9rem;
        align-items: start;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.64);
        border: 1px solid rgba(17, 49, 74, 0.08);
        border-radius: 8px;
    }

    .home-clean-cta-title {
        font-size: 1.06rem;
        font-weight: 500;
        line-height: 1.42;
    }

    .home-clean-cta-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        backdrop-filter: none;
    }

    .home-clean-cta-actions .button {
        width: 100%;
        min-height: 2.36rem;
        min-width: 0;
        padding: 0.68rem 0.84rem;
        justify-content: space-between;
        font-size: 0.82rem;
        line-height: 1.2;
        text-align: left;
        white-space: normal;
    }
}

@media (max-width: 720px) {
    .work-section-layout,
    .contact-page-layout {
        gap: 0.9rem;
    }

    .site-form,
    .contact-form-card,
    .work-form {
        gap: 0.72rem;
        padding: 0.82rem;
    }

    .contact-form-card {
        gap: 0.82rem;
    }

    .contact-form-heading {
        gap: 0.42rem;
        margin-bottom: 0.1rem;
    }

    .field-grid,
    .work-form .field-grid {
        grid-template-columns: 1fr;
        gap: 0.72rem;
    }

    .field-grid > .field-full,
    .field-grid > fieldset,
    .field-grid > .choice-drawer {
        grid-column: 1 / -1;
    }

    .field-grid label,
    .field-grid fieldset,
    .work-form .field-grid > label,
    .work-form .field-grid > fieldset {
        gap: 0.34rem;
    }

    .work-form .field-grid > label > span,
    .work-form .field-grid > fieldset > legend,
    .field-grid label > span,
    .field-grid fieldset > legend {
        font-size: 0.68rem;
        line-height: 1.25;
        letter-spacing: 0.06em;
    }

    .field-grid input,
    .field-grid select,
    .field-grid textarea,
    .work-form input:not([type='checkbox']),
    .work-form select,
    .work-form textarea {
        min-height: 2.62rem;
        padding: 0.62rem 0.72rem;
        border-radius: 7px;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .work-form select {
        background-position:
            calc(100% - 1rem) calc(50% - 0.12rem),
            calc(100% - 0.68rem) calc(50% - 0.12rem);
        background-size: 0.35rem 0.35rem;
        padding-right: 2.25rem;
    }

    .work-form textarea,
    .contact-form-card textarea {
        height: 6.1rem;
        min-height: 6.1rem;
    }

    .field-grid fieldset,
    .work-form .field-grid > fieldset {
        padding: 0.68rem;
        border-radius: 7px;
    }

    .choice-drawer {
        gap: 0.42rem;
    }

    .choice-drawer-summary {
        min-height: 2.72rem;
        padding: 0.58rem 0.68rem;
    }

    .choice-drawer-title {
        font-size: 0.66rem;
        letter-spacing: 0.06em;
    }

    .choice-drawer-count {
        font-size: 0.84rem;
        line-height: 1.28;
    }

    .choice-drawer-panel,
    .field-grid .choice-drawer-panel {
        padding: 0.58rem;
        border-radius: 7px;
    }

    .choice-drawer .checkbox-grid {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 0.42rem;
        max-height: 13.5rem;
        margin-top: 0;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior-block: contain;
        padding-right: 0.08rem;
        padding-bottom: 0;
        scrollbar-width: thin;
    }

    .check-option-card {
        min-height: 2.66rem;
        padding: 0.58rem 0.62rem 0.58rem 2.05rem;
        border-radius: 7px;
        font-size: 0.78rem;
        font-weight: 500;
        line-height: 1.25;
    }

    .check-option-card::before {
        left: 0.68rem;
        width: 0.86rem;
        height: 0.86rem;
        border-radius: 0.24rem;
    }

    .work-form input[type='file'] {
        padding: 0.48rem 0.62rem;
    }

    .work-form input[type='file']::file-selector-button {
        margin-right: 0.55rem;
        padding: 0.48rem 0.6rem;
        border-radius: 7px;
        font-size: 0.82rem;
    }

    .work-form button,
    .contact-form-card button {
        min-height: 2.46rem;
        margin-top: 0.05rem;
        padding: 0.62rem 0.8rem;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    .accordion-item,
    .choice-drawer-summary,
    .check-option-card,
    .home-clean-proof-value,
    .home-clean-proof-label {
        transition: none;
    }

    .accordion-item:hover,
    .choice-drawer-summary:hover,
    .check-option:hover .check-option-card {
        transform: none;
    }

}
