:root {
    --white: #f4f4ef;
    --muted: rgba(244, 244, 239, 0.62);
    --dark: #080b0c;
    --line: rgba(255, 255, 255, 0.16);
    --accent: #d7e6df;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(4, 9, 11, 0.92) 0%,
            rgba(4, 9, 11, 0.58) 42%,
            rgba(4, 9, 11, 0.25) 100%
        ),
        linear-gradient(
            0deg,
            rgba(4, 9, 11, 0.7) 0%,
            transparent 50%
        ),
        url("images/hero.jpg") center center / cover no-repeat;
}


/* если картинки пока нет */
.hero {
    background-color: #172326;
}

.overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(116, 154, 157, 0.25),
            transparent 35%
        );
    
    pointer-events: none;
}


/* =========================
   HEADER
========================= */

.header {
    position: relative;
    z-index: 2;

    width: calc(100% - 100px);
    margin: 0 auto;
    padding-top: 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--white);
    text-decoration: none;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo small {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 8px;
    font-weight: 500;
    letter-spacing: 3px;
}

.logo-mark {
    width: 38px;
    height: 38px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;

    font-size: 14px;
}

.location {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255,255,255,0.7);

    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.location-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: var(--accent);
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    position: relative;
    z-index: 2;

    width: calc(100% - 100px);

    margin: 18vh auto 0;
}

.eyebrow {
    margin-bottom: 25px;

    color: rgba(255,255,255,0.65);

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
}

h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(75px, 12vw, 180px);
    line-height: 0.82;

    font-weight: 800;
    letter-spacing: -7px;
}

h1 span {
    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,0.7);
}

.description {
    max-width: 390px;

    margin-top: 40px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}

.actions {
    display: flex;
    align-items: center;
    gap: 35px;

    margin-top: 35px;
}

.button {
    display: flex;
    align-items: center;
    gap: 22px;

    padding: 15px 20px;

    color: #101718;
    background: var(--white);

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    transition: 0.3s ease;
}

.button span {
    font-size: 18px;
}

.button:hover {
    transform: translateY(-3px);
    background: var(--accent);
}

.scroll {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,0.5);

    font-size: 9px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 35px;
    height: 1px;

    background: rgba(255,255,255,0.4);
}


/* =========================
   BOTTOM INFO
========================= */

.bottom-info {
    position: absolute;
    z-index: 2;

    left: 50px;
    right: 50px;
    bottom: 35px;

    display: flex;
    gap: 70px;

    border-top: 1px solid var(--line);

    padding-top: 18px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-number {
    color: rgba(255,255,255,0.3);

    font-size: 9px;
}

.info-item strong {
    display: block;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-item small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,0.4);

    font-size: 9px;
}


/* =========================
   ABOUT
========================= */

.about {
    min-height: 65vh;

    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;

    padding: 100px 8%;

    background: #0b1011;
}

.about-label {
    align-self: start;

    color: rgba(255,255,255,0.3);

    font-size: 10px;
    letter-spacing: 3px;
}

.about-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(45px, 7vw, 100px);
    line-height: 0.9;

    letter-spacing: -4px;
}

.about-content h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}

.about-content p {
    max-width: 500px;

    margin-top: 45px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   FOOTER
========================= */

.footer {
    display: flex;
    justify-content: space-between;

    padding: 25px 8%;

    border-top: 1px solid var(--line);

    color: rgba(255,255,255,0.3);

    font-size: 9px;
    letter-spacing: 2px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .header {
        width: calc(100% - 40px);
        padding-top: 25px;
    }

    .location {
        display: none;
    }

    .hero-content {
        width: calc(100% - 40px);
        margin-top: 25vh;
    }

    h1 {
        font-size: clamp(65px, 19vw, 110px);
        letter-spacing: -4px;
    }

    .description {
        max-width: 320px;

        margin-top: 30px;

        font-size: 14px;
    }

    .actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .bottom-info {
        left: 20px;
        right: 20px;
        bottom: 20px;

        gap: 20px;
    }

    .info-item:nth-child(2),
    .info-item:nth-child(3) {
        display: none;
    }

    .about {
        display: block;

        min-height: 60vh;

        padding: 70px 20px;
    }

    .about-label {
        margin-bottom: 70px;
    }

    .about-content h2 {
        letter-spacing: -2px;
    }

    .about-content p {
        margin-top: 35px;
        font-size: 14px;
    }

    .footer {
        flex-direction: column;
        gap: 10px;

        padding: 25px 20px;
    }
}
