/* ==========================================
   COMPASSCAST JOURNAL — ROUTES PAGE (page 2)
   ========================================== */

/* Общие настройки для второй страницы */

.ccr-main {
  padding-top: 88px; /* отступ под фиксированный хедер */
}

@media (max-width: 768px) {
  .ccr-main {
    padding-top: 72px;
  }
}

.ccr-section {
  padding-top: 64px;
}

.ccr-section:last-of-type {
  padding-bottom: 88px;
}

/* Базовые утилиты */

.ccr-hero__eyebrow,
.ccr-crossings__eyebrow,
.ccr-shelf__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-hero__eyebrow::before,
.ccr-crossings__eyebrow::before,
.ccr-shelf__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

/* ===============================
   1 СЕКЦИЯ — ОБЗОР МАРШРУТОВ
   =============================== */

.ccr-hero-section {
  padding-top: 40px;
}

.ccr-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: center;
}

.ccr-hero__content {
  position: relative;
  padding-right: 8px;
}

.ccr-hero__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.ccr-hero__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.84);
}

/* Пилюли-группы маршрутов */

.ccr-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.ccr-pill {
  border: 1px solid rgba(243, 235, 222, 0.26);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(12, 13, 19, 0.9);
  color: rgba(243, 235, 222, 0.9);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 12px;
  cursor: default;
  transition:
    background 0.2s ease-out,
    border-color 0.2s ease-out,
    transform 0.2s ease-out,
    box-shadow 0.2s ease-out;
}

.ccr-pill--shore {
  border-color: rgba(75, 184, 154, 0.8);
}

.ccr-pill--night {
  border-color: rgba(111, 143, 219, 0.8);
}

.ccr-pill--alt {
  border-color: rgba(243, 131, 63, 0.8);
}

.ccr-pill:hover {
  background: rgba(243, 235, 222, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.9);
}

.ccr-hero__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(243, 235, 222, 0.8);
}

/* Коллаж с маршрутами */

.ccr-hero__collage {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 12px;
  justify-items: center;
}

.ccr-hero__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 22px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.96);
  transform-origin: center;
  animation: ccr-card-float 16s ease-in-out infinite;
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-hero__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-hero__photo--map {
  grid-row: 1 / 2;
  transform: translateY(4px) rotate(-3deg);
}

.ccr-hero__photo--notebook {
  grid-row: 2 / 3;
  transform: translateX(-6px) rotate(3deg);
}

.ccr-hero__photo--boat {
  position: absolute;
  bottom: -10px;
  right: -10px;
  max-width: 180px;
  transform: rotate(-4deg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 1);
}

.ccr-hero__caption {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 9px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(7, 8, 12, 0.9);
  border: 1px solid rgba(243, 235, 222, 0.3);
  font-size: 11px;
  font-family: "Urbanist", system-ui, sans-serif;
  color: rgba(243, 235, 222, 0.92);
}

@keyframes ccr-card-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--ccr-card-tilt, 0deg));
  }
  50% {
    transform: translate3d(0, -6px, 0) rotate(calc(var(--ccr-card-tilt, 0deg) + 1.5deg));
  }
}

.ccr-hero__photo--map {
  --ccr-card-tilt: -3deg;
}

.ccr-hero__photo--notebook {
  --ccr-card-tilt: 3deg;
}

.ccr-hero__photo:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   2 СЕКЦИЯ — ПЕРЕСЕЧЕНИЯ МАРШРУТОВ
   =============================== */

.ccr-crossings-section {
  padding-top: 64px;
}

.ccr-crossings {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
}

/* Левая часть с картой */

.ccr-crossings__map {
  position: relative;
  min-height: 260px;
}

.ccr-crossings__line {
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px dashed rgba(243, 235, 222, 0.35);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.9);
  background: radial-gradient(circle at top left, rgba(75, 184, 154, 0.15), transparent 55%);
  animation: ccr-cross-pulse 10s ease-in-out infinite;
}

@keyframes ccr-cross-pulse {
  0% {
    box-shadow: 0 0 24px rgba(75, 184, 154, 0.6);
  }
  50% {
    box-shadow: 0 0 36px rgba(243, 131, 63, 0.7);
  }
  100% {
    box-shadow: 0 0 24px rgba(75, 184, 154, 0.6);
  }
}

