/* =========================================================
   Quinta para Quedarse un Fin de Semana – landing styles
   Companion to luxury-estate.css + pool-weekend.css (same
   design line). Adds only what the shared system lacks:
   experience trio, reason cards grid and the day-flow timeline.
   ========================================================= */

/* ── Experience trio (Descanso / Convivencia / Diversión) ─ */
.qw-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 2rem;
}

/* ── Reason cards (¿Por qué una quinta?) ────────────────── */
.qw-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    margin-top: 2rem;
}

/* ── Day-flow timeline (Plan de estancia) ───────────────── */
.qw-timeline {
    position: relative;
    margin-top: 2.25rem;
    padding-left: 4px;
}
.qw-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, #c19b76 0%, #e7d8c8 100%);
}
.qw-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding-bottom: 26px;
}
.qw-timeline-item:last-child {
    padding-bottom: 0;
}
.qw-timeline-marker {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #c19b76;
    color: #c19b76;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-shadow: 0 4px 12px rgba(193, 155, 118, .18);
            box-shadow: 0 4px 12px rgba(193, 155, 118, .18);
}
.qw-timeline-body {
    padding-top: 2px;
}
.qw-timeline-when {
    font-family: 'Jost', sans-serif;
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #c19b76;
    display: block;
    margin-bottom: 5px;
}
.qw-timeline-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2a27;
    margin: 0 0 6px;
}
.qw-timeline-body p {
    font-family: 'Jost', sans-serif;
    font-size: .95rem;
    color: #6b6459;
    line-height: 1.6;
    margin: 0;
}

/* ── Cross-sell eyebrow on the dark band ────────────────── */
.le-crosssell .le-crosssell-eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #c19b76;
    margin-bottom: 16px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .qw-trio {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575px) {
    .qw-reasons {
        grid-template-columns: 1fr;
    }
    .qw-timeline-item {
        gap: 14px;
        grid-template-columns: 34px 1fr;
    }
    .qw-timeline::before {
        left: 16px;
    }
    .qw-timeline-marker {
        width: 34px;
        height: 34px;
        font-size: .9rem;
    }
}
