.heroHeader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.heroHeader--image {
    height: 600px;
    background-size: cover;
    background-position: center;
    color: rgb(var(--color-surface-white));
}

.heroHeader--light {
    padding: var(--space-xxl) var(--space-lg);
    background-color: var(--color-surface-gray-light);
    color: var(--color-text-primary);
}

.heroHeader--dark {
    padding: var(--space-xxl) var(--space-lg);
    background-color: rgb(45, 45, 45);
    color: rgba(var(--color-surface-white), 0.9);
}

.heroHeader__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.heroHeader__content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: var(--space-lg);
}

.heroHeader__label {
    display: inline-block;
    font-size: var(--text-xs);
    letter-spacing: 3px;
    color: rgb(224, 120, 40);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    font-weight: 500;
}

.heroHeader__title {
    font-family: var(--font-family-display);
    font-size: 52px;
    font-weight: 400;
    margin: 0 0 var(--space-md);
    line-height: 1.1;
}

.heroHeader--light .heroHeader__title {
    color: var(--color-text-primary);
}

.heroHeader--dark .heroHeader__subtitle {
    color: rgba(var(--color-surface-white), 0.6);
}

.heroHeader--light .heroHeader__subtitle {
    color: var(--color-text-muted);
}

.heroHeader__subtitle {
    font-size: var(--text-lg);
    margin: 0 0 var(--space-xl);
    font-weight: 300;
}

.heroHeader--image .heroHeader__subtitle {
    opacity: 0.85;
}

.heroHeader__button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgb(224, 120, 40);
    color: rgb(var(--color-surface-white));
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-m);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: background-color 0.2s ease;
}

.heroHeader__button:hover {
    background: rgb(200, 100, 30);
}

.heroHeader__button .icon {
    font-size: 0.85em;
}

@media (max-width: 768px) {
    .heroHeader--image {
        height: 400px;
    }

    .heroHeader__title {
        font-size: 32px;
    }

    .heroHeader__subtitle {
        font-size: var(--text-md);
    }

    .heroHeader__content {
        padding: var(--space-md);
    }
}