.ccr-crossings__photo {
  position: absolute;
  width: 60%;
  max-width: 260px;
  border-radius: 20px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.96);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-crossings__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-crossings__photo--overlay {
  top: 2%;
  left: 4%;
  transform: rotate(-4deg);
}

.ccr-crossings__photo--boots {
  bottom: -4%;
  right: 0;
  transform: rotate(5deg);
}

.ccr-crossings__photo:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* Правая часть — текст */

.ccr-crossings__content {
  position: relative;
}

.ccr-crossings__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-crossings__text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.84);
}

.ccr-crossings__list {
  margin: 4px 0 0;
  padding: 0;
}

.ccr-crossings__row {
  margin-bottom: 8px;
}

.ccr-crossings__term {
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(243, 235, 222, 0.96);
}

.ccr-crossings__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(243, 235, 222, 0.8);
}

/* ===============================
   3 СЕКЦИЯ — ПОЛКА МАРШРУТОВ
   =============================== */

.ccr-shelf-section {
  padding-top: 64px;
}

.ccr-shelf {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: center;
}

/* Левая часть — текстовая полка */

.ccr-shelf__summary {
  position: relative;
  padding-right: 8px;
}

.ccr-shelf__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-shelf__text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.84);
}

.ccr-shelf__routes {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ccr-shelf__route {
  position: relative;
  padding: 7px 10px;
  border-radius: 16px;
  background: rgba(12, 13, 19, 0.96);
  border: 1px solid rgba(243, 235, 222, 0.18);
  overflow: hidden;
}

.ccr-shelf__route::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    rgba(75, 184, 154, 0.9),
    rgba(243, 131, 63, 0.9)
  );
  opacity: 0.8;
}

.ccr-shelf__route-name {
  display: block;
  margin-left: 8px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(243, 235, 222, 0.96);
}

.ccr-shelf__route-meta {
  display: block;
  margin-left: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(243, 235, 222, 0.8);
}

/* Правая часть — фото маршрутов */

.ccr-shelf__photos {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.ccr-shelf__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-shelf__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-shelf__caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 9px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(7, 8, 12, 0.92);
  border: 1px solid rgba(243, 235, 222, 0.3);
  font-size: 11px;
  font-family: "Urbanist", system-ui, sans-serif;
}

/* Лёгкий разброс карточек */

.ccr-shelf__photo--north {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-shelf__photo--loop {
  transform: translateY(-2px) rotate(2deg);
}

.ccr-shelf__photo--evening {
  transform: translateY(4px);
}

.ccr-shelf__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   АДАПТИВ 1–3 СЕКЦИЙ
   =============================== */

@media (max-width: 960px) {
  .ccr-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .ccr-hero__collage {
    margin-top: 10px;
    max-width: 360px;
    margin-inline: auto;
  }

  .ccr-crossings {
    grid-template-columns: minmax(0, 1fr);
  }

  .ccr-crossings__map {
    margin-bottom: 14px;
    max-width: 380px;
    margin-inline: auto;
  }

  .ccr-shelf {
    grid-template-columns: minmax(0, 1fr);
  }

  .ccr-shelf__photos {
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .ccr-hero-section {
    padding-top: 32px;
  }

  .ccr-hero__photo--boat {
    position: static;
    max-width: 220px;
    margin-top: 6px;
  }

  .ccr-crossings__photo {
    position: static;
    width: 100%;
    max-width: 320px;
    transform: none;
    margin-inline: auto;
    margin-bottom: 10px;
  }

  .ccr-crossings__line {
    inset: 12px;
  }

  .ccr-crossings__map {
    min-height: auto;
  }

  .ccr-shelf__photo--north,
  .ccr-shelf__photo--loop,
  .ccr-shelf__photo--evening,
  .ccr-hero__photo--map,
  .ccr-hero__photo--notebook {
    transform: none;
  }
}
/* ===============================
   ХЕДДЕР НА 2 СТРАНИЦЕ
   =============================== */

/* Базовая раскладка шапки */
body[data-page="routes"] .ccj-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}

body[data-page="routes"] .ccj-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Логотип */
body[data-page="routes"] .ccj-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(243, 235, 222, 0.96);
}

