.alh-section {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-top: calc(var(--alh-header-offset, 0px) * -1);
    padding-top: var(--alh-header-offset, 0px);
    overflow: hidden;
    --alh-logo-scale: 1;
    --alh-logo-offset-x: 0px;
    --alh-logo-offset-y: 0px;
}

.alh-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.alh-bg,
.alh-bg-color,
.alh-bg-overlay,
.alh-mask-svg,
.alh-bg img,
.alh-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alh-bg-color {
    z-index: 0;
}

.alh-bg-overlay {
    z-index: 2;
    pointer-events: none;
}

.alh-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.alh-bg-video {
    z-index: 1;
}

.alh-hero-copy {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6vw;
    color: #FFFFFF;
}

.alh-hero-kicker {
    font-size: 13px !important;
    font-weight: 400 !important;
    margin-bottom: -20px !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.alh-hero-headline {
    font-size: clamp(42px, 6vw, 81px);
    font-weight: 600;
    max-width: 980px;
    line-height: 1.15;
    font-family: "Zalando Sans Expanded", "Zalando Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
}

.alh-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 26px;
    pointer-events: auto;
    align-items: flex-start;
    text-align: left;
    position: absolute;
    left: 6vw;
    bottom: 3vw;
}

.alh-hero-cta-text {
    font-size: 20px;
}

.alh-hero-button {
    align-self: flex-start;
    background-color: #ff4632 !important;
    border-color: #ff4632 !important;
    color: #FFFFFF !important;
    box-shadow: none;
}

.alh-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 6;
    pointer-events: none;
}

.alh-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 2.5vh;
    transform: translateX(-50%);
    z-index: 8;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #FFFFFF;
    animation: alh-chevron-pulse 2.4s ease-in-out infinite;
    pointer-events: none;
}

.alh-scroll-indicator svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

@keyframes alh-chevron-pulse {
    0% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -8px);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

.alh-logo,
.alh-logo-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20vw;
    max-width: var(--alh-logo-max, 200px);
    max-height: 20vh;
    height: auto;
    will-change: transform, opacity;
    transform-origin: center center;
    opacity: 0;
}

.alh-logo-wrap {
    display: block;
}

.alh-logo-svg {
    width: 100%;
    height: 100%;
    display: block;
}
.alh-mask-svg {
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity;
    transform-origin: center center;
}

.alh-mask-shape {
    transform-origin: center center;
    transform-box: fill-box;
}

.alh-mask-rect {
    fill: var(--alh-mask-color, #ff4632);
    fill-opacity: var(--alh-mask-opacity, 1);
}

.alh-words {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 7;
    text-align: center;
    font-size: clamp(28px, 6vw, 72px);
    font-weight: 500;
    font-family: "Zalando Sans Expanded", "Zalando Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    pointer-events: none;
    padding: 8vh 6vw;
    overflow: visible;
}

.alh-word {
    position: absolute;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    white-space: nowrap;
    line-height: 1.1;
}

.alh-spacer {
    width: 100%;
}

@media (min-width: 768px) and (max-width: 1280px) and (max-height: 900px) {
    .alh-words {
        font-size: clamp(24px, 4.8vw, 56px);
        letter-spacing: 0.03em;
        padding: 8vh 4vw;
    }
}

@media (max-width: 767px) {
    .alh-logo {
        max-width: var(--alh-logo-max-mobile, 300px);
    }

    .alh-hero-copy {
        padding: 8vw;
    }

    .alh-hero-headline {
        font-size: clamp(22px, 6vw, 36px);
    }

    .alh-words {
        font-size: clamp(20px, 7vw, 36px);
        padding: 8vh 4vw;
    }

    .alh-word {
        white-space: normal;
        max-width: 90vw;
        line-height: 1.05;
        text-wrap: balance;
    }
}

@media (prefers-reduced-motion: reduce) {
    .alh-logo {
        opacity: 1;
    }
}
