:root {
  --bg: #f4f8fc;
  --bg-soft: #e7f1fb;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #183248;
  --muted: #567188;
  --accent: #ffb85c;
  --accent-strong: #ffcb7d;
  --sky: #9fd6ff;
  --sky-strong: #68bfff;
  --line: rgba(24, 50, 72, 0.1);
  --shadow: 0 20px 60px rgba(62, 107, 148, 0.14);
  --shadow-soft: 0 12px 34px rgba(62, 107, 148, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(104, 191, 255, 0.35), transparent 30%),
    linear-gradient(180deg, #eef8ff 0%, #f6fbff 38%, #ecf4fa 100%);
  color: var(--text);
}

.doodle-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

main {
  overflow: clip;
  counter-reset: content-section;
}

[id] {
  scroll-margin-top: 6rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 5vw;
  backdrop-filter: blur(20px);
  background: rgba(244, 248, 252, 0.78);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Oranienbaum", serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 3.25rem;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

.mobile-menu-toggle {
  position: relative;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 50, 72, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0.75rem 1.8rem rgba(62, 107, 148, 0.09);
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: #183248;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-0.34rem);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(0.34rem);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: rotate(42deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: rotate(-42deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: min(18rem, calc(100vw - 2rem));
  padding: 0.45rem;
  border: 1px solid rgba(24, 50, 72, 0.1);
  border-radius: 1.25rem;
  background: rgba(246, 251, 255, 0.94);
  box-shadow: 0 1rem 2.8rem rgba(34, 74, 102, 0.18);
  backdrop-filter: blur(20px);
}

.mobile-nav a {
  display: block;
  border-radius: 0.95rem;
  padding: 0.85rem 0.95rem;
  color: #315f7d;
  font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(222, 243, 254, 0.82);
  color: #183248;
}

.site-header.is-menu-open .mobile-nav {
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #5b3908;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(183, 112, 20, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  border-color: rgba(24, 50, 72, 0.14);
  box-shadow: 0 12px 28px rgba(62, 107, 148, 0.08);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 7rem 5vw 5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 253, 255, 0.02), rgba(236, 244, 250, 0.2)),
    url("https://images.pexels.com/photos/8936566/pexels-photo-8936566.jpeg?auto=compress&cs=tinysrgb&w=1800")
      center/cover no-repeat;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform: scale(var(--hero-media-scale, 1));
  filter: blur(var(--hero-media-blur, 0));
}

.hero-media video,
.hero-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media iframe {
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 0;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(235, 247, 255, 0.12), rgba(245, 249, 252, 0.58)),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(180deg, rgba(107, 176, 255, 0.08), rgba(255, 255, 255, 0.24));
}

.doodles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.doodle {
  position: absolute;
  width: var(--size, 160px);
  color: rgba(32, 105, 158, 0.4);
  opacity: 0.95;
  transform:
    translate3d(0, var(--parallax-shift, 0px), 0)
    rotate(var(--rotate, 0deg));
  will-change: transform;
}

.doodle svg {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  filter: drop-shadow(0 12px 26px rgba(62, 107, 148, 0.08));
  animation: doodleFloat var(--float-duration, 10s) ease-in-out infinite alternate;
}

.doodle-soft {
  color: rgba(76, 148, 190, 0.28);
}

.doodle-line {
  color: rgba(32, 105, 158, 0.34);
}

.doodle-accent {
  color: rgba(255, 184, 92, 0.68);
}

.hero-cloud {
  top: 8%;
  left: 4%;
  --size: 152px;
}

.hero-paraglider {
  top: 12%;
  right: 5%;
  --size: 148px;
}

.hero-mountains {
  left: -1%;
  bottom: 5%;
  --size: 250px;
}

.about-mountains {
  top: -0.4rem;
  right: 2%;
  --size: 220px;
}

.locations-paraglider {
  top: 2.6rem;
  right: 3%;
  --size: 132px;
}

.mood-cloud {
  top: 0.6rem;
  left: -1.2rem;
  --size: 185px;
}

.mood-paraglider {
  top: 1.8rem;
  right: 4%;
  --size: 144px;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  margin-right: min(18vw, 12rem);
  padding: clamp(1.35rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: clamp(1.6rem, 3vw, 2.6rem);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.68), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(226, 240, 251, 0.24));
  box-shadow: 0 30px 90px rgba(51, 96, 132, 0.16);
  backdrop-filter: blur(14px) saturate(1.08);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #2873aa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Oranienbaum", serif;
  line-height: 0.95;
  font-weight: 400;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(3.3rem, 7.2vw, 6.4rem);
  max-width: 11.5ch;
  letter-spacing: -0.035em;
}

.hero h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  color: #20699e;
}