body[data-page="routes"] .ccj-logo__text {
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

/* Навигация — десктоп */
body[data-page="routes"] .ccj-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

body[data-page="routes"] .ccj-nav__link {
  text-decoration: none;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 14px;
  color: rgba(243, 235, 222, 0.8);
  position: relative;
  padding-bottom: 2px;
  transition:
    color 0.2s ease-out,
    opacity 0.2s ease-out;
}

body[data-page="routes"] .ccj-nav__link:hover {
  color: rgba(243, 235, 222, 1);
}

body[data-page="routes"] .ccj-nav__link--active {
  color: var(--ccj-accent-main, #f3833f);
}

/* Бургер-кнопка */
body[data-page="routes"] .ccj-nav__toggle {
  display: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

body[data-page="routes"] .ccj-nav__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.92);
}

/* Мобильная навигация */
@media (max-width: 768px) {
  body[data-page="routes"] .ccj-header__inner {
    height: 64px;
  }

  body[data-page="routes"] .ccj-nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  body[data-page="routes"] .ccj-nav__list {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 72px;
    padding: 12px 14px;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(7, 8, 12, 0.96);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease-out,
      transform 0.2s ease-out;
  }

  body[data-page="routes"] .ccj-header.ccj-header--nav-open .ccj-nav__list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
/* ===============================
   4 СЕКЦИЯ — ЛИНИЯ РАССВЕТА
   =============================== */

.ccr-dawn-section {
  padding-top: 64px;
}

.ccr-dawn {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.ccr-dawn__scale {
  position: relative;
  padding-right: 8px;
}

.ccr-dawn__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-dawn__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-dawn__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-dawn__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.84);
}

/* Вертикальная линия времени */

.ccr-dawn__timeline {
  position: relative;
  list-style: none;
  margin: 6px 0 0;
  padding: 0 0 0 20px;
}

.ccr-dawn__timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  border-radius: 999px;
  background-image: linear-gradient(
    to bottom,
    rgba(75, 184, 154, 0.85),
    rgba(243, 131, 63, 0.95)
  );
  box-shadow: 0 0 18px rgba(243, 131, 63, 0.7);
  animation: ccr-dawn-line 9s ease-in-out infinite;
}

@keyframes ccr-dawn-line {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

.ccr-dawn__step {
  position: relative;
  padding: 6px 0 6px 6px;
}

.ccr-dawn__step::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(243, 235, 222, 1);
  box-shadow: 0 0 18px rgba(243, 235, 222, 0.9);
}

.ccr-dawn__time {
  display: inline-block;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 235, 222, 0.8);
}

.ccr-dawn__label {
  display: block;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}

.ccr-dawn__note {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(243, 235, 222, 0.8);
}

/* Фото рассветного маршрута */

.ccr-dawn__photos {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.ccr-dawn__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-dawn__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-dawn__caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 9px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(7, 8, 12, 0.92);
  border: 1px solid rgba(243, 235, 222, 0.3);
  font-size: 11px;
  font-family: "Urbanist", system-ui, sans-serif;
}

.ccr-dawn__photo--trail {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-dawn__photo--boat {
  transform: translateY(-4px) rotate(3deg);
}

.ccr-dawn__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   5 СЕКЦИЯ — НОЧНЫЕ ПЕРЕХОДЫ
   =============================== */

.ccr-nightwalk-section {
  padding-top: 64px;
}

.ccr-nightwalk {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.ccr-nightwalk__card {
  position: relative;
  padding: 20px 22px 18px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #212334 0, #101219 60%, #07080c 100%);
  border: 1px solid rgba(243, 235, 222, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 1);
  overflow: hidden;
}

/* мягкое свечение лампы */
.ccr-nightwalk__card::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 235, 222, 0.3), transparent 60%);
  opacity: 0.9;
  mix-blend-mode: screen;
  animation: ccr-night-glow 10s ease-in-out infinite;
}

@keyframes ccr-night-glow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.ccr-nightwalk__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(7, 8, 12, 0.9);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-nightwalk__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-aux, #4bb89a);
}

.ccr-nightwalk__title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-nightwalk__text {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.86);
}

.ccr-nightwalk__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
}

.ccr-nightwalk__subtitle {
  margin: 0 0 4px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.ccr-nightwalk__column-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(243, 235, 222, 0.84);
}

/* чеклист */

