:root {
    --ml-navy: #10233f;
    --ml-navy-deep: #09172b;
    --ml-blue: #275a85;
    --ml-gold: #c49a52;
    --ml-ink: #172235;
    --ml-slate: #536275;
    --ml-cloud: #edf2f6;
    --ml-ivory: #f8f6f1;
    --ml-white: #ffffff;
    --ml-border: #dce3e9;
    --ml-shadow: 0 18px 45px rgba(16, 35, 63, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ml-ink);
    background: var(--ml-white);
    font-family: Aptos, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

a {
    color: var(--ml-blue);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--ml-gold);
    outline-offset: 4px;
}

.ml-shell {
    width: min(1160px, calc(100% - 44px));
    margin: 0 auto;
}

.ml-skip-link {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 9999;
    padding: 12px 18px;
    color: var(--ml-white);
    background: var(--ml-navy);
    border-radius: 5px;
}

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

.ml-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(16, 35, 63, 0.10);
    backdrop-filter: blur(12px);
}

.ml-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.ml-brand {
    display: inline-flex;
    flex-direction: column;
    color: var(--ml-navy);
    text-decoration: none;
    line-height: 1.08;
}

.ml-brand span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ml-brand small {
    margin-top: 7px;
    color: var(--ml-slate);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ml-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ml-menu a {
    color: var(--ml-ink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
}

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

.ml-main,
.ml-page,
.ml-page .entry-content {
    margin: 0;
    padding: 0;
}

.ml-section {
    padding: 90px 0;
}

.ml-section--soft {
    background: var(--ml-ivory);
}

.ml-section--navy {
    color: var(--ml-white);
    background: var(--ml-navy);
}

.ml-hero {
    position: relative;
    overflow: hidden;
    color: var(--ml-white);
    background:
        radial-gradient(circle at 82% 16%, rgba(196, 154, 82, 0.24), transparent 30%),
        linear-gradient(132deg, var(--ml-navy-deep) 0%, var(--ml-navy) 62%, #193b61 100%);
}

.ml-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.03), 0 0 0 104px rgba(255, 255, 255, 0.025);
}

.ml-hero .ml-shell {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 110px;
}

.ml-eyebrow {
    display: inline-block;
    margin: 0 0 20px;
    color: var(--ml-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ml-hero h1,
.ml-page-hero h1,
.ml-section h2,
.ml-card h3,
.ml-role h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: inherit;
}

.ml-hero h1 {
    max-width: 850px;
    margin: 0;
    padding: 0;
    font-size: clamp(46px, 6vw, 74px);
    line-height: 1.03;
    letter-spacing: -0.035em;
}

.ml-hero-lead {
    max-width: 760px;
    margin: 28px 0 0;
    color: #dfe8f1;
    font-size: clamp(19px, 2.2vw, 24px);
    line-height: 1.55;
}

.ml-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.ml-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    color: var(--ml-navy) !important;
    background: var(--ml-gold);
    border: 2px solid var(--ml-gold);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.ml-button:hover {
    color: var(--ml-white) !important;
    background: transparent;
}

.ml-button--ghost {
    color: var(--ml-white) !important;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.48);
}

.ml-button--ghost:hover {
    color: var(--ml-navy) !important;
    background: var(--ml-white);
    border-color: var(--ml-white);
}

.ml-intro-grid,
.ml-two-column {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: start;
}

.ml-section h2 {
    max-width: 760px;
    margin: 0 0 24px;
    padding: 0;
    color: var(--ml-navy);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.ml-section--navy h2 {
    color: var(--ml-white);
}

.ml-lead {
    max-width: 800px;
    margin: 0;
    color: var(--ml-slate);
    font-size: 21px;
    line-height: 1.65;
}

.ml-section--navy .ml-lead {
    color: #d9e4ee;
}

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

.ml-detail-list li {
    padding: 17px 0;
    border-bottom: 1px solid var(--ml-border);
}

.ml-detail-list strong {
    display: block;
    color: var(--ml-navy);
    font-size: 13px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ml-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 44px;
}

.ml-card {
    min-height: 100%;
    padding: 30px;
    background: var(--ml-white);
    border: 1px solid var(--ml-border);
    border-radius: 8px;
    box-shadow: var(--ml-shadow);
}

.ml-card-number {
    display: block;
    margin-bottom: 36px;
    color: var(--ml-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
}

.ml-card h3 {
    margin: 0 0 13px;
    padding: 0;
    color: var(--ml-navy);
    font-size: 25px;
    line-height: 1.2;
}

.ml-card p {
    margin: 0;
    color: var(--ml-slate);
}

.ml-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.ml-band div {
    min-height: 170px;
    padding: 30px;
    background: var(--ml-navy);
}

.ml-band strong {
    display: block;
    margin-bottom: 12px;
    color: var(--ml-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
}

.ml-band span {
    color: #d7e2ec;
}

.ml-page-hero {
    color: var(--ml-white);
    background: linear-gradient(132deg, var(--ml-navy-deep), var(--ml-navy));
}

.ml-page-hero .ml-shell {
    padding-top: 88px;
    padding-bottom: 80px;
}

.ml-page-hero h1 {
    max-width: 800px;
    margin: 0;
    padding: 0;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.ml-page-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: #dce6ef;
    font-size: 21px;
}

.ml-prose {
    max-width: 790px;
}

.ml-prose p {
    margin: 0 0 22px;
}

.ml-role {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    padding: 42px 0;
    border-top: 1px solid var(--ml-border);
}

.ml-role:first-child {
    padding-top: 0;
    border-top: 0;
}

.ml-role-meta {
    color: var(--ml-slate);
    font-size: 14px;
}

.ml-role-meta strong {
    display: block;
    color: var(--ml-navy);
    font-size: 15px;
}

.ml-role h2 {
    margin: 0 0 5px;
    padding: 0;
    color: var(--ml-navy);
    font-size: 29px;
}

.ml-role h3 {
    margin: 0 0 18px;
    color: var(--ml-blue);
    font-size: 17px;
    font-weight: 700;
}

.ml-role ul,
.ml-check-list {
    margin: 0;
    padding-left: 21px;
}

.ml-role li,
.ml-check-list li {
    margin-bottom: 10px;
}

.ml-contact-card {
    padding: 44px;
    background: var(--ml-white);
    border: 1px solid var(--ml-border);
    border-radius: 8px;
    box-shadow: var(--ml-shadow);
}

.ml-contact-card h2 {
    margin-bottom: 16px;
}

.ml-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.ml-contact-links .ml-button--ghost {
    color: var(--ml-navy) !important;
    border-color: var(--ml-border);
}

.ml-contact-links .ml-button--ghost:hover {
    color: var(--ml-white) !important;
    background: var(--ml-navy);
    border-color: var(--ml-navy);
}

.ml-site-footer {
    color: #d8e2eb;
    background: var(--ml-navy-deep);
}

.ml-footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px 40px;
    align-items: center;
    padding-top: 44px;
    padding-bottom: 44px;
}

.ml-site-footer strong {
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.ml-site-footer p {
    margin: 4px 0 0;
}

.ml-footer-links {
    display: flex;
    gap: 20px;
}

.ml-footer-links a {
    color: var(--ml-white);
    font-weight: 700;
    text-decoration: none;
}

.ml-copyright {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #9fb0c1;
    font-size: 13px;
}

@media (max-width: 900px) {
    .ml-header-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .ml-menu {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .ml-hero .ml-shell {
        padding-top: 86px;
        padding-bottom: 84px;
    }

    .ml-intro-grid,
    .ml-two-column,
    .ml-role {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ml-grid,
    .ml-band {
        grid-template-columns: 1fr;
    }

    .ml-band {
        gap: 0;
    }

    .ml-band div {
        min-height: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

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

    .ml-shell {
        width: min(100% - 30px, 1160px);
    }

    .ml-section {
        padding: 66px 0;
    }

    .ml-card,
    .ml-contact-card {
        padding: 25px;
    }

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

    .ml-copyright {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