.hero-text {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-flight-note {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(32, 105, 158, 0.15);
  border-radius: 999px;
  padding: 0.56rem 0.95rem 0.56rem 0.62rem;
  color: #17425e;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(219, 240, 252, 0.48)),
    rgba(232, 245, 255, 0.68);
  box-shadow:
    0 18px 36px rgba(26, 88, 128, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.hero-flight-note::before {
  content: "";
  z-index: 1;
  flex: 0 0 2.15rem;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #1f86c1 0 0.18rem, transparent 0.21rem),
    conic-gradient(
      from -35deg,
      transparent 0 18%,
      rgba(255, 181, 83, 0.92) 18% 23%,
      transparent 23% 58%,
      rgba(40, 115, 170, 0.55) 58% 63%,
      transparent 63% 100%
    ),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(40, 115, 170, 0.14),
    0 10px 22px rgba(34, 119, 174, 0.14);
}

.hero-flight-note::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -1.2rem;
  top: 0.35rem;
  width: 10rem;
  height: 2.9rem;
  border-top: 1px dashed rgba(40, 115, 170, 0.22);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.hero-flight-note span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-radius: 999px;
  padding: 0 0.75rem;
  color: #2873aa;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-flight-note strong {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

.flight-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 42rem;
  margin-top: 1rem;
}

.flight-brief span {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 105, 158, 0.11);
  border-radius: 1rem;
  padding: 0.72rem 0.8rem;
  color: #315b78;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.9), transparent 38%),
    rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 28px rgba(62, 107, 148, 0.08);
  font-size: 0.86rem;
}

.flight-brief span::after {
  content: "";
  position: absolute;
  right: -1.2rem;
  bottom: -1rem;
  width: 4rem;
  height: 4rem;
  border: 1px dashed rgba(32, 105, 158, 0.12);
  border-radius: 999px;
}

.flight-brief b {
  display: block;
  margin-bottom: 0.12rem;
  color: #20699e;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steps {
  padding: 0;
  list-style: none;
}
.stat,
.info-card,
.feature-card,
.service-card,
.location-card,
.mood-card,
.faq-list article,
.contact-card,
.form {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.section {
  position: relative;
  padding: clamp(4.5rem, 7vw, 7rem) 5vw;
}

.section-route {
  position: absolute;
  top: 1.7rem;
  left: 5vw;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(32, 105, 158, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.section-route::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #ffb85c;
  box-shadow:
    0 0 0 0.34rem rgba(255, 184, 92, 0.14),
    0 0 22px rgba(255, 184, 92, 0.26);
}

.section-route::after {
  content: "";
  width: min(20vw, 14rem);
  border-top: 1px dashed rgba(32, 105, 158, 0.2);
}

[data-api-sections] > .section {
  counter-increment: content-section;
}

.section::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: 7vw;
  width: clamp(9rem, 18vw, 18rem);
  height: clamp(9rem, 18vw, 18rem);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(159, 214, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(232, 243, 251, 0.56));
  border-top: 1px solid rgba(24, 50, 72, 0.06);
  border-bottom: 1px solid rgba(24, 50, 72, 0.06);
}

.section-sky {
  background:
    radial-gradient(circle at 15% 20%, rgba(159, 214, 255, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(228, 242, 253, 0.62), rgba(244, 250, 255, 0.38));
}

.section-heading,
.about-grid,
.cards,
.steps,
.faq-list,
.contacts-grid {
  position: relative;
  z-index: 2;
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

[data-api-sections] > .section .section-heading {
  padding-left: clamp(3.8rem, 5vw, 4.8rem);
}

[data-api-sections] > .section .section-heading::before {
  content: counter(content-section, decimal-leading-zero);
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 3.05rem;
  height: 3.05rem;
  border: 1px solid rgba(32, 105, 158, 0.12);
  border-radius: 46% 54% 50% 22%;
  color: #20699e;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.98), transparent 36%),
    rgba(232, 245, 255, 0.82);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transform: rotate(-3deg);
}

.section-heading::after {
  content: "";
  width: 5.2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(32, 105, 158, 0.7), rgba(32, 105, 158, 0));
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-description {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.about-grid-single {
  max-width: 860px;
  grid-template-columns: 1fr;
}

.about-card,
.contact-card,
.form {
  border-radius: 1.6rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-card p + p {
  margin-top: 1rem;
}

.stats,
.cards,
.faq-list {
  display: grid;
  gap: 1rem;
}

.stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat,
.info-card,
.feature-card,
.service-card,
.location-card,
.mood-card {
  position: relative;
  border-radius: 1.4rem;
  padding: 1.4rem;
  --card-image-overlay: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.has-card-image {
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.has-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 20% 18%,
      rgb(255 255 255 / calc(var(--card-image-overlay, 1) * 0.24)),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgb(255 255 255 / calc(var(--card-image-overlay, 1) * 0.12)),
      rgb(242 248 253 / calc(var(--card-image-overlay, 1) * 0.84))
    );
  pointer-events: none;
}

.has-card-image > * {
  position: relative;
  z-index: 1;
}

.stat:hover,
.info-card:hover,
.feature-card:hover,
.service-card:hover,
.location-card:hover,
.mood-card:hover,
.faq-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 171, 219, 0.22);
  box-shadow: 0 24px 62px rgba(62, 107, 148, 0.16);
}

.info-card::after,
.feature-card::after,
.location-card::after,
.faq-list article::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(159, 214, 255, 0.16));
  opacity: 0;
  transition: opacity 180ms ease;
}

.info-card:hover::after,
.feature-card:hover::after,
.location-card:hover::after,
.faq-list article:hover::after {
  opacity: 1;
}

h3 {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
}

.stat strong,
.steps strong,
.contact-label {
  display: block;
  font-size: 1.1rem;
}

.stat strong {
  font-family: "Oranienbaum", serif;
  font-size: 2rem;
  color: #20699e;
  line-height: 0.9;
}

.stat span,
.info-card p,
.feature-card p,
.service-card p,
.location-card p,
.steps span,
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
}

.services-section {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 187, 83, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(232, 243, 251, 0.42));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(251, 254, 255, 0.92));
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.service-card {
  border-radius: 1.35rem 1.35rem 1.35rem 0.55rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 1.2rem 100%, 0 calc(100% - 1.2rem));
}

.service-card h3::before {
  content: "Билет на программу";
  display: block;
  width: fit-content;
  margin-bottom: 0.72rem;
  border-radius: 999px;
  padding: 0.38rem 0.58rem;
  color: #20699e;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(32, 105, 158, 0.14);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 184, 92, 0.72) 0 0.18rem, transparent 0.2rem),
    repeating-conic-gradient(from 0deg, rgba(32, 105, 158, 0.12) 0 8deg, transparent 8deg 18deg);
  opacity: 0.72;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgb(255 255 255 / calc(var(--card-image-overlay, 1) * 0.04)),
      rgb(245 250 254 / calc(var(--card-image-overlay, 1) * 0.94)) 72%
    ),
    radial-gradient(
      circle at 20% 20%,
      rgb(255 255 255 / calc(var(--card-image-overlay, 1) * 0.36)),
      transparent 34%
    );
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-price {
  width: fit-content;
  margin: -0.25rem 0 0.75rem;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  color: #17425e;
  background: rgba(255, 189, 91, 0.9);
  font-size: 0.98rem;
  box-shadow: 0 12px 28px rgba(159, 104, 29, 0.16);
}

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-columns,
.location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards[data-columns="1"] {
  grid-template-columns: minmax(0, 1fr);
}

.cards[data-columns="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards[data-columns="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards[data-columns="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards[data-card-style="number"] {
  align-items: stretch;
}

.cards[data-card-style="photo"] .card-style-photo {
  min-height: 17rem;
  align-content: end;
  overflow: hidden;
}

.cards[data-card-style="photo"] .card-style-photo h3,
.cards[data-card-style="photo"] .card-style-photo p {
  position: relative;
  z-index: 1;
}

.location-card {
  min-height: 14rem;
  display: grid;
  align-content: space-between;
}

.location-card h3 {
  padding-right: 5rem;
}

.location-card h3::after {
  content: "летный спот";
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  border-radius: 999px;
  padding: 0.42rem 0.6rem;
  color: #20699e;
  background: rgba(232, 245, 255, 0.9);
  font-size: 0.66rem;
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.8rem;
}

.spot-meta span {
  border: 1px solid rgba(32, 105, 158, 0.12);
  border-radius: 999px;
  padding: 0.32rem 0.5rem;
  color: #567188;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.timeline .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.steps li {
  position: relative;
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(24, 50, 72, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.steps li:nth-child(even) {
  transform: translateY(1rem);
}

.steps li:nth-child(3n) {
  transform: translateY(2rem);
}

.steps li:hover {
  box-shadow: 0 22px 54px rgba(62, 107, 148, 0.14);
}

.steps li:nth-child(odd):hover {
  transform: translateY(-3px);
}

.steps li:nth-child(even):hover {
  transform: translateY(calc(1rem - 3px));
}

.steps li:nth-child(3n):hover {
  transform: translateY(calc(2rem - 3px));
}

.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: rgba(32, 105, 158, 0.1);
  color: #20699e;
  font-weight: 800;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mood-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.mood-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / calc(var(--card-image-overlay, 1) * 0.14)),
    rgb(242 248 253 / calc(var(--card-image-overlay, 1) * 0.88))
  );
}

.mood-card > * {
  position: relative;
}

