/* ============================================================
   HERO SECTION — Background Video + Overlay
============================================================ */

/* Hero section inherits fullscreen rules from .hs-section */

/* Background video container */
.hs-hero-bg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    overflow: hidden;

    z-index: 1;
}

/* Video sizing */
.hs-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* cover screen fully */
    object-position: center;
    display: block;
}

/* Overlay content */
.hs-hero-overlay {
    position: absolute;
    inset: 0;               /* full area overlay */
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;

    padding: 0 40px;
    color: white;
}

/* Title */
.hs-hero-overlay h1 {
    font-size: 5vw;
    font-weight: 700;
    margin: 0 0 20px 0;
}

/* Subtitle */
.hs-hero-overlay p {
    font-size: 1.75vw;
    font-weight: 400;
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hs-hero-overlay {
        padding: 0 20px;
    }

    .hs-hero-overlay h1 {
        font-size: 10vw;
    }

    .hs-hero-overlay p {
        font-size: 4.5vw;
    }
}

.hs-hero {
    height: calc(var(--vh) * 100);
	min-height: calc(var(--vh) * 100);
    padding: 0;
    overflow: hidden;       /* only HERO clips overflow */
}

/* ============================================================
   HERO — Custom Headline Sequence
   ============================================================ */

.hero-line {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 0.9;
    color: #ffffff;
    margin: 0;

    /* Larger than H1 – strong hero presence */
    font-size: clamp(4rem, 13vw, 12rem) !important;

    display: block;
}

/* FORCE hero headline to use clamp size instead of 5vw override */
.hs-hero-overlay h1.hero-line {
    font-size: clamp(2.5rem, 8vw, 8.3rem) !important;
}


/* spacing between lines */
.hero-line + .hero-line {
    margin-top: -0.15em;
}
