@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800;900&family=Oswald:wght@500;600;700&family=Russo+One&display=swap");

:root {
  --green: #214024;
  --deep: #0f1a12;
  --deep-2: #09100b;
  --sand: #d7e9c1;
  --sand-2: #f7f9f2;
  --paper: #ffffff;
  --orange: #89cc00;
  --ink: #101010;
  --muted: #667062;
  --line: rgba(16, 16, 16, 0.13);
  --radius: 26px;
  --radius-sm: 18px;
  --shadow: 0 26px 80px rgba(16, 25, 18, 0.16);
  --title: "Russo One", "Arial Black", Impact, sans-serif;
  --condensed: "Oswald", "Arial Narrow", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--sand-2);
  font-family: var(--body);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  top: 82px;
  bottom: -120px;
  left: -150px;
  width: min(980px, 58vw);
  z-index: -2;
  opacity: 0.075;
  background-image:
    url("/media/%D0%B8%D0%BA%D0%BE%D0%BD%D0%BA%D0%B8/1-site.png"),
    radial-gradient(circle at 22% 12%, rgba(137, 204, 0, 0.22), transparent 24%);
  background-repeat: no-repeat;
  background-size: 980px auto, 100% 100%;
  background-position: left 0 bottom 0, center;
  pointer-events: none;
  transform: rotate(-8deg);
  transform-origin: bottom left;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 86%);
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 86%);
}

body.is-video-open,
body.is-photo-open,
body.is-review-open,
body.is-route-open {
  overflow: hidden;
}

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

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

.shell {
  width: min(1520px, calc(100% - 72px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 250, 244, 0.6);
  border-bottom: 1px solid rgba(137, 204, 0, 0.16);
  box-shadow: 0 12px 34px rgba(16, 25, 18, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px) saturate(1.18);
  transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(137, 204, 0, 0.34) 0%, rgba(137, 204, 0, 0.14) 38%, transparent 100%);
  opacity: var(--header-progress, 0);
  pointer-events: none;
}

.header-grid {
  display: grid;
  grid-template-columns: 340px 1fr auto;
  align-items: center;
  min-height: calc(96px - var(--header-shrink, 0px));
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: calc(332px - var(--brand-shrink, 0px));
  min-width: 0;
}

.brand__logo {
  display: block;
  object-fit: contain;
}

.brand__logo--wide {
  width: calc(326px - var(--logo-width-shrink, 0px));
  height: calc(90px - var(--logo-height-shrink, 0px));
  border-radius: 0;
  object-fit: contain;
}

.brand__logo--mark {
  display: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--deep);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav > a,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 15px;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav > a:hover,
.nav-dropdown:hover > a {
  background: var(--deep);
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 14px;
}

.nav-dropdown > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 9px;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 11px);
  left: 0;
  z-index: 10;
  display: grid;
  min-width: 218px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(16, 25, 18, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.18s ease;
}

.nav-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
}

.nav-dropdown:hover .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  border-radius: 14px;
  color: #fff;
  padding: 10px 12px;
}

.nav-menu a:hover {
  background: rgba(137, 204, 0, 0.18);
  color: var(--sand);
}

.nav-menu--routes {
  min-width: 300px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

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

.header-phone,
.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.header-phone {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 46px;
  background:
    linear-gradient(135deg, rgba(137, 204, 0, 0.1), transparent 42%),
    var(--deep);
  color: #fff;
  padding: 0 18px;
  box-shadow: 0 18px 38px rgba(16, 25, 18, 0.26);
}

.header-phone::before {
  content: "";
  position: absolute;
  inset: -45% -35%;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 50%, rgba(255, 180, 77, 0.55), transparent 28%),
    linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.42) 45%, transparent 60%);
  opacity: 0;
  transform: translateX(-48%) rotate(8deg);
  transition: opacity 0.2s ease, transform 0.5s cubic-bezier(0.2, 0.85, 0.25, 1);
}

.header-phone::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.22s ease;
}

.header-icon {
  width: 42px;
  height: 42px;
  color: #fff;
  overflow: hidden;
}

.header-icon svg {
  width: 22px;
  height: 22px;
}

.header-icon img {
  display: block;
  max-width: none;
}

.header-icon:hover,
.header-phone:hover {
  transform: translateY(-2px);
}

.header-phone:hover {
  background:
    linear-gradient(135deg, #89cc00 0%, #253929 46%, #101912 100%),
    var(--deep);
  box-shadow: 0 22px 46px rgba(137, 204, 0, 0.26), 0 16px 34px rgba(16, 25, 18, 0.28);
  transform: translateY(-3px) scale(1.03);
}

.header-phone:hover::before {
  opacity: 1;
  transform: translateX(44%) rotate(8deg);
}

.header-phone:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-icon--instagram {
  background: radial-gradient(circle at 30% 110%, #ffd76a 0 24%, #ff4b2b 38%, #c13584 58%, #405de6 100%);
  font-size: 24px;
}

.header-icon--max {
  background: #3555ff;
  border-radius: 50%;
}

.header-icon--max img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: visible;
  padding: 72px 0 48px;
}

.hero::after {
  content: none;
}

.hero-tracks {
  position: absolute;
  top: 8%;
  bottom: 4%;
  left: -8%;
  width: 42%;
  opacity: 0.07;
  pointer-events: none;
  background: url("/media/%D0%B8%D0%BA%D0%BE%D0%BD%D0%BA%D0%B8/1.png") center / contain no-repeat;
  transform: rotate(-7deg);
}

.hero-tracks::after {
  content: "";
  position: absolute;
  inset: -18% -35% 0 18%;
  background:
    radial-gradient(circle at 12% 22%, rgba(16, 16, 16, 0.36) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 12%, rgba(16, 16, 16, 0.28) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 34%, rgba(16, 16, 16, 0.22) 0 5px, transparent 6px),
    radial-gradient(circle at 84% 58%, rgba(16, 16, 16, 0.26) 0 3px, transparent 4px),
    radial-gradient(circle at 22% 72%, rgba(16, 16, 16, 0.2) 0 6px, transparent 7px);
  background-size: 130px 150px;
}

.hero-grid {
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 210px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  isolation: isolate;
  max-width: 620px;
  padding: 34px 34px 36px;
  text-align: left;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42));
  box-shadow: 0 24px 80px rgba(16, 25, 18, 0.1);
  backdrop-filter: none;
  mask-image: linear-gradient(138deg, #000 0%, #000 66%, rgba(0, 0, 0, 0.66) 75%, transparent 88%);
  mask-size: 180% 180%;
  mask-position: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(138deg, #000 0%, #000 66%, rgba(0, 0, 0, 0.66) 75%, transparent 88%);
  -webkit-mask-size: 180% 180%;
  -webkit-mask-position: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(138deg, transparent 0 62%, rgba(255, 255, 255, 0.22) 78%, transparent 100%);
  opacity: 0;
  backdrop-filter: none;
  transition: opacity 0.24s ease, background 0.24s ease, backdrop-filter 0.24s ease;
}

body.is-hero-ready .hero-copy::before {
  backdrop-filter: blur(10px) saturate(1.08);
}

body.is-hero-ready .hero-copy::after {
  backdrop-filter: blur(2px) saturate(1.16);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 7px rgba(15, 26, 18, 0.34);
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--title);
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--deep);
  font-size: clamp(42px, 3.05vw, 60px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  color: var(--deep);
  font-size: clamp(36px, 3.3vw, 58px);
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
}

h3 {
  color: var(--deep);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.lead {
  max-width: 560px;
  margin-right: 0;
  margin-left: 0;
  color: #333c35;
  font-size: 17px;
  font-weight: 800;
}

.cta-row {
  display: grid;
  gap: 10px;
  justify-items: start;
  margin-top: 18px;
}

.cta-row__main,
.cta-row__contacts {
  display: grid;
  gap: 10px;
}

.cta-row__main {
  grid-template-columns: max-content max-content;
}

.cta-row__contacts {
  grid-template-columns: max-content max-content max-content;
}

.cta-row__main .btn {
  min-height: 54px;
  padding: 15px 22px;
  font-size: 15px;
  white-space: nowrap;
}

.cta-row__contacts .btn {
  height: 42px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
  white-space: nowrap;
}

.cta-row__contacts .btn svg,
.cta-row__contacts .btn img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-right: 7px;
}

.cta-row__contacts .btn img {
  object-fit: contain;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 14px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-label--mobile {
  display: none;
}

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

.btn--primary {
  background: var(--orange);
  color: var(--deep);
  box-shadow: 0 18px 42px rgba(137, 204, 0, 0.28);
}

.btn--dark {
  background: var(--deep);
  color: #fff;
}

.btn--call {
  min-width: 126px;
  background: linear-gradient(180deg, #fff, #f7ffe8);
  color: var(--deep);
  border: 1px solid rgba(137, 204, 0, 0.34);
  box-shadow: 0 8px 18px rgba(137, 204, 0, 0.14);
}

.btn--ghost {
  background: #fff;
  color: var(--green);
  border: 1px solid rgba(16, 16, 16, 0.12);
}

.btn--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 42%, #8134af 72%, #515bd4 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(221, 42, 123, 0.18);
}

.btn--max {
  background: #214dff;
  color: #fff;
  box-shadow: 0 8px 18px rgba(33, 77, 255, 0.17);
}

.btn--max img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  transform: translateY(1px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
  gap: 10px;
  margin-top: 30px;
}

.hero-facts span {
  border-radius: 999px;
  background: rgba(214, 183, 122, 0.34);
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 13px;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 96px);
  pointer-events: none;
}

.hero-art::after {
  content: none;
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: drop-shadow(0 34px 42px rgba(16, 25, 18, 0.24));
}

.section {
  position: relative;
  padding: 98px 0;
}

.section[id] {
  scroll-margin-top: 118px;
}

.section::before {
  content: none;
}

.section > .shell {
  position: relative;
  z-index: 1;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 38px;
}

.section-head p:last-child {
  max-width: 460px;
  color: var(--muted);
  font-weight: 800;
}

.section--about {
  background: var(--sand-2);
  overflow: visible;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: end;
}

.about-grid p:last-child {
  border-left: 6px solid var(--orange);
  color: #344036;
  font-size: 22px;
  font-weight: 800;
  padding-left: 28px;
}

