:root {
    --black: #050505;
    --gold: #d9ad2b;
    --gold-light: #e7c44d;
    --white: #f5f5f5;
    --muted: #a6a6a6;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}

.eyebrow {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

h1 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.98;
    font-weight: 500;
}

h1 span {
    color: var(--gold);
}

.hero-description {
    max-width: 700px;
    margin: 35px auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.btn-primary {
    background: var(--gold);
    color: #080808;
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .btn {
        width: 100%;
    }
}