.site-page-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto 70px;
    text-align: center;
}

.site-page-header h1 {
    width: 100%;
    margin: 0;
    font-family: "Chakra Petch", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 0.95;
    text-align: center;
    text-transform: uppercase;
}

.site-page-subtitle {
    width: 100%;
    margin: 16px 0 0;
    font-family: "Chakra Petch", sans-serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: #ff7a00;
    text-align: center;
    text-transform: uppercase;
}

.site-page-description {
    width: 100%;
    max-width: 850px;
    margin: 26px auto 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.site-images {
    display: flex;
    flex-direction: column;
    gap: 90px;
    margin-bottom: 100px;
}

.site-image-section {
    width: 100%;
}

.site-image-heading {
    margin: 0 0 22px;
    font-family: "Chakra Petch", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.site-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .38);
}

.site-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #000;
}

.site-page-loading,
.site-page-error {
	padding: 100px 20px;
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-page-error h1 {
    width: 100%;
    margin: 0;
    font-family: "Chakra Petch", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 0.95;
    text-align: center;
    text-transform: uppercase;
}

.site-page-error p {
    color: rgba(255, 255, 255, .7);
}

.site-page-error a {
    display: inline-block;
    margin-top: 20px;
    color: #ff7a00;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 700px) {
    .site-page {
        padding: 45px 0 90px;
    }

    .site-page-header {
        margin-bottom: 50px;
    }

    .site-images {
        gap: 60px;
    }

    .site-image-heading {
        margin-bottom: 14px;
    }
}