/* =========================================================
   ВОЗДУХ 9
   Палитра по голубой афише, без клетки.
   Основная типографика — мягкий Montserrat.
   Старый логотип возвращён.
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  /* Палитра по приложенной афише */
  --bg:       #A8D4DF;
  --bg-2:     #CBE5EA;

  --forest:   #111719;
  --forest-2: #233237;

  --stone:    #4E6268;

  --lime:     #FBC502;
  --coral:    #FF5A1F;

  --cream:    #FFF8EC;
  --white:    #FFFFFF;

  --line: rgba(17, 23, 25, .16);

  /* Весь сайт — спокойный Montserrat */
  --display: "Montserrat", system-ui, sans-serif;
  --body: "Montserrat", system-ui, -apple-system, sans-serif;

  --wrap: 1240px;
  --pad: clamp(1.15rem, 5vw, 4rem);
}


/* =========================================================
   БАЗА
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;

  /* ВАЖНО: просто голубой фон, никаких клеток */
  background: var(--bg);
  color: var(--forest);

  font-family: var(--body);
  font-size: clamp(1rem, .95rem + .2vw, 1.06rem);
  font-weight: 400;
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}


/* =========================================================
   ВСПОМОГАТЕЛЬНОЕ
   ========================================================= */

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;

  background: var(--forest);
  color: var(--cream);

  padding: .7rem 1rem;
  border-radius: 10px;
}

.tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;

  color: var(--stone);

  margin: 0 0 1.2rem;
}

.tag--light {
  color: var(--lime);
}

.link {
  display: inline-block;

  font-weight: 600;
  font-size: .93rem;
  text-decoration: none;

  border-bottom: 2px solid var(--coral);
  padding-bottom: 2px;
}

.link:hover {
  border-color: var(--lime);
}


/* =========================================================
   ШАПКА
   ========================================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;

  display: flex;
  align-items: center;
  gap: 2rem;

  padding: .9rem var(--pad);

  background: rgba(168, 212, 223, .92);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--line);
}


/* ---------------------------------------------------------
   СТАРЫЙ ЛОГОТИП

   Возвращаем характер исходного логотипа.
   Unbounded уже подключён в твоих HTML-файлах.
   --------------------------------------------------------- */

.mark {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.25rem;

  letter-spacing: -.05em;
  line-height: 1;

  text-decoration: none;
  color: var(--forest);
}

.mark sup {
  font-family: "Montserrat", sans-serif;
  font-size: .55em;
  font-weight: 700;

  color: var(--coral);

  margin-left: .15em;
}


/* навигация */

.nav {
  display: flex;
  gap: 1.5rem;

  font-size: .88rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  color: var(--stone);

  transition:
    color .18s ease,
    transform .18s ease;
}

.nav a:hover {
  color: var(--forest);
}

.nav a[aria-current="page"] {
  color: var(--forest);
  font-weight: 700;
}


/* =========================================================
   КНОПКИ
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: var(--body);
  font-weight: 700;
  font-size: .9rem;

  padding: .68rem 1.3rem;

  border: 1.5px solid var(--forest);
  border-radius: 10px;

  text-decoration: none;

  transition:
    background .18s ease,
    color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--solid {
  background: var(--forest);
  color: var(--cream);
}

.btn--solid:hover {
  background: var(--coral);

  border-color: var(--coral);
  box-shadow: 0 5px 0 rgba(17, 23, 25, .18);
}

.btn--outline {
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255,255,255,.25);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
}

.btn--ghost:hover {
  background: var(--lime);
}

.btn--lime {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest);
}

.btn--lime:hover {
  background: var(--cream);
}

.btn--big {
  font-size: 1.02rem;
  padding: .95rem 2.2rem;
}


/* кнопки справа в шапке */

.ctas {
  display: flex;
  gap: .5rem;
  margin-left: auto;
}

.ctas .btn {
  padding: .5rem .95rem;
  font-size: .85rem;
}


/* бургер */

.burger {
  display: none;

  background: none;
  border: 0;

  padding: .5rem;

  cursor: pointer;
}

