.home-hero {
    min-height: 100vh;
    min-height: 100svh;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    padding-inline: clamp(20px, 5vw, 72px);
    background:
        linear-gradient(rgba(18, 31, 47, 0.08), rgba(18, 31, 47, 0.08)),
        url("assets/main-hero.png") center center / cover no-repeat;
    color: #FFFFFF;
}

.home-hero .nav-bar {
    justify-content: center;
    gap: clamp(20px, 6vw, 68px);
    width: auto;
    min-height: 0;
    margin: clamp(24px, 5vh, 40px) auto 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.home-hero .nav-links,
.home-hero .nav-links:visited {
    color: #FFFFFF;
    font-size: clamp(12px, 1.15vw, 14px);
    font-weight: 700;
}

.hero-content {
    align-self: start;
    width: min(720px, 94vw);
    box-sizing: border-box;
    margin-inline: auto;
    padding-top: clamp(54px, 12.5vh, 112px);
    text-align: center;
}

.hero-title {
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(34px, min(4.8vw, 7vh), 53px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.hero-description {
    margin: clamp(24px, 5.4vh, 44px) auto 0;
    color: #FFFFFF;
    font-size: clamp(15px, min(1.8vw, 2.8vh), 20px);
    font-weight: 400;
    line-height: 1.35;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: clamp(150px, 15.5vw, 176px);
    min-height: clamp(40px, 6vh, 44px);
    box-sizing: border-box;
    margin-top: clamp(30px, 6.5vh, 54px);
    padding: 10px 24px;
    border-radius: 8px;
    background-color: #854949;
    box-shadow: var(--drop-shadow);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 160ms ease, transform 160ms ease;
}

.hero-cta:hover {
    background-color: #733D3D;
    transform: translateY(-1px);
}

.hero-cta:focus-visible,
.home-hero .nav-links:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 4px;
}

.stakes-section {
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-top: var(--section-padding-top);
    padding-inline: 0;
    background-color: #F1F1F1;
}

.stakes-section > .h1-body,
.stakes-section > .h2-body {
    width: 100%;
    box-sizing: border-box;
    padding-inline: var(--section-padding-inline);
    color: #000000;
}

.stakes-section .h2-body {
    margin-top: var(--body-copy-spacing);
    margin-bottom: 0;
    line-height: 1.35;
}

@media (max-width: 600px) {
    .home-hero {
        padding-inline: 16px;
        background-position: 42% center;
    }

    .home-hero .nav-bar {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title br,
    .hero-description br {
        display: none;
    }

    .hero-title {
        max-width: 12ch;
        margin-inline: auto;
    }

    .hero-description {
        max-width: 34ch;
    }
}

@media (max-height: 600px) {
    .home-hero .nav-bar {
        margin-top: 18px;
    }

    .hero-content {
        padding-top: clamp(30px, 8vh, 48px);
    }

    .hero-description {
        margin-top: 18px;
    }

    .hero-cta {
        margin-top: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-cta {
        transition: none;
    }
}
