@font-face {
font-family: 'Open Sans';
src: url('/fonts/OpenSans-VF-latin.woff2') format('woff2-variations'),
url('/fonts/OpenSans-VF-latin.woff2') format('woff2');
font-weight: 300 800;
font-style: normal;
font-display: swap;
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Open Sans';
src: url('/fonts/OpenSans-VF-latin-ext.woff2') format('woff2-variations'),
url('/fonts/OpenSans-VF-latin-ext.woff2') format('woff2');
font-weight: 300 800;
font-style: normal;
font-display: swap;
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
--bg-color: #ffffff;
--bg-light: #f5f2ee;
--text-main: #4a5568;
--text-dark: #1a1a1a;
--accent: #B1976B;
--font-serif: Georgia, "Times New Roman", Times, serif;
--font-sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: var(--font-sans);
color: var(--text-main);
background-color: var(--bg-light);
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
-webkit-font-smoothing: antialiased;
}
.stage {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 60px 24px;
}
.stage-inner {
max-width: 620px;
text-align: center;
}
.wordmark {
font-family: var(--font-serif);
font-weight: 400;
color: var(--text-dark);
font-size: clamp(2.4rem, 7vw, 3.9rem);
line-height: 1.15;
letter-spacing: 0.01em;
}
.rule {
width: 56px;
height: 2px;
background-color: var(--accent);
margin: 32px auto;
border: 0;
}
.note {
font-size: 1rem;
max-width: 46ch;
margin: 0 auto 36px;
}
.contact {
font-size: 0.95rem;
}
.contact a {
color: var(--text-dark);
text-decoration: none;
border-bottom: 1px solid var(--accent);
padding-bottom: 2px;
transition: color 0.2s ease;
}
.contact a:hover,
.contact a:focus-visible { color: var(--accent); }
.site-footer {
padding: 28px 24px;
text-align: center;
font-size: 0.85rem;
color: var(--text-main);
}
.site-footer a {
color: inherit;
text-decoration: none;
border-bottom: 1px solid transparent;
transition: border-color 0.2s ease;
}
.site-footer a:hover,
.site-footer a:focus-visible { border-bottom-color: var(--accent); }
.site-footer .sep {
color: var(--accent);
margin: 0 10px;
}
