:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #d4af37;
    --text-muted: #888888;
    --font-main: 'Inter', sans-serif;
    --spacing-section: 120px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.text-gold {
    color: var(--accent-color);
}

.text-white {
    color: var(--text-color);
}

/* Layout Util */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--spacing-section) 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

nav a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Mobile Nav Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    margin-top: 20px;
}

.btn:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    margin: 0 10px;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility classes for "Silence" & "Space" */
.spacer {
    height: 100px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: var(--bg-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        flex-direction: column;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }
}

/* Responsive Grid Utility */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}