.ccr-nightwalk__checklist {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(7, 8, 12, 0.94);
  border: 1px solid rgba(243, 235, 222, 0.2);
}

.ccr-nightwalk__list {
  margin: 4px 0 0 16px;
  padding: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(243, 235, 222, 0.84);
}

/* Фото ночных маршрутов */

.ccr-nightwalk__photos {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.ccr-nightwalk__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-nightwalk__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-nightwalk__photo--forest {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-nightwalk__photo--shore {
  transform: translateY(-4px) rotate(3deg);
}

.ccr-nightwalk__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   6 СЕКЦИЯ — МИКРО-МАРШРУТЫ
   =============================== */

.ccr-micro-section {
  padding-top: 64px;
}

.ccr-micro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: center;
}

.ccr-micro__panel {
  position: relative;
  padding-right: 8px;
}

.ccr-micro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.86);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-micro__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-micro__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-micro__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.84);
}

/* чипы микро-маршрутов */

.ccr-micro__chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ccr-micro__chip {
  padding: 8px 10px;
  border-radius: 18px;
  background: rgba(12, 13, 19, 0.96);
  border: 1px solid rgba(243, 235, 222, 0.2);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  position: relative;
}

.ccr-micro__chip::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 184, 154, 0.45), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.ccr-micro__chip-name {
  display: block;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}

.ccr-micro__chip-note {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(243, 235, 222, 0.84);
}

.ccr-micro__chip:hover::before {
  opacity: 1;
}

/* Фото микро-маршрутов */

.ccr-micro__photos {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.ccr-micro__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-micro__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-micro__photo--bridge {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-micro__photo--bend {
  transform: translateY(-4px) rotate(3deg);
}

.ccr-micro__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   АДАПТИВ ДЛЯ СЕКЦИЙ 4–6
   =============================== */

@media (max-width: 960px) {
  .ccr-dawn,
  .ccr-nightwalk,
  .ccr-micro {
    grid-template-columns: minmax(0, 1fr);
  }

  .ccr-dawn__photos,
  .ccr-nightwalk__photos,
  .ccr-micro__photos {
    max-width: 360px;
    margin-inline: auto;
  }

  .ccr-nightwalk__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .ccr-dawn__photo--trail,
  .ccr-dawn__photo--boat,
  .ccr-nightwalk__photo--forest,
  .ccr-nightwalk__photo--shore,
  .ccr-micro__photo--bridge,
  .ccr-micro__photo--bend {
    transform: none;
  }

  .ccr-nightwalk__card {
    padding: 18px 16px 16px;
  }

  .ccr-micro__panel {
    padding-right: 0;
  }
}
/* ===============================
   7 СЕКЦИЯ — ЛИНИИ ТЕЧЕНИЯ
   =============================== */

.ccr-current-section {
  padding-top: 64px;
}

.ccr-current {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 32px;
  align-items: center;
}

.ccr-current__content {
  padding-right: 8px;
}

.ccr-current__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-current__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-aux, #4bb89a);
}

.ccr-current__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-current__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.84);
}

/* полосы маршрутов по течению */

.ccr-current__list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ccr-current__route {
  position: relative;
  padding: 8px 10px;
  border-radius: 18px;
  background-size: 200% 100%;
  background-position: 0 0;
  border: 1px solid rgba(243, 235, 222, 0.2);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.9);
  animation: ccr-current-flow 16s linear infinite;
}

.ccr-current__route--soft {
  background-image: linear-gradient(
    90deg,
    rgba(75, 184, 154, 0.6),
    rgba(243, 235, 222, 0.08),
    rgba(75, 184, 154, 0.6)
  );
}

.ccr-current__route--mixed {
  background-image: linear-gradient(
    90deg,
    rgba(243, 131, 63, 0.5),
    rgba(243, 235, 222, 0.08),
    rgba(111, 143, 219, 0.5)
  );
}

.ccr-current__route--fast {
  background-image: linear-gradient(
    90deg,
    rgba(111, 143, 219, 0.6),
    rgba(243, 235, 222, 0.08),
    rgba(111, 143, 219, 0.6)
  );
}

@keyframes ccr-current-flow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.ccr-current__route-name {
  display: block;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(243, 235, 222, 0.96);
}

.ccr-current__route-meta {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(243, 235, 222, 0.9);
}

