/* Death and Ravens — estilos base */
:root {
    --color-fondo:   #0d0d0d;
    --color-texto:   #e8e0d0;
    --color-acento:  #b8960c;
    --fuente-serif:  "EB Garamond", Georgia, serif;
    --fuente-sans:   "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--color-fondo);
    color: var(--color-texto);
    font-family: var(--fuente-serif);
    font-size: 1.125rem;
    line-height: 1.7;
}

a { color: var(--color-acento); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #2a2a2a;
}

.logo {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--color-texto);
    font-weight: 600;
}

nav a {
    margin-left: 2rem;
    font-family: var(--fuente-sans);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-texto);
    opacity: 0.7;
}

nav a:hover { opacity: 1; color: var(--color-acento); text-decoration: none; }

main { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem; }

.site-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #2a2a2a;
    font-size: 0.8rem;
    opacity: 0.4;
}