.burger span {
  display: block;

  width: 22px;
  height: 2px;

  background: var(--forest);

  margin: 5px 0;
}

.mnav {
  display: none;
}


/* =========================================================
   ГЛАВНЫЙ HERO
   ========================================================= */

.hero {
  max-width: var(--wrap);
  margin: 0 auto;

  padding:
    clamp(3rem, 8vw, 6rem)
    var(--pad)
    clamp(2rem, 5vw, 3.5rem);
}


/*
   Большое «Воздух» больше НЕ рукописное.
   Montserrat ExtraBold — заметно, но спокойно.
*/

.hero h1 {
  font-family: "Montserrat", sans-serif;

  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 800;

  line-height: .88;
  letter-spacing: -.065em;

  color: var(--forest);
}

.hero h1 span {
  display: block;
}


/* дата */

.hero__sub {
  margin-top: .7em;

  font-size: clamp(1.1rem, 3vw, 2.2rem);
  font-weight: 600;

  letter-spacing: -.025em;

  color: var(--coral);
}


/* информация под заголовком */

.hero__grid {
  display: grid;

  grid-template-columns: 1.4fr 1fr auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);

  align-items: end;

  margin-top: clamp(2.2rem, 5vw, 3.5rem);

  border-top: 2px solid var(--forest);

  padding-top: 1.8rem;
}

.hero__lede {
  margin: 0;

  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 400;

  max-width: 44ch;
}

.hero__spec {
  margin: 0;

  display: grid;
  gap: .8rem;
}

.hero__spec div {
  display: flex;
  justify-content: space-between;

  gap: 1rem;

  border-bottom: 1px solid var(--line);
  padding-bottom: .4rem;
}

.hero__spec dt {
  font-size: .72rem;
  font-weight: 600;

  letter-spacing: .1em;
  text-transform: uppercase;

  color: var(--stone);
}

.hero__spec dd {
  margin: 0;

  font-weight: 600;
  font-size: .93rem;

  text-align: right;
}

.hero__cta {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}


/* =========================================================
   БЕГУЩАЯ СТРОКА
   ========================================================= */

.ticker {
  background: var(--forest);
  color: var(--cream);

  overflow: hidden;

  padding: .9rem 0;

  user-select: none;
}

.ticker__row {
  display: flex;
  align-items: center;

  gap: 1.6rem;

  width: max-content;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;

  font-size: clamp(.9rem, 1.8vw, 1.35rem);

  letter-spacing: -.015em;

  white-space: nowrap;

  animation: run 42s linear infinite;
}

.ticker__row i {
  width: 8px;
  height: 8px;

  background: var(--lime);

  border-radius: 50%;

  flex: none;
}

@keyframes run {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =========================================================
   КАРУСЕЛЬ
   ========================================================= */

.reel {
  max-width: var(--wrap);
  margin: 0 auto;

  padding:
    clamp(3rem, 7vw, 5rem)
    var(--pad)
    0;
}

.reel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;

  gap: 1rem;

  margin-bottom: 1.6rem;
}

.reel__head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700;
}

.reel__nav {
  display: flex;
  gap: .5rem;
}

.reel__nav button {
  width: 44px;
  height: 44px;

  border: 1.5px solid var(--forest);
  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  font-size: 1rem;

  color: var(--forest);

  transition:
    background .18s ease,
    color .18s ease;
}

.reel__nav button:hover {
  background: var(--forest);
  color: var(--cream);
}

.carousel {
  overflow: hidden;
}

.carousel__track {
  display: flex;

  gap: 1rem;

  transition: transform .65s cubic-bezier(.22, .61, .36, 1);
}

.slide {
  flex: 0 0 62%;

  margin: 0;

  position: relative;
}

.slide img {
  width: 100%;

  aspect-ratio: 3 / 2;
  object-fit: cover;

  border-radius: 18px;
}

