:root {
    --blue: #075092;
    --blue-dark: #03345f;
    --blue-deep: #021f3d;
    --red: #d60b44;
    --red-dark: #ad0736;
    --ink: #102033;
    --muted: #607083;
    --line: #d9e3ee;
    --paper: #ffffff;
    --wash: #f3f7fb;
    --shadow: 0 22px 60px rgba(2, 31, 61, .16);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--blue-deep);
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(7, 80, 146, .08), rgba(255, 255, 255, 0) 360px),
        var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

body::before {
    content: "";
    display: block;
    height: 8px;
    background: linear-gradient(90deg, var(--blue) 0 42%, var(--red) 42% 100%);
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: var(--red-dark);
}

.site-header,
.site-footer,
main {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
}

.brand img {
    display: block;
    width: min(240px, 56vw);
    height: auto;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(7, 80, 146, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 32px rgba(2, 31, 61, .08);
}

.nav a {
    min-height: 40px;
    border-radius: 6px;
    color: var(--blue-dark);
    padding: 9px 14px;
    font-weight: 800;
}

.nav a[aria-current="page"],
.nav a:hover {
    background: var(--blue);
    color: #fff;
    text-decoration: none;
}

main {
    padding: 40px 0 64px;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    align-items: center;
    gap: 48px;
    overflow: hidden;
    border-radius: 8px;
    padding: clamp(28px, 5vw, 56px);
    background:
        linear-gradient(135deg, rgba(2, 31, 61, .96), rgba(7, 80, 146, .88)),
        var(--blue);
    box-shadow: var(--shadow);
}

.hero-copy,
.hero-image {
    position: relative;
    z-index: 1;
}

.hero h1,
.page-heading h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero h1 {
    color: #fff;
}

.hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.13rem;
}

.page-heading {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    border-radius: 8px;
    padding: clamp(28px, 5vw, 48px);
    background:
        linear-gradient(135deg, var(--wash), #fff);
    box-shadow: 0 16px 42px rgba(2, 31, 61, .09);
}

.page-heading::after {
    content: "";
    position: absolute;
    right: -48px;
    top: 32px;
    width: 270px;
    height: 24px;
    transform: skewX(-28deg);
    background: var(--red);
}

.page-heading p {
    position: relative;
    z-index: 1;
    max-width: 640px;
    color: var(--muted);
    font-size: 1.1rem;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--red);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #fff;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, .9);
    border-radius: 8px;
    box-shadow: 0 20px 52px rgba(0, 0, 0, .34);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid var(--red);
    border-radius: 6px;
    background: var(--red);
    color: #fff;
    padding: 11px 20px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(214, 11, 68, .26);
}

.button:hover {
    border-color: var(--red-dark);
    background: var(--red-dark);
    color: #fff;
    text-decoration: none;
}

.button.secondary {
    border-color: rgba(255, 255, 255, .74);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    box-shadow: none;
}

.button.secondary:hover {
    background: #fff;
    color: var(--blue);
}

.brand-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.brand-strip span {
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 6px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .92);
    padding: 7px 10px;
    font-size: .9rem;
    font-weight: 800;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.info-grid article,
.contact-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 80, 146, .14);
    border-radius: 8px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(2, 31, 61, .08);
}

.info-grid article::before,
.contact-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--red));
}

.info-grid h2,
.about-layout h2 {
    margin: 0 0 10px;
    color: var(--blue-dark);
    font-size: 1.35rem;
}

.info-grid p,
.about-layout p {
    color: var(--muted);
}

.info-grid a {
    font-weight: 900;
}

.content-panel {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid rgba(7, 80, 146, .14);
    border-radius: 8px;
    padding: clamp(26px, 4vw, 42px);
    background: #fff;
    box-shadow: 0 16px 38px rgba(2, 31, 61, .08);
}

.content-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--red));
}

.content-panel h2,
.timeline h2 {
    margin: 0 0 16px;
    color: var(--blue-dark);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.12;
}

.content-panel p {
    max-width: 920px;
    color: var(--muted);
    font-size: 1.04rem;
}

.link-list {
    display: grid;
    gap: 16px;
}

.link-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 24px;
    overflow: hidden;
    border: 1px solid rgba(7, 80, 146, .14);
    border-radius: 8px;
    padding: 24px;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(7, 80, 146, .06), rgba(255, 255, 255, 0) 42%),
        #fff;
    box-shadow: 0 16px 38px rgba(2, 31, 61, .08);
}

.link-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: var(--blue);
}