.mood-card-sky {
  background-image: url("https://images.pexels.com/photos/33375458/pexels-photo-33375458.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.mood-card-mountain {
  background-image: url("https://images.pexels.com/photos/8578705/pexels-photo-8578705.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.mood-card-sun {
  background-image: url("https://images.pexels.com/photos/35926053/pexels-photo-35926053.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-list article {
  position: relative;
  border-radius: 1.4rem;
  padding: 1.4rem;
}

.contacts {
  overflow: hidden;
  color: #f4fbff;
  background:
    radial-gradient(circle at 18% 18%, rgba(111, 180, 220, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(28, 62, 84, 0.96), rgba(9, 22, 32, 0.98));
}

.contacts::before {
  content: "";
  position: absolute;
  inset: auto -8% -1px;
  height: 44%;
  background:
    linear-gradient(135deg, transparent 0 32%, rgba(232, 241, 235, 0.14) 32% 34%, transparent 34%),
    linear-gradient(24deg, #142e3c 0 24%, transparent 24%),
    linear-gradient(-18deg, transparent 0 18%, #1e4558 18% 48%, transparent 48%),
    linear-gradient(10deg, transparent 0 42%, #102633 42% 72%, transparent 72%);
  opacity: 0.86;
  pointer-events: none;
}

.contacts .section-heading h2,
.contacts .eyebrow {
  color: inherit;
}

.contacts .section-heading::after {
  background: linear-gradient(90deg, rgba(149, 213, 247, 0.9), rgba(149, 213, 247, 0));
}

.contact-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.contact-link {
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr);
  column-gap: 0.85rem;
  align-items: center;
  min-height: 4.35rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(222, 241, 250, 0.18);
  border-radius: 0.95rem;
  color: inherit;
  background: rgba(255, 255, 255, 0.075);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(222, 241, 250, 0.3);
  background: rgba(255, 255, 255, 0.14);
}

.contact-link span {
  grid-column: 2;
  min-width: 0;
  color: rgba(244, 251, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.25;
}

.contact-link strong {
  grid-column: 2;
  min-width: 0;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contacts .form,
.contacts .contact-card {
  border-color: rgba(222, 241, 250, 0.18);
  box-shadow: 0 24px 70px rgba(1, 10, 18, 0.25);
}

.contacts .form {
  background: rgba(255, 255, 255, 0.94);
}

.contacts .form-status {
  color: var(--text);
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.45rem;
}

.form span {
  font-size: 0.92rem;
  color: var(--muted);
}

.form input,
.interest-trigger,
.form textarea {
  width: 100%;
  border: 1px solid rgba(24, 50, 72, 0.12);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
}

.interest-select {
  position: relative;
}

.interest-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  min-height: 3.25rem;
  padding-right: 2.5rem;
  text-align: left;
  cursor: pointer;
}

.interest-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.52rem;
  height: 0.52rem;
  border-right: 2px solid rgba(86, 113, 136, 0.75);
  border-bottom: 2px solid rgba(86, 113, 136, 0.75);
  transform: translateY(-65%) rotate(45deg);
}

.interest-placeholder {
  color: rgba(86, 113, 136, 0.72);
}

.interest-clouds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.interest-cloud {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(93, 171, 219, 0.22);
  border-radius: 999px;
  padding: 0.38rem 0.58rem 0.38rem 0.72rem;
  color: #17425e;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.95), transparent 34%),
    rgba(232, 245, 255, 0.95);
  box-shadow: 0 8px 18px rgba(57, 121, 164, 0.12);
  font-size: 0.92rem;
  line-height: 1;
}

.interest-cloud-remove {
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  color: #20699e;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.interest-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  left: 0;
  z-index: 5;
  display: none;
  gap: 0.35rem;
  border: 1px solid rgba(24, 50, 72, 0.12);
  border-radius: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(31, 73, 108, 0.16);
}

.interest-select.is-open .interest-menu {
  display: grid;
}

.interest-menu label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
  color: var(--text);
  cursor: pointer;
}

.interest-menu label::before {
  content: "";
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgba(93, 171, 219, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 -3px 8px rgba(57, 121, 164, 0.08);
}

.interest-menu label:hover {
  background: rgba(232, 245, 255, 0.78);
}

.interest-menu input {
  position: fixed;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

.interest-menu label.is-selected {
  color: #17425e;
  background: rgba(232, 245, 255, 0.95);
  box-shadow: inset 0 0 0 1px rgba(93, 171, 219, 0.18);
}

.interest-menu label.is-selected::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  border-color: rgba(32, 105, 158, 0.22);
  color: #fff;
  background: #2694df;
  font-weight: 900;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(86, 113, 136, 0.7);
}

.form-status {
  display: none;
  margin: 0 0 0.2rem;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
  animation: statusPop 180ms ease-out;
}

.form-status-info {
  border: 1px solid rgba(32, 105, 158, 0.18);
  background: rgba(232, 245, 255, 0.86);
}

.form-status-success {
  border: 1px solid rgba(39, 132, 83, 0.22);
  background: rgba(228, 248, 237, 0.9);
}

.form-status-error {
  border: 1px solid rgba(184, 80, 62, 0.24);
  background: rgba(255, 237, 233, 0.9);
}

.form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.placement-top-left {
  align-self: start;
  text-align: left;
}

.placement-top-right {
  align-self: start;
  text-align: right;
}

.placement-center-left {
  align-self: center;
  text-align: left;
}

.placement-center-right {
  align-self: center;
  text-align: right;
}

.placement-bottom-left {
  align-self: end;
  text-align: left;
}

.placement-bottom-right {
  align-self: end;
  text-align: right;
}

@keyframes doodleFloat {
  from {
    transform: translateY(-6px) rotate(-1.5deg);
  }

  to {
    transform: translateY(8px) rotate(1.5deg);
  }
}

@keyframes statusPop {
  from {
    opacity: 0;
    transform: translateY(-0.35rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.editor-toolbar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: grid;
  gap: 0.45rem;
  width: min(320px, calc(100vw - 2rem));
  padding: 0.9rem;
  border: 1px solid rgba(24, 50, 72, 0.16);
  border-radius: 1.1rem;
  color: #17304a;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(28, 70, 104, 0.22);
  backdrop-filter: blur(18px);
}

.editor-entry-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  min-height: 3rem;
  border: 1px solid rgba(24, 50, 72, 0.14);
  border-radius: 999px;
  padding: 0 1.1rem;
  color: #10344f;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 54px rgba(28, 70, 104, 0.2);
  backdrop-filter: blur(16px);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.editor-entry-button::before {
  content: "";
  display: inline-block;
  width: 0.58rem;
  height: 0.58rem;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: #39b27c;
  box-shadow: 0 0 0 0.28rem rgba(57, 178, 124, 0.14);
}

.editor-entry-button-muted::before {
  background: #ffb85c;
  box-shadow: 0 0 0 0.28rem rgba(255, 184, 92, 0.16);
}

.editor-toolbar-head {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.editor-toolbar strong {
  font-size: 0.95rem;
}

.editor-status {
  display: inline-flex;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.editor-status-online {
  background: #39b27c;
  box-shadow:
    0 0 0 0.28rem rgba(57, 178, 124, 0.13),
    0 0 22px rgba(57, 178, 124, 0.34);
}

.editor-status-preview {
  background: #ffb85c;
  box-shadow:
    0 0 0 0.28rem rgba(255, 184, 92, 0.15),
    0 0 22px rgba(255, 184, 92, 0.28);
}

.editor-toolbar a,
.editor-toolbar button,
.editor-section-tools a,
.editor-card-tools {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: #10344f;
  background: rgba(159, 214, 255, 0.52);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.editor-toolbar button {
  background: rgba(24, 50, 72, 0.08);
}

.editor-mode [data-editor-section-id] {
  outline: 2px dashed rgba(32, 105, 158, 0.34);
  outline-offset: -0.65rem;
}

.editor-mode [data-editor-item-id] {
  position: relative;
}

.editor-section-tools {
  position: sticky;
  top: 5.1rem;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  width: fit-content;
  margin: -2.7rem 0 1.1rem;
  padding: 0.45rem;
  border: 1px solid rgba(32, 105, 158, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(62, 107, 148, 0.14);
  backdrop-filter: blur(14px);
}

.hero .editor-section-tools {
  position: absolute;
  top: 5.4rem;
  left: 5vw;
  margin: 0;
}

.editor-type-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: #fff;
  background: #20699e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editor-card-tools {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 5;
  min-height: 2rem;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 184, 92, 0.9);
  box-shadow: 0 12px 28px rgba(159, 104, 29, 0.14);
}

/* Air-map visual layer: subtle route lines, light pockets and mountain contour hints. */
body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.92), transparent 17rem),
    radial-gradient(circle at 86% 18%, rgba(255, 184, 92, 0.13), transparent 18rem),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.34) 42% 43%, transparent 43% 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 44vh;
  pointer-events: none;
  opacity: 0.32;
  background:
    linear-gradient(156deg, transparent 0 34%, rgba(32, 105, 158, 0.16) 34.3% 34.8%, transparent 35.1%),
    linear-gradient(22deg, transparent 0 36%, rgba(32, 105, 158, 0.12) 36.3% 36.8%, transparent 37.1%),
    linear-gradient(-12deg, transparent 0 43%, rgba(32, 105, 158, 0.1) 43.3% 43.8%, transparent 44.1%);
  mask-image: linear-gradient(180deg, transparent, #000 28%);
}

.site-header {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(232, 245, 255, 0.74)),
    rgba(244, 248, 252, 0.78);
  box-shadow: 0 10px 32px rgba(62, 107, 148, 0.07);
}

.nav a {
  position: relative;
  padding: 0.35rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 105, 158, 0.54), transparent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  top: 11%;
  right: 11%;
  width: min(31vw, 27rem);
  height: min(31vw, 27rem);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 62%),
    conic-gradient(from 214deg, transparent 0 78%, rgba(255, 184, 92, 0.2) 78% 84%, transparent 84% 100%);
  opacity: 0.72;
}

.hero::after {
  right: 16vw;
  bottom: 7rem;
  width: min(26vw, 22rem);
  height: min(26vw, 22rem);
  border-top: 1px dashed rgba(32, 105, 158, 0.26);
  border-left: 1px dashed rgba(32, 105, 158, 0.12);
  border-radius: 55% 45% 52% 48%;
  transform: rotate(-18deg);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: clamp(4.8rem, 9vw, 7.4rem);
  height: clamp(4.8rem, 9vw, 7.4rem);
  border-radius: 42% 58% 49% 51%;
  background:
    linear-gradient(135deg, rgba(255, 184, 92, 0.2), transparent 55%),
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.74), transparent 48%);
  opacity: 0.58;
  pointer-events: none;
}

[data-api-sections] > .section:nth-child(3n + 1) {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 184, 92, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(232, 243, 251, 0.34));
}

.about-card,
.info-card,
.feature-card,
.location-card,
.stat {
  overflow: hidden;
}

.info-card,
.feature-card,
.location-card,
.stat {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 253, 0.78)),
    var(--surface-strong);
}

