:root {
    color-scheme: light;
    --navy: #0b1f3a;
    --navy-2: #12315c;
    --navy-3: #1c4d8c;
    --white: #ffffff;
    --ice: #eef4fb;
    --line: rgba(11, 31, 58, 0.12);
    --text: #17304f;
    --muted: #5c6d82;
    --shadow: 0 24px 60px rgba(7, 18, 33, 0.16);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(28, 77, 140, 0.16), transparent 34%),
        radial-gradient(circle at right 20%, rgba(18, 49, 92, 0.12), transparent 28%),
        linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}

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

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

.hide {
    display: none !important;
}

.page {
    min-height: 100vh;
}

.container {
    width: calc(100% - 32px);
    max-width: 1120px;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    background: rgba(255, 255, 255, 0.98);
    color: var(--navy);
    border-bottom: 1px solid rgba(11, 31, 58, 0.1);
}

.topbar-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    flex-wrap: wrap;
}

.brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 160px;
    height: auto;
    /* border-radius: 18px; */
    background: rgba(255, 255, 255, 0.98);
    /* border: 1px solid rgba(11, 31, 58, 0.1); */
    padding: 10px;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.eyebrow {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(11, 31, 58, 0.65);
}

.brand h1 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
    color: var(--navy);
}

.contact-strip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-pill {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid rgba(11, 31, 58, 0.16);
    background: rgba(11, 31, 58, 0.06);
    color: var(--navy);
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-pill:hover {
    transform: translateY(-1px);
    background: rgba(11, 31, 58, 0.1);
}

.hero {
    padding: 56px 0 30px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 31, 58, 0.82) 0%, rgba(11, 31, 58, 0.72) 100%),
        url("../gallery/tempImageHWgbRv.jpg") center center / cover no-repeat;
    z-index: -2;
}

.hero-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 77, 140, 0.2), transparent 55%);
}

.hero-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 28px;
    align-items: stretch;
}

.hero-panel,
.info-panel,
.section-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-panel {
    padding: 36px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(242, 247, 252, 0.92) 100%);
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -110px -110px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 77, 140, 0.18), transparent 68%);
}

.hero-kicker {
    margin: 0 0 14px;
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(18, 49, 92, 0.08);
    color: var(--navy-2);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero h2 {
    margin: 0;
    font-size: 2.4rem;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--navy);
    max-width: 11ch;
}

.hero p {
    margin: 18px 0 0;
    max-width: 60ch;
    font-size: 1.04rem;
    line-height: 1.7;
    color: var(--muted);
}

.hero-highlights {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.highlight-chip {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(11, 31, 58, 0.06);
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 700;
    border: 1px solid rgba(11, 31, 58, 0.08);
}

.hero-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
    box-shadow: 0 16px 28px rgba(11, 31, 58, 0.22);
}

.button-secondary {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(11, 31, 58, 0.18);
}

.info-panel {
    padding: 26px;
    display: -ms-grid;
    display: grid;
    gap: 18px;
    align-content: start;
}

.logo-card {
    background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
    border-radius: 22px;
    border: 1px solid rgba(11, 31, 58, 0.08);
    padding: 28px;
}

.logo-card img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.info-list {
    display: -ms-grid;
    display: grid;
    gap: 12px;
}

.info-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(18, 49, 92, 0.05);
    border: 1px solid rgba(18, 49, 92, 0.08);
}

.info-label {
    display: block;
    font-size: 0.77rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-2);
    margin-bottom: 4px;
    font-weight: 700;
}

.info-value {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text);
    font-weight: 700;
}

.sections {
    padding: 10px 0 60px;
}

.section-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.section-card {
    padding: 24px;
}

.section-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.15rem;
}

.section-card p,
.section-card li {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.section-card ul {
    margin: 0;
    padding-left: 18px;
    display: -ms-grid;
    display: grid;
    gap: 8px;
}

.gallery-section {
    padding: 0 0 60px;
}

.section-heading {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    letter-spacing: -0.03em;
}

.section-subtitle {
    margin: -8px 0 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 70ch;
}

.gallery-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery-card {
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 14px 16px 16px;
    color: var(--navy-2);
    font-weight: 700;
    line-height: 1.45;
}

.footer {
    padding: 0 0 34px;
}

.footer-inner {
    padding: 18px 22px;
    border-radius: 22px;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.86);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

@supports not (aspect-ratio: 4 / 3) {
    .gallery-card img {
        height: 220px;
    }
}

@supports not (display: grid) {
    .hero-grid,
    .section-grid,
    .gallery-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .hero-grid > * {
        width: 100%;
    }

    .section-grid > *,
    .gallery-grid > * {
        width: calc(33.333% - 12px);
    }
}

.footer strong {
    color: var(--white);
}

@media (max-width: 920px) {
    .hero-grid,
    .section-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-panel {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 20px);
        width: min(100% - 20px, 1120px);
    }

    .hero {
        padding-top: 24px;
    }

    .hero-panel,
    .info-panel,
    .section-card {
        border-radius: 22px;
    }

    .hero h2 {
        max-width: 100%;
    }

    .contact-strip,
    .hero-actions {
        width: 100%;
    }

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

    .contact-pill,
    .button {
        width: 100%;
    }
}