@font-face {
    font-family: Ruben;
    src: url('/RUBEN___.TTF') format('truetype');
    font-display: swap;
}
:root {
    color-scheme: dark;
    --ink: #151316;
    --paper: #eee8df;
    --muted: #afa3ac;
    --accent: #f17b7a;
    --line: #ffffff26;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 32px;
}
body {
    margin: 0;
    background: var(--ink);
    color: var(--paper);
    font:
        16px/1.6 'Segoe UI',
        Arial,
        sans-serif;
}
a {
    color: inherit;
    text-underline-offset: 5px;
}
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 5px;
}
[hidden] {
    display: none !important;
}
.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    transform: translateY(-150%);
    z-index: 100;
    background: var(--ink);
    padding: 12px;
}
.skip-link:focus {
    transform: none;
}
.identity {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}
.wordmark {
    font:
        42px/1 Ruben,
        Georgia,
        serif;
    letter-spacing: 2px;
    text-shadow: 2px 3px #241824;
}
.identity small {
    border-left: 1px solid #ffffff45;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.05em;
}
.eyebrow {
    color: var(--accent);
    font:
        11px/1.5 'Courier New',
        monospace;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