.section--routes {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  background:
    linear-gradient(180deg, var(--sand-2), #fff 78%),
    radial-gradient(circle at 10% 14%, rgba(137, 204, 0, 0.1), transparent 30%);
}

.section--routes::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: 72px;
  width: 48vw;
  height: 180px;
  background: rgba(33, 64, 36, 0.045);
  clip-path: polygon(6% 28%, 100% 0, 92% 58%, 0 100%);
  pointer-events: none;
}

.section--routes::after {
  content: "";
  position: absolute;
  left: -10vw;
  top: 318px;
  width: 42vw;
  height: 150px;
  background: rgba(137, 204, 0, 0.045);
  clip-path: polygon(0 18%, 92% 0, 100% 64%, 10% 100%);
  pointer-events: none;
}

.section--routes .section-head {
  align-items: start;
  margin-bottom: 54px;
}

.section--routes .section-head .eyebrow {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 16px;
  border-left: 4px solid var(--orange);
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0.14em;
  padding: 3px 0 3px 13px;
  text-shadow: none;
}

.section--routes .section-head .eyebrow::before {
  content: none;
}

.section--routes .section-head h2 {
  max-width: 720px;
}

.section--routes .section-head p:last-child {
  max-width: 390px;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  border: 1px solid rgba(38, 58, 42, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(16, 25, 18, 0.1);
}

.route-card::after {
  content: none;
}

.route-card::before {
  content: none;
}

.route-card__ghost-number {
  position: absolute;
  top: -70px;
  left: -24px;
  z-index: 0;
  display: block;
  color: rgba(12, 22, 14, 0.045);
  background: linear-gradient(180deg, rgba(12, 22, 14, 0.06), rgba(12, 22, 14, 0.018));
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--condensed);
  font-size: 116px;
  font-weight: 700;
  line-height: 0.85;
  text-shadow: none;
  pointer-events: none;
}

@media (max-width: 760px) {
  .route-card__ghost-number {
    left: 8px;
    top: -52px;
    font-size: 96px;
  }
}

.route-card__media {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1.18;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--deep);
  cursor: pointer;
  clip-path: inset(0 round var(--radius) var(--radius) 0 0);
}

.route-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 16, 11, 0.01) 0%, rgba(9, 16, 11, 0.56) 100%),
    linear-gradient(115deg, rgba(137, 204, 0, 0.12), transparent 42%);
  opacity: 1;
  transition: opacity 0.24s ease, background 0.24s ease;
  pointer-events: none;
}

.route-card__media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 94px;
  height: 94px;
  background: url("/media/%D0%B8%D0%BA%D0%BE%D0%BD%D0%BA%D0%B8/click-hand-light-lime-20260607.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.36)) drop-shadow(0 0 16px rgba(137, 204, 0, 0.16));
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.24s ease, transform 0.24s ease, filter 0.24s ease;
}

.route-card__media:hover::after {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(9, 16, 11, 0.28) 0%, rgba(9, 16, 11, 0.78) 100%),
    linear-gradient(115deg, rgba(137, 204, 0, 0.16), transparent 42%);
}

.route-card__media:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.route-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.44s ease;
}

.route-card:hover .route-card__media img {
  transform: scale(1.07);
}

.route-card__badge,
.route-card__price {
  position: absolute;
  z-index: 2;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.route-card__badge {
  top: 16px;
  left: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(9, 16, 11, 0.54);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  backdrop-filter: blur(14px);
}

.route-card__price {
  right: 18px;
  bottom: 18px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(137, 204, 0, 0.9);
  color: var(--deep);
  font-family: var(--condensed);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 13px 11px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(7px) saturate(1.06);
}

.route-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  min-height: 286px;
  flex-direction: column;
  border-radius: 0 0 var(--radius) var(--radius);
  background: #fff;
  padding: 20px 22px 22px;
}

.route-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.route-card__top span {
  border-radius: 999px;
  background: rgba(33, 64, 36, 0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.route-card__body h3 {
  color: var(--deep);
  margin-bottom: 12px;
}

.route-card__body p {
  color: #4a514b;
  font-weight: 700;
}

.route-card__accent {
  margin-top: 12px;
  color: var(--green) !important;
  font-weight: 900 !important;
}

.route-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 18px;
  padding-top: 16px;
}

.route-card__meta span {
  border-radius: 999px;
  background: rgba(137, 204, 0, 0.16);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.route-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  border-top: 1px solid rgba(33, 64, 36, 0.12);
  padding-top: 16px;
}

.text-link {
  --link-x: 50%;
  --link-y: 50%;
  color: var(--orange);
  font-weight: 900;
  background: radial-gradient(circle at var(--link-x) var(--link-y), var(--deep) 0 28%, var(--orange) 36%);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 0 0;
  background-repeat: no-repeat;
  transition: background-size 0.24s ease, color 0.18s ease;
}

.text-link:hover {
  color: transparent;
  background-size: 88% 88%;
}

.route-card__book {
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 14px;
}

.route-card__book:hover {
  background: var(--green);
}

.routes-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(900px, 100%);
  margin: 22px auto 0;
  color: rgba(33, 64, 36, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.routes-note span {
  position: relative;
  border-radius: 999px;
  background: rgba(33, 64, 36, 0.06);
  padding: 8px 12px 8px 24px;
}

.routes-note span::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.route-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.route-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.route-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 68% 28%, rgba(137, 204, 0, 0.16), transparent 30%),
    rgba(5, 10, 6, 0.76);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.route-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden auto;
  width: min(1120px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  border: 1px solid rgba(137, 204, 0, 0.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(137, 204, 0, 0.16), transparent 30%),
    linear-gradient(145deg, #ffffff, #f5faed);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -47%) scale(0.98);
  transition: transform 0.22s ease;
}

.route-modal.is-open .route-modal__panel {
  transform: translate(-50%, -50%) scale(1);
}

.route-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(33, 64, 36, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.route-modal__close:hover {
  background: var(--orange);
}

.route-modal__route {
  display: none;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  min-height: min(680px, calc(100vh - 48px));
}

.route-modal__route.is-active {
  display: grid;
}

.route-modal__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--deep);
}

.route-modal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(9, 16, 11, 0.62)),
    linear-gradient(135deg, rgba(137, 204, 0, 0.14), transparent 42%);
  pointer-events: none;
}

.route-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.route-modal__media span {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--condensed);
  font-size: 112px;
  font-weight: 700;
  line-height: 0.8;
}

.route-modal__content {
  display: flex;
  flex-direction: column;
  padding: 52px 50px 36px;
}

.route-modal__content .eyebrow {
  color: var(--green);
}

.route-modal__content h2 {
  margin: 0 54px 14px 0;
  color: var(--deep);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
}

.route-modal__content p {
  color: #4a514b;
  font-weight: 800;
}

.route-modal__lead {
  color: var(--deep) !important;
  font-size: 18px;
}

.route-modal__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0;
}

.route-modal__facts span {
  border: 1px solid rgba(33, 64, 36, 0.08);
  border-radius: 999px;
  background: rgba(137, 204, 0, 0.13);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 9px 12px;
}

.route-modal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.route-modal__contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(33, 64, 36, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  color: var(--deep);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.route-modal__contact-icon:hover {
  border-color: rgba(137, 204, 0, 0.5);
  background: rgba(137, 204, 0, 0.14);
  transform: translateY(-1px);
}

.route-modal__contact-icon svg,
.route-modal__contact-icon img {
  width: 20px;
  height: 20px;
}

.route-modal__contact-icon img {
  object-fit: contain;
}

.route-modal__contact-icon--instagram {
  color: #243125;
}

.route-modal__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.route-modal__gallery a {
  overflow: hidden;
  border: 1px solid rgba(137, 204, 0, 0.22);
  border-radius: 14px;
  aspect-ratio: 1.16;
  background: var(--deep);
}

.route-modal__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.route-modal__gallery a:hover img {
  transform: scale(1.06);
}

.route-modal__other {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  border-top: 1px solid rgba(33, 64, 36, 0.12);
  padding-top: 18px;
}

.route-modal__other > span {
  color: rgba(33, 64, 36, 0.62);
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-modal__other div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-modal__other a {
  border-radius: 999px;
  background: rgba(33, 64, 36, 0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 11px;
}

.route-modal__other a:hover {
  background: var(--green);
  color: #fff;
}

.hero--concept {
  overflow: hidden;
  min-height: calc(100svh - 96px);
  padding: 92px 0 0;
  background: #f7f9f2;
}

.hero--concept .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  background: url("/media/hero_atv_reference_dirty_v3.png") 64% center / cover no-repeat;
  pointer-events: none;
}

.hero--concept .hero-grid {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  width: min(1520px, calc(100% - 72px));
  min-height: calc(100svh - 245px);
}

.hero--concept .hero-copy {
  padding-bottom: 28px;
  transform: translateY(-12px);
  transition: transform 0.24s ease;
  will-change: transform;
}

.hero--concept .hero-copy:hover,
.hero--concept .hero-copy.is-hinting {
  transform: translateY(-16px);
}

body.is-hero-ready .hero--concept .hero-copy:hover::after,
body.is-hero-ready .hero--concept .hero-copy.is-hinting::after {
  opacity: 0.52;
  backdrop-filter: blur(3px) saturate(1.18);
}

.hero--concept .hero-copy.is-hinting::after {
  background:
    linear-gradient(138deg, transparent 0 46%, rgba(255, 255, 255, 0.52) 50%, transparent 56%),
    linear-gradient(48deg, transparent 0 48%, rgba(255, 255, 255, 0.2) 52%, transparent 58%);
  background-size: 240% 240%;
  background-position: -120% -120%;
  animation: hero-card-sun-glint 0.42s ease-out both;
}

@keyframes hero-card-sun-glint {
  from {
    background-position: -120% -120%, 120% -120%;
  }

  to {
    background-position: 120% 120%, -120% 120%;
  }
}

.hero--concept .hero-copy .eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px 9px;
  color: var(--orange);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.58);
}

.hero--concept .hero-copy h1,
.hero--concept .hero-copy .lead,
.hero--concept .hero-price {
  position: relative;
  z-index: 1;
}

.hero--concept .hero-copy h1 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 26px rgba(0, 0, 0, 0.1);
}

.hero--concept .hero-copy .lead {
  color: #263229;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38), 0 7px 18px rgba(0, 0, 0, 0.18);
}