.slide figcaption {
  position: absolute;

  left: 12px;
  bottom: 12px;

  background: var(--lime);
  color: var(--forest);

  font-size: .78rem;
  font-weight: 700;

  padding: .5rem .9rem;

  border-radius: 8px;
}

.carousel__dots {
  display: flex;
  gap: .4rem;

  margin-top: 1.2rem;
}

.carousel__dots button {
  width: 34px;
  height: 4px;

  padding: 0;

  border: 0;
  border-radius: 10px;

  background: rgba(17, 23, 25, .18);

  cursor: pointer;
}

.carousel__dots button[aria-selected="true"] {
  background: var(--coral);
}


/* =========================================================
   ОБЫЧНЫЕ СЕКЦИИ
   ========================================================= */

.section {
  max-width: var(--wrap);
  margin: 0 auto;

  padding:
    clamp(3.5rem, 8vw, 6rem)
    var(--pad);
}

.head {
  margin-bottom: clamp(2rem, 4vw, 3rem);

  max-width: 27ch;
}

.head h2 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 700;

  letter-spacing: -.04em;
}


/* =========================================================
   КАРТОЧКИ
   ========================================================= */

.cards {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));

  gap: 12px;
}

.card {
  background: rgba(255, 255, 255, .27);

  padding: 1.9rem 1.6rem 1.7rem;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 16px;

  transition:
    background .2s ease,
    transform .2s ease;
}

.card:hover {
  background: rgba(255, 255, 255, .42);

  transform: translateY(-2px);
}

.card--lime {
  background: var(--lime);
  border-color: var(--lime);
}

.card--lime:hover {
  background: #FFD532;
}

.card h3 {
  font-size: 1.28rem;
  font-weight: 700;

  margin-bottom: .8rem;
}

.card p {
  margin: 0;

  font-size: .93rem;
  color: var(--stone);

  flex: 1;
}

.card--lime p {
  color: #3C3619;
}

.card__meta {
  margin-top: 1.3rem;

  font-size: .72rem;
  font-weight: 700;

  letter-spacing: .1em;
  text-transform: uppercase;

  color: var(--coral);
}

.card--lime .card__meta {
  color: var(--forest);
}

.card a {
  margin-top: .5rem;

  font-size: .87rem;
  font-weight: 600;
}


/* =========================================================
   ОБЕД / ТЁМНАЯ СЕКЦИЯ
   ========================================================= */

.lunch {
  background: var(--forest);
  color: var(--cream);

  display: grid;

  grid-template-columns: 1.35fr .75fr;
  gap: clamp(2rem, 5vw, 4.5rem);

  align-items: center;

  padding:
    clamp(3rem, 7vw, 5rem)
    var(--pad);
}

.lunch__text {
  max-width: 52ch;

  margin-left: auto;
}

.lunch h2 {
  font-size: clamp(1.9rem, 5vw, 3.4rem);

  margin-bottom: 1.2rem;
}

.lunch p {
  color: #BBDDE3;
}

.lunch__note {
  font-size: .9rem;
}

.lunch .btn--solid {
  background: var(--lime);
  border-color: var(--lime);

  color: var(--forest);

  margin-top: 1.2rem;
}

.lunch .btn--solid:hover {
  background: var(--coral);
  border-color: var(--coral);

  color: var(--cream);
}

.lunch__photos {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: .7rem;
}

.lunch__photos img {
  width: 100%;

  aspect-ratio: 1 / 1;
  object-fit: cover;

  border-radius: 14px;
}

.lunch__photos img:first-child {
  grid-column: 1 / -1;

  aspect-ratio: 16 / 10;
}


/* важная информация */

.alert {
  border-left: 4px solid var(--lime);

  padding: .2rem 0 .2rem 1.3rem;

  margin: 1.8rem 0;
}

.alert__label {
  font-size: .7rem;
  font-weight: 700;

  letter-spacing: .14em;
  text-transform: uppercase;

  color: var(--lime) !important;

  margin: 0 0 .9rem;
}

.alert__text {
  margin: 0;

  color: var(--cream) !important;

  font-size: 1.02rem;
}

.alert__text b {
  color: var(--lime);
}

