:root {
    color-scheme: light;
    --ink: #f4f0e7;
    --muted: #aabcc4;
    --navy: #102a3a;
    --navy-light: #173e53;
    --copper: #b59a68;
    --line: rgba(244, 240, 231, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--navy);
}

body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    color: var(--ink);
    background:
        linear-gradient(136deg, transparent 0 67%, var(--copper) 67% 78%, transparent 78%) right top / 58% 68% no-repeat,
        linear-gradient(180deg, var(--navy) 0 69%, var(--navy-light) 69% 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.site-header,
.site-footer,
.announcement {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}

.site-header {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.wordmark {
    color: inherit;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    letter-spacing: -0.025em;
}

.wordmark-main {
    font-weight: 700;
}

.wordmark-dot {
    color: var(--copper);
}

.header-note,
.signal-label,
.site-footer {
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.announcement {
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 64px;
    align-items: end;
    padding: clamp(80px, 13vh, 150px) 0 72px;
}

.announcement-copy {
    max-width: 800px;
}

.eyebrow {
    margin: 0 0 28px;
    color: var(--copper);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    max-width: 720px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.5rem, 11vw, 9.5rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.82;
}

.intro {
    max-width: 650px;
    margin: 50px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.6vw, 2rem);
    line-height: 1.35;
}

.promise {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.signal {
    align-self: center;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.signal-line {
    width: 48px;
    height: 3px;
    margin-top: 8px;
    background: var(--copper);
}

.signal-label,
.signal-value {
    margin: 0;
}

.signal-value {
    margin-top: 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.25;
}

.site-footer {
    min-height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 0;
}

.site-footer a,
.info-content a {
    color: inherit;
    text-underline-offset: 0.2em;
}

.info-page {
    display: block;
    min-height: 100vh;
    background: var(--navy);
}

.info-content {
    width: min(100% - 48px, 760px);
    margin-inline: auto;
    padding: clamp(72px, 12vh, 140px) 0;
}

.info-content h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
}

.info-content p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.65;
}

@media (max-width: 760px) {
    body {
        background:
            linear-gradient(140deg, transparent 0 72%, var(--copper) 72% 84%, transparent 84%) right top / 85% 46% no-repeat,
            var(--navy);
    }

    .site-header,
    .site-footer,
    .announcement {
        width: min(100% - 32px, 1180px);
    }

    .site-header {
        min-height: 78px;
    }

    .header-note {
        display: none;
    }

    .announcement {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 56px;
        align-content: center;
        padding: 72px 0 56px;
    }

    h1 {
        font-size: clamp(4.2rem, 24vw, 7rem);
    }

    .intro {
        margin-top: 40px;
    }

    .signal {
        align-self: end;
    }

    .site-footer {
        min-height: 104px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        line-height: 1.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }
}
