:root {
    --bg: #F5F2EB;
    --text: #1a1a1a;
    --muted: #777;
    --border: #ddd8cf;
    --accent: #C93B1A;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

.hero,
main {
    width: min(1100px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
}

.brand {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    color: var(--text);
}

.top-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
    transition: color 100ms ease;
}

.top-nav a:hover {
    color: var(--text);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0 3rem;
}

h1 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: clamp(5.5rem, 13.5vw, 11.5rem);
    line-height: 0.91;
    letter-spacing: 0.025em;
    color: var(--accent);
}

.below-fold {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.intro {
    margin: 0;
    max-width: 38ch;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    flex: 1 1 260px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    padding: 0.7rem 1.4rem;
    text-decoration: none;
    border-radius: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: opacity 100ms ease;
    white-space: nowrap;
    align-self: flex-start;
    flex-shrink: 0;
}

.btn:hover {
    opacity: 0.85;
}

@media (max-width: 600px) {
    h1 {
        font-size: clamp(4rem, 16vw, 6rem);
    }

    .below-fold {
        flex-direction: column;
        gap: 1.5rem;
    }
}
