:root {
    --navy: #20376f;
    --navy-deep: #142754;
    --blue: #5ba9e7;
    --blue-soft: #eaf5fd;
    --red: #f51d2a;
    --sand: #ddc785;
    --ink: #14213d;
    --muted: #61708d;
    --line: #dce3ef;
    --surface: #f7f9fc;
    --white: #fff;
    --shadow: 0 18px 55px rgba(24, 48, 98, .12);
    --radius: 22px;
    --container: min(1160px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button, input, select, textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding: 104px 0;
}

.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;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -70px;
    z-index: 1000;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--navy);
    color: white;
    transition: top .2s;
}

    .skip-link:focus {
        top: 16px;
    }

:focus-visible {
    outline: 3px solid rgba(91,169,231,.8);
    outline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .2s, border-color .2s;
}

    .site-header.scrolled {
        box-shadow: 0 8px 30px rgba(17,39,84,.08);
        border-color: var(--line);
    }

.nav-wrap {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand img {
    width: 210px;
    height: 58px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .site-nav > a:not(.button) {
        text-decoration: none;
        font-weight: 650;
        color: #3d4c69;
    }

        .site-nav > a:not(.button):hover {
            color: var(--navy);
        }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--blue-soft);
    padding: 11px;
}

    .menu-toggle span:not(.sr-only) {
        display: block;
        height: 2px;
        margin: 5px 0;
        border-radius: 2px;
        background: var(--navy);
        transition: transform .2s, opacity .2s;
    }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    background: var(--red);
    color: white;
    font-weight: 760;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(245,29,42,.22);
    transition: transform .2s, box-shadow .2s, background .2s;
}

    .button:hover {
        transform: translateY(-2px);
        background: #dc1421;
        box-shadow: 0 14px 32px rgba(245,29,42,.28);
    }

.button-sm {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 96px;
    background: linear-gradient(135deg, #fff 0%, #f7faff 60%, #eef7fd 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 72px;
    min-height: 590px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--navy);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

    .eyebrow span {
        width: 28px;
        height: 3px;
        border-radius: 99px;
        background: var(--red);
    }

    .eyebrow.light {
        color: #dce8ff;
    }

.hero h1, .section h2 {
    margin: 0;
    color: var(--navy-deep);
    font-size: clamp(2.6rem, 5.3vw, 4.9rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.hero-lead {
    max-width: 650px;
    margin: 26px 0 32px;
    color: var(--muted);
    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.text-link {
    color: var(--navy);
    font-weight: 780;
    text-decoration: none;
}

    .text-link span {
        display: inline-block;
        transition: transform .2s;
    }

    .text-link:hover span {
        transform: translateX(4px);
    }

.trust-list {
    display: flex;
    gap: 18px 28px;
    flex-wrap: wrap;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
    color: #485872;
    font-size: .92rem;
    font-weight: 650;
}

    .trust-list span {
        display: inline-grid;
        place-items: center;
        width: 20px;
        height: 20px;
        margin-right: 7px;
        border-radius: 50%;
        background: var(--blue-soft);
        color: var(--navy);
        font-size: .75rem;
    }

.hero-visual {
    position: relative;
    min-height: 510px;
    border-radius: 46% 54% 42% 58% / 54% 44% 56% 46%;
    background: linear-gradient(145deg, var(--navy) 0%, #2d5391 60%, #4f9bd1 100%);
    box-shadow: 0 36px 90px rgba(31,55,111,.25);
}

    .hero-visual:before {
        content: "";
        position: absolute;
        inset: 36px;
        border: 1px dashed rgba(255,255,255,.25);
        border-radius: inherit;
    }

.route-line {
    position: absolute;
    width: 200px;
    height: 300px;
    left: 42%;
    top: 22%;
    border: 2px dashed rgba(255,255,255,.35);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(20deg);
}

.pin {
    position: absolute;
    right: 17%;
    top: 34%;
    width: 56px;
    height: 72px;
    border-radius: 55% 55% 60% 60%;
    background: var(--red);
    clip-path: polygon(50% 100%, 8% 42%, 10% 23%, 22% 7%, 40% 0, 60% 0, 78% 7%, 90% 23%, 92% 42%);
    filter: drop-shadow(0 12px 14px rgba(0,0,0,.18));
}

    .pin span {
        position: absolute;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: white;
        left: 19px;
        top: 18px;
    }

.service-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
}

    .service-float strong, .service-float span {
        display: block;
    }

    .service-float small {
        color: var(--muted);
    }

.service-float-main {
    left: -34px;
    bottom: 70px;
    min-width: 325px;
}

    .service-float-main span {
        color: var(--muted);
        font-size: .83rem;
    }

    .service-float-main strong {
        color: var(--navy);
    }

.service-float-top {
    right: -32px;
    top: 62px;
}

.service-float-bottom {
    right: -52px;
    bottom: 40px;
}

.icon-badge, .mini-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--blue-soft);
    color: var(--navy);
    font-weight: 900;
}

.icon-badge {
    background: var(--red);
    color: white;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .6;
}

.hero-orb-one {
    width: 180px;
    height: 180px;
    left: -80px;
    top: 130px;
    background: #e9f4fd;
}

.hero-orb-two {
    width: 90px;
    height: 90px;
    right: 10%;
    bottom: -20px;
    background: #f8dfe2;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 52px;
}

    .section-heading h2, .about h2, .contact h2, .process h2 {
        font-size: clamp(2rem, 3.4vw, 3.35rem);
        line-height: 1.08;
    }

    .section-heading > p {
        margin: 0 0 4px;
        color: var(--muted);
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 430px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
        border-color: transparent;
    }

    .service-card.featured {
        background: var(--navy);
        border-color: var(--navy);
        color: white;
    }

        .service-card.featured h3, .service-card.featured .card-number {
            color: white;
        }

        .service-card.featured p, .service-card.featured li {
            color: #d8e3fa;
        }

.card-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 34px;
    border-radius: 16px;
    background: var(--blue-soft);
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 900;
}

.featured .card-icon {
    background: rgba(255,255,255,.12);
    color: white;
}

.card-number {
    position: absolute;
    right: 24px;
    top: 18px;
    color: #9ba8bf;
    font-weight: 800;
}

.service-card h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 1.35rem;
    line-height: 1.2;
}