/* фото линий течения */

.ccr-current__visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.ccr-current__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-current__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-current__photo--aerial {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-current__photo--hand {
  transform: translateY(-4px) rotate(3deg);
}

.ccr-current__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   8 СЕКЦИЯ — ЛЕНТА КАРМАННЫХ СХЕМ
   =============================== */

.ccr-strip-section {
  padding-top: 64px;
}

.ccr-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.ccr-strip__text {
  padding-right: 8px;
}

.ccr-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-strip__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-strip__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-strip__text-main,
.ccr-strip__note {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.84);
}

/* горизонтальная лента карточек */

.ccr-strip__gallery {
  position: relative;
}

.ccr-strip__track {
  display: flex;
  gap: 10px;
  padding: 6px 4px 8px;
  border-radius: 20px;
  background: radial-gradient(circle at top, #222434 0, #101119 60%, #07080c 100%);
  border: 1px solid rgba(243, 235, 222, 0.14);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.ccr-strip__card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 16px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.96);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-strip__card img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-strip__caption {
  padding: 6px 8px;
  font-size: 11px;
  line-height: 1.5;
  font-family: "Urbanist", system-ui, sans-serif;
  color: rgba(243, 235, 222, 0.9);
}

.ccr-strip__card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   9 СЕКЦИЯ — РИТМ ОСТАНОВОК
   =============================== */

.ccr-stops-section {
  padding-top: 64px;
}

.ccr-stops {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: center;
}

.ccr-stops__panel {
  padding-right: 8px;
}

.ccr-stops__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-stops__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-stops__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-stops__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.84);
}

/* последовательность остановок */

.ccr-stops__sequence {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ccr-stops__item {
  position: relative;
  padding: 8px 10px 8px 12px;
  border-radius: 16px;
  background: rgba(12, 13, 19, 0.96);
  border: 1px solid rgba(243, 235, 222, 0.18);
  overflow: hidden;
}

.ccr-stops__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(
    to bottom,
    rgba(75, 184, 154, 0.9),
    rgba(243, 131, 63, 0.9)
  );
  opacity: 0.9;
}

/* визуальная длина "бара" */

.ccr-stops__item--rare {
  --ccr-bar-scale: 0.4;
}

.ccr-stops__item--steady {
  --ccr-bar-scale: 0.7;
}

.ccr-stops__item--dense {
  --ccr-bar-scale: 1;
}

.ccr-stops__item::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  height: 2px;
  width: calc(60% * var(--ccr-bar-scale, 1));
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.7);
  transform: translateY(-50%);
  opacity: 0.6;
}

.ccr-stops__label {
  display: block;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(243, 235, 222, 0.96);
}

.ccr-stops__meta {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(243, 235, 222, 0.9);
}

/* фото остановок */

