/* --------------------------------------------------------------------------
   section_banner_home: full-bleed intro image, copy and first reservation CTA
   -------------------------------------------------------------------------- */
.section_banner_home { position: relative; display: grid; min-height: min(790px, 100vh); overflow: hidden; color: #fff; background: #03070d; isolation: isolate; }
.section_banner_home__background { position: absolute; z-index: -2; inset: 0; background: url('../../images/orbita-hero.png') 68% center / cover no-repeat; transform: scale(1.005); animation: hero-breathe 15s ease-in-out infinite alternate; }
.section_banner_home__veil { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(2, 6, 12, .96) 0%, rgba(3, 8, 15, .76) 35%, rgba(3, 8, 15, .2) 73%, rgba(3, 8, 15, .32) 100%), linear-gradient(0deg, rgba(0, 1, 4, .45), transparent 37%); }
.section_banner_home__content { align-self: center; padding: 170px 0 100px; }
.section_banner_home h1 { max-width: 640px; font-family: var(--font-display); font-size: clamp(45px, 6.2vw, 82px); font-weight: 700; letter-spacing: .015em; line-height: 1.07; text-shadow: 0 2px 18px rgba(0, 0, 0, .38); }
.section_banner_home h1 span { display: block; color: var(--color-gold); }
.section_banner_home__lead { max-width: 490px; margin-top: 22px; color: #e4eff8; font-size: clamp(18px, 2vw, 22px); line-height: 1.25; }
.section_banner_home__actions { margin-top: 30px; }
@keyframes hero-breathe { to { transform: scale(1.045); } }

/* --------------------------------------------------------------------------
   Three short highlight cards (cena de tres tiempos / experiencia inmersiva /
   eventos inolvidables). Only Home renders this grid — the shared cream
   background and heading it sits in come from components/concept-section.css.
   -------------------------------------------------------------------------- */
.section_concept_home { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 100px 0; background: url('../../images/concept-hero.jpg') center center / cover no-repeat; }
.section_concept_home__constellation { display: none; }
.section_concept_home__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(35px, 5vw, 55px); }
.experience-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 276px; overflow: hidden; padding: 20px; color: #fff; background-color: #061321; border: 1px solid rgba(26, 167, 246, .95); border-radius: 13px; box-shadow: 0 8px 18px rgba(0, 48, 77, .12); isolation: isolate; transition: transform .25s ease, box-shadow .25s ease; }
.experience-card:hover { transform: translateY(-7px); box-shadow: 0 17px 30px rgba(0, 71, 111, .24); }
.experience-card::after { position: absolute; z-index: -1; content: ''; inset: 0; background: linear-gradient(180deg, rgba(1, 6, 14, .08), rgba(1, 5, 10, .95) 83%); }
.experience-card__icon { position: relative; z-index: 1; overflow: hidden; display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: auto; color: var(--color-gold); border: 1px solid rgba(255, 184, 63, .75); border-radius: 50%; font-size: 20px; background: rgba(4, 10, 18, .55); }
.experience-card h3 { position: relative; color: var(--color-gold); font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.experience-card p { position: relative; margin-top: 5px; font-size: 15px; line-height: 1.22; }

/* Reflow page-specific grids while preserving hierarchy at medium widths. */
@media (max-width: 850px) {
    .section_banner_home { min-height: 690px; }
    .section_banner_home__background { background-position: 63% center; }
    .section_concept_home__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
    .experience-card { min-height: 250px; padding: 16px; }
    .experience-card h3 { font-size: 11px; }
    .experience-card p { font-size: 14px; }
}

/* Prioritize readable copy and touch targets on narrow mobile screens. */
@media (max-width: 600px) {
    .section_banner_home { min-height: 680px; }
    .section_banner_home__background { background-position: 66% center; }
    .section_banner_home__veil { background: linear-gradient(90deg, rgba(2, 6, 12, .96) 0%, rgba(3, 8, 15, .77) 75%, rgba(3, 8, 15, .62) 100%), linear-gradient(0deg, rgba(0, 1, 4, .53), transparent 44%); }
    .section_banner_home__content { padding: 140px 0 85px; }
    .section_banner_home h1 { font-size: clamp(39px, 12vw, 54px); }
    .section_banner_home__lead { max-width: 350px; font-size: 18px; }
    .section-heading > p:last-child { font-size: 16px; }
    .section_concept_home__cards { grid-template-columns: 1fr; }
    .experience-card { min-height: 220px; }
    .experience-card h3 { font-size: 12px; }
}
