/* ==========================================================================
   Why Book with Overcross
   ========================================================================== */

.cp-why {
    background: #faf8f5;
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Thin top accent line */
.cp-why::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #FF6A00;
}


.cp-why__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 56px;
    position: relative;
    z-index: 1;
}

/* ── Two-column grid ─────────────────────────────────────────────── */
.cp-why__body {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 88px;
    align-items: start;
}

/* ── Eyebrow ─────────────────────────────────────────────────────── */
.cp-why__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #FF6A00;
    margin-bottom: 22px;
}

.cp-why__eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #FF6A00;
    flex-shrink: 0;
}

/* ── H2 ──────────────────────────────────────────────────────────── */
.cp-why__h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111214;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 32px;
}

/* ── Stats row ───────────────────────────────────────────────────── */
.cp-why__stats {
    display: flex;
    gap: 32px;
    margin-bottom: 0;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #e6e1da;
}

.cp-why__stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cp-why__stat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111214;
    line-height: 1;
    letter-spacing: -0.01em;
}

.cp-why__stat-lbl {
    font-size: 0.72rem;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 0.02em;
}

/* ── Lead paragraph ──────────────────────────────────────────────── */
.cp-why__lead {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111214;
    line-height: 1.7;
    padding-left: 18px;
    border-left: 3px solid #FF6A00;
    margin: 0 0 22px;
}

/* ── Body text ───────────────────────────────────────────────────── */
.cp-why__text {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #666;
    margin: 0 0 44px;
}

/* ── Trust badges ────────────────────────────────────────────────── */
.cp-why__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.cp-why__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border: 1.5px solid #111214;
    border-radius: 2px;
    background: transparent;
    cursor: default;
}

.cp-why__badge-icon {
    color: #111214;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cp-why__badge-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #111214;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Image collage ───────────────────────────────────────────────── */
.cp-why__photos {
    position: relative;
    padding-bottom: 100px;
    padding-right: 28px;
    align-self: start;
    margin-top: 8px;
}

/* Corner frame decorative border */
.cp-why__frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-top: 2px solid #ddd9d1;
    border-left: 2px solid #ddd9d1;
    pointer-events: none;
    z-index: 0;
}

/* Main image */
.cp-why__img-wrap--main {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    background: #e0dbd4;
    z-index: 1;
    box-shadow: 0 20px 56px rgba(17, 18, 20, 0.12);
}

/* Label on main image */
.cp-why__year-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(17, 18, 20, 0.72);
    backdrop-filter: blur(6px);
    color: #EDE3D5;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 6px 12px 5px;
    border-radius: 2px;
    z-index: 2;
    line-height: 1;
}

/* Secondary image: overlaps, rotated, clean shadow */
.cp-why__img-wrap--secondary {
    position: absolute;
    bottom: 0;
    right: -28px;
    width: 62%;
    aspect-ratio: 4 / 3;
    z-index: 3;
    border-radius: 8px;
    overflow: hidden;
    background: #e0dbd4;
    transform: rotate(-2deg);
    box-shadow: 0 16px 48px rgba(17, 18, 20, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cp-why__img-wrap--secondary:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 24px 60px rgba(17, 18, 20, 0.22);
}

.cp-why__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cp-why__img-wrap--main:hover .cp-why__img {
    transform: scale(1.04);
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .cp-why__body {
        grid-template-columns: 1fr 380px;
        gap: 64px;
    }

    .cp-why__h2-line--continent {
        font-size: 4.4rem;
    }
}

@media (max-width: 900px) {
    .cp-why {
        padding: 72px 0 64px;
    }

    .cp-why__inner {
        padding: 0 32px;
    }

    .cp-why__body {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .cp-why__photos {
        padding-bottom: 0;
        padding-right: 0;
        display: flex;
        gap: 16px;
        align-items: stretch;
    }

    .cp-why__frame { display: none; }

    .cp-why__img-wrap--main {
        flex: 1;
        aspect-ratio: 4 / 3;
    }

    .cp-why__img-wrap--secondary {
        position: static;
        flex: 1;
        width: auto;
        aspect-ratio: 4 / 3;
        transform: none;
        border-radius: 8px;
    }

    .cp-why__img-wrap--secondary:hover {
        transform: none;
    }

    .cp-why__h2-line--continent {
        font-size: 3.8rem;
    }
}

@media (max-width: 600px) {
    .cp-why {
        padding: 56px 0 48px;
    }

    .cp-why__inner {
        padding: 0 20px;
    }

    .cp-why__h2-line--continent {
        font-size: 3rem;
    }

    .cp-why__photos {
        flex-direction: column;
    }

    .cp-why__bg-word {
        font-size: 40vw;
    }
}

/* ── CTA strip ───────────────────────────────────────────────────── */
.cp-why__reasons {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(17, 18, 20, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cp-why__reasons-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #FF6A00;
}

.cp-why__reasons-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #FF6A00;
    flex-shrink: 0;
}

.cp-why__reasons-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF6A00;
    color: #111214;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, gap 0.2s ease;
}

.cp-why__reasons-cta::after {
    content: '→';
    font-size: 13px;
    transition: transform 0.2s ease;
}

.cp-why__reasons-cta:hover {
    background: #e05e00;
    gap: 14px;
}

.cp-why__reasons-cta:hover::after {
    transform: translateX(3px);
}

@media (max-width: 600px) {
    .cp-why__reasons {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 40px;
        padding-top: 32px;
    }
}
