/* ────────────────────────────────────────────────────────
   home.css — STLArgentina home page
   ──────────────────────────────────────────────────────── */

/* ── Hero ── */
.home-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: var(--radius-xl, 16px);
    margin-bottom: var(--space-xl, 2.5rem);
    background: var(--surface);
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(11, 16, 32, 0.93) 0%,
        rgba(11, 16, 32, 0.70) 50%,
        rgba(11, 16, 32, 0.30) 100%
    );
}

.home-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2.5rem;
    width: 100%;
}

/* ── Hero copy ── */
.home-hero-copy {
    flex: 1;
    min-width: 0;
}

.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--accent, #22D3EE);
    margin-bottom: 1rem;
}

.home-hero-kicker i {
    width: 14px;
    height: 14px;
}

.home-hero-copy h1 {
    font-size: clamp(1.9rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.home-hero-copy p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 460px;
    margin: 0 0 1.75rem;
    line-height: 1.6;
}

.home-hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ── Hero rail ── */
.home-hero-rail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 260px;
    flex-shrink: 0;
}

/* ── Home sections: reset any CakePHP skeleton interference ── */
.mk-home-page body,
.mk-home-page header,
.mk-home-page img {
    padding: 0;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .home-hero-rail {
        display: none;
    }
}

@media (max-width: 640px) {
    .home-hero {
        min-height: 420px;
        border-radius: var(--radius-lg, 12px);
    }

    .home-hero-content {
        padding: 2rem 1.25rem;
    }

    .home-hero-copy h1 {
        font-size: 1.75rem;
    }

    .home-hero-copy p {
        font-size: 0.95rem;
    }

    .home-hero-ctas {
        flex-direction: column;
        gap: 0.5rem;
    }

    .home-hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .mk-home-how {
        display: none;
    }
}