.about-card::after,
.info-card::before,
.feature-card::before,
.location-card::before,
.stat::before {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), transparent 34%),
    repeating-radial-gradient(circle, rgba(104, 191, 255, 0.14) 0 1px, transparent 1px 13px);
  opacity: 0.66;
  pointer-events: none;
}

.about-card {
  position: relative;
}

.about-card::after {
  right: -5rem;
  bottom: -5.8rem;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(32, 105, 158, 0.08);
  background: repeating-radial-gradient(circle, rgba(32, 105, 158, 0.1) 0 1px, transparent 1px 16px);
  opacity: 0.48;
}

.stats .stat:nth-child(2n) {
  transform: translateY(1rem);
}

.stats .stat:nth-child(2n):hover {
  transform: translateY(calc(1rem - 3px));
}

.service-card::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 4.4rem;
  height: 1.8rem;
  border-top: 1px dashed rgba(32, 105, 158, 0.22);
  border-radius: 50%;
  transform: rotate(-14deg);
  opacity: 0.74;
}

.steps {
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 3rem;
  right: 4%;
  left: 4%;
  z-index: -1;
  border-top: 1px dashed rgba(32, 105, 158, 0.18);
}

.steps li::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1.1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 105, 158, 0.32) 0 0.16rem, transparent 0.18rem),
    rgba(232, 245, 255, 0.72);
  opacity: 0.72;
}

.mood-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 42%),
    radial-gradient(circle at 22% 20%, rgba(255, 184, 92, 0.16), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 180ms ease;
}

.mood-card:hover::after {
  opacity: 1;
}

.contacts::after {
  content: "";
  position: absolute;
  top: 4rem;
  right: 6vw;
  width: clamp(12rem, 24vw, 24rem);
  height: clamp(12rem, 24vw, 24rem);
  border: 1px solid rgba(149, 213, 247, 0.14);
  border-radius: 47% 53% 42% 58%;
  background:
    radial-gradient(circle at 50% 50%, rgba(149, 213, 247, 0.1), transparent 58%),
    conic-gradient(from 210deg, transparent 0 74%, rgba(255, 184, 92, 0.16) 74% 80%, transparent 80% 100%);
  pointer-events: none;
}

.contacts .section-heading {
  max-width: 900px;
}

.contacts .contact-card {
  position: relative;
  overflow: hidden;
}

.contacts .contact-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -5rem;
  width: 18rem;
  height: 18rem;
  border: 1px dashed rgba(149, 213, 247, 0.12);
  border-radius: 999px;
  pointer-events: none;
}

.contact-link {
  position: relative;
  z-index: 1;
}

.contact-link::before {
  content: "•";
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  color: #123143;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 0.28rem rgba(255, 255, 255, 0.08);
  font-size: 1.15rem;
  font-weight: 900;
}

.contact-link-phone::before {
  content: "Т";
}

.contact-link-telegram::before {
  content: "Tg";
  font-size: 0.82rem;
}

.contact-link-instagram::before {
  content: "Ig";
  font-size: 0.82rem;
}

.contact-link-vk::before {
  content: "Vk";
  font-size: 0.82rem;
}

.contact-link-whatsapp::before {
  content: "Wa";
  font-size: 0.82rem;
}

.contact-link-email::before {
  content: "@";
  font-size: 1rem;
}

