/* ===== FIX: Move hero buttons lower with responsive support ===== */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;  /* Push everything to bottom */
    text-align: center;
    padding: 0 1rem 5rem;  /* Bottom padding for desktop */
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 1;
    margin-bottom: 0.8rem;
    letter-spacing: .02em;
}

.hero-sub {
    font-family: var(--font-label);
    font-size: .82rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

/* ===== Mobile specific - Push buttons lower ===== */
@media (max-width: 767.98px) {
    .hero-content {
        padding: 0 1rem 6rem;  /* More bottom padding on tablets/phones */
        justify-content: flex-end;
    }

    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
        margin-bottom: 0.5rem;
    }

    .hero-sub {
        font-size: .7rem;
        letter-spacing: .25em;
        margin-bottom: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-cta .btn-gold,
    .hero-cta .btn-outline-cream {
        width: 100%;
        text-align: center;
        padding: .85rem 1.5rem;
        font-size: .7rem;
        display: block;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 0 1rem 7rem;  /* Even more bottom padding for phones */
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.6rem);
        margin-bottom: 0.3rem;
    }

    .hero-sub {
        font-size: .6rem;
        letter-spacing: .2em;
        margin-bottom: 2.8rem;  /* More space before buttons */
    }

    .hero-cta {
        max-width: 280px;
        gap: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta .btn-gold,
    .hero-cta .btn-outline-cream {
        padding: .8rem 1.2rem;
        font-size: .65rem;
        letter-spacing: .15em;
    }
}

/* ===== Extra small phones (iPhone SE) ===== */
@media (max-width: 380px) {
    .hero-content {
        padding: 0 0.8rem 6rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .hero-sub {
        font-size: .55rem;
        margin-bottom: 2.5rem;
    }

    .hero-cta {
        max-width: 240px;
        gap: 0.6rem;
    }

    .hero-cta .btn-gold,
    .hero-cta .btn-outline-cream {
        padding: .7rem 1rem;
        font-size: .6rem;
    }
}

/* ===== Very small phones (below 320px) ===== */
@media (max-width: 320px) {
    .hero-content {
        padding: 0 0.6rem 5rem;
    }

    .hero-title {
        font-size: clamp(1.2rem, 7vw, 1.6rem);
    }

    .hero-sub {
        font-size: .5rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        max-width: 200px;
        gap: 0.5rem;
    }

    .hero-cta .btn-gold,
    .hero-cta .btn-outline-cream {
        padding: .6rem 0.8rem;
        font-size: .55rem;
    }
}

/* ===== Tablets ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-content {
        padding: 0 2rem 6rem;
        justify-content: flex-end;
    }

    .hero-title {
        font-size: clamp(3.5rem, 8vw, 4.5rem);
    }

    .hero-cta {
        gap: 1.2rem;
    }

    .hero-cta .btn-gold,
    .hero-cta .btn-outline-cream {
        padding: .9rem 2rem;
        font-size: .75rem;
    }
}

/* ===== Large screens ===== */
@media (min-width: 992px) {
    .hero-content {
        padding: 0 2rem 7rem;
        justify-content: flex-end;
    }

    .hero-cta {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
}