.hero--concept .hero-copy .eyebrow::before {
  content: "";
  position: absolute;
  inset: -14px -34px -15px -30px;
  z-index: -1;
  background: url("/media/%D0%B8%D0%BA%D0%BE%D0%BD%D0%BA%D0%B8/hero_eyebrow_mud_stroke.png") center / 100% 100% no-repeat;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.24));
  transform: rotate(-0.4deg);
}

.hero--concept .hero-copy::before {
  border-radius: 24px;
  transition: mask-position 0.34s ease, -webkit-mask-position 0.34s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, backdrop-filter 0.22s ease;
}

.hero--concept .hero-copy::after {
  border-radius: 24px;
}

body.is-hero-ready .hero--concept .hero-copy:hover::before,
body.is-hero-ready .hero--concept .hero-copy.is-hinting::before {
  mask-position: 0 0;
  -webkit-mask-position: 0 0;
  border-color: rgba(255, 255, 255, 0.68);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5));
  box-shadow: 0 30px 92px rgba(16, 25, 18, 0.16);
  backdrop-filter: blur(12px) saturate(1.12);
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
  color: var(--deep);
  font-family: var(--condensed);
  font-size: clamp(36px, 3.6vw, 58px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-price span,
.hero-price small {
  color: var(--orange);
  font-size: 0.38em;
  font-weight: 900;
  text-shadow: 0 2px 7px rgba(15, 26, 18, 0.26);
}

.hero-cta {
  position: relative;
  z-index: 3;
  width: min(100%, 620px);
  margin-top: 42px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42));
  box-shadow: 0 24px 80px rgba(16, 25, 18, 0.1);
  backdrop-filter: blur(9px) saturate(1.08);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, backdrop-filter 0.22s ease;
  will-change: transform;
}

.hero-cta:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.62);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5));
  box-shadow: 0 30px 86px rgba(16, 25, 18, 0.14);
  backdrop-filter: blur(11px) saturate(1.12);
}

.hero-cta .cta-row__main {
  grid-template-columns: 1.12fr 0.88fr;
  width: 100%;
}

.hero-cta .cta-row__contacts {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.hero-cta .cta-row__main .btn,
.hero-cta .cta-row__contacts .btn {
  width: 100%;
}

.hero-cta .cta-row__main .btn {
  min-height: 58px;
  font-size: 16px;
}

.hero-cta .btn--primary {
  background: linear-gradient(180deg, #a5ef00 0%, #86cb00 100%);
  box-shadow: 0 20px 46px rgba(137, 204, 0, 0.42), inset 0 -2px 0 rgba(15, 26, 18, 0.18);
}

.hero-cta .btn--dark {
  background: rgba(9, 16, 11, 0.92);
  box-shadow: 0 14px 30px rgba(9, 16, 11, 0.22);
}

.hero-cta .cta-row__contacts .btn {
  height: 42px;
  min-height: 42px;
  border: 1px solid rgba(15, 26, 18, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--deep);
  font-size: 12px;
  box-shadow: none;
}

.hero-cta .cta-row__contacts .btn::after {
  content: none;
}

.hero-cta .cta-row__contacts .btn svg,
.hero-cta .cta-row__contacts .btn img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}

.hero-cta .cta-row__contacts .btn--instagram svg {
  color: #d83a7c;
}

.hero-cta .cta-row__contacts .btn--max img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  filter: saturate(0.9);
}

.hero-video-link {
  position: absolute;
  top: clamp(190px, 28vh, 280px);
  right: clamp(210px, 17vw, 360px);
  z-index: 4;
  display: inline-grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  gap: 7px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(185, 255, 45, 0.54);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.1) 30%, transparent 58%),
    linear-gradient(145deg, rgba(137, 204, 0, 0.84), rgba(137, 204, 0, 0.26));
  color: var(--deep);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24), 0 0 0 10px rgba(137, 204, 0, 0.1);
  backdrop-filter: blur(12px) saturate(1.2);
  animation: hero-video-nudge 5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-video-link:hover {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.28), 0 0 0 14px rgba(137, 204, 0, 0.14);
}

.hero-video-link__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(9, 16, 11, 0.92);
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translateX(1px);
  font-size: 0;
}

.hero-video-link__icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--orange);
}

@keyframes hero-video-nudge {
  0%,
  76%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  80% {
    transform: translate(-5px, -4px) rotate(-4deg) scale(1.02);
  }

  84% {
    transform: translate(6px, 3px) rotate(4deg) scale(0.99);
  }

  88% {
    transform: translate(-4px, 4px) rotate(-2deg) scale(1.015);
  }

  92% {
    transform: translate(3px, -2px) rotate(2deg) scale(1);
  }

  96% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

.hero-video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hero-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero-video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 16, 11, 0.74);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 92vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(9, 16, 11, 0.86);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.hero-video-modal__video {
  width: 100%;
  max-height: min(74vh, 720px);
  background: #000;
}

.hero-video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep);
  cursor: pointer;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.hero-benefits {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-bottom: 28px;
  transform: translateY(-6px);
}

.hero-benefits .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(9, 16, 11, 0.82);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
}

.hero-benefits span {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 900;
  padding: 16px 20px;
  cursor: default;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.hero-benefits span:last-child {
  border-right: 0;
}

.hero-benefits span:hover {
  z-index: 1;
  background: rgba(255, 255, 255, 0.16);
  color: #f8fff0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 12px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.picker-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 26px;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 15% 18%, rgba(137, 204, 0, 0.2), transparent 30%),
    linear-gradient(135deg, #0b130d, #203924 78%);
  color: #fff;
  padding: 24px 26px;
  box-shadow: var(--shadow);
}

.picker-panel::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -72px;
  width: 220px;
  height: 220px;
  border: 22px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.picker-panel__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 8px 6px 4px;
}

.picker-panel h2,
.picker-panel p {
  color: #fff;
}

.picker-panel__copy .eyebrow {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.62);
}

.picker-panel__copy h2 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: 48px;
  line-height: 0.98;
}

.picker-panel__copy > p {
  max-width: 500px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.picker-panel__copy .btn {
  width: fit-content;
}

.picker-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.picker-options article {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.picker-options article:hover {
  border-color: rgba(137, 204, 0, 0.48);
  background:
    linear-gradient(150deg, rgba(137, 204, 0, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.picker-options span {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(137, 204, 0, 0.92);
  font-family: var(--condensed);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
}

.picker-options h3 {
  margin-bottom: 8px;
  color: #fff;
}

.picker-options p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.section--picker {
  padding-bottom: 54px;
}

.included-grid,
.safety-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.section--included {
  position: relative;
  overflow: hidden;
  padding-top: 48px;
}

.section--included::before {
  content: none;
}

.included-grid > div:first-child {
  position: sticky;
  top: 118px;
  border-left: 4px solid var(--orange);
  padding: 16px 0 16px 22px;
}

.included-grid > div:first-child h2 {
  max-width: 600px;
  font-size: clamp(28px, 2.1vw, 38px);
  line-height: 1.03;
}

.included-grid > div:first-child p:last-child {
  max-width: 560px;
  color: #344036;
  font-size: 17px;
  font-weight: 800;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  min-height: 126px;
  border: 1px solid rgba(38, 58, 42, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 94% 12%, rgba(137, 204, 0, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 242, 0.92)),
    #fff;
  color: var(--deep);
  padding: 20px;
  box-shadow: 0 12px 34px rgba(16, 25, 18, 0.065);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.included-list li:hover {
  border-color: rgba(137, 204, 0, 0.34);
  box-shadow: 0 24px 58px rgba(16, 25, 18, 0.12);
  transform: translateY(-3px);
}

.included-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(137, 204, 0, 0.16);
  color: var(--green);
  font-family: var(--condensed);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.included-list h3 {
  margin-bottom: 8px;
  color: var(--deep);
  font-family: var(--condensed);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.included-list p {
  margin: 0;
  color: #566153;
  font-weight: 800;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 52px;
  right: 28px;
  left: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(137, 204, 0, 0.78), rgba(33, 64, 36, 0.18));
  pointer-events: none;
}

.steps-grid article {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 224px;
  border: 1px solid rgba(33, 64, 36, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 242, 0.94)),
    #fff;
  padding: 28px 24px 24px;
  box-shadow: 0 22px 62px rgba(16, 25, 18, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.steps-grid article::after {
  content: none;
}

.steps-grid article:hover {
  border-color: rgba(137, 204, 0, 0.34);
  box-shadow: 0 28px 72px rgba(16, 25, 18, 0.14);
  transform: translateY(-4px);
}

.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  border-radius: 18px;
  background: var(--orange);
  color: var(--deep);
  font-family: var(--condensed);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(137, 204, 0, 0.2);
}

.steps-grid h3 {
  margin-bottom: 16px;
}

.steps-grid p {
  color: var(--muted);
  font-weight: 800;
}

.section--media,
.section--safety {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.section--media {
  --media-bg: #0b130d;
  --media-edge-light: #f8fbf3;
  --media-edge-dark: #071009;
  --media-frame-lime: #a8d80d;
  --media-rail-edge-left: #081109;
  --media-rail-edge-right: #172719;
  z-index: 1;
  padding: 58px 0 62px;
  overflow: visible;
  background:
    radial-gradient(circle at 16% 18%, rgba(137, 204, 0, 0.16), transparent 24%),
    radial-gradient(ellipse at 36% 36%, rgba(137, 204, 0, 0.08), transparent 34%),
    radial-gradient(ellipse at 72% 58%, rgba(255, 255, 255, 0.055), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(137, 204, 0, 0.11), transparent 28%),
    linear-gradient(135deg, #071009 0%, #0e1a11 42%, #172719 100%);
  color: #fff;
  box-shadow:
    0 -18px 34px -16px rgba(7, 16, 9, 0.52),
    0 18px 34px -18px rgba(7, 16, 9, 0.34);
}

.media-tread-divider {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 3;
  height: clamp(34px, 3vw, 52px);
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
}

.media-tread-divider::before,
.media-tread-divider::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  pointer-events: none;
}

.media-tread-divider::before {
  top: calc(50% + 3px);
  height: clamp(18px, 1.7vw, 28px);
  background: url("/media/%D0%B3%D0%B5%D0%BD%D0%B5%D1%80%D0%B0%D1%86%D0%B8%D0%B8/tread-divider-tile-20260607.png") left center / auto 310% repeat-x;
  opacity: 0.26;
  transform: translateY(-50%);
  animation: media-tread-drift 44s linear infinite;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
}

.media-tread-divider::after {
  content: none;
}

.media-tread-divider--top {
  top: 0;
  background: transparent;
  transform: translateY(-50%);
}

.media-tread-divider--bottom {
  bottom: 0;
  background: transparent;
  transform: translateY(50%);
}

.media-tread-divider--bottom::before {
  top: calc(50% - 3px);
  opacity: 0.26;
  transform: translateY(-50%) rotate(180deg);
}

@keyframes media-tread-drift {
  from {
    background-position: 0 center;
  }

  to {
    background-position: 620px center;
  }
}


.media-tread-divider--bottom::after {
  content: none;
}

.section--media::before {
  content: none;
  position: absolute;
  right: max(40px, calc((100vw - 1520px) / 2));
  top: 44px;
  width: min(430px, 28vw);
  height: 148px;
  border-top: 12px solid rgba(137, 204, 0, 0.5);
  border-right: 12px solid rgba(137, 204, 0, 0.34);
  border-radius: 0 42px 0 0;
  opacity: 0.72;
  pointer-events: none;
  transform: skewX(-12deg);
}

.section--media h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(32px, 2.8vw, 52px);
  line-height: 0.98;
}

.section--media p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 800;
}

.section--safety h2 {
  color: #fff;
}

.section--safety p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.media-layout {
  display: grid;
  gap: 22px;
}

.media-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(160px, 0.38fr) minmax(460px, 0.82fr);
  gap: 28px;
  align-items: start;
  justify-content: space-between;
}

.media-copy {
  max-width: 600px;
  padding-top: 38px;
}

.video-column {
  position: relative;
  display: grid;
  justify-self: end;
  width: min(600px, 100%);
  padding: 26px;
}

.video-column::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: url("/media/%D0%B3%D0%B5%D0%BD%D0%B5%D1%80%D0%B0%D1%86%D0%B8%D0%B8/video-frame-segmented-20260607.png") center / 100% 100% no-repeat;
  opacity: 0.62;
  pointer-events: none;
}

.media-side-title {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  gap: 14px;
  align-items: center;
  align-self: center;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-side-title::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(137, 204, 0, 0.58), rgba(255, 255, 255, 0.12), transparent);
}

.media-side-title--video {
  width: 100%;
  margin-top: 10px;
}

.media-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 22px;
}

.media-stats span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  backdrop-filter: blur(12px);
}