.alert__small {
  margin: 1rem 0 0;

  font-size: .86rem;

  color: #9FC1C7 !important;
}


/* =========================================================
   АРХИВ
   ========================================================= */

.archive {
  border-top: 2px solid var(--forest);
}

.arch {
  display: grid;

  grid-template-columns: 110px 1fr auto;

  align-items: center;

  gap: clamp(1rem, 3vw, 2.5rem);

  padding: 1.6rem 0;

  border-bottom: 1px solid var(--line);

  text-decoration: none;

  transition:
    padding-left .25s ease,
    background .25s ease;
}

.arch:hover {
  padding-left: .8rem;
}

.arch__n {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;

  font-size: clamp(2.2rem, 5vw, 3.6rem);

  line-height: 1;

  color: transparent;

  -webkit-text-stroke: 1.5px var(--forest);
}

.arch:hover .arch__n {
  color: var(--lime);

  -webkit-text-stroke-color: var(--forest);
}

.arch__txt h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);

  margin-bottom: .45rem;
}

.arch__txt p {
  margin: 0;

  font-size: .93rem;

  color: var(--stone);

  max-width: 62ch;
}

.arch__go {
  font-size: .85rem;
  font-weight: 700;

  white-space: nowrap;

  border-bottom: 2px solid var(--coral);

  padding-bottom: 2px;
}

.arch__go::after {
  content: " →";
}

.arch:hover .arch__go {
  border-color: var(--lime);
}


/* =========================================================
   ДОРОГА / ПРАВИЛА
   ========================================================= */

.duo {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(2rem, 5vw, 4.5rem);
}

.duo h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);

  margin-bottom: 1.4rem;
}

.route {
  margin: 0 0 1.4rem;
}

.route dt {
  font-weight: 700;

  font-size: .74rem;

  letter-spacing: .1em;
  text-transform: uppercase;

  color: var(--coral);

  margin-top: 1.3rem;
}

.route dt:first-child {
  margin-top: 0;
}

.route dd {
  margin: .35rem 0 0;

  color: var(--stone);

  font-size: .95rem;
}

.rules {
  margin: 0 0 1.4rem;
  padding: 0;

  list-style: none;
}

.rules li {
  padding: .7rem 0 .7rem 1.5rem;

  border-bottom: 1px solid var(--line);

  font-size: .95rem;

  color: var(--stone);

  position: relative;
}

.rules li::before {
  content: "→";

  position: absolute;
  left: 0;

  color: var(--coral);
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
  text-align: center;

  padding:
    clamp(4rem, 10vw, 7rem)
    var(--pad);
}

.cta h2 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;

  letter-spacing: -.055em;
}

.cta p {
  max-width: 48ch;

  margin: 1.4rem auto 2.2rem;

  color: var(--stone);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--forest);
  color: #AFCFD5;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 2.5rem;

  padding:
    clamp(2.5rem, 6vw, 4rem)
    var(--pad)
    2rem;
}


/* старый логотип остаётся и здесь */

.footer .mark {
  color: var(--cream);

  font-size: 1.5rem;
}

.footer p {
  font-size: .88rem;

  max-width: 38ch;

  margin: .7rem 0 0;
}

.footer nav a {
  display: block;

  text-decoration: none;

  font-size: .9rem;

  margin-bottom: .55rem;
}

.footer nav a:hover {
  color: var(--lime);
}

.footer__bottom {
  grid-column: 1 / -1;

  border-top: 1px solid rgba(255,255,255,.14);

  padding-top: 1.4rem;

  font-size: .8rem;
}


/* =========================================================
   АДАПТИВ
   ========================================================= */

@media (max-width: 1000px) {

  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__cta {
    grid-column: 1 / -1;
  }

  .arch {
    grid-template-columns: 70px 1fr;
  }

  .arch__go {
    grid-column: 2;

    justify-self: start;
  }

  .slide {
    flex-basis: 78%;
  }
}


