.container-xxl {
    max-width: var(--container-max);
}

.site-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-space {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
}

.section-space-sm {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
}

.section-space-lg {
    padding-top: min(18vh, 12rem);
    padding-bottom: min(18vh, 12rem);
}

.media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.editorial-figure {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 34rem;
}

.editorial-figure--tall {
    min-height: min(76vh, 48rem);
}

.site-footer {
    border-top: 1px solid rgba(245, 248, 255, 0.14);
    background: linear-gradient(180deg, #0b1220 0%, #0f1728 100%);
}

.footer-shell {
    padding: clamp(1.5rem, 1.05rem + 1.5vw, 2.4rem);
    border: 1px solid rgba(245, 248, 255, 0.12);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.footer-top {
    position: relative;
}

.footer-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: clamp(0.72rem, 0.7rem + 0.15vw, 0.88rem);
    color: rgba(224, 232, 247, 0.78);
}

.footer-brand {
    margin-top: clamp(0.3rem, 0.2rem + 0.3vw, 0.55rem);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 1.2rem + 1.15vw, 2.45rem);
    line-height: 1.06;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.footer-text,
.footer-copy {
    color: rgba(224, 232, 247, 0.82);
    font-size: var(--text-sm);
}

.footer-text {
    margin-top: clamp(0.7rem, 0.55rem + 0.4vw, 1rem);
    max-width: 52ch;
    line-height: 1.65;
}

.footer-meta {
    margin-top: clamp(0.9rem, 0.8rem + 0.5vw, 1.35rem);
    display: grid;
    gap: 0.42rem;
    color: rgba(235, 240, 250, 0.84);
    font-size: var(--text-sm);
}

.footer-heading {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: var(--text-xs);
    color: rgba(224, 232, 247, 0.72);
}

.footer-meta a {
    transition: color var(--dur-fast) var(--ease-smooth);
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
    color: #ffffff;
}

.footer-nav-title {
    margin-bottom: 0.2rem;
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: clamp(0.8rem, 0.7rem + 0.7vw, 1.4rem);
    margin-top: clamp(0.4rem, 0.4rem + 0.3vw, 0.7rem);
}

.footer-menu a {
    font-size: var(--text-sm);
    color: rgba(242, 246, 255, 0.86);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color var(--dur-fast) var(--ease-smooth);
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
    color: #ffffff;
}

.footer-bottom {
    margin-top: clamp(1.35rem, 1rem + 1vw, 2rem);
    padding-top: clamp(0.9rem, 0.75rem + 0.5vw, 1.2rem);
    border-top: 1px solid rgba(245, 248, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.footer-copy {
    margin: 0;
    color: rgba(224, 232, 247, 0.76);
}

@media (max-width: 991.98px) {
    .section-space,
    .section-space-sm,
    .section-space-lg {
        padding-top: var(--space-6);
        padding-bottom: var(--space-6);
    }

    .editorial-figure,
    .editorial-figure--tall {
        min-height: 24rem;
    }

    .footer-menu {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
