* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: #000;
    font-family: "Roboto", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.site {
    min-height: 100vh;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: #000;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%) contrast(1.05);
    transform: scale(1.01);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.hero__center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.hero__logoText {
    font-family: "Roboto", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(72px, 14vw, 160px);
    letter-spacing: 0.04em;
    color: #fff;
    user-select: none;
}

.hero__logoImage {
    width: clamp(340px, 55vw, 860px);
    height: auto;
    display: block;
    user-select: none;
}

.hero__tagline {
    padding-top: 5%;
    padding-right: 20%;
    position: relative;
    z-index: 3;
}

.hero__taglineInner {
    display: grid;
    gap: 4px;
    text-transform: uppercase;
    text-align: left;
    font-family: "Roboto", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #fff;
    cursor: default;
}

.hero__taglineInner .is-shifted {
    text-align: right;
}

.hero__card {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 30vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 4;
    display: flex;
    align-items: center;
}

.card__side {
    width: 20%;
}

.card__content {
    width: 60%;
    display: flex;
    align-items: center;
    padding-left: 8%;
}

.hero__cardStack {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.hero__cardTitle {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: "Roboto", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 4.6vw, 72px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    line-height: 0.95;
    cursor: default;
    flex: 0 0 auto;
}

.hero__scrollBtn {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    opacity: 0.85;
    display: flex;
    align-items: flex-end;
}

.hero__scrollBtn:hover {
    opacity: 1;
}

.hero__scrollTriangle {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 26px solid #fff;
    display: block;
}

.site-footer {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.footer-image {
    position: absolute;
    inset: 0;
    background-image: var(--footer-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%) contrast(1.05);
    transform: scale(1.01);
    z-index: 0;
}

.footer-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 30vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3;
    display: flex;
    align-items: center;
}

.footer-cardTitle {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-family: "Roboto", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(18px, 2vw, 28px);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.15;
    cursor: default;
}

.footer-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 32px 40px;
    z-index: 2;
    color: #fff;
    font-family: "Roboto", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    cursor: default;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0.85;
}

.footer-center {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    opacity: 0.75;
}

@media (max-width: 520px) {
    .hero__tagline {
        padding-right: 10%;
    }

    .hero__taglineInner {
        font-size: 11px;
    }

    .hero__logoText {
        font-size: clamp(56px, 18vw, 96px);
        cursor: default;
    }

    .hero__card {
        width: 100%;
        height: auto;
        padding: 24px 20px 60px;
    }

    .footer-card {
        width: 100%;
        height: auto;
        padding: 60px 20px 24px;
    }

    .card__side {
        display: none;
    }

    .card__content {
        width: 100%;
        padding-left: 5px;
    }

    .hero__cardTitle,
    .footer-cardTitle {
        align-items: flex-start;
        text-align: left;
    }

    .hero__cardTitle {
        font-size: clamp(34px, 9vw, 54px);
    }

    .footer-cardTitle {
        font-size: 14px;
    }

    .hero__cardStack {
        gap: 10px;
    }

    .hero__scrollTriangle {
        border-left-width: 9px;
        border-right-width: 9px;
        border-top-width: 14px;
    }

    .footer-content {
        padding: 18px 18px 50px;
        gap: 10px;
    }

    .footer-center {
        position: static;
        transform: none;
        white-space: nowrap;
    }

    .footer-left {
        gap: 4px;
    }
}

@media (max-width: 1024px) and (min-width: 521px) {

    .hero__card,
    .footer-card {
        width: 85%;
    }

    .hero__cardStack {
        gap: 20px;
    }

    .hero__scrollTriangle {
        border-left-width: 10px;
        border-right-width: 10px;
        border-top-width: 16px;
    }
}
