:root {
    color-scheme: light;
    --background: #f5f7fa;
    --surface: #ffffff;
    --text: #172033;
    --muted: #5d687b;
    --accent: #087f92;
    --border: #dce2eb;
    --hero-text: #f5fbfc;
    --hero-muted: #b6d7dc;
}

* {
    box-sizing: border-box;
}

html {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--background);
}

body {
    margin: 0;
}

a {
    color: var(--accent);
    text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
    text-decoration-thickness: 0.14em;
}

.page {
    width: min(100% - 2rem, 860px);
    margin: 0 auto;
    padding: 3.5rem 0 2rem;
}

.hero,
.essay,
footer {
    background: var(--surface);
    border: 1px solid var(--border);
}

.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: clamp(25rem, 62vw, 37rem);
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 4.5rem);
    border-radius: 1rem 1rem 0 0;
    border-bottom: 0;
    color: var(--hero-text);
    background:
        linear-gradient(90deg, rgba(1, 23, 29, 0.88) 0%, rgba(2, 35, 43, 0.68) 44%, rgba(3, 43, 52, 0.2) 78%),
        linear-gradient(0deg, rgba(0, 18, 23, 0.72) 0%, transparent 55%),
        url("/assets/images/hero.jpg") center / cover no-repeat;
    box-shadow: 0 2.25rem 5rem rgba(12, 39, 48, 0.2);
}

.hero::after {
    position: absolute;
    z-index: -1;
    top: 1.25rem;
    right: 1.25rem;
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    content: "";
}

.eyebrow {
    margin: 0 0 0.5rem;
    color: #8fe0e7;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    max-width: 14ch;
    margin: 0;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(2.25rem, 7vw, 4.75rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow: 0 0.1em 0.65em rgba(0, 14, 18, 0.45);
}

.role {
    margin: 1.25rem 0 0;
    color: var(--hero-muted);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.essay {
    padding: clamp(1.5rem, 5vw, 3.5rem);
}

.essay p {
    margin: 0 0 1.4rem;
}

.essay p:last-child {
    margin-bottom: 0;
}

.source {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.95rem;
}

footer {
    padding: 1.25rem clamp(1.5rem, 5vw, 3.5rem);
    border-top: 0;
    border-radius: 0 0 1rem 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

.photo-credit {
    margin-top: 0.45rem;
    font-size: 0.78rem;
}

@media (max-width: 520px) {
    .page {
        width: min(100% - 1rem, 860px);
        padding-top: 0.5rem;
    }

    .hero {
        min-height: 30rem;
        background-position: 58% center;
    }
}