.photo-rail {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 4px auto 0;
  overflow: hidden;
  padding: 42px 0 0;
}

.photo-rail__head {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-rail__head::before,
.photo-rail__head::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(137, 204, 0, 0.54));
}

.photo-rail__head::after {
  background: linear-gradient(90deg, rgba(137, 204, 0, 0.54), rgba(255, 255, 255, 0.14), transparent);
}

.photo-rail__head span {
  text-align: center;
}

.photo-rail::before,
.photo-rail::after {
  content: none;
  position: absolute;
  top: 42px;
  bottom: 0;
  z-index: 3;
  width: 118px;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.photo-rail::before {
  left: 0;
}

.photo-rail::after {
  right: 0;
}

.photo-rail__viewport {
  display: grid;
  grid-auto-columns: clamp(180px, 13.5vw, 238px);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 8px 96px 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 74px, #000 calc(100% - 126px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 74px, #000 calc(100% - 126px), transparent 100%);
}

.photo-rail__viewport::-webkit-scrollbar {
  display: none;
}

.photo-rail__item,
.photo-rail__item:nth-child(7n + 1),
.photo-rail__item:nth-child(9n + 4) {
  grid-column: auto !important;
  grid-row: auto !important;
}

.photo-rail__item {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(137, 204, 0, 0.5);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(137, 204, 0, 0.18);
  scroll-snap-align: start;
}

.photo-rail .photo-rail__item {
  width: auto;
  min-width: 0;
}

.photo-rail .gallery-item__label {
  border: 0;
  background: transparent;
  color: rgba(214, 222, 211, 0.58);
  padding: 0;
  backdrop-filter: none;
}

.photo-rail__arrow {
  position: absolute;
  top: calc(50% + 21px);
  z-index: 4;
  display: grid;
  width: 88px;
  height: 150px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--media-frame-lime);
  cursor: pointer;
  font-size: 86px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.78;
  text-shadow:
    0 0 18px rgba(168, 216, 13, 0.36),
    0 12px 26px rgba(0, 0, 0, 0.48);
  transform: translateY(-50%) scaleY(1.2);
  transition: opacity 0.18s ease, transform 0.18s ease, text-shadow 0.18s ease;
}

.photo-rail__arrow:hover {
  opacity: 1;
  text-shadow:
    0 0 24px rgba(168, 216, 13, 0.54),
    0 14px 30px rgba(0, 0, 0, 0.54);
  transform: translateY(-50%) scale(1.04, 1.28);
}

.photo-rail__arrow--prev {
  left: 10px;
}

.photo-rail__arrow--next {
  right: 10px;
}

.photo-rail.is-at-start::before,
.photo-rail.is-at-start .photo-rail__arrow--prev,
.photo-rail.is-at-end::after,
.photo-rail.is-at-end .photo-rail__arrow--next {
  opacity: 0;
  pointer-events: none;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.photo-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(137, 204, 0, 0.08), transparent 34%),
    rgba(4, 9, 6, 0.78);
  backdrop-filter: blur(10px) saturate(0.9);
  cursor: pointer;
}

.photo-lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(1180px, calc(100vw - 72px));
  max-height: calc(100vh - 72px);
  place-items: center;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.photo-lightbox.is-open .photo-lightbox__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.photo-lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 110px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.54);
}

.photo-lightbox__close,
.photo-lightbox__arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, background 0.18s ease;
}

.photo-lightbox__close:hover,
.photo-lightbox__arrow:hover {
  background: #fff;
  transform: scale(1.05);
}

.photo-lightbox__close {
  top: -22px;
  right: -22px;
  width: 48px;
  height: 48px;
  font-size: 34px;
  line-height: 1;
}

.photo-lightbox__arrow {
  top: 50%;
  width: 58px;
  height: 58px;
  font-size: 46px;
  line-height: 1;
  transform: translateY(-50%);
}

.photo-lightbox__arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.photo-lightbox__arrow--prev {
  left: -28px;
}

.photo-lightbox__arrow--next {
  right: -28px;
}

.photo-lightbox__counter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(9, 16, 11, 0.7);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
  backdrop-filter: blur(12px);
}

.section--safety .feature-list li {
  min-height: 96px;
}

.section--faq {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: 92px;
  padding-bottom: 54px;
}

.section--faq::before {
  content: "";
  position: absolute;
  left: -7vw;
  top: 54px;
  width: min(360px, 28vw);
  height: 118px;
  background: rgba(137, 204, 0, 0.08);
  clip-path: polygon(8% 0, 100% 18%, 82% 100%, 0 68%);
  pointer-events: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(38, 58, 42, 0.12);
  border-radius: 22px;
  background: var(--paper);
  padding: 20px 22px;
  box-shadow: 0 12px 32px rgba(16, 25, 18, 0.06);
}

