/* =========================================================
   ARCHBALD GLOBAL SITE CSS
   ========================================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7fb;
    color: #1f2933;
}

a {
    color: inherit;
}

.wrap {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #dbe3ec;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 20px;
}

.site-logo {
    font-size: 24px;
    font-weight: 800;
    color: #003366;
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: 22px;
    align-items: center;
}

.site-nav a {
    color: #16324f;
    text-decoration: none;
    font-weight: 700;
}

.site-nav a:hover {
    color: #0b5ed7;
}

/* HERO */

.gallery-hero {
    padding: 34px 0 10px;
}

.hero-shell {
    min-height: 310px;
    border-radius: 22px;
    padding: 34px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(0,51,102,.92), rgba(11,94,215,.70)),
        #003366;
    box-shadow: 0 12px 35px rgba(0,0,0,.16);
    overflow: hidden;
}

.hero-panel {
    max-width: 720px;
    color: #ffffff;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .92;
}

.hero-panel h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
}

.hero-panel p {
    margin: 0;
    font-size: 19px;
    line-height: 1.6;
    max-width: 680px;
}

/* GENERAL CONTENT */

section {
    padding: 20px 0;
}

.card h2 {
    margin-top: 0;
    color: #003366;
}

.card p {
    line-height: 1.6;
}

/* FOOTER */

.site-footer {
    margin-top: 40px;
    padding: 28px 0;
    background: #102434;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
}

/* MOBILE */

@media (max-width: 700px) {
    .header-wrap {
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }

    .site-nav {
        gap: 16px;
    }

    .hero-shell {
        min-height: 260px;
        padding: 26px;
        border-radius: 18px;
    }

    .hero-panel p {
        font-size: 17px;
    }
}