@media (max-width: 860px) {

  .nav {
    display: none;
  }

  .burger {
    display: block;

    order: 3;

    margin-left: 0;
  }

  .ctas {
    order: 2;

    margin-left: auto;
  }

  .ctas .btn {
    padding: .45rem .8rem;

    font-size: .8rem;
  }

  .mnav {
    display: block;

    position: sticky;
    top: 61px;

    z-index: 49;

    background: rgba(168, 212, 223, .97);

    border-bottom: 1px solid var(--line);

    padding: .6rem var(--pad) 1.2rem;
  }

  .mnav[hidden] {
    display: none;
  }

  .mnav a {
    display: block;

    padding: .65rem 0;

    text-decoration: none;

    border-bottom: 1px solid var(--line);

    font-weight: 500;
  }

  .mnav__cta {
    color: var(--coral);

    font-weight: 700;
  }

  .mnav__cta--ghost {
    color: var(--forest);
  }

  .lunch,
  .duo {
    grid-template-columns: 1fr;
  }

  .lunch__text {
    margin-left: 0;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 560px) {

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .slide {
    flex-basis: 88%;
  }

  .slide img {
    aspect-ratio: 4 / 3;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   ВНУТРЕННИЕ СТРАНИЦЫ
   ========================================================= */

.page-hero {
  max-width: var(--wrap);

  margin: 0 auto;

  padding:
    clamp(2.5rem, 6vw, 4.5rem)
    var(--pad)
    clamp(2rem, 4vw, 3rem);
}

.crumbs {
  font-size: .8rem;

  color: var(--stone);

  margin: 0 0 1.6rem;
}

.crumbs a {
  text-decoration: none;

  border-bottom: 1px solid var(--line);
}

.crumbs span {
  margin: 0 .4rem;
}

.page-hero h1 {
  font-family: "Montserrat", sans-serif;

  font-size: clamp(2.6rem, 8vw, 5.7rem);
  font-weight: 800;

  letter-spacing: -.055em;
}

.page-hero__lede {
  max-width: 58ch;

  margin: 1.6rem 0 0;

  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.page-hero__spec {
  margin: clamp(2rem, 4vw, 2.8rem) 0 0;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(210px, 1fr));

  gap: 1rem;

  border-top: 2px solid var(--forest);
}

.page-hero__spec div {
  padding: 1.1rem 0 0;
}

.page-hero__spec dt {
  font-size: .7rem;
  font-weight: 600;

  letter-spacing: .12em;
  text-transform: uppercase;

  color: var(--stone);
}

.page-hero__spec dd {
  margin: .35rem 0 0;

  font-weight: 600;
}


/* =========================================================
   КАРТА
   ========================================================= */

.map-section {
  max-width: var(--wrap);

  margin: 0 auto;

  padding:
    0
    var(--pad)
    clamp(3rem, 7vw, 5rem);
}

#map {
  height: clamp(320px, 52vh, 520px);

  width: 100%;

  border: 1.5px solid var(--forest);
  border-radius: 18px;

  overflow: hidden;

  background: var(--bg-2);

  z-index: 0;
}

#map.is-failed::after {
  content: "Точки маршрута — по ссылкам ниже";

  display: grid;

  place-content: center;

  height: 100%;

  color: var(--stone);

  font-size: .9rem;

  padding: 1rem;

  text-align: center;
}

.leaflet-container {
  font-family: var(--body);
}

.map-hint {
  font-size: .82rem;

  color: var(--stone);

  margin: .7rem 0 0;
}


/* ссылки под картой */

.map-links {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

  gap: 10px;

  margin-top: 1.6rem;
}

.map-link {
  background: rgba(255,255,255,.28);

  padding: 1.1rem 1.2rem;

  text-decoration: none;

  display: flex;
  flex-direction: column;

  gap: .25rem;

  border-radius: 12px;

  transition:
    background .18s ease,
    transform .18s ease;
}

.map-link:hover {
  background: rgba(255,255,255,.45);

  transform: translateY(-2px);
}

.map-link--primary {
  background: var(--lime);
}

.map-link--primary:hover {
  background: #FFD536;
}

.map-link b {
  font-size: .98rem;
}

.map-link span {
  font-size: .82rem;

  color: var(--stone);
}

.map-link--primary span {
  color: #504719;
}


/* =========================================================
   СПОСОБЫ / ПРАВИЛА / ЭТАПЫ
   ========================================================= */

.ways {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 12px;
}

.way {
  background: rgba(255, 255, 255, .27);

  padding: 1.9rem 1.6rem;

  display: flex;
  flex-direction: column;

  border-radius: 16px;

  border: 1px solid rgba(255,255,255,.22);
}

.way--accent {
  background: var(--bg-2);
}

.way__n {
  font-family: "Montserrat", sans-serif;

  font-weight: 800;
  font-size: 1.5rem;

  color: var(--coral);

  display: block;

  margin-bottom: .8rem;
}

.way h3 {
  font-size: 1.3rem;
  font-weight: 700;

  margin-bottom: .8rem;
}

.way p {
  margin: 0 0 .8rem;

  font-size: .94rem;

  color: var(--stone);
}

.way b {
  color: var(--forest);
}

.way__tip {
  border-left: 3px solid var(--lime);

  padding-left: .9rem;

  font-size: .88rem !important;

  margin-top: auto !important;
}

.way__links {
  display: flex;
  flex-wrap: wrap;

  gap: 1.1rem;

  margin-top: 1.1rem;
}

.way__links a {
  font-size: .86rem;
  font-weight: 600;

  text-decoration: none;

  border-bottom: 2px solid var(--coral);

  padding-bottom: 2px;
}

.way__links a:hover {
  border-color: var(--lime);
}

.body-text {
  color: var(--stone);

  margin: 0 0 1.2rem;
}


@media (max-width: 860px) {

  .page-hero__spec {
    grid-template-columns: 1fr;
  }

  .page-hero__spec div {
    border-bottom: 1px solid var(--line);

    padding-bottom: 1rem;
  }
}


/* =========================================================
   ЯРМАРКА / CALLOUT
   ========================================================= */

.callout {
  padding: clamp(2rem, 5vw, 3.2rem);

  border-radius: 18px;
}

.callout--soft {
  background: rgba(255,255,255,.28);

  border-left: 5px solid var(--lime);
}

.callout__label {
  font-size: .7rem;
  font-weight: 700;

  letter-spacing: .12em;
  text-transform: uppercase;

  color: var(--coral);

  margin: 0 0 1.2rem;
}

.callout h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);

  max-width: 22ch;
}