.faq-list summary {
  cursor: pointer;
  color: var(--deep);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.section--services {
  background:
    linear-gradient(180deg, #fff, #f8fbf3 100%);
}

.section--services .eyebrow {
  text-shadow: none;
}

.section--services h2 {
  max-width: 640px;
  font-size: clamp(28px, 2.15vw, 38px);
  line-height: 1.03;
}

.section--services .services-grid > div:first-child > p:last-child {
  max-width: 520px;
  color: #344036;
  font-size: 18px;
  font-weight: 800;
}

.services-grid,
.condition-layout,
.contact-grid,
.video-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  align-items: start;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(38, 58, 42, 0.12);
  background:
    radial-gradient(circle at 90% 8%, rgba(137, 204, 0, 0.13), transparent 28%),
    linear-gradient(145deg, #fff, #f7faef);
  color: var(--deep);
  padding: 26px;
  box-shadow: 0 18px 52px rgba(16, 25, 18, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 150px;
  height: 150px;
  border: 18px dashed rgba(33, 64, 36, 0.07);
  border-radius: 50%;
}

.service-card:nth-child(2) {
  background:
    radial-gradient(circle at 90% 8%, rgba(137, 204, 0, 0.12), transparent 28%),
    linear-gradient(145deg, #fff, #f4f8ed);
}

.service-card:nth-child(3) {
  background:
    radial-gradient(circle at 90% 8%, rgba(137, 204, 0, 0.16), transparent 28%),
    linear-gradient(145deg, #fbfff4, #eef7df);
}

.service-card:hover {
  box-shadow: 0 32px 86px rgba(16, 25, 18, 0.18);
  transform: translateY(-4px);
}

.service-card__num {
  position: absolute;
  right: 24px;
  top: 22px;
  color: rgba(33, 64, 36, 0.12) !important;
  font-family: var(--condensed);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.service-card .service-card__duration {
  width: fit-content;
  border-radius: 999px;
  background: rgba(33, 64, 36, 0.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 11px;
}

.service-card span {
  color: #566153;
  font-weight: 800;
}

.service-card > span:not(.service-card__num) {
  display: block;
  margin-bottom: 24px;
}

.service-card h3 {
  max-width: 260px;
  color: var(--deep);
  margin-top: 16px;
  margin-bottom: 0;
}

.service-card strong {
  display: block;
  color: var(--green);
  font-family: var(--condensed);
  font-size: 32px;
  font-weight: 700;
  margin: 22px 0 14px;
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(137, 204, 0, 0.9);
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
  padding: 11px 15px;
}

.service-card a:hover {
  background: var(--orange);
}

.section--conditions {
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.section--conditions::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 34px;
  width: 430px;
  height: 430px;
  border: 44px dashed rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.section--conditions h2 {
  color: #fff;
}

.section--conditions p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 850;
  padding: 19px;
}

.feature-list span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1;
  background: var(--sand-2);
  box-shadow: 0 12px 34px rgba(16, 25, 18, 0.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(135deg, rgba(137, 204, 0, 0.14), transparent 38%);
  opacity: 0.68;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.gallery-item:nth-child(7n + 1),
.gallery-item:nth-child(9n + 4) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.gallery-item__label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(9, 16, 11, 0.42);
  color: rgba(226, 232, 224, 0.74);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  text-transform: uppercase;
  text-shadow: none;
  backdrop-filter: blur(10px);
}

.section--media .gallery-item:nth-child(1) .gallery-item__label,
.section--media .gallery-item:nth-child(4) .gallery-item__label {
  font-size: 12px;
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-item:hover::after {
  opacity: 0.38;
}

.section--video {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 24%, rgba(137, 204, 0, 0.14), transparent 28%),
    linear-gradient(135deg, #111912, #253829);
  color: #fff;
}

.section--video h2 {
  color: #fff;
}

.section--video p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.video-stage {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.4)),
    #101912;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28);
}

.video-stage::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 56px;
  background: linear-gradient(90deg, rgba(11, 19, 13, 0.42) 0%, rgba(11, 19, 13, 0.18) 44%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.video-stage::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 56px;
  background: linear-gradient(270deg, rgba(11, 19, 13, 0.42) 0%, rgba(11, 19, 13, 0.18) 44%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.video-main {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #101912;
  object-fit: cover;
}

.video-stage__label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 4;
  border-radius: 999px;
  background: rgba(9, 16, 11, 0.64);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 9px 13px;
  backdrop-filter: blur(14px);
  transition: opacity 0.18s ease;
}

.video-stage.is-playing .video-stage__label {
  opacity: 0;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--media-frame-lime);
  cursor: pointer;
  font-size: 78px;
  padding-left: 9px;
  text-shadow:
    0 0 18px rgba(168, 216, 13, 0.42),
    0 16px 34px rgba(0, 0, 0, 0.42);
  backdrop-filter: none;
  transform: translate(-50%, -50%);
  transition: color 0.18s ease, transform 0.18s ease, text-shadow 0.18s ease;
}

.video-play[hidden] {
  display: none;
}

.video-play:hover {
  color: var(--media-frame-lime);
  text-shadow:
    0 0 24px rgba(168, 216, 13, 0.62),
    0 18px 38px rgba(0, 0, 0, 0.46);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 78px;
  height: 112px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--media-frame-lime);
  cursor: pointer;
  font-size: 86px;
  font-weight: 300;
  line-height: 1;
  opacity: 1;
  text-shadow:
    0 0 22px rgba(168, 216, 13, 0.54),
    0 12px 28px rgba(0, 0, 0, 0.56);
  transform: translateY(-50%) scaleY(1.12);
  transition: opacity 0.18s ease, transform 0.18s ease, text-shadow 0.18s ease;
}

.video-arrow:hover {
  opacity: 1;
  text-shadow:
    0 0 28px rgba(168, 216, 13, 0.7),
    0 12px 26px rgba(0, 0, 0, 0.56);
  transform: translateY(-50%) scale(1.06, 1.22);
}

.video-arrow--prev {
  left: -6px;
}

.video-arrow--next {
  right: -6px;
}

.video-stage.is-at-start::before,
.video-stage.is-at-start .video-arrow--prev,
.video-stage.is-at-end::after,
.video-stage.is-at-end .video-arrow--next {
  opacity: 0;
  pointer-events: none;
}

.video-dots {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 7px;
}

.video-dot {
  width: 24px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(168, 216, 13, 0.55);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(168, 216, 13, 0.22);
  transition: width 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.video-dot.is-active {
  width: 34px;
  background: var(--media-frame-lime);
  box-shadow: 0 0 16px rgba(168, 216, 13, 0.48);
}

.section--reviews {
  --reviews-bg: #fbfdf7;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(137, 204, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #fbfdf7 0%, #fff 100%);
  padding: 88px 0 48px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1.52fr);
  gap: 56px;
  align-items: center;
}

.reviews-copy {
  position: relative;
  isolation: isolate;
}

.reviews-copy::before {
  content: "";
  position: absolute;
  left: -96px;
  top: -14%;
  z-index: -1;
  width: 232px;
  height: 232px;
  background: url("/media/%D0%B3%D0%B5%D0%BD%D0%B5%D1%80%D0%B0%D1%86%D0%B8%D0%B8/reviews-laurel-20260606.png") center / contain no-repeat;
  opacity: 0.09;
  transform: translateY(-50%);
}

.reviews-copy::after {
  content: none;
}

.reviews-copy h2 {
  position: relative;
  max-width: 460px;
  font-size: clamp(28px, 2.15vw, 40px);
  line-height: 1.02;
}

.reviews-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 48px;
  margin: 18px 0 0 auto;
  border: 1px solid rgba(137, 204, 0, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(137, 204, 0, 0.92), rgba(196, 235, 49, 0.96));
  color: var(--deep);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(137, 204, 0, 0.22);
}

.reviews-add:hover {
  box-shadow: 0 22px 52px rgba(137, 204, 0, 0.3);
  transform: translateY(-1px);
}

.reviews-stage {
  position: relative;
  min-width: 0;
  display: grid;
}

.reviews-stage::before,
.reviews-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 72px;
  z-index: 2;
  width: 108px;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.reviews-stage::before {
  left: 0;
  background: linear-gradient(90deg, var(--reviews-bg) 0%, rgba(251, 253, 247, 0.88) 42%, transparent 100%);
}

.reviews-stage::after {
  right: 0;
  background: linear-gradient(270deg, var(--reviews-bg) 0%, rgba(251, 253, 247, 0.88) 42%, transparent 100%);
}

.reviews-arrow {
  position: absolute;
  top: calc((100% - 72px) / 2);
  z-index: 4;
  display: grid;
  width: 78px;
  height: 112px;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(9, 16, 11, 0.46);
  cursor: pointer;
  font-size: 92px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 0.18s ease, transform 0.18s ease;
}

.reviews-stage.is-at-start::before,
.reviews-stage.is-at-start .reviews-arrow--prev,
.reviews-stage.is-at-end::after,
.reviews-stage.is-at-end .reviews-arrow--next {
  opacity: 0;
  pointer-events: none;
}

.reviews-arrow:hover {
  color: var(--deep);
  transform: translateY(-50%) scale(1.06);
}

.reviews-arrow--prev {
  left: 10px;
}

.reviews-arrow--next {
  right: 10px;
}

.reviews-rail {
  display: grid;
  grid-auto-columns: minmax(340px, 382px);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-rail::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 218px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(38, 58, 42, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(137, 204, 0, 0.15), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 239, 0.94));
  color: var(--deep);
  padding: 22px 24px 20px;
  scroll-snap-align: start;
  box-shadow: 0 18px 44px rgba(16, 25, 18, 0.08);
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: -12px;
  color: rgba(137, 204, 0, 0.18);
  font-family: var(--condensed);
  font-size: 104px;
  font-weight: 700;
  line-height: 1;
}

.review-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.review-card__head b {
  color: var(--deep);
  font-size: 18px;
}

.review-card__head span {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-shadow: 0 3px 10px rgba(137, 204, 0, 0.22);
}

.review-card__route {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(137, 204, 0, 0.13);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.review-card__text {
  position: relative;
  z-index: 1;
  max-height: 86px;
  overflow: hidden;
}

.review-card--has-more:not(.is-expanded) .review-card__text::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(249, 252, 244, 0.98));
  pointer-events: none;
}

.review-card.is-expanded .review-card__text {
  max-height: none;
}

.review-card__text p {
  margin: 0;
  color: #344036;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
}

.review-card__more {
  position: relative;
  z-index: 1;
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 12px 0 0;
}

.review-card__foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.review-card__foot time {
  color: #7b867b;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 24px;
}

.review-modal.is-open {
  display: grid;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 16, 11, 0.48);
  backdrop-filter: blur(12px);
}

.review-modal__panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  overflow: hidden;
  border: 1px solid rgba(38, 58, 42, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(137, 204, 0, 0.16), transparent 28%),
    linear-gradient(145deg, #fff, #f7fbef);
  color: var(--deep);
  padding: 32px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.26);
}

.review-modal__panel h2 {
  max-width: 470px;
  margin-bottom: 22px;
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 1.02;
}

.review-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(38, 58, 42, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--deep);
  cursor: pointer;
  font-size: 26px;
}

.review-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.review-modal label,
.review-rating {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  color: #526052;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-modal input,
.review-modal select,
.review-modal textarea {
  width: 100%;
  border: 1px solid rgba(38, 58, 42, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--deep);
  font: inherit;
  font-weight: 800;
  padding: 13px 14px;
}

.review-modal textarea {
  min-height: 132px;
  resize: vertical;
}

.review-rating {
  border: 0;
  padding: 0;
}

.review-rating legend {
  margin-bottom: 8px;
}

.review-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-rating__stars {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(137, 204, 0, 0.12);
  padding: 8px 12px;
}

.review-rating__stars label {
  display: inline-flex;
  color: rgba(137, 204, 0, 0.28);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.14s ease, transform 0.14s ease;
}

.review-rating__stars label.is-active {
  color: var(--orange);
}

.review-rating__stars label:hover {
  transform: translateY(-1px);
}

.review-form__trap {
  position: absolute;
  left: -9999px;
}

.review-form__status {
  min-height: 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.section--contacts {
  position: relative;
  overflow: visible;
  background: #fff;
  color: var(--deep);
  padding: 34px 0 60px;
}

.contact-stage {
  position: relative;
  z-index: 1;
  min-height: 600px;
}

.contact-map {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(1130px, 74%);
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(38, 58, 42, 0.12);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(16, 25, 18, 0.13);
}

.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 253, 247, 0.58), transparent 34%),
    linear-gradient(180deg, transparent 64%, rgba(250, 253, 247, 0.24));
  pointer-events: none;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

.contact-edge-art {
  position: absolute;
  top: -142px;
  z-index: 2;
  display: block;
  width: min(640px, 33vw);
  height: 430px;
  background-image: url("/media/%D0%B3%D0%B5%D0%BD%D0%B5%D1%80%D0%B0%D1%86%D0%B8%D0%B8/contact-edge-atv-20260606.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  pointer-events: none;
  filter: drop-shadow(0 22px 30px rgba(16, 25, 18, 0.12));
  opacity: 0.5;
}

.contact-edge-art--left {
  left: 0;
  background-position: left center;
}

.contact-edge-art--right {
  right: 0;
  background-position: right center;
}

.contact-card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: min(620px, 45%);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 58, 42, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 236, 0.94)),
    radial-gradient(circle at 92% 96%, rgba(137, 204, 0, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.92);
  color: var(--deep);
  padding: 40px;
  box-shadow: 0 28px 82px rgba(16, 25, 18, 0.15);
  backdrop-filter: blur(18px) saturate(1.05);
}

.contact-card h2 {
  max-width: 520px;
  color: var(--deep);
  font-size: clamp(34px, 2.7vw, 52px);
  line-height: 0.98;
}