.ccr-stops__photos {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.ccr-stops__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-stops__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-stops__photo--camp {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-stops__photo--notes {
  transform: translateY(-4px) rotate(3deg);
}

.ccr-stops__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   АДАПТИВ ДЛЯ СЕКЦИЙ 7–9
   =============================== */

@media (max-width: 960px) {
  .ccr-current,
  .ccr-strip,
  .ccr-stops {
    grid-template-columns: minmax(0, 1fr);
  }

  .ccr-current__visual,
  .ccr-strip__gallery,
  .ccr-stops__photos {
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .ccr-current__photo--aerial,
  .ccr-current__photo--hand,
  .ccr-stops__photo--camp,
  .ccr-stops__photo--notes {
    transform: none;
  }

  .ccr-strip__track {
    padding-inline: 6px;
  }

  .ccr-current__content,
  .ccr-strip__text,
  .ccr-stops__panel {
    padding-right: 0;
  }
}
/* ===============================
   10 СЕКЦИЯ — ОСТРОВА И ПЕРЕПРАВЫ
   =============================== */

.ccr-islands-section {
  padding-top: 64px;
}

.ccr-islands {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.ccr-islands__mapcard {
  position: relative;
  padding: 20px 22px 18px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #262a3a 0, #151722 55%, #101019 100%);
  border: 1px solid rgba(243, 235, 222, 0.14);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.96);
  overflow: hidden;
}

.ccr-islands__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.86);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-islands__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-islands__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-islands__text,
.ccr-islands__note {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.86);
}

/* узелковая схема островов */

.ccr-islands__nodes {
  position: relative;
  margin: 6px 0 8px;
  height: 150px;
}

.ccr-islands__node {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: rgba(12, 13, 19, 0.96);
  border: 1px solid rgba(243, 235, 222, 0.2);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(243, 235, 222, 0.9);
}

.ccr-islands__node--start {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ccr-islands__node--mid {
  left: 32%;
  top: 16%;
}

.ccr-islands__node--split {
  left: 32%;
  bottom: 10%;
}

.ccr-islands__node--end {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* соединительные линии */
.ccr-islands__nodes::before,
.ccr-islands__nodes::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(243, 235, 222, 0.5);
  opacity: 0.8;
  animation: ccr-islands-path 12s linear infinite;
}

.ccr-islands__nodes::before {
  left: 40px;
  right: 40px;
  top: 34px;
  bottom: 40px;
}

.ccr-islands__nodes::after {
  left: 40px;
  right: 40px;
  top: 72px;
  bottom: 2px;
}

@keyframes ccr-islands-path {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

/* фото островных участков */

.ccr-islands__photos {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  justify-items: center;
}

.ccr-islands__photo {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  background: #171b23;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-islands__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: 100%;
  object-fit: cover;
}

.ccr-islands__photo--delta {
  transform: translateX(8px);
}

.ccr-islands__photo--ford {
  transform: translateX(-8px);
}

.ccr-islands__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   11 СЕКЦИЯ — ЗАПАСНЫЕ МАРШРУТЫ
   =============================== */

.ccr-backup-section {
  padding-top: 64px;
}

.ccr-backup {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.ccr-backup__content {
  position: relative;
  padding-right: 8px;
}

.ccr-backup__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.86);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-backup__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-aux, #4bb89a);
}

.ccr-backup__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-backup__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.86);
}

/* сценарии ветровых маршрутов */

.ccr-backup__scenarios {
  position: relative;
  margin-top: 4px;
  padding-left: 10px;
  border-left: 2px dashed rgba(243, 235, 222, 0.4);
}

.ccr-backup__scenario {
  margin-bottom: 8px;
  padding-left: 4px;
}

.ccr-backup__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(12, 13, 19, 0.96);
  border: 1px solid rgba(243, 235, 222, 0.3);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ccr-backup__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-backup__scenario-text {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(243, 235, 222, 0.84);
}

/* фото ветреных/тихих участков */

.ccr-backup__photos {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.ccr-backup__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 22px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-backup__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

/* лёгкий градиент "предупреждение" */
.ccr-backup__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(243, 131, 63, 0.1),
    transparent 40%,
    transparent 60%,
    rgba(75, 184, 154, 0.12)
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ccr-backup__photo--open {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-backup__photo--bay {
  transform: translateY(-4px) rotate(3deg);
}

.ccr-backup__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   12 СЕКЦИЯ — ВОЗВРАТНЫЕ ЛИНИИ
   =============================== */

.ccr-return-section {
  padding-top: 64px;
}

.ccr-return {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.ccr-return__stats-card {
  position: relative;
  padding: 20px 22px 18px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #262838 0, #151722 55%, #101019 100%);
  border: 1px solid rgba(243, 235, 222, 0.14);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.96);
}

.ccr-return__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.86);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-return__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-return__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-return__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.86);
}

/* круговые индикаторы */

.ccr-return__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ccr-return__stat {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.ccr-return__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #07080c 0, #101019 55%, #181b24 100%),
    conic-gradient(
      from -90deg,
      rgba(243, 131, 63, 0.9) 0 var(--ccr-return-angle, 75deg),
      rgba(243, 235, 222, 0.15) var(--ccr-return-angle, 75deg) 360deg
    );
  position: relative;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
}

.ccr-return__circle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #151722 0, #07080c 80%);
}

.ccr-return__circle--short {
  --ccr-return-angle: 90deg;
}

.ccr-return__circle--equal {
  --ccr-return-angle: 180deg;
}

.ccr-return__circle--long {
  --ccr-return-angle: 260deg;
}

.ccr-return__stat-body {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(243, 235, 222, 0.86);
}

