:root {
    --text-primary: #f5f2e9;
    --text-muted: rgba(245, 242, 233, 0.82);
    --text-status: rgba(245, 242, 233, 0.7);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Instrument Sans", sans-serif;
    background: #172016;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: url("../assets/images/mountain.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9, 18, 15, 0.68) 0%,
            rgba(9, 18, 15, 0.44) 30%,
            rgba(9, 18, 15, 0.14) 62%,
            rgba(9, 18, 15, 0.02) 100%
        );
}

.hero__content {
    position: relative;
    z-index: 1;

    width: min(90%, 1500px);
    margin: 0 auto;

    color: var(--text-primary);
    text-align: left;
}

.hero__title {
    display: flex;
    flex-direction: column;

    font-family: "Fjalla One", sans-serif;
    font-size: clamp(4rem, 8vw, 7.5rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.045em;
    text-transform: uppercase;

    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.hero__tagline {
    margin-top: 2rem;

    font-size: clamp(1.05rem, 1.7vw, 1.4rem);
    font-weight: 400;
    color: var(--text-muted);

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__status {
    margin-top: 3.25rem;

    font-size: clamp(0.68rem, 1vw, 0.82rem);
    font-weight: 500;
    letter-spacing: 0.32em;
    line-height: 1.6;
    text-transform: uppercase;
    color: var(--text-status);

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 700px) {
    .hero {
        align-items: flex-end;
        background-position: 62% center;
    }

    .hero__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(9, 18, 15, 0.82) 0%,
                rgba(9, 18, 15, 0.42) 52%,
                rgba(9, 18, 15, 0.08) 100%
            );
    }

    .hero__content {
        width: 100%;
        padding: 0 1.5rem 4rem;
    }

    .hero__title {
        font-size: clamp(3.5rem, 17vw, 5rem);
    }

    .hero__tagline {
        margin-top: 1.5rem;
    }

    .hero__status {
        margin-top: 2.5rem;
        max-width: 18rem;
    }
}