.contact-card p {
  position: relative;
  z-index: 1;
  color: #3a473c;
  font-size: 19px;
  font-weight: 800;
}

.contact-card a {
  color: var(--deep);
}

.contact-facts {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}

.contact-facts p {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: baseline;
  margin: 0;
}

.contact-facts b {
  color: rgba(33, 64, 36, 0.58);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-facts a,
.contact-facts span {
  color: #263a2a;
}

.contact-actions,
.contact-links {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: none;
}

.contact-links .btn {
  width: 100%;
  min-height: 54px;
  padding: 13px 18px;
  font-size: 14px;
}

.contact-links .btn--call {
  grid-column: 1 / -1;
  background: var(--orange);
  color: var(--deep);
}

.contact-links .btn svg,
.contact-links .btn img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-right: 8px;
}

.contact-links .btn img {
  object-fit: contain;
}

.footer {
  border-top: 1px solid rgba(38, 58, 42, 0.1);
  background:
    linear-gradient(180deg, #f1f7e8, #ffffff);
  padding: 12px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  color: #5e6a60;
  font-weight: 800;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand__copy {
  display: grid;
  gap: 4px;
}

.footer-brand__copy p {
  max-width: 520px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4px 12px;
  font-size: 12px;
  line-height: 1.25;
}

.footer-links a {
  color: rgba(33, 64, 36, 0.66);
  text-decoration: none;
  border-bottom: 1px dotted rgba(33, 64, 36, 0.28);
}

.footer-links a:hover {
  color: var(--deep);
  border-bottom-color: rgba(138, 216, 0, 0.65);
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  text-align: right;
}

.footer-contact a:first-child {
  color: var(--deep);
  font-size: 18px;
  font-weight: 900;
}

.footer-contact span {
  font-size: 13px;
}

.footer .brand {
  width: 220px;
}

.footer .brand__logo--wide {
  width: 220px;
  height: 60px;
}

.legal-page {
  background: linear-gradient(180deg, #f7fbef, #ffffff 48%, #f3f8eb);
  padding-top: 96px;
}

.legal-actions {
  display: flex;
  max-width: 920px;
  margin-bottom: 18px;
}

.legal-home-link {
  min-width: 188px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
}

.legal-card {
  max-width: 920px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(39, 75, 35, 0.12);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(22, 43, 20, 0.1);
  padding: 48px;
}

.legal-card h1 {
  max-width: 780px;
  margin: 8px 0 24px;
  color: var(--deep);
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--deep);
  font-size: 22px;
}

.legal-card p {
  margin: 0 0 14px;
  color: rgba(19, 36, 23, 0.76);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.legal-card a {
  color: var(--deep);
  font-weight: 900;
}

.legal-owner {
  margin: 28px 0 34px;
  padding: 22px;
  border: 1px solid rgba(138, 216, 0, 0.34);
  border-radius: 20px;
  background: rgba(237, 248, 216, 0.64);
}

.legal-owner h2 {
  margin-top: 0;
}

.legal-owner dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.legal-owner dl div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
}

.legal-owner dt {
  color: rgba(19, 36, 23, 0.54);
  font-weight: 900;
}

.legal-owner dd {
  margin: 0;
  color: var(--deep);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.legal-updated {
  margin-top: 34px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(39, 75, 35, 0.12);
  font-size: 14px !important;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(137, 204, 0, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(26px) scale(0.96);
  transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.2, 0.85, 0.25, 1);
}

body.is-floating-call-ready .floating-call {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.is-footer-visible .floating-call {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.92);
}

.floating-call::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: url("/media/%D0%B8%D0%BA%D0%BE%D0%BD%D0%BA%D0%B8/quad_tire_lime_ui_transparent.png") center / contain no-repeat;
  transition: transform 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.is-floating-call-ready .floating-call::before {
  animation: floating-call-tire-rock 3.2s ease-in-out infinite;
}

body.is-floating-call-ready .floating-call:hover::before {
  animation: floating-call-tire-hover 0.78s cubic-bezier(0.18, 0.82, 0.24, 1) both;
}

.floating-call span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--deep);
  box-shadow: 0 8px 18px rgba(137, 204, 0, 0.28);
}

@keyframes floating-call-tire-rock {
  0%,
  100% {
    transform: rotate(-7deg);
  }

  50% {
    transform: rotate(7deg);
  }
}

@keyframes floating-call-tire-hover {
  0% {
    transform: rotate(-7deg) scale(1);
  }

  100% {
    transform: rotate(210deg) scale(1.04);
  }
}

.floating-top {
  position: fixed;
  left: clamp(24px, 21vw, 430px);
  bottom: 24px;
  z-index: 70;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(137, 204, 0, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  color: var(--deep);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 14px 34px rgba(16, 25, 18, 0.1), 0 0 0 8px rgba(137, 204, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px) saturate(1.2);
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.floating-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-top:hover {
  border-color: rgba(137, 204, 0, 0.62);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 44px rgba(16, 25, 18, 0.14), 0 0 0 10px rgba(137, 204, 0, 0.09);
  transform: translateY(-3px) scale(1);
}

.floating-top span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(137, 204, 0, 0.1);
  color: var(--orange);
  transition: background 0.18s ease, color 0.18s ease;
}

.floating-top:hover span {
  background: rgba(137, 204, 0, 0.2);
  color: var(--orange);
}

.route-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--sand-2);
}

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

.route-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.route-hero img {
  width: 100%;
  height: 560px;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.route-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.route-text {
  border-radius: 30px;
  background: #fff;
  padding: 38px;
  box-shadow: var(--shadow);
}

.route-text li {
  margin-bottom: 8px;
}

.route-side {
  border-radius: 30px;
  background: var(--green);
  color: #fff;
  padding: 30px;
}

.route-side h3 {
  color: #fff;
}

.side-links {
  display: grid;
  gap: 12px;
}

.side-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 12px;
}

.route-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.route-gallery a {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1;
}

.route-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--sand-2);
}

/* Visual polish layer: sharper offroad feeling without touching content. */
.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.4;
}

.hero {
  background: var(--sand-2);
}

.hero::before {
  content: none;
}

.hero h1 {
  position: relative;
  display: inline-block;
  max-width: 620px;
  font-family: var(--title);
  transform: skewX(-4deg);
}

.hero h1 span {
  display: block;
}

.hero--concept h1 span {
  white-space: nowrap;
}

.hero h1::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -10px;
  width: 54%;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0 8%, var(--orange) 8% 78%, transparent 78%);
  transform: skewX(-20deg);
}

.hero-copy {
  padding-top: 48px;
}

.hero-copy::before {
  border: 0;
  box-shadow: 0 24px 80px rgba(16, 25, 18, 0.08);
}

.hero-art {
  inset: 0;
  width: 100%;
  min-height: calc(100svh - 96px);
}

.hero-art img {
  object-fit: cover;
  object-position: center right;
}

.hero-facts span {
  border: 1px solid rgba(38, 58, 42, 0.12);
  box-shadow: inset 0 -2px 0 rgba(137, 204, 0, 0.14);
}

.btn {
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: auto -26px -28px auto;
  width: 68px;
  height: 68px;
  border: 10px dashed currentColor;
  border-radius: 50%;
  opacity: 0;
  transform: rotate(0deg) scale(0.75);
  transition: opacity 0.18s ease, transform 0.32s ease;
}

.btn:hover::after {
  opacity: 0.18;
  transform: rotate(75deg) scale(1);
}

.btn--call::after,
.btn--ghost::after {
  opacity: 0;
}

.section {
  isolation: isolate;
}

.section--about,
.section--services {
  overflow: hidden;
}

.section--about {
  overflow: visible;
}

.section--about::before {
  content: "";
  position: absolute;
  top: -132px;
  right: 0;
  left: 0;
  z-index: 5;
  height: 230px;
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(243, 239, 229, 0.18) 38%, rgba(243, 239, 229, 0.72) 72%, var(--sand-2) 100%),
    url("/media/%D0%B8%D0%BA%D0%BE%D0%BD%D0%BA%D0%B8/E095B2A9-9F9D-4B52-AC07-ABDC219254F3.png"),
    url("/media/%D0%B8%D0%BA%D0%BE%D0%BD%D0%BA%D0%B8/E095B2A9-9F9D-4B52-AC07-ABDC219254F3.png");
  background-repeat: repeat-x;
  background-size: 100% 100%, 760px 270px, 760px 270px;
  background-position: center top, left 0 top -18px, left 380px top -18px;
  opacity: 0.9;
  mask-image: linear-gradient(180deg, #000 0%, #000 42%, rgba(0, 0, 0, 0.74) 64%, transparent 100%);
  pointer-events: none;
}

.section--about::after {
  content: "";
  position: absolute;
  right: -8vw;
  top: -58px;
  width: 52vw;
  height: 164px;
  background: rgba(137, 204, 0, 0.09);
  clip-path: polygon(0 30%, 100% 0, 92% 62%, 6% 100%);
  pointer-events: none;
}

.section--about::after,
.section--services::after {
  content: none;
}

.section-head h2 {
  max-width: 820px;
}

.route-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 90px rgba(16, 25, 18, 0.2);
}

.route-card__body {
  min-height: 286px;
}

.service-card {
  border: 1px solid rgba(38, 58, 42, 0.12);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(137, 204, 0, 0.9), transparent);
}

.gallery-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
}

.gallery-item {
  border-radius: 26px;
}

.section--video::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 54px dashed rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.video-layout {
  grid-template-columns: minmax(360px, 0.56fr) minmax(720px, 1.44fr);
  align-items: center;
}

.video-stage.is-playing::before {
  opacity: 0;
}

.video-play,
.video-arrow,
.video-dots,
.video-stage__label {
  z-index: 4;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 34px;
  width: 210px;
  height: 210px;
  border: 26px dashed rgba(33, 64, 36, 0.06);
  border-radius: 50%;
}

.map-wrap iframe {
  min-height: 520px;
}

.floating-call svg {
  width: 25px;
  height: 25px;
}

.floating-top svg {
  width: 38px;
  height: 38px;
}

