/* ============================================
   ITINERARY V3 — Day-by-day accordion with
   photo → description → photo → description → photo
   ============================================ */

.itinerary-v3 {
    padding: 100px 0 120px;
    background: #0a0a0a;
    position: relative;
}

.itinerary-v3::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,160,90,0.3), transparent);
}

.itin-header {
    text-align: center;
    margin-bottom: 64px;
    padding: 0 24px;
}

.itin-header h2 {
    font-family: var(--ff-display);
    font-size: clamp(32px, 4vw, 44px);
    margin: 12px 0 16px;
    color: #f0ebe0;
}

.itin-header h2 em {
    font-style: italic;
    color: #c01b1b;
}

.itin-subtitle {
    color: rgba(240,235,224,0.5);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ---- Day container ---- */
.itin-days {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Individual Day ---- */
.itin-day {
    border-bottom: 1px solid rgba(196,160,90,0.15);
}

.itin-day:first-child {
    border-top: 1px solid rgba(196,160,90,0.15);
}

/* ---- Trigger button ---- */
.itin-day-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 8px;
    text-align: left;
    transition: background 0.2s;
}

.itin-day-trigger:hover {
    background: rgba(196,160,90,0.04);
}

.itin-day-num {
    font-family: 'Cormorant', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c01b1b;
    min-width: 68px;
    flex-shrink: 0;
}

.itin-day-name {
    font-family: 'Cormorant', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #f0ebe0;
    flex: 1;
    letter-spacing: 0.02em;
}

.itin-chevron {
    width: 18px;
    height: 18px;
    color: rgba(196,160,90,0.6);
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.itin-day.active .itin-chevron {
    transform: rotate(180deg);
}

/* ---- Panel ---- */
.itin-day-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1);
}

.itin-day.active .itin-day-panel {
    max-height: 9999px;
}

/* ---- Photo blocks ---- */
.itin-photo-block {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.itin-photo-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.itin-photo-block:hover img {
    transform: scale(1.03);
}

/* ---- Description blocks ---- */
.itin-desc-block {
    padding: 48px 32px;
    position: relative;
}

.itin-desc-journey {
    background: #0f0f0f;
}

.itin-desc-lodge {
    background: #111008;
}

.itin-desc-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.itin-desc-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4a05a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(196,160,90,0.3);
}

.itin-desc-inner p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(240,235,224,0.75);
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .itin-day-trigger {
        padding: 18px 4px;
        gap: 12px;
    }

    .itin-day-num {
        min-width: 54px;
        font-size: 0.7rem;
    }

    .itin-day-name {
        font-size: 1rem;
    }

    .itin-desc-block {
        padding: 36px 20px;
    }

    .itin-photo-block {
        aspect-ratio: 4 / 3;
    }
}