.service-card p {
    color: var(--muted);
}

.service-card ul {
    display: grid;
    gap: 9px;
    margin: 24px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
    color: #43526b;
    font-size: .93rem;
}

.featured ul {
    border-color: rgba(255,255,255,.18);
}

.service-card li:before {
    content: "•";
    margin-right: 8px;
    color: var(--red);
}

.process {
    background: var(--navy-deep);
    color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center;
}

.process h2 {
    color: white;
}

.process-copy > p:not(.eyebrow) {
    margin: 24px 0 30px;
    color: #c6d3ec;
}

.button-light {
    background: white;
    color: var(--navy);
    box-shadow: none;
}

    .button-light:hover {
        background: var(--blue-soft);
    }

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .steps li {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 22px;
        padding: 28px 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
    }

        .steps li:first-child {
            border-top: 1px solid rgba(255,255,255,.14);
        }

    .steps > li > span {
        display: grid;
        place-items: center;
        width: 54px;
        height: 54px;
        border: 1px solid rgba(255,255,255,.35);
        border-radius: 16px;
        color: #9fd4f6;
        font-weight: 850;
    }

    .steps h3 {
        margin: 0 0 6px;
        font-size: 1.2rem;
    }

    .steps p {
        margin: 0;
        color: #b9c8e4;
    }

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 86px;
    align-items: center;
}

.about-panel {
    position: relative;
    min-height: 470px;
    border-radius: 28px;
    background: linear-gradient(145deg, #eef6fc, #daeefa);
    overflow: hidden;
}

    .about-panel:after {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        right: -80px;
        top: -80px;
        border-radius: 50%;
        background: rgba(91,169,231,.2);
    }

.about-logo {
    position: absolute;
    inset: 55px 40px auto 40px;
    padding: 26px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
}

.about-stat {
    position: absolute;
    left: 42px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .about-stat strong {
        color: var(--red);
        font-size: 4.4rem;
        line-height: 1;
    }

    .about-stat span {
        max-width: 150px;
        color: var(--navy);
        font-weight: 760;
        line-height: 1.25;
    }

.about-copy > p:not(.eyebrow) {
    margin: 24px 0 34px;
    color: var(--muted);
    font-size: 1.05rem;
}

.values {
    display: grid;
    gap: 20px;
}

    .values div {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 20px;
        padding-top: 18px;
        border-top: 1px solid var(--line);
    }

    .values strong {
        color: var(--navy);
    }

    .values span {
        color: var(--muted);
    }

.contact {
    padding-top: 20px;
}

.contact-card {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 64px;
    padding: 62px;
    border-radius: 30px;
    background: var(--navy);
    box-shadow: 0 30px 70px rgba(20,39,84,.18);
}

.contact h2 {
    color: white;
}

.contact-copy > p:not(.eyebrow) {
    color: #cfdbef;
}

.privacy-note {
    margin-top: 32px;
    color: #aebedb;
    font-size: .86rem;
}

    .privacy-note span {
        color: var(--red);
        margin-right: 8px;
    }

.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 22px;
    background: white;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: #33415c;
    font-size: .88rem;
    font-weight: 720;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    border: 1px solid #ccd5e3;
    border-radius: 11px;
    background: #fbfcfe;
    padding: 12px 13px;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}

    .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
        outline: none;
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(91,169,231,.16);
    }

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

