:root {
    --bg: #0b0d10;
    --bg-soft: #111419;
    --panel: #12161b;
    --panel-soft: rgba(255, 255, 255, .025);
    --line: rgba(224, 232, 238, .105);
    --line-soft: rgba(224, 232, 238, .065);
    --text: #edf1f3;
    --muted: rgba(237, 241, 243, .68);
    --dim: rgba(237, 241, 243, .43);
    --accent: #8fb6c8;
    --accent-soft: rgba(143, 182, 200, .14);
    --accent-line: rgba(143, 182, 200, .46);
    --max: 1520px;

    --serif-display: 'Cormorant Garamond', Didot, "Bodoni 72", Georgia, serif;
    --serif-text: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 72% 0%, rgba(143, 182, 200, .11), transparent 30rem),
        radial-gradient(circle at 10% 18%, rgba(255, 255, 255, .045), transparent 26rem),
        linear-gradient(180deg, #090b0e 0%, #101419 48%, #090b0e 100%);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: rgba(143, 182, 200, .32);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--serif-display);
    font-weight: 300;
    letter-spacing: -0.03em;
}

/* ─── PROSE / FORMATTED CONTENT ──────────────────────────────── */
.prose h2,
.prose h3 {
    text-align: center;
    font-style: italic;
    width: 100%;
    margin: 48px 0 16px;
    font-size: clamp(28px, 3vw, 42px);
}

.prose p {
    color: var(--muted);
    font-family: var(--serif-text);
    font-size: 18px;
    line-height: 1.78;
    margin: 0 0 20px;
    width: 100%;
    text-align: justify;
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose a:hover {
    color: #a8c9d8;
}

.prose ul {
    color: var(--muted);
    font-family: var(--serif-text);
    font-size: 18px;
    line-height: 1.78;
    margin: 0 0 20px;
    padding-left: 24px;
}

.prose ul li {
    margin-bottom: 8px;
}

.prose h3 {
    font-size: clamp(20px, 2vw, 28px);
    letter-spacing: -.02em;
    margin: 32px 0 12px;
    text-align: center;
    font-style: italic;
}