/* ═══════════════════════════════════════
   Season Calendar — .ct2
   ═══════════════════════════════════════ */

.ct2__inner {
    max-width: 1160px;
    margin: 0 auto;
}

/* ── Banner ── */
.ct2__banner {
    background: #111214;
    padding: 25px 24px 11px;
}

.ct2__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #FF6A00;
    margin-bottom: 16px;
}

.ct2__h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #EDE3D5;
    margin: 0 0 16px;
}

/* ── Body ── */
.ct2__body {
    background: white;;
    padding: 52px 24px 96px;
}

.ct2__intro-wrap {
    max-width: 1160px;
    margin: 0 auto 40px;
    padding: 0 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ct2__intro-accent {
    flex-shrink: 0;
    width: 3px;
    align-self: stretch;
    background: #FF6A00;
    border-radius: 2px;
    min-height: 60px;
}

.ct2__intro-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct2__intro {
    font-size: 16px;
    color: rgba(17,18,20,.55);
    line-height: 1.7;
    margin: 0;
}

.ct2__intro strong {
    color: #111214;
    font-weight: 700;
}

/* ── Calendar card ── */
.ct2__cal {
    border: 1px solid rgba(17,18,20,.12);
    border-radius: 16px;
    overflow: hidden;
}

/* ── Season grid ── */
.ct2__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ct2__season {
    padding: 28px 22px 32px;
    border-right: 1px solid rgba(17,18,20,.08);
    transition: background .25s;
    cursor: default;
}

.ct2__season:last-child { border-right: none; }

@media (hover: hover) {
    .ct2__season:hover { background: rgba(17,18,20,.025); }
    .ct2__season:hover .ct2__dest {
        border-color: var(--sc-border);
        background: var(--sc-bg);
    }
    .ct2__dest:hover {
        border-color: var(--sc-accent) !important;
        background: var(--sc-bg) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,.06);
    }
    .ct2__dest:hover::after { opacity: 1; }
}

/* Season top wrapper — transparent block on desktop */
.ct2__season-top { display: block; }
.ct2__season-chevron { display: none; }
.ct2__season-meta { display: block; }

/* ── Season icon ── */
.ct2__season-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: var(--sc-light);
    color: var(--sc);
}

.ct2__season-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* ── Season name & period ── */
.ct2__season-name {
    font-size: 21px;
    font-weight: 800;
    color: #111214;
    letter-spacing: -.03em;
    margin: 0 0 8px;
    line-height: 1;
}

.ct2__season-period {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 100px;
    margin-bottom: 22px;
    background: var(--sc-light);
    color: var(--sc);
}