.callout > p {
  margin: 1.2rem 0 0;

  color: var(--stone);

  max-width: 62ch;
}

.callout__list {
  list-style: none;

  margin: 2rem 0 0;
  padding: 0;

  display: grid;
  gap: 0;
}

.callout__list li {
  position: relative;

  padding: 1rem 0 1rem 2.2rem;

  border-top: 1px solid var(--line);

  font-size: .96rem;

  max-width: 78ch;

  color: var(--forest);
}

.callout__list li::before {
  content: "→";

  position: absolute;

  left: 0;
  top: 1rem;

  color: var(--coral);
}


/* =========================================================
   ЧЕК-ЛИСТ
   ========================================================= */

.checklist {
  list-style: none;

  margin: 0 0 1.8rem;
  padding: 0;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(230px, 1fr));

  gap: 10px;
}

.checklist li {
  background: rgba(255,255,255,.27);

  padding: 1rem 1.2rem 1rem 2.8rem;

  position: relative;

  font-size: .95rem;

  border-radius: 12px;
}

.checklist li::before {
  content: "";

  position: absolute;

  left: 1.2rem;
  top: 1.35rem;

  width: 10px;
  height: 10px;

  background: var(--lime);

  border: 1.5px solid var(--forest);

  border-radius: 50%;
}


/* =========================================================
   ЗАГЛУШКИ
   ========================================================= */

