:root {
--bg: #0b0b0f;
--text: #f5f5f5;
--accent: #c9a227;
--focus: #ffffff;
}

* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}

a {
color: var(--accent);
}

a:focus,
button:focus {
outline: 3px solid var(--focus);
outline-offset: 3px;
}

.skip-link {
position: absolute;
left: -999px;
top: auto;
background: black;
color: white;
padding: 8px;
}

.skip-link:focus {
left: 10px;
top: 10px;
z-index: 1000;
}

.nav {
display: flex;
gap: 1rem;
list-style: none;
padding: 1rem;
margin: 0;
}

.hero {
padding: 4rem 1rem;
text-align: center;
}

.cta {
display: inline-block;
margin-top: 1rem;
padding: 0.8rem 1.5rem;
background: var(--accent);
color: black;
text-decoration: none;
font-weight: bold;
}

section {
padding: 3rem 1rem;
max-width: 800px;
margin: auto;
}

footer {
text-align: center;
padding: 2rem;
font-size: 0.9rem;
}