@keyframes windDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 80px 0, -120px 0, 0 0;
  }
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(8deg, transparent 0 88px, rgba(255, 255, 255, 0.16) 89px 90px, transparent 91px 170px),
    repeating-linear-gradient(-6deg, transparent 0 120px, rgba(149, 213, 247, 0.12) 121px 122px, transparent 123px 220px);
  opacity: 0.38;
  animation: windDrift 28s linear infinite;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .about-grid,
  .contacts-grid,
  .three-columns,
  .two-columns,
  .cards[data-columns],
  .location-grid,
  .mood-grid,
  .service-grid,
  .faq-list,
  .steps,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 6rem;
  }

  .hero-content {
    margin-right: 0;
  }

  .hero-cloud,
  .about-mountains,
  .mood-cloud {
    display: none;
  }

  .hero-paraglider,
  .locations-paraglider,
  .mood-paraglider {
    --size: 112px;
    opacity: 0.7;
  }

  .hero-mountains {
    --size: 190px;
    left: -2.5rem;
    bottom: 1rem;
  }

  .steps li:nth-child(even) {
    transform: none;
  }

  .steps li:nth-child(3n),
  .steps li:nth-child(3n):hover {
    transform: none;
  }

  .stats .stat:nth-child(2n),
  .stats .stat:nth-child(2n):hover {
    transform: none;
  }

  .steps::before,
  .section::after,
  .hero::before,
  .hero::after {
    display: none;
  }

  .editor-section-tools {
    position: relative;
    top: auto;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .section,
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

  .hero {
    padding-top: 5.3rem;
  }

  .hero-content {
    padding: 1.1rem;
    border-radius: 1.35rem;
  }

  .hero h1 {
    max-width: 8.8ch;
    font-size: clamp(3rem, 13vw, 3.9rem);
  }

  .hero h1 span {
    width: auto;
    max-width: 8.8ch;
  }

  .flight-brief {
    grid-template-columns: 1fr;
  }

  .section-route {
    display: none;
  }

  .location-card h3 {
    padding-right: 0;
  }

  .location-card h3::after {
    position: static;
    display: block;
    width: fit-content;
    margin-top: 0.55rem;
  }

  .hero-text {
    margin-top: 1rem;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 0.7rem;
    margin-top: 1.4rem;
  }

  .hero-flight-note {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    border-radius: 1.2rem;
    gap: 0.5rem 0.65rem;
    padding: 0.62rem 0.72rem;
  }

  .hero-flight-note span {
    width: max-content;
    min-height: 1.85rem;
  }

  .hero-flight-note strong {
    grid-column: 2;
    line-height: 1.35;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  [data-api-sections] > .section .section-heading {
    padding-left: 0;
  }

  [data-api-sections] > .section .section-heading::before {
    position: static;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.2rem;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .stat,
  .info-card,
  .feature-card,
  .service-card,
  .location-card,
  .mood-card,
  .faq-list article,
  .about-card,
  .contact-card,
  .form {
    border-radius: 1.1rem;
  }

  .hero-paraglider,
  .locations-paraglider,
  .mood-paraglider,
  .hero-mountains {
    display: none;
  }

  .editor-toolbar {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .editor-entry-button {
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: calc(100vw - 1.5rem);
  }

  .hero .editor-section-tools {
    left: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .doodle {
    transform: none !important;
  }

  .doodle svg {
    animation: none;
  }
}

/* Cleanup pass: keep the airy mood, remove noisy labels and overbuilt cards. */
.contacts .contact-card::before,
.location-card h3::after,
.section-route,
.spot-meta {
  display: none !important;
}

.timeline .section-heading {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.timeline .section-heading .section-description {
  margin-right: auto;
  margin-left: 0;
}

.steps li:nth-child(3n),
.steps li:nth-child(3n):hover,
.stats .stat:nth-child(2n),
.stats .stat:nth-child(2n):hover {
  transform: none;
}

.location-card {
  min-height: auto;
  align-content: start;
}

.location-card h3 {
  padding-right: 0;
}

.location-grid {
  gap: 1rem;
}

.location-card p {
  margin-top: 1.5rem;
}

/* Cinematic Caucasus flight journal design layer. */
:root {
  --ridge: #173648;
  --pine: #2f6b5b;
  --sunset: #f2a64f;
  --snow: #f9fcff;
}

body {
  background:
    linear-gradient(180deg, #eef8ff 0%, #f9fcff 34%, #edf5f8 100%);
}

body::before,
body::after {
  display: none;
}

.site-header {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background: rgba(249, 252, 255, 0.88);
  backdrop-filter: blur(12px);
}

.brand-logo {
  width: 2.75rem;
}

.hero {
  min-height: clamp(620px, 82svh, 760px);
  align-items: center;
  justify-items: start;
  padding: clamp(5.5rem, 8vw, 7rem) 5vw clamp(3rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, rgba(250, 253, 255, 0.02), rgba(236, 244, 250, 0.18)),
    url("https://images.pexels.com/photos/8936566/pexels-photo-8936566.jpeg?auto=compress&cs=tinysrgb&w=1200")
      center/cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 26, 39, 0.66) 0%, rgba(12, 44, 65, 0.34) 52%, rgba(255, 255, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(9, 32, 48, 0.04), rgba(8, 28, 43, 0.45));
}

.hero-content {
  width: min(920px, 100%);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
}

.hero-content::before {
  display: none;
}

.hero .eyebrow {
  width: fit-content;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.5rem 0.74rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(7, 26, 39, 0.18);
}

.hero h1 {
  max-width: 18ch;
  color: #fff;
  font-size: clamp(3.35rem, 5.4vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.hero h1 span {
  width: auto;
  color: #d9f1ff;
}

.hero-text {
  max-width: 46rem;
  color: rgba(249, 252, 255, 0.88);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.hero .button {
  color: #183248;
  background: rgba(255, 196, 112, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.hero .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-flight-note {
  color: #fff;
  background: rgba(8, 30, 45, 0.24);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.hero-flight-note span {
  color: #fbd49b;
  background: rgba(255, 255, 255, 0.12);
}

.hero::before {
  display: none;
}

.hero::after {
  right: -6vw;
  bottom: -1px;
  width: 58vw;
  height: 18vw;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(160deg, transparent 0 38%, rgba(10, 38, 54, 0.48) 38.4% 39.1%, transparent 39.4%),
    linear-gradient(15deg, transparent 0 32%, rgba(255, 255, 255, 0.2) 32.2% 32.8%, transparent 33%),
    linear-gradient(11deg, transparent 0 50%, rgba(12, 45, 63, 0.62) 50.2% 78%, transparent 78.3%);
  transform: none;
}

.section {
  padding-top: clamp(5.4rem, 8vw, 8.5rem);
  padding-bottom: clamp(5.4rem, 8vw, 8.5rem);
}

.section.section-has-background {
  --section-bg-color: #eaf7fd;
  --section-bg-edge-color: rgba(234, 247, 253, 0.88);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #eaf7fd !important;
}

.section-background-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background: var(--section-background-image) center/cover no-repeat;
  opacity: 0.62;
  pointer-events: none;
}

.section.section-has-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.58), rgba(238, 247, 252, 0.78));
  opacity: var(--section-overlay-opacity, 1);
  pointer-events: none;
}

.section.section-has-background::before {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  z-index: 1;
  pointer-events: none;
}

.section.section-has-background > *:not(.section-background-media) {
  position: relative;
  z-index: 2;
}

.section.section-has-background.section-background-tint-default {
  --section-bg-color: #eaf7fd;
  --section-bg-edge-color: rgba(234, 247, 253, 0.88);
  background: #eaf7fd !important;
}

.section.section-has-background.section-background-tint-sky {
  --section-bg-color: #dff3fc;
  --section-bg-edge-color: rgba(223, 243, 252, 0.88);
  background: #dff3fc !important;
}

.section.section-has-background.section-background-tint-snow {
  --section-bg-color: #f5fbff;
  --section-bg-edge-color: rgba(245, 251, 255, 0.88);
  background: #f5fbff !important;
}

.section.section-has-background.section-background-tint-warm {
  --section-bg-color: #fff7ea;
  --section-bg-edge-color: rgba(255, 247, 234, 0.88);
  background: #fff7ea !important;
}

.section-background-mask-full .section-background-media {
  filter: blur(var(--section-spot-blur, 2px));
  opacity: 0.68;
  transform: scale(1.025);
}

.section-background-mask-veil .section-background-media,
.section-background-mask-veil-top .section-background-media,
.section-background-mask-veil-right .section-background-media,
.section-background-mask-veil-bottom .section-background-media,
.section-background-mask-veil-left .section-background-media {
  filter: blur(var(--section-spot-blur, 2px));
  opacity: 0.68;
  transform: scale(1.025);
}

.section-background-mask-veil .section-background-media,
.section-background-mask-veil-bottom .section-background-media {
  mask-image: linear-gradient(to bottom, transparent 0%, transparent calc(var(--section-veil-start, 55%) - 20%), rgba(0, 0, 0, 0.16) calc(var(--section-veil-start, 55%) - 10%), rgba(0, 0, 0, 0.58) calc(var(--section-veil-start, 55%) - 4%), #000 var(--section-veil-start, 55%) 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent calc(var(--section-veil-start, 55%) - 20%), rgba(0, 0, 0, 0.16) calc(var(--section-veil-start, 55%) - 10%), rgba(0, 0, 0, 0.58) calc(var(--section-veil-start, 55%) - 4%), #000 var(--section-veil-start, 55%) 100%);
}

.section-background-mask-veil-top .section-background-media {
  mask-image: linear-gradient(to top, transparent 0%, transparent calc(var(--section-veil-start, 55%) - 20%), rgba(0, 0, 0, 0.16) calc(var(--section-veil-start, 55%) - 10%), rgba(0, 0, 0, 0.58) calc(var(--section-veil-start, 55%) - 4%), #000 var(--section-veil-start, 55%) 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent calc(var(--section-veil-start, 55%) - 20%), rgba(0, 0, 0, 0.16) calc(var(--section-veil-start, 55%) - 10%), rgba(0, 0, 0, 0.58) calc(var(--section-veil-start, 55%) - 4%), #000 var(--section-veil-start, 55%) 100%);
}

.section-background-mask-veil-right .section-background-media {
  mask-image: linear-gradient(to right, transparent 0%, transparent calc(var(--section-veil-start, 55%) - 20%), rgba(0, 0, 0, 0.16) calc(var(--section-veil-start, 55%) - 10%), rgba(0, 0, 0, 0.58) calc(var(--section-veil-start, 55%) - 4%), #000 var(--section-veil-start, 55%) 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent calc(var(--section-veil-start, 55%) - 20%), rgba(0, 0, 0, 0.16) calc(var(--section-veil-start, 55%) - 10%), rgba(0, 0, 0, 0.58) calc(var(--section-veil-start, 55%) - 4%), #000 var(--section-veil-start, 55%) 100%);
}

.section-background-mask-veil-left .section-background-media {
  mask-image: linear-gradient(to left, transparent 0%, transparent calc(var(--section-veil-start, 55%) - 20%), rgba(0, 0, 0, 0.16) calc(var(--section-veil-start, 55%) - 10%), rgba(0, 0, 0, 0.58) calc(var(--section-veil-start, 55%) - 4%), #000 var(--section-veil-start, 55%) 100%);
  -webkit-mask-image: linear-gradient(to left, transparent 0%, transparent calc(var(--section-veil-start, 55%) - 20%), rgba(0, 0, 0, 0.16) calc(var(--section-veil-start, 55%) - 10%), rgba(0, 0, 0, 0.58) calc(var(--section-veil-start, 55%) - 4%), #000 var(--section-veil-start, 55%) 100%);
}

.section-background-mask-veil::after,
.section-background-mask-veil-bottom::after,
.section-background-mask-veil-top::after,
.section-background-mask-veil-right::after,
.section-background-mask-veil-left::after {
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.14), rgba(238, 247, 252, 0.24));
}

.section-background-mask-spot-left-bottom {
  --section-spot-x: 12%;
  --section-spot-y: 76%;
}

.section-background-mask-spot-right-bottom {
  --section-spot-x: 88%;
  --section-spot-y: 76%;
}

.section-background-mask-spot-left-top {
  --section-spot-x: 12%;
  --section-spot-y: 24%;
}

.section-background-mask-spot-right-top {
  --section-spot-x: 88%;
  --section-spot-y: 24%;
}

.section-background-mask-spot-left-bottom .section-background-media,
.section-background-mask-spot-right-bottom .section-background-media,
.section-background-mask-spot-left-top .section-background-media,
.section-background-mask-spot-right-top .section-background-media {
  filter: blur(var(--section-spot-blur, 2px));
  opacity: 0.74;
  transform: scale(1.04);
  mask-image: radial-gradient(ellipse var(--section-spot-width, 58%) var(--section-spot-height, 48%) at var(--section-spot-x) var(--section-spot-y), #000 0 22%, rgba(0, 0, 0, 0.5) 46%, rgba(0, 0, 0, 0.18) 64%, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse var(--section-spot-width, 58%) var(--section-spot-height, 48%) at var(--section-spot-x) var(--section-spot-y), #000 0 22%, rgba(0, 0, 0, 0.5) 46%, rgba(0, 0, 0, 0.18) 64%, transparent 86%);
}

.section-background-mask-spot-left-bottom::after,
.section-background-mask-spot-right-bottom::after,
.section-background-mask-spot-left-top::after,
.section-background-mask-spot-right-top::after {
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.16), rgba(238, 247, 252, 0.24));
}

@media (max-width: 640px) {
  .section-background-mask-veil-right .section-background-media,
  .section-background-mask-veil-left .section-background-media {
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.16) 54%, rgba(0, 0, 0, 0.58) 62%, #000 68% 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.16) 54%, rgba(0, 0, 0, 0.58) 62%, #000 68% 100%);
  }
}

.section.section-has-background.section-background-edge-fade::before {
  display: block;
}

.section.section-has-background.section-background-edge-all::before {
  background:
    linear-gradient(90deg, var(--section-bg-color) 0%, var(--section-bg-edge-color) var(--section-edge-inner, 5%), transparent var(--section-edge-softness, 17%), transparent calc(100% - var(--section-edge-softness, 17%)), var(--section-bg-edge-color) calc(100% - var(--section-edge-inner, 5%)), var(--section-bg-color) 100%),
    linear-gradient(180deg, var(--section-bg-color) 0%, var(--section-bg-edge-color) var(--section-edge-inner, 5%), transparent var(--section-edge-softness, 17%), transparent calc(100% - var(--section-edge-softness, 17%)), var(--section-bg-edge-color) calc(100% - var(--section-edge-inner, 5%)), var(--section-bg-color) 100%);
}

.section.section-has-background.section-background-edge-top::before {
  background:
    linear-gradient(180deg, var(--section-bg-color) 0%, var(--section-bg-edge-color) var(--section-edge-inner, 5%), transparent var(--section-edge-softness, 17%));
}

.section.section-has-background.section-background-edge-right::before {
  background:
    linear-gradient(270deg, var(--section-bg-color) 0%, var(--section-bg-edge-color) var(--section-edge-inner, 5%), transparent var(--section-edge-softness, 17%));
}

.section.section-has-background.section-background-edge-bottom::before {
  background:
    linear-gradient(0deg, var(--section-bg-color) 0%, var(--section-bg-edge-color) var(--section-edge-inner, 5%), transparent var(--section-edge-softness, 17%));
}

.section.section-has-background.section-background-edge-left::before {
  background:
    linear-gradient(90deg, var(--section-bg-color) 0%, var(--section-bg-edge-color) var(--section-edge-inner, 5%), transparent var(--section-edge-softness, 17%));
}

.section.section-has-background.section-background-edge-x::before {
  background:
    linear-gradient(90deg, var(--section-bg-color) 0%, var(--section-bg-edge-color) var(--section-edge-inner, 5%), transparent var(--section-edge-softness, 17%), transparent calc(100% - var(--section-edge-softness, 17%)), var(--section-bg-edge-color) calc(100% - var(--section-edge-inner, 5%)), var(--section-bg-color) 100%);
}

.section.section-has-background.section-background-edge-y::before {
  background:
    linear-gradient(180deg, var(--section-bg-color) 0%, var(--section-bg-edge-color) var(--section-edge-inner, 5%), transparent var(--section-edge-softness, 17%), transparent calc(100% - var(--section-edge-softness, 17%)), var(--section-bg-edge-color) calc(100% - var(--section-edge-inner, 5%)), var(--section-bg-color) 100%);
}

.section.section-has-background .section-heading,
.section.section-has-background .about-card,
.section.section-has-background .cards,
.section.section-has-background .steps,
.section.section-has-background .faq-list {
  position: relative;
  z-index: 2;
}

.section.section-has-background .section-heading {
  margin-left: clamp(-1.1rem, -1.8vw, -0.4rem);
  padding: clamp(1rem, 2vw, 1.45rem) clamp(1.2rem, 3vw, 2.4rem) clamp(1.1rem, 2.2vw, 1.6rem);
  border-radius: clamp(1.2rem, 2vw, 1.8rem);
  background:
    linear-gradient(
      90deg,
      rgb(234 247 253 / 0.92) 0%,
      rgb(234 247 253 / 0.78) 50%,
      rgb(234 247 253 / 0) 100%
    );
  text-shadow: 0 1px 0 rgb(255 255 255 / 0.42);
}

[data-api-sections] > .section.section-has-background .section-heading {
  padding-left: clamp(4.9rem, 6.8vw, 6.4rem);
}

.section.section-has-background .section-description {
  color: rgba(58, 86, 108, 0.92);
}

.section.section-has-background.section-background-tint-snow .section-heading {
  background:
    linear-gradient(
      90deg,
      rgb(245 251 255 / 0.94) 0%,
      rgb(245 251 255 / 0.8) 50%,
      rgb(245 251 255 / 0) 100%
    );
}

.section.section-has-background.section-background-tint-warm .section-heading {
  background:
    linear-gradient(
      90deg,
      rgb(255 247 234 / 0.94) 0%,
      rgb(255 247 234 / 0.78) 50%,
      rgb(255 247 234 / 0) 100%
    );
}

[data-api-sections] > .section.section-background-decor-off .section-heading::before {
  display: none;
}

.section-heading {
  max-width: 900px;
}

[data-api-sections] > .section .section-heading::before {
  border-radius: 999px;
  color: rgba(24, 70, 96, 0.82);
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.74), transparent 36%),
    linear-gradient(145deg, rgba(226, 245, 253, 0.88), rgba(176, 218, 235, 0.72));
  border-color: rgba(72, 132, 168, 0.14);
  box-shadow: 0 0.8rem 2rem rgba(39, 104, 139, 0.12);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transform: none;
}

.section-heading h2 {
  color: var(--ridge);
  letter-spacing: 0;
}

.about-card {
  max-width: 980px;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-left: 0.42rem solid rgba(242, 166, 79, 0.74);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(235, 247, 253, 0.74)),
    var(--surface-strong);
}

.about-card p {
  color: #375a70;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

.stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  min-height: 12rem;
  display: grid;
  align-content: space-between;
  border-color: rgba(47, 107, 91, 0.12);
  background:
    radial-gradient(circle at 88% 18%, rgba(242, 166, 79, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 247, 246, 0.72));
}

.stat strong {
  color: var(--pine);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.cards {
  gap: 1.15rem;
}

.info-card,
.feature-card,
.location-card,
.faq-list article {
  border-color: rgba(23, 54, 72, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 253, 0.82));
}

.feature-card h3,
.info-card h3,
.location-card h3,
.faq-list h3 {
  color: #173648;
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
}

.location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card {
  min-height: 18rem;
  overflow: hidden;
  border-radius: 1.45rem;
  background-position: center;
  background-size: cover;
}

.location-card:first-child {
  grid-column: span 2;
}

.location-card[style*="background-image"] {
  align-content: end;
  border: 0;
  color: #fff;
  background-blend-mode: normal;
  background-clip: padding-box;
  box-shadow:
    0 1.35rem 3.5rem rgba(31, 76, 112, 0.18),
    0 0.35rem 1rem rgba(31, 76, 112, 0.1);
}

.location-card[style*="background-image"]::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      rgb(5 22 34 / 0) 0%,
      rgb(5 22 34 / calc(var(--card-image-overlay, 1) * 0.04)) 42%,
      rgb(5 22 34 / calc(var(--card-image-overlay, 1) * 0.46)) 74%,
      rgb(5 22 34 / calc(var(--card-image-overlay, 1) * 0.66)) 100%
    );
  opacity: 1;
}

.location-card[style*="background-image"]::after {
  display: none;
}

.location-card[style*="background-image"] h3,
.location-card[style*="background-image"] p {
  position: relative;
  color: inherit;
  text-shadow:
    0 0.12rem 0.4rem rgba(0, 0, 0, 0.34),
    0 0.65rem 1.55rem rgba(0, 0, 0, 0.26);
}

.location-card[style*="background-image"] h3 {
  max-width: 100%;
  padding: 0;
  color: #f9fcff;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.location-card[style*="background-image"] p {
  max-width: min(100%, 34rem);
  margin-top: 0.75rem;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(249, 252, 255, 0.94);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  line-height: 1.58;
}

.timeline {
  background:
    linear-gradient(180deg, rgba(247, 252, 255, 0.72), rgba(226, 241, 248, 0.82));
}

.steps {
  align-items: start;
}

.steps li {
  border-color: rgba(47, 107, 91, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 247, 0.82));
}

.steps li::before {
  color: #fff;
  background: var(--pine);
}

.flight-journal-section {
  overflow: hidden;
}

.flight-journal {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  overflow: visible;
  padding: 0.25rem 0 0;
}

.mood-card {
  min-height: clamp(20rem, 34vw, 30rem);
  border: 0;
  border-radius: 1.35rem;
  background-clip: padding-box;
  scroll-snap-align: start;
  box-shadow:
    0 1.35rem 3.5rem rgba(31, 76, 112, 0.16),
    0 0.35rem 1rem rgba(31, 76, 112, 0.08);
}

.mood-card:nth-child(2) {
  transform: translateY(1.4rem);
}

.mood-card::before {
  background:
    linear-gradient(
      180deg,
      rgb(5 22 34 / 0) 0%,
      rgb(5 22 34 / calc(var(--card-image-overlay, 1) * 0.05)) 46%,
      rgb(5 22 34 / calc(var(--card-image-overlay, 1) * 0.5)) 78%,
      rgb(5 22 34 / calc(var(--card-image-overlay, 1) * 0.7)) 100%
    );
}

.mood-card h3,
.mood-card p {
  color: #fff;
  text-shadow:
    0 0.12rem 0.4rem rgba(0, 0, 0, 0.34),
    0 0.7rem 1.7rem rgba(0, 0, 0, 0.3);
}

.faq-list article {
  padding: 1.65rem;
}

.contacts {
  background:
    radial-gradient(circle at 78% 16%, rgba(242, 166, 79, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(23, 54, 72, 0.97), rgba(8, 25, 36, 0.99));
}

.contact-card,
.contacts .form {
  border-radius: 1.35rem;
}

.service-price {
  display: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
    align-items: center;
  }

  .stats,
  .location-grid,
  .mood-grid,
  .flight-journal {
    grid-template-columns: 1fr;
  }

  .location-card:first-child {
    grid-column: auto;
  }

  .mood-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 780px;
    padding-top: 5.8rem;
    padding-bottom: 2.75rem;
  }

  .hero h1 {
    max-width: 11.4ch;
    font-size: clamp(2.82rem, 12vw, 3.65rem);
  }

  .hero-content {
    transform: none;
    padding: 0;
  }

  .hero-text {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 1.05rem;
  }

  .hero-flight-note {
    margin-top: 0.85rem;
  }

  .stat {
    min-height: auto;
  }

  .location-card,
  .mood-card {
    min-height: 18rem;
  }

  .flight-journal {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-overlay::after {
    display: none;
  }
}

.hero-overlay::after {
  display: none;
}

/* Hero refresh: light photo-map opener. */
.site-header {
  position: fixed;
  top: 1.9rem;
  right: 5vw;
  left: 5vw;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(239, 248, 255, 0.78);
  box-shadow: 0 1rem 2.8rem rgba(51, 93, 126, 0.14);
  backdrop-filter: blur(18px);
  transition:
    top 0.25s ease,
    right 0.25s ease,
    left 0.25s ease,
    padding 0.25s ease,
    border-radius 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-scrolled {
  top: 0;
  right: 0;
  left: 0;
  padding: 1rem 5vw;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  border-color: var(--line);
  background: rgba(244, 248, 252, 0.86);
  box-shadow: 0 0.65rem 1.8rem rgba(62, 107, 148, 0.08);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.76);
}

.hero {
  height: 100svh;
  min-height: 680px;
  padding: 8.6rem 5vw 4.1rem;
  align-items: center;
  background-color: #e6f5fb;
  background-image: url("https://images.pexels.com/photos/8936566/pexels-photo-8936566.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-position: center 46%;
  background-repeat: no-repeat;
  background-size: cover;
}

.doodles-hero,
.hero::before,
.hero::after,
.hero-content::before,
.hero-overlay::after {
  display: none !important;
}

.hero-content {
  z-index: 3;
  isolation: isolate;
  width: min(620px, 100%);
  margin-left: clamp(0rem, 1.5vw, 2.4rem);
  padding-bottom: 0;
  transform: none;
}

.hero-content::after {
  content: "";
  position: absolute;
  inset: -1.2rem -4.8rem -1.55rem -1.25rem;
  z-index: -1;
  border-radius: clamp(1.35rem, 2.8vw, 2.4rem);
  background:
    linear-gradient(
      90deg,
      rgba(239, 249, 255, 0.88) 0%,
      rgba(239, 249, 255, 0.68) 56%,
      rgba(239, 249, 255, 0) 100%
    );
  pointer-events: none;
}

.hero .eyebrow {
  display: block;
  margin-bottom: 1.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #217caf;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: none;
}

.hero .eyebrow::before {
  display: none;
}

.hero h1 {
  max-width: 14ch;
  color: #173248;
  font-size: clamp(3.85rem, 5.05vw, 5.45rem);
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: none;
}

.hero h1 span {
  display: inline;
  width: auto;
  max-width: none;
  color: inherit;
}

.hero-text {
  max-width: 43rem;
  margin-top: 2rem;
  color: #315f7d;
  font-size: 1.08rem;
  line-height: 1.7;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.8rem;
}

.hero .button {
  min-width: 0;
  border-color: rgba(255, 184, 92, 0.95);
  background: #ffb85c;
  color: #183248;
  white-space: nowrap;
  box-shadow: 0 0.95rem 1.85rem rgba(183, 112, 20, 0.16);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.66);
  color: #183248;
  box-shadow: 0 0.9rem 2rem rgba(56, 96, 126, 0.1);
  backdrop-filter: blur(12px);
}

.hero-flight-note {
  display: none !important;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 252, 255, 0.95) 0%, rgba(247, 252, 255, 0.64) 43%, rgba(247, 252, 255, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(238, 248, 255, 0.74) 79%, #e9f7fd 100%);
}

.hero-location-map {
  position: absolute;
  top: clamp(12.3rem, 19vw, 16rem);
  right: clamp(3.8rem, 8vw, 10rem);
  z-index: 3;
  width: min(39vw, 520px);
  height: 380px;
  color: #173248;
  pointer-events: none;
}

.hero-info-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1rem 2.2rem rgba(62, 107, 148, 0.12);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.hero-wind-chip {
  top: 0;
  left: 20%;
}

.hero-season-chip {
  top: 76%;
  left: 58%;
}

.hero-location-dot {
  position: absolute;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-location-dot i {
  width: 0.9rem;
  height: 0.9rem;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: #ffb85c;
  box-shadow: 0 0.45rem 1rem rgba(24, 50, 72, 0.16);
}

.hero-location-yutsa {
  top: 56%;
  left: 17%;
}

.hero-location-chegem {
  top: 34%;
  left: 50%;
}

.hero-location-dargavs {
  top: 18%;
  left: 65%;
}

.hero-location-jilysu {
  top: 32%;
  left: 82%;
}

.hero-media video {
  object-position: center 46%;
}

@media (max-width: 1100px) {
  .hero-location-map {
    right: 2.2rem;
    width: 43vw;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .site-header .button-ghost {
    order: 2;
    margin-left: auto;
  }

  .mobile-menu-toggle {
    order: 3;
    display: inline-flex;
  }

  .site-header.is-scrolled {
    top: 0;
    right: 0;
    left: 0;
  }

  .hero {
    min-height: 680px;
    padding: 7.8rem 5vw 3.4rem;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: 3.75rem;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-location-map {
    opacity: 0.72;
    transform: scale(0.9);
    transform-origin: right top;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 0.62rem;
    padding: 0.74rem;
  }

  .brand {
    min-width: 0;
    gap: 0.42rem;
    font-size: clamp(1.35rem, 6.2vw, 1.7rem);
  }

  .brand-logo {
    width: 2.25rem;
  }

  .site-header .button-ghost {
    min-height: 2.75rem;
    padding: 0.72rem 0.95rem;
    font-size: 0.92rem;
  }

  .mobile-menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
    flex-basis: 2.75rem;
  }

  .hero {
    min-height: 680px;
    padding: 7rem 1.15rem 2.6rem;
  }

  .hero-content {
    margin-left: 0;
    padding-top: 0.1rem;
  }

  .hero-content::after {
    inset: -0.82rem -0.85rem -1.15rem -0.85rem;
    border-radius: 1.35rem;
    background:
      linear-gradient(
        180deg,
        rgba(240, 250, 255, 0.92) 0%,
        rgba(240, 250, 255, 0.84) 62%,
        rgba(240, 250, 255, 0.56) 84%,
        rgba(240, 250, 255, 0) 100%
      );
    backdrop-filter: blur(3px);
  }

  .hero h1 {
    max-width: 11.4ch;
    font-size: 2.76rem;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .button {
    width: auto;
    justify-content: center;
  }

  .hero-location-map {
    display: none;
  }

  .contacts-grid {
    gap: 1rem;
  }

  .contacts .contact-card {
    gap: 0.58rem;
    padding: 1rem;
  }

  .contact-link {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    min-height: 3.95rem;
    column-gap: 0.72rem;
    padding: 0.72rem 0.78rem;
    border-radius: 0.85rem;
  }

  .contact-link::before {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.98rem;
  }

  .contact-link span {
    font-size: 0.78rem;
  }

  .contact-link strong {
    font-size: 1rem;
  }
}

@media (max-width: 430px) {
  .brand span {
    display: none;
  }

  .site-header .button-ghost {
    padding-right: 0.92rem;
    padding-left: 0.92rem;
  }

  .mobile-nav {
    width: min(18rem, calc(100vw - 3rem));
  }
}