/* ── Destination cards ── */
.ct2__dests {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct2__dest {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(17,18,20,.1);
    border-radius: 9px;
    padding: 13px 14px;
    cursor: pointer;
    position: relative;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.ct2__dest:active { box-shadow: none; }

.ct2__dest::after {
    content: '↗';
    position: absolute;
    top: 11px;
    right: 12px;
    font-size: 11px;
    color: var(--sc, rgba(17,18,20,.3));
    opacity: 0;
    transition: opacity .15s;
}

.ct2__dest-continent {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 3px;
    padding-right: 18px;
    color: var(--sc);
}

.ct2__dest-region {
    font-size: 13px;
    font-weight: 500;
    color: rgba(17,18,20,.65);
    margin: 0 0 10px;
    line-height: 1.35;
}

.ct2__dest-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.ct2__dest-temp {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(17,18,20,.07);
    color: rgba(17,18,20,.5);
    white-space: nowrap;
}

.ct2__dest-note {
    font-size: 10px;
    color: rgba(17,18,20,.4);
    line-height: 1.4;
}

/* ═══════════════════════════════════════
   Tablet ≤ 900px
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
    .ct2__grid { grid-template-columns: repeat(2, 1fr); }
    .ct2__season:nth-child(2) { border-right: none; }
    .ct2__season:nth-child(3),
    .ct2__season:nth-child(4) { border-top: 1px solid rgba(17,18,20,.08); }
}

/* ═══════════════════════════════════════
   Mobile ≤ 540px
   ═══════════════════════════════════════ */
@media (max-width: 540px) {

    /* Banner */
    .ct2__banner { padding: 56px 20px 24px; }
    .ct2__h2 { font-size: 22px; margin-bottom: 8px; }

    /* Body */
    .ct2__body { padding: 28px 16px 52px; }

    .ct2__intro-wrap {
        padding: 0;
        margin-bottom: 24px;
        gap: 14px;
    }

    .ct2__intro-accent { min-height: 48px; }

    .ct2__intro { font-size: 14px; line-height: 1.65; }

    /* Calendar shell */
    .ct2__cal { border-radius: 14px; }

    /* Grid → flex column for accordion */
    .ct2__grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
    }

    /* ── Accordion season item ── */
    .ct2__season {
        border-right: none !important;
        border-top: 1px solid rgba(17,18,20,.08) !important;
        padding: 0;
        overflow: hidden;
        cursor: pointer;
    }

    .ct2__season:last-child { border-right: none; border-bottom: none; }
    .ct2__season:first-child { border-top: none !important; }

    /* ── Accordion header row ── */
    .ct2__season-top {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 16px;
        min-height: 60px;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        transition: background .2s;
    }

    .ct2__season.is-open > .ct2__season-top {
        background: var(--sc-light);
    }

    /* Icon: flush left, no bottom gap */
    .ct2__season-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .ct2__season-icon svg { width: 16px; height: 16px; }

    /* Name + period inline */
    .ct2__season-meta {
        display: flex;
        align-items: center;
        flex: 1;
        gap: 10px;
        min-width: 0;
        overflow: hidden;
    }

    .ct2__season-name {
        font-size: 16px;
        margin: 0;
        white-space: nowrap;
        letter-spacing: -.02em;
    }

    .ct2__season-period {
        font-size: 9px;
        padding: 3px 8px;
        margin-bottom: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Chevron */
    .ct2__season-chevron {
        display: block;
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        color: rgba(17,18,20,.35);
        transition: transform .25s ease, color .2s;
    }

    .ct2__season.is-open > .ct2__season-top .ct2__season-chevron {
        transform: rotate(180deg);
        color: var(--sc);
    }

    /* ── Collapsible destinations ── */
    .ct2__dests {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        gap: 0;
        padding: 0 16px;
        transition: max-height .32s ease, padding .32s ease, gap .32s ease;
    }

    .ct2__season.is-open > .ct2__dests {
        max-height: 600px;
        gap: 9px;
        padding: 10px 16px 20px;
    }

    /* ── Destination card — mobile redesign ── */
    .ct2__dest {
        border: none;
        border-left: 3px solid var(--sc);
        border-radius: 0 10px 10px 0;
        padding: 13px 48px 13px 14px;
        background: #fff;
        box-shadow: 0 1px 0 rgba(17,18,20,.06), 0 2px 8px rgba(17,18,20,.07);
        transition: background .15s, box-shadow .15s;
    }

    /* Arrow button — always visible, season-coloured circle */
    .ct2__dest::after {
        display: block;
        content: '\2192';
        position: absolute;
        right: 11px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        line-height: 28px;
        text-align: center;
        border-radius: 50%;
        background: var(--sc-light);
        color: var(--sc);
        font-size: 15px;
        font-weight: 700;
        opacity: 1;
        transition: background .15s, color .15s;
    }

    /* Press feedback */
    .ct2__dest:active {
        background: var(--sc-light) !important;
        box-shadow: none !important;
    }

    .ct2__dest:active::after {
        background: var(--sc);
        color: #fff;
    }

    .ct2__dest-continent {
        font-size: 9.5px;
        margin-bottom: 4px;
    }

    .ct2__dest-region {
        font-size: 13px;
        font-weight: 600;
        color: #111214;
        margin-bottom: 7px;
    }

    .ct2__dest-meta { gap: 6px; }

    .ct2__dest-temp {
        font-size: 10px;
        background: rgba(17,18,20,.06);
    }

    .ct2__dest-note { font-size: 10px; }
}