.stub__box {
  background: rgba(255,255,255,.22);

  border: 1px solid rgba(17,23,25,.25);
  border-radius: 18px;

  padding: clamp(2.2rem, 6vw, 4rem);

  text-align: center;

  max-width: 640px;

  margin: 0 auto;
}

.stub__box h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);

  margin: 1rem 0 1.2rem;
}

.stub__box p {
  color: var(--stone);

  margin: 0 auto 1.8rem;

  max-width: 42ch;
}
/* =========================================================
   TYPOGRAPHY FIX
   Более спокойные заголовки + более контрастный текст
   Логотип .mark НЕ трогаем
   ========================================================= */

:root {
  /*
    Более тёмные текстовые цвета.
    На голубом #A8D4DF читаются существенно лучше.
  */
  --forest:   #172326;
  --forest-2: #24383D;
  --stone:    #354A50;

  --line: rgba(23, 35, 38, .20);
}


/* =========================================================
   ОСНОВНАЯ ТИПОГРАФИКА
   ========================================================= */

body {
  color: var(--forest);

  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-weight: 400;

  line-height: 1.65;
}


/*
   Все обычные заголовки сайта.
   Раньше они были слишком тяжёлыми и "плакатными".
*/

h1,
h2,
h3 {
  font-family: "Montserrat", system-ui, sans-serif;

  font-weight: 600;

  line-height: 1.12;
  letter-spacing: -.025em;

  color: var(--forest);
}


/* Логотип специально оставляем старым */

.mark {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -.05em;
}


/* =========================================================
   ГЛАВНЫЙ ЭКРАН
   ========================================================= */

/*
   Главное слово "Воздух":
   крупное, но уже не тяжёлый рекламный headline.
*/

.hero h1 {
  font-family: "Montserrat", system-ui, sans-serif;

  font-size: clamp(3.8rem, 12vw, 8.8rem);
  font-weight: 700;

  line-height: .94;
  letter-spacing: -.055em;

  color: var(--forest);
}


/* дата */

.hero__sub {
  margin-top: .75em;

  font-family: "Montserrat", system-ui, sans-serif;

  font-size: clamp(1.05rem, 2.7vw, 1.9rem);
  font-weight: 600;

  line-height: 1.2;
  letter-spacing: -.015em;

  color: #D9461D;
}


/* вводный текст */

.hero__lede {
  color: var(--forest);

  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 400;

  line-height: 1.7;
}


/* характеристики */

.hero__spec dt {
  color: var(--stone);

  font-size: .7rem;
  font-weight: 600;

  letter-spacing: .08em;
}

.hero__spec dd {
  color: var(--forest);

  font-weight: 600;
}


/* =========================================================
   ЗАГОЛОВКИ СЕКЦИЙ
   ========================================================= */

.head {
  max-width: 30ch;
}

.head h2 {
  font-family: "Montserrat", system-ui, sans-serif;

  font-size: clamp(1.9rem, 4vw, 3.15rem);
  font-weight: 600;

  line-height: 1.14;
  letter-spacing: -.035em;

  color: var(--forest);
}


/*
   Маленькие подписи над заголовками.
   Делаем менее "дизайнерски кричащими".
*/

.tag {
  color: var(--stone);

  font-size: .72rem;
  font-weight: 600;

  letter-spacing: .09em;
  text-transform: uppercase;
}


/* =========================================================
   ВНУТРЕННИЕ СТРАНИЦЫ
   ========================================================= */

.page-hero h1 {
  font-family: "Montserrat", system-ui, sans-serif;

  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 650;

  line-height: 1.02;
  letter-spacing: -.045em;

  color: var(--forest);
}

.page-hero__lede {
  color: var(--forest);

  font-size: clamp(1rem, 1.4vw, 1.14rem);

  line-height: 1.7;
}

.page-hero__spec dt {
  color: var(--stone);

  font-weight: 600;

  letter-spacing: .08em;
}

.page-hero__spec dd {
  color: var(--forest);

  font-weight: 600;
}


/* хлебные крошки */

.crumbs {
  color: var(--stone);

  font-weight: 500;
}


/* =========================================================
   КАРТОЧКИ
   ========================================================= */

