.hero {
    padding-top: clamp(116px, 13vh, 154px);
    min-height: min(100vh, 840px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(247, 248, 249, 0.52)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
        url("../assets/test.png") center center / cover no-repeat;
}

.hero-frame {
    display: grid;
}

.hero-frame--mockup {
    grid-template-columns: clamp(150px, 15vw, 196px) minmax(0, 1fr);
    gap: clamp(24px, 3.4vw, 42px);
    align-items: center;
    padding: clamp(18px, 2.2vw, 26px);
    min-height: clamp(220px, 34vh, 290px);
    max-width: 1040px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow:
        0 24px 54px rgba(20, 36, 45, 0.16),
        0 8px 18px rgba(20, 36, 45, 0.08);
    position: relative;
}

.hero-frame--mockup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58, 99, 116, 0.42), transparent);
    pointer-events: none;
}

.hero-brand-column {
    display: flex;
    min-width: 0;
}

.hero-logo-stack {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-stack--mockup {
    min-height: clamp(182px, 28vh, 238px);
    padding: 0;
    border: 0;
    background: transparent;
    filter: drop-shadow(0 10px 18px rgba(20, 36, 45, 0.1));
}

.hero-logo-placeholder {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #111111;
}

.hero-logo-large--mockup {
    display: block;
    width: min(100%, 148px);
    height: auto;
    filter: saturate(0.92) contrast(1.02);
}

.hero-content-panel {
    min-width: 0;
}

.hero-content-panel--mockup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2px, 0.6vw, 6px) 0;
}

.hero-title-formal {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vw, 12px);
    margin: 0 0 14px;
}

.hero-title-formal--mockup span {
    display: block;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.04;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-title-formal--mockup span:first-child {
    font-family: var(--font-body);
    font-size: clamp(0.88rem, 1.2vw, 0.96rem);
    text-transform: uppercase;
    letter-spacing: clamp(0.12em, 0.3vw, 0.18em);
    color: var(--accent-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-title-formal--mockup span:nth-child(2),
.hero-title-formal--mockup span:nth-child(3) {
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 4vw, 3.7rem);
    letter-spacing: -0.03em;
}

.hero-lead {
    margin: 0;
}

.hero-lead--mockup {
    max-width: 42ch;
    font-family: var(--font-body);
    font-size: clamp(0.94rem, 1.28vw, 1.08rem);
    font-weight: 400;
    line-height: 1.72;
    color: rgba(20, 36, 45, 0.82);
}

.hero-facts,
.hero-btns,
.hero-divider,
.hero-profession,
.hero-kicker,
.hero-pretitle,
.hero-logo-large:not(.hero-logo-large--mockup) {
    display: none;
}

@media (max-width: 1080px) {
    .hero {
        padding-top: clamp(102px, 12vh, 126px);
        min-height: auto;
    }

    .hero-frame--mockup {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 24px;
        min-height: 0;
    }

    .hero-title-formal--mockup span:nth-child(2),
    .hero-title-formal--mockup span:nth-child(3) {
        font-size: clamp(1.95rem, 5vw, 3.2rem);
    }

    .hero-logo-large--mockup {
        width: min(100%, 132px);
    }
}

@media (max-width: 860px) {
    .hero-frame--mockup {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-brand-column {
        max-width: 170px;
    }

    .hero-logo-stack--mockup {
        min-height: 190px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: clamp(90px, 10vh, 114px);
    }

    .hero-frame--mockup {
        padding: 14px;
        gap: 14px;
    }

    .hero-brand-column {
        max-width: 150px;
    }

    .hero-logo-stack--mockup {
        min-height: 160px;
        padding: 0;
    }

    .hero-title-formal--mockup span:first-child {
        font-size: 0.82rem;
    }

    .hero-title-formal--mockup span:nth-child(2),
    .hero-title-formal--mockup span:nth-child(3) {
        font-size: clamp(1.7rem, 8vw, 2.45rem);
    }

    .hero-lead--mockup {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-logo-large--mockup {
        width: min(100%, 116px);
    }
}

@media (max-width: 480px) {
    .hero-frame--mockup {
        padding: 10px;
    }

    .hero-brand-column {
        max-width: 132px;
    }

    .hero-logo-large--mockup {
        width: min(100%, 94px);
    }

    .hero-title-formal--mockup span:first-child {
        font-size: 0.98rem;
    }
}

@media (max-height: 760px) {
    .hero {
        min-height: auto;
    }
}