.button-submit {
    width: 100%;
}

.form-status {
    min-height: 1.4em;
    margin: 0;
    color: #27704d;
    font-size: .88rem;
    text-align: center;
}

.site-footer {
    padding: 42px 0;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 28px;
}

.footer-brand img {
    width: 190px;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.site-footer nav {
    display: flex;
    gap: 20px;
}

    .site-footer nav a {
        color: #53617a;
        text-decoration: none;
        font-weight: 680;
    }

.copyright {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: white;
        box-shadow: var(--shadow);
    }

        .site-nav.open {
            display: flex;
        }

        .site-nav a {
            padding: 12px;
        }

    .hero-grid, .process-grid, .about-grid, .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 48px;
    }

    .hero-visual {
        min-height: 460px;
        max-width: 620px;
        width: 100%;
        margin: auto;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-grid, .about-grid {
        gap: 54px;
    }

    .contact-card {
        gap: 38px;
        padding: 44px;
    }

    .footer-grid {
        grid-template-columns: 200px 1fr;
    }

    .site-footer nav {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100% - 28px, 1160px);
    }

    .section {
        padding: 76px 0;
    }

    .nav-wrap {
        min-height: 72px;
    }

    .brand img {
        width: 170px;
        height: 48px;
    }

    .hero {
        padding: 46px 0 72px;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.7rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .text-link {
        text-align: center;
    }

    .trust-list {
        display: grid;
    }

    .hero-visual {
        min-height: 390px;
        border-radius: 30px;
    }

    .service-float {
        max-width: calc(100% - 30px);
    }

    .service-float-main {
        left: 15px;
        bottom: 28px;
        min-width: 0;
    }

    .service-float-top {
        right: 14px;
        top: 40px;
    }

    .service-float-bottom {
        display: none;
    }

    .pin {
        right: 18%;
        top: 45%;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 18px;
        border-radius: 24px;
    }

    .contact-form {
        padding: 22px 16px;
    }

    .values div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .about-panel {
        min-height: 400px;
    }

    .about-logo {
        inset: 40px 20px auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer nav {
        grid-column: auto;
        flex-wrap: wrap;
    }

    .copyright {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


section[id], main[id] {
    scroll-margin-top: 105px;
}

.hero h1 {
    max-width: 650px;
}

.site-nav {
    gap: 22px;
}

.button {
    gap: 10px;
    background: #d91928;
}

.button-light {
    background: white;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    display: flex;
    flex-direction: column;
    padding-top: 68px;
}

    .service-card h3 {
        min-height: 3.6em;
    }

    .service-card > p:not(.card-number) {
        margin: 0;
    }

    .service-card ul {
        margin-bottom: 22px;
    }

    .service-card li {
        padding-left: 14px;
        position: relative;
    }

        .service-card li:before {
            position: absolute;
            left: 0;
            margin: 0;
        }

.service-link {
    margin-top: auto;
    font-weight: 750;
    padding-top: 15px;
    color: var(--navy);
    text-underline-offset: 4px;
}

.featured .service-link {
    color: white;
}

.purpose, .team, .clients {
    background: var(--surface);
}

    .purpose h2, .team h2, .track h2, .clients h2 {
        font-size: clamp(2rem, 3.4vw, 3.35rem);
        line-height: 1.08;
    }

.purpose-grid, .client-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

    .purpose-grid article, .client-grid article {
        padding: 32px;
        background: white;
        border: 1px solid var(--line);
        border-radius: var(--radius);
    }

.section-index {
    color: var(--navy);
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: .07em;
}

.purpose h3, .team h3, .clients h3 {
    color: var(--navy);
    margin: 14px 0 10px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.purpose p:not(.eyebrow), .team p:not(.eyebrow), .clients p:not(.eyebrow) {
    color: var(--muted);
}

.value-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
}

    .value-grid article {
        border-top: 3px solid var(--blue);
        padding: 16px 0;
    }

    .team-grid article {
        background: white;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 28px;
    }

.track-grid {
    display: grid;
    grid-template-columns: .75fr 1.6fr;
    gap: 32px;
    align-items: start;
}

.track-stat {
    padding: 34px;
    border-radius: var(--radius);
    background: var(--navy);
    color: white;
}

    .track-stat > strong {
        display: block;
        font-size: 5rem;
        line-height: 1;
        color: #a6d9ff;
    }

    .track-stat h3 {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .track-stat p {
        color: #d8e3fa;
    }

.stat-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    border-top: 1px solid #ffffff40;
    padding-top: 18px;
}

    .stat-breakdown b {
        display: block;
        font-size: 1.6rem;
    }

.table-wrap {
    min-width: 0;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

caption {
    text-align: left;
    padding: 18px;
    color: var(--muted);
    font-weight: 650;
}

th {
    color: white;
    background: var(--navy);
    text-align: left;
}

th, td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

tbody tr:nth-child(even) {
    background: var(--surface);
}

td:first-child, td:last-child {
    white-space: nowrap;
}

.source-note {
    color: var(--muted);
    font-size: .9rem;
    margin-top: 20px;
}

.client-grid {
    margin-bottom: 30px;
}

.philosophy figure {
    margin: 32px 0 0;
    border-left: 4px solid var(--red);
    padding-left: 32px;
}

.philosophy blockquote {
    margin: 0 0 24px;
    max-width: 980px;
    color: var(--navy);
    font-size: clamp(1.6rem, 3vw, 2.65rem);
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.philosophy figcaption {
    color: var(--muted);
}

    .philosophy figcaption strong, .philosophy figcaption span {
        display: block;
    }

address {
    font-style: normal;
    color: white;
    margin-top: 30px;
}

    address > strong, address > span {
        display: block;
    }

    address dt {
        font-size: .9rem;
        font-weight: 750;
        color: #b9d9f6;
        margin-top: 18px;
    }

    address dd {
        margin: 4px 0 0;
        overflow-wrap: anywhere;
    }

    address a {
        text-underline-offset: 4px;
    }

.contact-form h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.5rem;
}

.form-intro, .form-note {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.contact-form label {
    font-size: 1rem;
}

.contact-form input, .contact-form select, .contact-form textarea {
    min-width: 0;
    font-size: 1rem;
}

.contact-form, .contact-card > *, .hero-grid > *, .about-grid > * {
    min-width: 0;
}

.footer-brand img {
    object-fit: contain;
}

:focus-visible {
    outline-color: #2873ad;
}

@media (max-width: 980px) {
    .service-grid, .team-grid, .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .track-grid {
        grid-template-columns: 1fr;
    }

    .track-stat {
        max-width: none;
    }

    .service-card h3 {
        min-height: 0;
    }

    html:not(.js) .site-nav {
        display: flex;
        position: static;
        box-shadow: none;
    }

    html:not(.js) .nav-wrap {
        flex-wrap: wrap;
        padding-block: 12px;
    }

    html:not(.js) .menu-toggle {
        display: none;
    }
}

@media (max-width: 640px) {
    .purpose-grid, .client-grid, .team-grid, .value-grid, .service-grid {
        grid-template-columns: 1fr;
    }

        .purpose-grid article, .client-grid article, .team-grid article {
            padding: 24px;
        }

    .philosophy figure {
        padding-left: 20px;
    }

    th, td {
        padding: 12px 10px;
    }

    .site-header {
        position: relative;
    }

    section[id], main[id] {
        scroll-margin-top: 16px;
    }
}

.hero-visual.hero-photo {
    min-height: 0;
    background: none;
    border-radius: 30px;
    box-shadow: 0 24px 65px rgba(24,48,98,.16);
}

.hero-photo:before {
    display: none;
}

.hero-photo > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.07;
    object-fit: cover;
    border-radius: inherit;
}

.hero-photo .service-float-main {
    left: -24px;
    bottom: 24px;
    min-width: 0;
    max-width: calc(100% - 16px);
}

@media (max-width: 640px) {
    .hero-visual.hero-photo {
        border-radius: 24px;
    }

    .hero-photo > img {
        aspect-ratio: 1 / 1.12;
    }

    .hero-photo .service-float-main {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        padding: 14px;
        gap: 10px;
    }

    .hero-photo .icon-badge {
        width: 38px;
        height: 38px;
    }
}
