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

:root {
    --black: #1a1a1a;
    --crimson: #8b1a1a;
    --crimson-light: #b22222;
    --text: #e8e0d8;
    --gold: #c9a84c;
}

body {
    background-color: var(--black);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: var(--crimson);
    color: var(--text);
}

/* Ambient glow */
.ambient-glow {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139, 26, 26, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Brand */
h1, h2 {
    margin: 0;
    font-weight: inherit;
    font-size: inherit;
}

.nav-brand {
    position: fixed;
    top: 1.2rem;
    left: 2rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.15em;
    z-index: 10;
}
.nav-logo {
    position: fixed;
    top: 1.2rem;
    right: 2rem;
    width: 169px;
    height: 169px;
    border-radius: 50%;
    z-index: 10;
}

/* Page layout */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 3rem;
}

/* Slogan */
.slogan {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--text);
    text-align: center;
    opacity: 0.85;
}

/* Contact */
.contact {
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    line-height: 2;
    letter-spacing: 0.05em;
}

.contact-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.contact a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-brand {
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        padding: 1.2rem 1rem 0;
        font-size: 1.2rem;
    }
    .nav-logo {
        position: relative;
        top: auto;
        right: auto;
        display: block;
        margin: 1rem auto 0;
        width: 117px;
        height: 117px;
    }
    .page {
        min-height: auto;
        padding: 6rem 1rem;
    }
    .slogan {
        font-size: 1.6rem;
    }
}
