/* Hallow Page */

.hallow-hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hallow-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
            brightness(0.42)
            saturate(0.8);
}

.hallow-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    to top,
                    rgba(9,9,9,0.96) 0%,
                    rgba(9,9,9,0.55) 45%,
                    rgba(9,9,9,0.2) 100%
            );
}

.hallow-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
    opacity: 0.12;
    pointer-events: none;
}

.hallow-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    padding: 0 clamp(24px, 5vw, 80px) 72px;
}

.hallow-label,
.hallow-small-label {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
}

.hallow-hero h1 {
    margin-top: 16px;
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 0.88;
    letter-spacing: -0.08em;
    font-weight: 700;
}

.hallow-description {
    margin-top: 24px;
    max-width: 480px;
    line-height: 1.85;
    color: rgba(255,255,255,0.74);
}

.hallow-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hallow-primary-button,
.hallow-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 20px;
    text-decoration: none;
    font-size: 0.94rem;
    transition:
            background 0.2s ease,
            border-color 0.2s ease,
            opacity 0.2s ease;
}

.hallow-primary-button {
    background: #f3efe8;
    color: #111;
}

.hallow-primary-button:hover {
    opacity: 0.88;
}

.hallow-secondary-button {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.84);
}

.hallow-secondary-button:hover {
    border-color: rgba(255,255,255,0.24);
}

/* Layout */

.hallow-section {
    width: 100%;
}

.hallow-container {
    padding: 70px clamp(24px, 5vw, 80px);
    max-width: 1000px;
    margin: 0 auto;
}

.hallow-copy {
    display: flex;
    margin: 0 auto;
    padding-top: 80px;
    flex-direction: column;
    align-items: center;
    max-width: 620px;
}

.hallow-copy p {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
}

.hallow-copy p:not(:first-child) {
    margin-top: 22px;
}

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

.hallow-image-container {
    position: relative;
    padding: 0 clamp(24px, 5vw, 80px);
    max-width: 1000px;
    margin: 0 auto;
    mask-image:
            linear-gradient(
                    to bottom,
                    transparent 0%,
                    black 12%,
                    black 88%,
                    transparent 100%
            );
}

.hallow-image-container img {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
    filter: brightness(0.92);
}

.hallow-side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    grid-template-areas: "copy media";
}

.hallow-side-by-side.reverse {
    grid-template-areas: "media copy";
}

.hallow-side-by-side.reverse .hallow-side-media {
    grid-area: media;
}

.hallow-side-by-side.reverse .hallow-side-copy {
    grid-area: copy;
}

.hallow-side-copy h2 {
    margin-top: 16px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hallow-side-copy p:last-child {
    margin-top: 22px;

    line-height: 1.9;
    color: rgba(255,255,255,0.72);
}

.hallow-side-media img {
    width: 100%;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
}

.hallow-cta {
    width: 100%;
    padding: 0 0 90px 0;
    text-align: center;
}

.hallow-cta h2 {
    margin-top: 18px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.hallow-cta .hallow-primary-button {
    margin-top: 36px;
}

/* Media Queries */

@media (max-width: 700px) {
    .hallow-side-by-side,
    .hallow-side-by-side.reverse
    {
        grid-template-columns: 1fr;
        grid-template-areas: "copy" "media";
    }

    .hallow-hero-content {
        padding-bottom: 56px;
    }

    .hallow-hero h1 {
        font-size: 4rem;
    }

    .hallow-copy p {
        font-size: 1.05rem;
    }

    .hallow-side-copy h2,
    .hallow-cta h2 {
        font-size: 2.6rem;
    }
}
