.home-hero {
    position: relative;
    width: min(720px, 100%);
    margin: auto;
    padding-top: 3.5rem;
    border-radius: 8px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -15%, rgba(220, 167, 83, 0.34), rgba(220, 167, 83, 0) 43%);
    box-shadow:
        inset 0 0 80px rgba(0, 0, 0, 0.6),
        0 16px 34px rgba(0, 0, 0, 0.35);
    animation: heroReveal 700ms ease-out both;
}

.title-section {
    width: min(94vw, 620px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    color: var(--white);
    text-wrap: balance;
}

.title-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Ibarra Real Nova", serif;
    letter-spacing: 0.04em;
    font-size: clamp(1.05rem, 2.8vw, 2.3rem);
}

.title-main {
    margin: 0.15rem 0 0;
    line-height: 1;
    color: rgba(245, 245, 245, 0.95);
    font-family: "Ibarra Real Nova", serif;
    font-size: clamp(2.1rem, 11vw, 5.2rem);
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    opacity: 0;
    animation: textRise 650ms ease-out 180ms forwards;
}

.title-main-row {
    display: block;
}

.title-main-row-1 {
    line-height: 0.88;
}

.title-main-row-2 {
    line-height: 0.88;
    transform: translateY(-0.22em);
}

.title-main-row-3 {
    line-height: 0.88;
}

.title-gold {
    color: #d3a65a;
}

.title-main-small {
    /*font-size: 1.7rem;*/
    font-size: clamp(2.1rem, 9vw, 2.5rem);
    color: rgba(242, 242, 242, 0.88);
}

.title-sub {
    margin: 0.7rem 0 0;
    color: #d3a65a;
    font-family: "Ibarra Real Nova", serif;
    line-height: 1.2;
    font-size: clamp(1rem, 3.2vw, 1.8rem);
    letter-spacing: 0.02em;
    opacity: 0;
    animation: textRise 650ms ease-out 330ms forwards;
}

.title-copy {
    margin: 0.95rem auto 0;
    max-width: 36ch;
    color: rgba(244, 244, 244, 0.88);
    font-size: clamp(0.95rem, 2.2vw, 1.5rem);
    line-height: 1.45;
}

.home-image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

@media (max-width: 768px) {
    .home-hero {
        border-radius: 0;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-top: 0;
    }

    .title-main-row-2 {
        transform: translateY(-0.1em);
    }

    .title-sub {
        margin-top: 0.5rem;
    }
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero,
    .title-main,
    .title-sub {
        animation: none;
        opacity: 1;
    }
}


