:root {
    --gold: #b59b61;
    --dark: #1a1a1a;
    --light-bg: #fdfdfd;
    --white: #ffffff;
    --gray: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navegación */
.navbar {
    padding: 40px 5%;
    display: flex;
    justify-content: center;
    background: var(--white);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    letter-spacing: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.logo span {
    font-weight: 400;
    color: var(--gold);
}

/* Contenido Principal */
.hero, .container-404 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-content, .content-404 {
    max-width: 600px;
}

.sub-title {
    font-size: 0.85rem;
    letter-spacing: 6px;
    color: var(--gold);
    display: block;
    margin-bottom: 25px;
    font-weight: 600;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 7vw, 3.5rem);
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--dark);
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px auto;
}

p {
    color: var(--gray);
    font-size: 1.05rem;
    font-weight: 300;
}

.status-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Estilos Específicos 404 */
.content-404 h1 {
    font-size: 7rem;
    color: #f0f0f0;
    margin-bottom: 0;
}

.content-404 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 45px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    transition: 0.4s ease;
    border: 1px solid var(--dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--dark);
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 20px;
    font-size: 0.75rem;
    color: #bbb;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .logo { font-size: 1.2rem; }
}