.card h3,
.way h3 {
  font-family: "Montserrat", system-ui, sans-serif;

  font-size: 1.22rem;
  font-weight: 600;

  line-height: 1.25;
  letter-spacing: -.02em;

  color: var(--forest);
}


/*
   ВАЖНО:
   раньше серый текст здесь был слабоват на голубом.
*/

.card p,
.way p,
.body-text,
.route dd,
.arch__txt p {
  color: var(--stone);

  font-weight: 400;

  line-height: 1.65;
}


/* выделения внутри карточек */

.card p b,
.way p b,
.body-text b {
  color: var(--forest);

  font-weight: 600;
}


/* =========================================================
   CALLOUT / ЯРМАРКА
   ========================================================= */

.callout h2 {
  font-family: "Montserrat", system-ui, sans-serif;

  font-size: clamp(1.55rem, 3.5vw, 2.25rem);
  font-weight: 600;

  line-height: 1.2;
  letter-spacing: -.03em;

  color: var(--forest);
}

.callout > p {
  color: var(--stone);

  line-height: 1.7;
}

.callout__list li {
  color: var(--forest);

  line-height: 1.6;
}


/* =========================================================
   CTA
   ========================================================= */

.cta h2 {
  font-family: "Montserrat", system-ui, sans-serif;

  font-size: clamp(2.1rem, 6vw, 4.3rem);
  font-weight: 650;

  line-height: 1.05;
  letter-spacing: -.045em;

  color: var(--forest);
}

.cta p {
  color: var(--stone);

  line-height: 1.7;
}


/* =========================================================
   АРХИВ
   ========================================================= */

.arch__txt h3 {
  font-family: "Montserrat", system-ui, sans-serif;

  font-weight: 600;

  letter-spacing: -.025em;
}


/*
   Цифры можно оставить чуть выразительнее,
   но тоже без 900.
*/

.arch__n {
  font-family: "Montserrat", system-ui, sans-serif;

  font-weight: 700;
}


/* =========================================================
   БЕГУЩАЯ СТРОКА
   ========================================================= */

.ticker__row {
  font-family: "Montserrat", system-ui, sans-serif;

  font-weight: 500;

  letter-spacing: 0;

  font-size: clamp(.9rem, 1.6vw, 1.2rem);
}


/* =========================================================
   НАВИГАЦИЯ
   ========================================================= */

.nav {
  font-weight: 500;
}

.nav a {
  color: #30454B;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--forest);
}

.nav a[aria-current="page"] {
  font-weight: 600;
}


/* =========================================================
   КНОПКИ
   ========================================================= */

.btn {
  font-weight: 600;

  letter-spacing: -.01em;
}


/* =========================================================
   ТЁМНЫЕ БЛОКИ
   ========================================================= */

.lunch h2 {
  font-family: "Montserrat", system-ui, sans-serif;

  font-weight: 600;

  letter-spacing: -.03em;
}

.lunch p {
  /*
    Светлее исходного, чтобы текст нормально
    читался на тёмном фоне.
  */
  color: #D2E8EC;
}

.lunch__note {
  color: #BFD9DE;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  color: #D0E2E5;
}

.footer p {
  color: #C7DADF;

  line-height: 1.65;
}

.footer nav a {
  color: #D4E4E7;

  font-weight: 400;
}

.footer nav a:hover {
  color: var(--lime);
}


/* =========================================================
   МЕЛКИЙ ТЕКСТ
   ========================================================= */

.map-hint {
  color: var(--stone);
}

.map-link span {
  color: var(--stone);
}

.way__tip {
  color: var(--forest) !important;
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 560px) {

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);

    line-height: .96;
    letter-spacing: -.045em;
  }

  .hero__sub {
    font-size: 1.05rem;
  }

  .head h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .page-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }
}
.order-qr {
    width: min(320px, 80vw);

    margin: 1.5rem auto;

    padding: 14px;

    box-sizing: border-box;

    border-radius: 14px;

    background: white;
}

.order-qr svg {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;
}