* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F8F3EA;
    color: #3A2A22;
    font-family: 'Inter', sans-serif;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(201, 162, 39, 0.16), transparent 32%),
        linear-gradient(180deg, #F8F3EA 0%, #EFE3D0 100%);
}

.content {
    max-width: 800px;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}
.hero-logo {
    display: block;
    width: 250px;
    max-width: 80%;
    height: auto;
    margin: 0 auto 40px auto;
}
.eyebrow {
    color: #8A6F3D;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Raleway', sans-serif;
    color: #1F302B;      /* Matches your logo's dark green */
    font-size: clamp(56px, 9vw, 96px);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Raleway', sans-serif;
    color: #1F302B;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 30px;
}

.description {
    max-width: 620px;
    margin: 0 auto 36px;
    color: #5F4A3D;
    font-size: 17px;
    line-height: 1.8;
}

.button {
    display: inline-block;
    padding: 15px 34px;
    border: 1px solid #6E1F2A;
    background-color: #6E1F2A;
    color: #F8F3EA;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: transparent;
    color: #6E1F2A;
}

footer {
    padding: 28px 20px;
    text-align: center;
    background-color: #3A2A22;
    color: #F8F3EA;
    font-size: 13px;
    letter-spacing: 1px;
}

footer p {
    margin: 6px 0;
}

@media (max-width: 600px) {
    .hero {
        padding: 48px 20px;
    }

    .description {
        font-size: 15px;
    }

    .button {
        width: 100%;
        max-width: 280px;
    }
}
