.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    background-image: url("../images/hero/hero-bg.jpg");
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.72) 45%,
            rgba(0, 0, 0, 0.28) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1400px, 92%);
    margin: 0 auto;

    padding-top: 120px;
}

.hero-eyebrow {
    margin-bottom: 16px;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 900px;

    font-size: clamp(70px, 10vw, 150px);
    line-height: 0.78;

    letter-spacing: -4px;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;

    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.hero-description {
    max-width: 560px;

    margin-top: 32px;

    font-size: 18px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.82);
}

.hero-buttons {
    display: flex;
    gap: 14px;

    margin-top: 34px;
}

.hero-bottom-text {
    position: absolute;
    z-index: 2;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    width: 92%;

    display: flex;
    justify-content: center;
    gap: 18px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;

    white-space: nowrap;
}