.floating-top .arrow-outline,
.floating-top .arrow-face {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-top .arrow-outline {
  stroke: rgba(137, 204, 0, 0.46);
  stroke-width: 5.4;
}

.floating-top .arrow-face {
  stroke: rgba(137, 204, 0, 0.82);
  stroke-width: 2.8;
}

.floating-top:hover .arrow-outline {
  stroke: rgba(137, 204, 0, 0.62);
}

.floating-top:hover .arrow-face {
  stroke: rgba(137, 204, 0, 0.98);
}

@media (max-width: 2800px) {
  .floating-top {
    left: 24px;
  }
}

@media (max-width: 760px) {
  .route-card__price {
    right: auto;
    left: 18px;
  }

  .floating-call {
    right: 14px;
    bottom: 22px;
    width: 62px;
    height: 62px;
  }

  .floating-call span {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .floating-top {
    left: 16px;
    bottom: 22px;
    display: grid;
    width: 58px;
    height: 58px;
  }

  body.is-footer-visible .floating-top {
    opacity: 0;
    pointer-events: none;
  }

  body.is-contact-visible .floating-call {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.92);
  }

  body.is-contact-visible:not(.is-footer-visible) .floating-top {
    bottom: 18px;
    width: 50px;
    height: 50px;
  }

  body.is-contact-visible:not(.is-footer-visible) .floating-top span {
    width: 36px;
    height: 36px;
  }

  body.is-contact-visible:not(.is-footer-visible) .floating-top svg {
    width: 22px;
    height: 22px;
  }

  .floating-top span {
    width: 40px;
    height: 40px;
  }

  .floating-top svg {
    width: 25px;
    height: 25px;
  }
}

@media (min-width: 1800px) {
  .shell {
    width: min(1700px, calc(100% - 112px));
  }

  .hero-art {
    right: calc((100vw - 100%) / -2);
    width: max(70vw, calc(100vw - 560px));
  }
}

@media (max-width: 1600px) {
  .contact-edge-art {
    top: -118px;
    z-index: 0;
    width: min(450px, 25vw);
    height: 330px;
    opacity: 0.34;
  }
}

@media (max-width: 1240px) {
  .header-grid {
    grid-template-columns: 260px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand,
  .brand__logo--wide {
    width: 260px;
  }

  .brand__logo--wide {
    width: 250px;
    height: 70px;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .header-phone {
    display: none;
  }

  .main-nav {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    gap: 0;
    padding-bottom: 0;
    font-size: clamp(12px, 1.35vw, 15px);
  }

  .main-nav > a,
  .nav-dropdown > a {
    min-height: 40px;
    padding: 0 clamp(7px, 1vw, 12px);
  }

  .hero-grid,
  .services-grid,
  .condition-layout,
  .contact-grid,
  .video-layout,
  .route-hero-grid,
  .route-content,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero--concept .hero-grid,
  .picker-panel,
  .included-grid,
  .safety-grid,
  .faq-grid,
  .reviews-layout,
  .media-layout {
    grid-template-columns: 1fr;
  }

  .included-grid {
    gap: 24px;
  }

  .included-grid > div:first-child {
    position: static;
    top: auto;
  }

  .included-grid > div:first-child p:last-child {
    margin-bottom: 0;
  }

  .included-list {
    margin-top: 6px;
  }

  .hero-benefits .shell,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-video-link {
    top: 210px;
    right: 28px;
    width: 92px;
    height: 92px;
    font-size: 11px;
  }

  .hero-video-link__icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .hero-art {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 520px;
    min-height: auto;
    transform: none;
  }

  .hero-art img {
    object-position: center center;
  }

  .hero--concept .hero-bg {
    background-position: 58% center;
  }

  .routes-grid,
  .picker-options,
  .service-list,
  .section--media .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-stage {
    min-height: auto;
  }

  .contact-map,
  .contact-card {
    position: relative;
    width: 100%;
  }

  .contact-edge-art {
    top: -86px;
    width: min(360px, 32vw);
    height: 250px;
    opacity: 0.36;
  }

  .contact-card {
    margin-top: -96px;
  }

  .footer {
    padding: 10px 0 12px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 18px;
    row-gap: 6px;
    padding-left: 0;
    text-align: left;
  }

  .footer-brand {
    display: flex;
    min-width: 0;
  }

  .footer-brand__copy {
    max-width: none;
    min-width: 0;
  }

  .footer-brand__copy p {
    max-width: none;
    font-size: 15px;
  }

  .footer-contact {
    justify-content: flex-end;
    gap: 14px;
    grid-column: auto;
    grid-row: auto;
    text-align: right;
    white-space: nowrap;
  }

  .footer-contact a:first-child {
    font-size: 16px;
  }

  .footer-contact span {
    max-width: 180px;
    white-space: normal;
  }

  .footer .brand {
    flex: 0 0 auto;
    width: 170px;
  }

  .footer .brand__logo--wide {
    width: 170px;
    height: 48px;
  }

  .gallery-grid,
  .route-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .reviews-copy h2 {
    max-width: 680px;
  }

  .media-showcase {
    grid-template-columns: 1fr;
  }

  .media-side-title--video {
    justify-self: center;
    width: min(720px, 100%);
  }

  .video-column,
  .photo-rail {
    justify-self: center;
    width: min(720px, 100%);
    margin-left: 0;
    margin-right: 0;
  }

  .reviews-copy::before {
    left: -22px;
    top: 10%;
    width: 178px;
    height: 178px;
    opacity: 0.075;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1520px);
  }

  .route-modal {
    display: flex;
    align-items: flex-end;
  }

  .route-modal__panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 18px);
    border-radius: 24px 24px 0 0;
    transform: translateY(24px);
  }

  .route-modal.is-open .route-modal__panel {
    transform: translateY(0);
  }

  .route-modal__route,
  .route-modal__route.is-active {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .route-modal__media {
    min-height: 220px;
  }

  .route-modal__media img {
    min-height: 220px;
    height: 220px;
  }

  .route-modal__media span {
    right: 18px;
    bottom: 14px;
    left: auto;
    font-size: 72px;
  }

  .route-modal__content {
    padding: 24px 18px 26px;
  }

  .route-modal__content h2 {
    margin-right: 46px;
    font-size: 30px;
  }

  .route-modal__lead {
    font-size: 16px;
  }

  .route-modal__facts {
    grid-template-columns: 1fr;
    margin: 18px 0;
  }

  .route-modal__actions {
    display: flex;
  }

  .route-modal__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-grid {
    position: relative;
    grid-template-columns: auto 1fr auto;
    min-height: calc(72px - var(--mobile-header-shrink, 0px));
    gap: 10px;
  }

  .brand,
  .brand__logo--wide {
    width: auto;
  }

  .brand__logo--wide {
    display: none;
  }

  .brand__logo--mark {
    display: block;
    clip-path: circle(46% at 50% 50%);
    transform: scale(1.04);
  }

  .mobile-menu-toggle {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    background: transparent;
    color: var(--deep);
    font: 400 15px/1 var(--title);
    letter-spacing: 0;
    padding: 8px 4px;
  }

  .mobile-menu-toggle:focus {
    outline: none;
  }

  .mobile-menu-toggle__label {
    display: inline-block;
    transform: translateX(0);
    transition: opacity 0.18s ease, transform 0.18s ease, max-width 0.18s ease;
    max-width: 58px;
    overflow: hidden;
    white-space: nowrap;
  }

  .mobile-menu-toggle__icon {
    position: relative;
    display: grid;
    width: 24px;
    height: 20px;
    align-content: center;
    gap: 4px;
  }

  .mobile-menu-toggle__icon span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: var(--deep);
    transition: transform 0.18s ease, opacity 0.18s ease;
    transform-origin: center;
  }

  body.is-mobile-menu-open .mobile-menu-toggle__label {
    max-width: 0;
    opacity: 0;
    transform: translateX(8px);
  }

  body.is-mobile-menu-open .mobile-menu-toggle__icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.is-mobile-menu-open .mobile-menu-toggle__icon span:nth-child(2) {
    opacity: 0;
  }

  body.is-mobile-menu-open .mobile-menu-toggle__icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 80;
    grid-column: 1 / -1;
    display: grid;
    width: 100%;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(9, 16, 11, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    opacity: 0;
    padding: 12px;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  body.is-mobile-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a,
  .nav-dropdown > a {
    justify-content: center;
    min-height: 42px;
    color: #fff;
    padding: 0 12px;
  }

  .nav-dropdown > a {
    display: grid;
    grid-template-columns: auto 10px;
    gap: 5px;
    align-items: center;
    justify-content: center;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown > a::after {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    margin-left: 0;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
  }

  .nav-dropdown.is-open > a::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-menu,
  .nav-dropdown:hover .nav-menu {
    position: static;
    display: grid;
    min-width: 0;
    max-height: 0;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    padding: 0 8px;
    pointer-events: none;
    transform: none;
    transition: max-height 0.22s ease, opacity 0.18s ease, padding 0.18s ease;
  }

  .nav-dropdown.is-open .nav-menu {
    max-height: 260px;
    opacity: 1;
    padding: 8px;
    pointer-events: auto;
  }

  .nav-menu a {
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
  }

  .header-actions {
    gap: 6px;
  }

  .header-icon {
    width: 38px;
    height: 38px;
  }

  .header-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 24px;
  }

  .hero-copy::before {
    width: 100%;
    inset: -10px -14px 0 -14px;
  }

  .hero-video-link {
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    width: 82px;
    height: 82px;
    margin: 10px 14px 0 auto;
  }

  .hero-video-modal {
    padding: 14px;
  }

  .hero-video-modal__panel {
    border-radius: 18px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .hero h1 {
    display: block;
    max-width: 100%;
    transform: none;
  }

  .hero--concept h1 span {
    white-space: normal;
  }

  .hero h1::after {
    right: 0;
    width: 42%;
    height: 8px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-art {
    height: 340px;
  }

  .section {
    padding: 58px 0;
  }

  .section--picker {
    padding-bottom: 38px;
  }

  .section--included,
  .section--steps {
    padding-top: 36px;
  }

  .section-head {
    display: block;
  }

  .routes-grid,
  .picker-options,
  .service-list,
  .feature-list,
  .included-list,
  .steps-grid,
  .hero-benefits .shell,
  .section--media .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero--concept .hero-grid {
    gap: 24px;
    min-height: auto;
  }

  .hero--concept .hero-bg {
    background-position: 55% center;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 28px;
    transform: none;
  }

  .hero-copy::before {
    border-radius: 24px;
  }

  .cta-row,
  .cta-row__main,
  .cta-row__contacts {
    width: 100%;
  }

  .cta-row__main {
    grid-template-columns: 1fr 1fr;
  }

  .cta-row__contacts {
    grid-template-columns: 1fr 1fr;
  }

  .cta-row__contacts .btn--max {
    grid-column: 1 / -1;
  }

  .cta-row__main .btn,
  .cta-row__contacts .btn {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 14px;
  }

  .hero-price {
    font-size: 38px;
  }

  .section--contacts {
    padding: 86px 0 58px;
    overflow: visible;
    overflow-x: clip;
  }

  .section--reviews {
    padding: 68px 0 42px;
  }

  .reviews-layout {
    gap: 22px;
  }

  .reviews-copy::before {
    left: -44px;
    right: auto;
    top: -10%;
    width: 165px;
    height: 165px;
    opacity: 0.08;
  }

  .reviews-rail {
    grid-auto-columns: minmax(280px, 86vw);
  }

  .reviews-arrow {
    width: 46px;
    height: 78px;
    font-size: 64px;
  }

  .reviews-arrow--prev {
    left: -8px;
  }

  .reviews-arrow--next {
    right: -8px;
  }

  .reviews-stage::before,
  .reviews-stage::after {
    bottom: 70px;
    width: 54px;
  }

  .reviews-add {
    width: 100%;
    margin-top: 16px;
  }

  .review-card {
    min-height: 210px;
    border-radius: 20px;
    padding: 22px;
  }

  .review-modal {
    padding: 14px;
  }

  .review-modal__panel {
    border-radius: 22px;
    padding: 26px;
  }

  .review-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-map {
    height: 360px;
    border-radius: 22px;
  }

  .contact-card {
    margin-top: -48px;
    border-radius: 22px;
    padding: 26px;
  }

  .contact-edge-art {
    top: -112px;
    display: block;
    width: 260px;
    height: 190px;
    z-index: 4;
    opacity: 0.36;
    filter: drop-shadow(0 16px 24px rgba(16, 25, 18, 0.14));
  }

  .contact-edge-art--left {
    left: 0;
  }

  .contact-edge-art--right {
    right: 0;
  }

  .contact-card h2 {
    font-size: 32px;
  }

  .contact-facts p,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 10px;
    padding-left: 0;
    text-align: center;
  }

  .footer-brand {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    width: min(310px, 100%);
    justify-content: center;
    text-align: left;
  }

  .footer-brand__copy {
    display: contents;
    min-width: 0;
  }

  .footer-brand__copy p {
    grid-column: 2;
    max-width: none;
    font-size: 13px;
    line-height: 1.35;
  }

  .footer-links {
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 7px;
    font-size: 10.5px;
    line-height: 1.2;
    width: 100%;
  }

  .footer-links a {
    white-space: nowrap;
  }

  .footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(310px, 100%);
    gap: 28px;
    text-align: left;
  }

  .footer-contact a:first-child {
    font-size: 16px;
    white-space: nowrap;
  }

  .footer-contact span {
    max-width: 158px;
    text-align: right;
    font-size: 12px;
    line-height: 1.35;
  }

  .footer .brand,
  .footer .brand__logo--mark {
    width: 54px;
    height: 54px;
  }

  .picker-panel {
    border-radius: 24px;
    padding: 24px;
  }

  .picker-options article {
    min-height: 0;
  }

  .included-list li,
  .steps-grid article,
  .faq-list details {
    border-radius: 18px;
  }

  .steps-grid::before {
    content: none;
  }

  .steps-grid article {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    column-gap: 14px;
    min-height: 0;
    padding: 24px;
  }

  .steps-grid span {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    border-radius: 16px;
    font-size: 28px;
  }

  .steps-grid h3 {
    margin-bottom: 0;
    font-size: 25px;
    line-height: 1.02;
  }

  .steps-grid p {
    grid-column: 1 / -1;
    margin: 16px 0 0;
  }

  .gallery-grid,
  .route-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-main {
    min-height: 260px;
    height: 300px;
  }

  .video-arrow {
    width: 46px;
    height: 46px;
    font-size: 34px;
  }

}

.hero {
  min-height: calc(100svh - 56px);
  isolation: isolate;
}

.hero-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 56px);
  transform: none;
  pointer-events: none;
  z-index: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

