:root {
    --bg: #f5f5f5;
    --ink: #2f2f2f;
    --muted: #5f5f5f;
    --blue: #113f60;
    --gold: #f0be2e;
    --panel: #ffffff;
    --line: #dbdbdb;
    --footer: #202225;
    --footer-deep: #14161a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Hind, "Segoe UI", Tahoma, Verdana, sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--bg);
}

.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;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #f0be2e;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 8px;
    z-index: 100;
}

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

.top-header {
    background: rgba(22, 34, 46, 0.34);
    border-bottom: 1px solid rgba(170, 190, 210, 0.24);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
}

.top-header-inner {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.top-call,
.top-social a {
    color: #e9f4ff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.24rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.top-social {
    display: flex;
    gap: 10px;
}

.top-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    min-height: 20px;
}

.top-social .fa {
    font-size: 0.95rem;
    color: #e9f4ff;
}

.main-header {
    background: rgba(215, 215, 215, 0.34);
    border-bottom: 1px solid rgba(190, 190, 190, 0.45);
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    z-index: 70;
}

.nav-shell {
    min-height: 146px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-left {
    justify-content: flex-start;
}

.menu-right {
    justify-content: flex-end;
}

.menu a {
    text-decoration: none;
    color: #1f3f5a;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.menu a:hover {
    color: #dfab1e;
}

.menu a[aria-current="page"] {
    color: #fba711;
    position: relative;
}

.menu a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -44px;
    width: 38px;
    height: 3px;
    background: #fba711;
}

.logo {
    justify-self: center;
}

.logo img {
    width: 241px;
    height: 181px;
    object-fit: contain;
}

.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("assets/images/hero-stg-8.jpg") center/cover;
    color: #fff;
    padding: 334px 0 70px;
    min-height: 556px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    height: 146px;
    background: rgba(214, 214, 214, 0.26);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 58px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

h1 {
    margin: 0;
    font-size: 55px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.caption {
    margin-top: 10px;
    max-width: 860px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 1.125rem;
    color: #f7f7f7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.callout {
    margin-top: 28px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 24px;
}

.callout h2 {
    margin: 0 0 18px;
    font-size: 29px;
    font-weight: 600;
}

.callout p,
.callout li {
    font-size: 1.0625rem;
    line-height: 1.72;
}

.callout ul {
    margin-top: 10px;
    margin-bottom: 0;
}

h2 {
    margin: 0 0 10px;
    font-size: 1.45rem;
}

p,
li {
    color: var(--muted);
    line-height: 1.7;
}

.cta-row {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    font: inherit;
}

.btn-primary {
    color: #111;
    background: var(--gold);
}

.btn-outline {
    color: var(--blue);
    background: transparent;
    border-color: #b6c0ca;
}

.products {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.products-intro {
    grid-column: 1 / -1;
    margin: 0 0 4px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px;
}

.product-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 5px;
}

.product-card h3 {
    margin: 10px 0 6px;
}

.two-col {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.two-col article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 14px;
}

.footer {
    margin-top: 28px;
    background: linear-gradient(180deg, var(--footer) 0%, var(--footer-deep) 100%);
    color: #d7d7d7;
    padding: 34px 0 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0;
}

.footer-grid section {
    padding: 0 18px;
    border-right: 1px solid #3a3a3a;
}

.footer-grid section:last-child {
    border-right: none;
}

.footer h3 {
    margin: 0 0 8px;
    color: #f0be2e;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.footer a {
    color: #85b5ff;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #a9a9a9;
    margin: 12px 0 0;
}

.nudge {
    position: fixed;
    right: 16px;
    bottom: 16px;
    max-width: 360px;
    background: #f8ac10;
    border: 1px solid #d99308;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    padding: 12px;
    z-index: 90;
}

.nudge h4 {
    margin: 0 0 8px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.7rem;
    line-height: 1;
}

.nudge p {
    margin: 0 0 10px;
    color: #fff8e8;
}

.nudge-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nudge .btn-primary {
    background: #27c65d;
    color: #ffffff;
}

.nudge .btn-outline {
    color: #ffffff;
    border-color: #3d4e63;
    background: #3d4e63;
}

@media (max-width: 1200px) {
    .menu {
        gap: 16px;
    }

    .hero {
        padding: 304px 0 58px;
        min-height: 520px;
    }

    .caption {
        max-width: 700px;
    }
}

@media (max-width: 900px) {
    .top-header-inner {
        min-height: 42px;
    }

    .top-call,
    .top-social a {
        font-size: 0.95rem;
    }

    .main-header {
        top: 42px;
    }

    .hero::before {
        top: 42px;
        height: 120px;
    }

    .hero::after {
        height: 42px;
    }

    .nav-shell {
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 8px;
        padding: 8px 0;
        min-height: 120px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu a[aria-current="page"]::after {
        bottom: -8px;
        width: 28px;
    }

    .hero {
        padding: 226px 0 44px;
        min-height: 430px;
    }

    .caption {
        font-size: 0.95rem;
        max-width: 540px;
    }

    .callout h2 {
        font-size: 1.6rem;
    }

    .callout p,
    .callout li {
        font-size: 0.98rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .footer-grid section {
        border-right: none;
        border-bottom: 1px solid #3a3a3a;
        padding: 10px 0;
    }

    .footer-grid section:last-child {
        border-bottom: none;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(1160px, 100% - 22px);
    }

    .top-call {
        font-size: 0.82rem;
    }

    .top-social {
        gap: 7px;
    }

    .main-header {
        top: 38px;
    }

    .hero::before {
        top: 38px;
        height: 120px;
    }

    .hero::after {
        height: 38px;
    }

    .menu a {
        font-size: 0.82rem;
    }

    .logo img {
        width: 102px;
        height: 76px;
    }

    .hero {
        padding: 186px 0 32px;
        min-height: 335px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .caption {
        font-size: 0.95rem;
        letter-spacing: 0;
    }
}
