:root {
    --bg: #0d0d0d;
    --surface: #181818;
    --surface-hover: #202020;
    --text: #f3f3f3;
    --muted: #9b9b9b;
    --accent: #d7cfbf;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}


/* -------------------- */
/* Navigation */
/* -------------------- */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, .92);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    letter-spacing: .08em;
    margin-left: 4%;
}

nav {
    max-width: 1500px;
    margin: auto;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin-right: 4%;
}

nav li {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .18em;
}

nav a {
    transition: .3s;
}

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

/* -------------------- */
/* Footer */
/* -------------------- */

footer {
    border-top: 1px solid #222;
    color: #666;
    text-align: center;
    padding: 50px;
    margin-top: 50px;
}