@media (max-width: 1500px) {
  .hero-art {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: calc(100svh - 72px);
    padding-bottom: 40px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(100svh - 160px);
  }

  .hero-copy {
    max-width: min(720px, 100%);
  }

  .hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: calc(100svh - 72px);
    margin: 0;
  }

  .hero-art img {
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
}

@media (max-width: 760px) {
  .hero-art {
    width: 100%;
    margin: 0;
  }

  .hero-art img {
    object-position: center bottom;
  }

  .hero--concept {
    min-height: auto;
    padding: 22px 0 24px;
  }

  .hero--concept .hero-bg {
    background-position: 66% center;
  }

  .hero--concept .hero-grid {
    width: calc(100% - 42px);
    gap: 10px;
    justify-content: start;
    min-height: auto;
  }

  .hero--concept .hero-copy {
    width: 100%;
    margin: 0;
    padding: 18px 16px 17px;
    transform: none;
  }

  .hero--concept .hero-copy:hover,
  .hero--concept .hero-copy.is-hinting {
    transform: none;
  }

  .hero--concept .hero-copy::before {
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32));
    box-shadow: 0 22px 70px rgba(16, 25, 18, 0.14);
    mask-image: linear-gradient(138deg, #000 0%, #000 67%, rgba(0, 0, 0, 0.68) 76%, transparent 91%);
    mask-size: 180% 180%;
    mask-position: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(138deg, #000 0%, #000 67%, rgba(0, 0, 0, 0.68) 76%, transparent 91%);
    -webkit-mask-size: 180% 180%;
    -webkit-mask-position: 100% 100%;
    -webkit-mask-repeat: no-repeat;
  }

  .hero--concept .hero-copy::after {
    border-radius: 24px;
  }

  .hero--concept .hero-copy .eyebrow {
    margin: 0 0 12px;
    padding: 4px 9px 5px;
    font-size: 13px;
    line-height: 1.05;
    letter-spacing: 0.045em;
  }

  .hero--concept .hero-copy .eyebrow::before {
    inset: -8px -16px -9px -15px;
    filter: drop-shadow(0 6px 11px rgba(0, 0, 0, 0.22));
  }

  .hero--concept .hero-copy h1 {
    max-width: 100%;
    margin: 0 0 14px;
    font-size: clamp(27px, 7.7vw, 32px);
    line-height: 1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24), 0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .hero--concept .hero-copy h1 span {
    display: block;
    white-space: nowrap;
  }

  .hero--concept .hero-copy .lead {
    display: none;
  }

  .hero--concept .hero-price {
    display: inline-flex;
    align-items: flex-end;
    gap: 7px;
    margin-top: 4px;
    font-size: clamp(29px, 8.2vw, 36px);
    line-height: 0.88;
  }

  .hero--concept .hero-price span {
    align-self: flex-end;
    padding-bottom: 4px;
    transform: none;
  }

  .hero--concept .hero-price small {
    max-width: 82px;
    padding-bottom: 4px;
    font-size: 0.34em;
    line-height: 0.86;
  }

  .hero--concept .hero-price span,
  .hero--concept .hero-price small {
    color: var(--orange);
    font-weight: 900;
    text-shadow: 0 2px 7px rgba(15, 26, 18, 0.26);
  }

  .hero-cta {
    width: 100%;
    margin-top: 14px;
    padding: 0 2px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-cta:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-cta .cta-row {
    gap: 8px;
    margin-top: 0;
  }

  .hero-cta .cta-row__main {
    grid-template-columns: 1fr 0.78fr;
    gap: 8px;
  }

  .hero-cta .cta-row__contacts {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    gap: 8px;
  }

  .hero-cta .cta-row__main .btn {
    min-height: 45px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-cta .btn-label--desktop {
    display: none;
  }

  .hero-cta .btn-label--mobile {
    display: inline;
  }

  .hero-cta .cta-row__contacts .btn {
    height: 40px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 9px 22px rgba(16, 25, 18, 0.1);
  }

  .hero-cta .cta-row__contacts .btn--instagram,
  .hero-cta .cta-row__contacts .btn--max {
    grid-column: auto;
    width: 44px;
    padding: 0;
  }

  .hero-cta .cta-row__contacts .btn--instagram span,
  .hero-cta .cta-row__contacts .btn--max span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero-cta .cta-row__contacts .btn svg,
  .hero-cta .cta-row__contacts .btn img {
    width: 20px;
    height: 20px;
    margin-right: 0;
  }

  .hero-cta .cta-row__contacts .btn--call {
    justify-content: center;
  }

  .hero-video-link {
    display: grid;
    z-index: 5;
    width: 58px;
    height: 58px;
    margin: 36px 8px -12px auto;
    gap: 4px;
    font-size: 8px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), 0 0 0 6px rgba(137, 204, 0, 0.09);
  }

  .hero-video-link__icon {
    width: 28px;
    height: 28px;
  }

  .hero-video-link__icon::before {
    margin-left: 3px;
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 11px;
  }

  .hero-benefits {
    padding: 8px 16px 0;
    transform: none;
  }

  .hero-benefits .shell {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-benefits span {
    display: grid;
    min-height: 34px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(9, 16, 11, 0.78);
    color: #fff;
    font-size: 11.5px;
    line-height: 1.12;
    padding: 7px 9px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(9, 16, 11, 0.14);
    backdrop-filter: blur(8px);
  }

  .hero-benefits span:hover {
    transform: none;
  }

  .section--routes {
    padding-top: 38px;
  }

  .legal-page {
    padding-top: 34px;
  }

  .legal-actions {
    width: calc(100% - 28px);
    margin-bottom: 14px;
  }

  .legal-home-link {
    width: 100%;
    min-height: 48px;
  }

  .legal-card {
    padding: 28px;
    border-radius: 22px;
  }

  .legal-card h1 {
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 0.96;
    overflow-wrap: normal;
  }

  .legal-owner dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  body.is-hero-visible .floating-call {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.9);
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero--concept .hero-copy,
  .hero--concept .hero-copy::after,
  .hero-video-link,
  .hero-cta,
  .hero-benefits span,
  .floating-call,
  .floating-call::before,
  .media-tread-divider::before {
    animation: none;
    transition: none;
  }

  .hero--concept .hero-copy:hover,
  .hero--concept .hero-copy:hover::after,
  .hero-cta:hover,
  .hero-benefits span:hover {
    transform: none;
  }
}
