:root {
    --channel-blue: #242caf;
    --channel-blue-dark: #11176c;
    --channel-yellow: #fff31a;
    --paper: #f8f8f4;
    --ink: #17191d;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background: #10131a;
    font-family: Georgia, "Times New Roman", serif;
}

.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    position: relative;
    min-height: calc(100vh - 92px);
    display: grid;
    place-items: center;
    padding: 48px 24px;
    overflow: hidden;
    background:
        url("assets/centerville-map.png") center / cover no-repeat;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(8, 12, 48, 0.30), rgba(10, 14, 35, 0.58));
}

.station-card {
    position: relative;
    width: min(680px, 100%);
    padding: 42px 48px;
    text-align: center;
    background: rgba(248, 248, 244, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

.station-wordmark {
    display: block;
    width: min(560px, 100%);
    height: auto;
    margin: 0 auto 30px;
}

h1 {
    margin: 0 0 14px;
    color: var(--channel-blue-dark);
    font-size: clamp(1.65rem, 4vw, 2.4rem);
    font-weight: normal;
}

.station-card > p {
    max-width: 540px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.65;
}

.archive-button {
    display: inline-block;
    margin: 32px 0 15px;
    padding: 15px 25px;
    color: #fff;
    background: linear-gradient(180deg, #343ed1, var(--channel-blue-dark));
    border: 2px solid var(--channel-blue-dark);
    border-radius: 4px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 4px 0 #080b3b,
        0 8px 18px rgba(17, 23, 108, 0.28);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.96rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 120ms ease, filter 120ms ease, box-shadow 120ms ease;
}

.archive-button:hover,
.archive-button:focus-visible {
    filter: brightness(1.12);
    outline: 3px solid var(--channel-yellow);
    outline-offset: 4px;
}

.archive-button:active {
    transform: translateY(3px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 1px 0 #080b3b,
        0 4px 10px rgba(17, 23, 108, 0.24);
}

.station-card .archive-note {
    color: #5b5d66;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
}

.site-footer {
    min-height: 92px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px max(24px, calc((100vw - 1100px) / 2));
    color: #fff;
    background: #111522;
    border-top: 4px solid var(--channel-yellow);
    font-family: Arial, Helvetica, sans-serif;
}

.site-footer img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer span,
.site-footer p {
    margin: 3px 0 0;
    color: #bcc0d4;
    font-size: 0.82rem;
}

@media (max-width: 620px) {
    .hero {
        min-height: calc(100vh - 130px);
        padding: 24px 15px;
    }

    .station-card {
        padding: 32px 22px;
    }

    .site-footer {
        grid-template-columns: auto 1fr;
    }

    .site-footer p {
        grid-column: 1 / -1;
        margin-top: 0;
    }
}