.link-card:hover {
    border-color: rgba(214, 11, 68, .45);
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: var(--shadow);
}

.link-card:hover::before {
    background: var(--red);
}

.link-label {
    display: inline-flex;
    margin-bottom: 10px;
    border-radius: 6px;
    background: rgba(214, 11, 68, .1);
    color: var(--red-dark);
    padding: 4px 8px;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.link-card strong,
.link-card small {
    display: block;
}

.link-card strong {
    color: var(--blue-dark);
    font-size: 1.55rem;
    line-height: 1.15;
}

.link-card small {
    color: var(--ink);
    margin-top: 6px;
    font-size: 1rem;
    font-weight: 800;
}

.link-card > span:last-child {
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    padding: 8px 12px;
    font-size: .86rem;
    font-weight: 900;
}

.link-card:hover > span:last-child {
    background: var(--red);
}

.link-details {
    display: grid;
    gap: 9px;
    max-width: 820px;
    margin-top: 14px;
    color: var(--muted);
    font-size: .98rem;
    font-weight: 400;
}

.link-details span {
    display: block;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
    gap: 28px;
}

.about-layout > div {
    border-radius: 8px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(2, 31, 61, .08);
}

.contact-box {
    align-self: start;
}

.timeline {
    margin-top: 28px;
    border-radius: 8px;
    padding: clamp(26px, 4vw, 42px);
    background:
        linear-gradient(135deg, rgba(7, 80, 146, .08), rgba(214, 11, 68, .05)),
        #fff;
    box-shadow: 0 16px 38px rgba(2, 31, 61, .08);
}

.timeline-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.timeline article {
    position: relative;
    border: 1px solid rgba(7, 80, 146, .14);
    border-radius: 8px;
    padding: 20px 22px 20px 28px;
    background: rgba(255, 255, 255, .86);
}

.timeline article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    border-radius: 8px 0 0 8px;
    background: var(--red);
}

.timeline strong {
    display: block;
    color: var(--blue-dark);
    font-size: 1.2rem;
}

.timeline p {
    margin: 8px 0 0;
    color: var(--muted);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: none;
    padding: 26px max(18px, calc((100% - 1160px) / 2)) 34px;
    background: var(--blue-deep);
    color: rgba(255, 255, 255, .78);
    font-size: .95rem;
}

.site-footer a {
    color: #fff;
    font-weight: 800;
}

@media (max-width: 840px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav {
        justify-content: flex-start;
        width: 100%;
    }

    .hero,
    .info-grid,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .hero::before {
        top: 22px;
        right: -110px;
        width: 70%;
    }

    .hero::after {
        right: 24%;
        height: 120px;
    }

    main {
        padding: 28px 0 48px;
    }

    .link-card {
        grid-template-columns: 1fr;
    }

    .link-card > span:last-child {
        justify-self: start;
    }
}

/* 2026 refresh additions */
.hero-lead {
    margin-top: 18px;
    font-size: clamp(1.18rem, 2vw, 1.45rem) !important;
    font-weight: 800;
    line-height: 1.4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.stats-grid article {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 80, 146, .14);
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(2, 31, 61, .08);
}

.stats-grid article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--blue), var(--red));
}

.stats-grid strong,
.stats-grid span {
    display: block;
}

.stats-grid strong {
    color: var(--blue-dark);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.1;
}

.stats-grid span {
    margin-top: 7px;
    color: var(--muted);
    font-weight: 800;
}

.brand-panel {
    margin-top: 22px;
}

.brand-strip-light span {
    border-color: rgba(7, 80, 146, .16);
    background: rgba(7, 80, 146, .06);
    color: var(--blue-dark);
}

.compact-heading {
    padding-top: clamp(24px, 4vw, 38px);
    padding-bottom: clamp(24px, 4vw, 38px);
}

.website-card {
    align-items: center;
}

.website-card-main {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.website-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    border: 1px solid rgba(7, 80, 146, .12);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.website-logo img {
    display: block;
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
}

.website-logo > span {
    color: var(--blue);
    font-size: 2rem;
    font-weight: 900;
}

.company-details {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(7, 80, 146, .14);
}

.company-details div {
    display: grid;
    gap: 2px;
}

.company-details dt {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.company-details dd {
    margin: 0;
    color: var(--blue-dark);
    font-weight: 800;
}

@media (max-width: 980px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .stats-grid,
    .website-card-main {
        grid-template-columns: 1fr;
    }

    .website-logo {
        justify-content: flex-start;
        min-height: 76px;
    }
}