.ccr-return__stat-label {
  display: block;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.ccr-return__stat-meta {
  display: block;
  font-size: 12px;
}

/* фото возврата */

.ccr-return__photos {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.ccr-return__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-return__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-return__photo--road {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-return__photo--journal {
  transform: translateY(-4px) rotate(3deg);
}

.ccr-return__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   АДАПТИВ ДЛЯ СЕКЦИЙ 10–12
   =============================== */

@media (max-width: 960px) {
  .ccr-islands,
  .ccr-backup,
  .ccr-return {
    grid-template-columns: minmax(0, 1fr);
  }

  .ccr-islands__photos,
  .ccr-backup__photos,
  .ccr-return__photos {
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .ccr-islands__mapcard,
  .ccr-return__stats-card {
    padding: 18px 16px 16px;
  }

  .ccr-islands__nodes {
    height: 140px;
  }

  .ccr-islands__photo--delta,
  .ccr-islands__photo--ford,
  .ccr-backup__photo--open,
  .ccr-backup__photo--bay,
  .ccr-return__photo--road,
  .ccr-return__photo--journal {
    transform: none;
  }

  .ccr-backup__content {
    padding-right: 0;
  }
}
/* ===============================
   13 СЕКЦИЯ — ОДИН МАРШРУТ В ТРЁХ КАДРАХ
   =============================== */

.ccr-singleflow-section {
  padding-top: 64px;
}

.ccr-singleflow {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: stretch;
}

.ccr-singleflow__text {
  padding-right: 8px;
}

.ccr-singleflow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-singleflow__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-singleflow__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-singleflow__intro,
.ccr-singleflow__note {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.86);
}

.ccr-singleflow__rail-shell {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: 24px;
  background: radial-gradient(circle at top, #232536 0, #101119 60%, #07080c 100%);
  border: 1px solid rgba(243, 235, 222, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 1);
  overflow: hidden;
}

.ccr-singleflow__rail {
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background-image: linear-gradient(
    to bottom,
    rgba(75, 184, 154, 0.9),
    rgba(243, 131, 63, 0.9)
  );
  box-shadow: 0 0 22px rgba(243, 131, 63, 0.8);
  opacity: 0.85;
}

.ccr-singleflow__node {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.ccr-singleflow__node:last-child {
  margin-bottom: 0;
}

.ccr-singleflow__thumb {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.96);
}

.ccr-singleflow__thumb img {
  display: block;
  width: 100%;
  max-width: 350px;
  height: 100%;
  object-fit: cover;
}

.ccr-singleflow__caption {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(243, 235, 222, 0.9);
}

/* небольшие горизонтальные смещения узлов */

.ccr-singleflow__node--shore {
  transform: translateX(-10px);
}

.ccr-singleflow__node--turn {
  transform: translateX(4px);
}

.ccr-singleflow__node--note {
  transform: translateX(-4px);
}

/* ===============================
   14 СЕКЦИЯ — МАРШРУТЫ ЧЕРЕЗ ДЕРЕВНИ
   =============================== */

.ccr-village-section {
  padding-top: 64px;
}

.ccr-village {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.ccr-village__left {
  padding-right: 8px;
}

.ccr-village__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-village__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-village__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-village__text,
.ccr-village__note {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.86);
}

.ccr-village__villages {
  list-style: none;
  margin: 4px 0 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ccr-village__village {
  padding: 7px 10px;
  border-radius: 18px;
  background: rgba(12, 13, 19, 0.96);
  border: 1px solid rgba(243, 235, 222, 0.2);
}

.ccr-village__name {
  display: block;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(243, 235, 222, 0.96);
}

.ccr-village__meta {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(243, 235, 222, 0.86);
}

/* фото деревенских маршрутов */

.ccr-village__photos {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.ccr-village__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-village__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-village__photo--street {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-village__photo--bridge {
  transform: translateY(-4px) rotate(3deg);
}

.ccr-village__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   15 СЕКЦИЯ — ПОЛЯ НАВИГАЦИОННЫХ ЗАМЕТОК
   =============================== */

.ccr-notes-section {
  padding-top: 64px;
}

.ccr-notes {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.ccr-notes__legend {
  padding-right: 8px;
}

.ccr-notes__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-notes__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-aux, #4bb89a);
}

.ccr-notes__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-notes__text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.86);
}

.ccr-notes__items {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ccr-notes__item {
  padding: 7px 10px;
  border-radius: 16px;
  background: rgba(12, 13, 19, 0.96);
  border: 1px solid rgba(243, 235, 222, 0.18);
}

.ccr-notes__label {
  display: block;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(243, 235, 222, 0.96);
}

.ccr-notes__meta {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(243, 235, 222, 0.86);
}

/* фото с пометками */

.ccr-notes__photos {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.ccr-notes__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-notes__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-notes__photo--margins {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-notes__photo--compass {
  transform: translateY(-4px) rotate(3deg);
}

.ccr-notes__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   16 СЕКЦИЯ — УЗКИЕ ОКНА МАРШРУТОВ
   =============================== */

.ccr-window-section {
  padding-top: 64px;
}

.ccr-window__card {
  position: relative;
  padding: 20px 22px 18px;
  border-radius: 26px;
  background: radial-gradient(circle at top left, #262a3a 0, #151722 55%, #101019 100%);
  border: 1px solid rgba(243, 235, 222, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 1);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: center;
}

.ccr-window__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-window__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-window__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-window__text-main {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.86);
}

/* кадры-окна */

.ccr-window__frames {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  justify-items: center;
}

.ccr-window__frame {
  position: relative;
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-window__frame img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: auto;
  object-fit: cover;
}

.ccr-window__frame--map {
  transform: translateY(4px) rotate(-2deg);
}

.ccr-window__frame--view {
  transform: translateY(-4px) rotate(3deg);
}

.ccr-window__frame:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   17 СЕКЦИЯ — ЗАКРЫТИЕ СТРАНИЦЫ МАРШРУТОВ
   =============================== */

.ccr-outro-section {
  padding-top: 64px;
  padding-bottom: 88px;
}

.ccr-outro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.ccr-outro__body {
  padding-right: 8px;
}

.ccr-outro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 235, 222, 0.06);
  color: rgba(243, 235, 222, 0.84);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ccr-outro__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ccj-accent-main, #f3833f);
}

.ccr-outro__title {
  margin: 0 0 10px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.ccr-outro__text,
.ccr-outro__note {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 235, 222, 0.86);
}

/* фото финала маршрута */

.ccr-outro__photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.ccr-outro__photo {
  position: relative;
  width: 100%;
  max-width: 260px;
  border-radius: 999px;
  background: #171b23;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.ccr-outro__photo img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: 100%;
  object-fit: cover;
}

.ccr-outro__photo--trunk {
  transform: translateX(-6px);
}

.ccr-outro__photo--roadline {
  transform: translateX(6px);
}

.ccr-outro__photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 1);
  filter: saturate(1.06);
}

/* ===============================
   АДАПТИВ ДЛЯ СЕКЦИЙ 13–17
   =============================== */

@media (max-width: 960px) {
  .ccr-singleflow,
  .ccr-village,
  .ccr-notes,
  .ccr-outro {
    grid-template-columns: minmax(0, 1fr);
  }

  .ccr-window__card {
    grid-template-columns: minmax(0, 1fr);
  }

  .ccr-singleflow__rail-shell,
  .ccr-village__photos,
  .ccr-notes__photos,
  .ccr-window__frames,
  .ccr-outro__photos {
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .ccr-singleflow__text,
  .ccr-village__left,
  .ccr-notes__legend,
  .ccr-outro__body {
    padding-right: 0;
  }

  .ccr-window__card {
    padding: 18px 16px 16px;
  }

  .ccr-singleflow__node--shore,
  .ccr-singleflow__node--turn,
  .ccr-singleflow__node--note,
  .ccr-village__photo--street,
  .ccr-village__photo--bridge,
  .ccr-notes__photo--margins,
  .ccr-notes__photo--compass,
  .ccr-window__frame--map,
  .ccr-window__frame--view,
  .ccr-outro__photo--trunk,
  .ccr-outro__photo--roadline {
    transform: none;
  }

  .ccr-singleflow__rail {
    left: 12px;
    transform: none;
  }

  .ccr-singleflow__node {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .ccr-singleflow__thumb {
    width: 64px;
    height: 64px;
  }

  .ccr-outro__photos {
    flex-direction: row;
    justify-content: center;
  }

  .ccr-outro__photo {
    max-width: 180px;
  }
}
