/* Home Hero — full-bleed photo + bottom-left headline + dark scrim.
   Figma section #2 ("I CAN MAKE IT"). Full viewport height on every home_hero
   usage. (Single news/blog heroes use their own height — see single-news.css.) */
.home-hero {
    position: relative;
    width: 100%;
    background-color: var(--ct-navy);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    height: 100dvh;
}

.home-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(63, 64, 64, 0) 42%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 86px 72px;
}

.home-hero__headline {
    margin: 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;            /* thin by default; bold only where formatted */
    font-size: clamp(46px, 8vw, 170px);
    line-height: 0.92;
    letter-spacing: -1px;
}
.home-hero__headline strong,
.home-hero__headline b {
    font-weight: 700;
}

.home-hero__subhead {
    margin: 18px 0 0;
    color: #fff;
    font-family: 'Albert Sans', sans-serif;
    font-size: clamp(16px, 1.4vw, 20px);
    max-width: 620px;
}

.home-hero__cta {
    margin-top: 26px;
}

@media (max-width: 991px) {
    .home-hero { height: 40dvh; }
    .home-hero__inner { padding: 0 24px 40px; }
}
