:root {
    --bg-dark: #0f1115;
    --bg-light: #161922;
    --accent: #c9a44c;
    --text-main: #e6e6e6;
    --text-muted: #a9a9b3;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da') center/cover no-repeat;
    position: relative;
}

.overlay {
    background: rgba(15, 17, 21, 0.75);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    letter-spacing: 0.05em;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent);
    margin-top: 0.5rem;
}

.tagline {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-muted);
}

/* CONTENT */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.story-block p {
    font-size: 1rem;
    color: var(--text-main);
}

.highlight {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--accent);
}

/* FOOTER */
footer {
    background-color: #0b0d12;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 0.5rem;
    font-style: italic;
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 3rem 1.5rem;
    }
}