/* Text */
.hero-badge {
    font-size: clamp(12px, 1.2vw, 14px);
    text-transform: uppercase;
    margin-bottom: clamp(10px, 2vw, 16px);
    line-height: 1.5;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    color: var(--color-tertiary);
}

.hero-title {
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(20px, 3vw, 32px);
}
.hero-page .hero-title{
    margin-bottom: 0;
    color: var(--color-secondary);
}
.hero-desc {
    font-size: clamp(14px, 2vw, 20px);
    max-width: 600px;
    margin-bottom: clamp(20px, 4vw, 40px);
    line-height: 1.3;
}

/* HERO */
.hero-page {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 60vh;
}

.hero-page .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.25);
    opacity: 0.9;
}

/* Overlay */
.hero-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-primary), transparent);
    opacity: 0.8;
}

.section-hero .container{
    position: relative;
    z-index: 2;
}

/* Container */
.hero-container {
    position: relative;
    z-index: 2;
    padding: 0 0 80px;
}

/* Content box */
.hero-box {
    background: var(--color-white);
    padding: 40px;
    max-width: 700px;
    border-left: 8px solid var(--color-secondary);
}