.hero-section {
    position: relative;
    min-height: 60svh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 24px 48px;
    color: #F5F5F1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 26, 26, 0.15),
            rgba(26, 26, 26, 0.45));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-slogan {
    margin: 0;
    font-size: 18px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
    font-style: italic;
    opacity: 0.95;
}