﻿.bromaia-hero-banner {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    overflow: clip;
    background: var(--color-background-light, #e9dfd5);
    color: #632024;
}

.bromaia-hero-banner__media,
.bromaia-hero-banner__media picture,
.bromaia-hero-banner__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bromaia-hero-banner__media img {
    object-fit: cover;
}

.bromaia-hero-banner__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(249, 243, 237, 0.92) 0%, rgba(249, 243, 237, 0.7) 26%, rgba(249, 243, 237, 0.08) 54%, rgba(249, 243, 237, 0.12) 100%),
        linear-gradient(180deg, rgba(99, 32, 36, 0.02) 0%, rgba(99, 32, 36, 0.18) 100%);
}

.bromaia-hero-banner__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    padding-top: clamp(108px, 14vw, 168px);
    padding-bottom: clamp(36px, 6vw, 60px);
}

.bromaia-hero-banner__body {
    max-width: 440px;
    padding-bottom: clamp(28px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    min-height: clamp(260px, 30vw, 380px);
}

.bromaia-hero-banner__title {
    margin: 0;
    font-family: "Didot", "Bodoni MT", "Times New Roman", serif;
    font-size: clamp(3rem, 5.9vw, 5.3rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-weight: 400;
    color: #2f2925;
    text-wrap: balance;
}

.bromaia-hero-banner__divider {
    width: 26px;
    height: 2px;
    margin: 22px 0 20px;
    background: rgba(95, 82, 74, 0.72);
}

.bromaia-hero-banner__subtitle {
    margin: 0;
    max-width: 24ch;
    font-size: clamp(0.8rem, 1.05vw, 0.96rem);
    line-height: 1.55;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: #5f524a;
}

.bromaia-hero-banner__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #5f524a;
    text-decoration: none;
    font-size: 0.84rem;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

.bromaia-hero-banner__arrow {
    transition: transform 0.25s ease;
}

.bromaia-hero-banner__cta:hover .bromaia-hero-banner__arrow {
    transform: translateX(4px);
}

.bromaia-hero-banner__counter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-right: clamp(12px, 4vw, 44px);
    color: rgba(249, 243, 237, 0.9);
    font-size: 1.25rem;
}

.bromaia-hero-banner__counter-line {
    width: 1px;
    height: 72px;
    background: rgba(249, 243, 237, 0.58);
}

@media (max-width: 991px) {
    .bromaia-hero-banner__veil {
        background:
            linear-gradient(180deg, rgba(249, 243, 237, 0.88) 0%, rgba(249, 243, 237, 0.44) 44%, rgba(99, 32, 36, 0.16) 100%);
    }

    .bromaia-hero-banner__inner {
        align-items: flex-end;
        padding-top: 112px;
    }

    .bromaia-hero-banner__counter {
        display: none;
    }
}

@media (max-width: 767px) {
    .bromaia-hero-banner {
        min-height: 88svh;
    }

    .bromaia-hero-banner__inner {
        padding-top: 104px;
        padding-bottom: 32px;
    }

    .bromaia-hero-banner__body {
        max-width: 100%;
        padding-bottom: 8px;
    }

    .bromaia-hero-banner__title {
        max-width: 9ch;
        font-size: clamp(2.75rem, 13vw, 4.2rem);
    }

    .bromaia-hero-banner__subtitle {
        max-width: 22ch;
        letter-spacing: 0.12em;
    }
}

