:root {
    --ink: #152c35;
    --lake: #0a6570;
    --lake-dark: #07464e;
    --mist: #e8f2f2;
    --paper: #fbfdfc;
    --signal: #b23a2b;
    --line: #bdd3d3;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--paper);
    color: var(--ink);
    font-family: "Trebuchet MS", "Gill Sans", sans-serif;
    line-height: 1.65;
}

body {
    margin: 0;
    background-color: var(--paper);
    background-image: radial-gradient(circle at 1px 1px, rgba(10, 101, 112, 0.1) 1px, transparent 0);
    background-size: 24px 24px;
}

.site-header {
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: 0 5vw;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 2.6vw, 1.25rem);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.brand img {
    flex: 0 0 32px;
}

.season-update {
    background: var(--mist);
    border-bottom: 8px solid var(--signal);
}

.update-inner,
.welcome-inner {
    width: min(780px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(56px, 9vw, 104px) 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--lake);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.12;
}

h1 {
    max-width: 650px;
    font-size: clamp(2.25rem, 7vw, 4.75rem);
}

h2 {
    max-width: 680px;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.letter {
    margin-top: 38px;
    padding-left: clamp(20px, 4vw, 42px);
    border-left: 4px solid var(--signal);
    font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.letter p:first-child {
    margin-top: 0;
}

.signature {
    margin: 30px 0 0;
    color: var(--lake-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.feature-photo {
    width: 100%;
    height: clamp(300px, 56vw, 620px);
    margin: 0;
    overflow: hidden;
    background: var(--lake-dark);
}

.feature-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 58%;
}

.welcome {
    background: rgba(251, 253, 252, 0.96);
}

.welcome-inner > p:not(.eyebrow) {
    max-width: 720px;
    margin: 28px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.02rem, 2vw, 1.16rem);
}

.site-footer {
    padding: 38px 20px;
    color: #fff;
    text-align: center;
    background: var(--lake-dark);
}

.site-footer > p:first-child {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-links a {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 4px;
}

.social-links a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.social-links img {
    display: block;
}

.copyright {
    margin: 22px 0 0;
    font-size: 0.78rem;
    opacity: 0.82;
}

@media (max-width: 540px) {
    .site-header {
        padding: 14px 20px;
    }

    .letter {
        padding-left: 18px;
    }

    .feature-photo {
        height: 70vw;
        min-height: 280px;
    }
}

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