/* ============================================
   SUP EXCURSION — экскурсии на сапах
   ============================================ */

.exc-hero {
    background-image: linear-gradient(rgba(10, 21, 48, 0.45), rgba(10, 21, 48, 0.6)), url('photos/sup/hero-group.jpg');
    background-size: cover;
    background-position: center 60%;
}

/* Острова — карты */
.islands {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.island-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 28px;
    border-top: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.island-card__type {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--terra);
    font-weight: 700;
    margin-bottom: 8px;
}

.island-card__name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.island-card__desc {
    font-size: 14px;
    color: rgba(26, 42, 74, 0.8);
    line-height: 1.65;
}

.island-card__secret {
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(184, 89, 58, 0.08);
    border-radius: 6px;
    font-size: 12px;
    color: var(--terra);
    font-style: italic;
}

/* Ледниковое озеро — factsheet */
.factsheet {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.fact {
    background: var(--cream);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid var(--terra);
}

.fact__value {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.fact__label {
    font-size: 13px;
    color: rgba(26, 42, 74, 0.7);
    line-height: 1.4;
}

/* Исторический блок — timeline */
.history-tl {
    position: relative;
    max-width: 800px;
    margin: 32px auto 0;
    padding-left: 80px;
}

.history-tl::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.history-event {
    position: relative;
    padding-bottom: 32px;
}

.history-event__year {
    position: absolute;
    left: -80px;
    top: 0;
    width: 64px;
    text-align: right;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 800;
    color: var(--terra);
    background: var(--cream);
    padding: 4px 8px;
    border-radius: 4px;
}

.history-event__dot {
    position: absolute;
    left: -22px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--gold);
}

.history-event__title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.history-event__desc {
    font-size: 14px;
    color: rgba(26, 42, 74, 0.8);
    line-height: 1.7;
}

/* Кто ведёт экскурсию — две колонки */
.leader {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    margin-top: 32px;
}

.leader-photo {
    background: var(--soft);
    border-radius: 16px;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-spec {
    background: var(--cream);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 20px;
}

.leader-spec h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
}

.leader-spec p {
    font-size: 14px;
    color: rgba(26, 42, 74, 0.8);
    line-height: 1.65;
}

/* Формат — простой блок */
.format {
    background: rgba(20, 33, 61, 0.04);
    border-radius: 16px;
    padding: 32px 36px;
    margin-top: 32px;
}

.format h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 16px;
}

.format-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.format-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.6;
    border-bottom: 1px dashed rgba(20, 33, 61, 0.1);
}

.format-list li::before {
    content: '→';
    position: absolute;
    left: 4px;
    color: var(--terra);
    font-weight: 700;
}

.format-list li:last-child {
    border-bottom: none;
}

/* Образование */
.edu-block {
    background: linear-gradient(135deg, rgba(20, 33, 61, 0.06) 0%, rgba(20, 33, 61, 0.02) 100%);
    border-left: 4px solid var(--terra);
    border-radius: 0 16px 16px 0;
    padding: 32px 40px;
    margin-top: 32px;
}

.edu-block h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}

.edu-block p {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* CTA */
.cta-soft {
    background: var(--cream);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 32px;
    border: 1px dashed var(--terra);
}

.cta-soft h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 12px;
}

.cta-soft p {
    font-size: 15px;
    color: var(--ink);
    opacity: 0.85;
    margin-bottom: 20px;
}

.cta-soft .hero__cta {
    display: inline-block;
    background: var(--terra);
    color: var(--cream);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .islands { grid-template-columns: repeat(2, 1fr); }
    .factsheet { grid-template-columns: repeat(2, 1fr); }
    .leader { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .islands { grid-template-columns: 1fr; }
    .factsheet { grid-template-columns: 1fr 1fr; }
    .history-tl { padding-left: 48px; }
    .history-event__year { left: -56px; width: 48px; font-size: 12px; }
}
