:root {
  --bg: #f2f1ea;
  --bg-alt: #e9efe0;
  --paper: #ffffff;
  --ink: #15211a;
  --ink-2: #5c6a58;
  --moss: #7dc352;
  --moss-2: #a9d98f;
  --moss-dark: #4e8f2b;
  --line: rgba(21, 33, 26, 0.14);
  --sans: 'Manrope', sans-serif;
  --serif: 'Cormorant', serif;
  --disp: 'Unbounded', sans-serif;
  --ease: cubic-bezier(0.83, 0, 0.17, 1);
  --pad: clamp(90px, 11vw, 150px);
  --milk: #f4f7ee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
::selection {
  background: var(--moss);
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #b9c7ac;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--moss);
}

.container {
  width: min(1280px, 90%);
  margin: 0 auto;
}

/* grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* cursor */
@media (pointer: fine) {
  body {
    cursor: none;
  }
  a,
  button,
  input,
  label {
    cursor: none;
  }
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--ink);
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease);
}
.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(21, 33, 26, 0.35);
  transition:
    width 0.35s var(--ease),
    height 0.35s var(--ease),
    border-color 0.3s,
    background 0.3s;
}
.cursor.grow .cursor-ring {
  width: 72px;
  height: 72px;
  background: rgba(125, 195, 82, 0.15);
  border-color: var(--moss);
}
.cursor.grow .cursor-dot {
  width: 4px;
  height: 4px;
}

/* ===== Preloader (light) ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--bg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition:
    opacity 0.8s var(--ease),
    visibility 0.8s;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
}
.preloader .p-letters {
  display: flex;
  overflow: hidden;
}
.preloader .p-letter {
  font-family: var(--disp);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: clamp(54px, 12vw, 140px);
  line-height: 1;
  color: var(--ink);
  transform: translateY(115%);
  display: inline-block;
}
.preloader .p-foot {
  display: flex;
  align-items: center;
  gap: 22px;
}
.preloader .p-line {
  width: min(220px, 40vw);
  height: 1px;
  background: rgba(21, 33, 26, 0.18);
  position: relative;
  overflow: hidden;
}
.preloader .p-line span {
  position: absolute;
  inset: 0;
  background: var(--moss);
  transform: scaleX(0);
  transform-origin: left;
}
.preloader .p-count {
  font-family: var(--disp);
  font-size: 15px;
  color: var(--ink-2);
  min-width: 44px;
  text-align: right;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
  transition:
    padding 0.5s var(--ease),
    background 0.5s,
    backdrop-filter 0.5s;
  color: var(--ink);
}
.nav.solid {
  background: rgba(242, 241, 234, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.nav:not(.solid) {
  color: #fff;
}
.nav:not(.solid) a,
.nav:not(.solid) .logo,
.nav:not(.solid) .nav-phone {
  color: #fff;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--disp);
  font-size: 17px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.logo-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--moss);
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(125, 195, 82, 0.5);
}
.nav-links {
  display: flex;
  gap: 38px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1.5px;
  width: 100%;
  background: var(--moss);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-phone {
  font-size: 14px;
  font-weight: 700;
}
.nav-cta {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  padding: 13px 26px;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px);
}
.burger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.burger span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.4s var(--ease);
}
.burger span:nth-child(1) {
  top: 15px;
}
.burger span:nth-child(2) {
  top: 23px;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}
.burger.open span:nth-child(2) {
  transform: rotate(-45deg);
  top: 19px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 8vw;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease);
}
.mobile-menu.open {
  clip-path: inset(0 0 0% 0);
}
.mobile-menu a {
  font-family: var(--disp);
  font-size: clamp(28px, 8vw, 44px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
}
.mobile-menu a:hover {
  color: var(--moss);
}
.mobile-menu .m-meta {
  margin-top: 30px;
  font-size: 14px;
  color: var(--moss);
  letter-spacing: 0.1em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  padding: 18px 34px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.45s var(--ease),
    color 0.45s,
    border-color 0.45s,
    background 0.45s;
  background: transparent;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: translateY(102%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.45s var(--ease);
}
.btn:hover .btn-arrow {
  transform: translateX(6px);
}
.btn-solid {
  background: var(--ink);
  color: var(--bg);
}
.btn-solid::after {
  background: var(--moss);
  transform: translateY(102%);
}
.btn-solid:hover::after {
  transform: translateY(0);
}
.btn-solid:hover {
  color: var(--ink);
}
.btn-moss {
  background: var(--moss);
  color: var(--ink);
}
.btn-moss::after {
  background: var(--ink);
}
.btn-moss:hover::after {
  transform: translateY(0);
}
.btn-moss:hover {
  color: var(--bg);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost::after {
  background: var(--ink);
}
.btn-ghost:hover::after {
  transform: translateY(0);
}
.btn-ghost:hover {
  color: var(--bg);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--bg);
}
.btn-outline-light::after {
  background: var(--moss);
}
.btn-outline-light:hover::after {
  transform: translateY(0);
}
.btn-outline-light:hover {
  color: var(--ink);
  border-color: var(--moss);
}

/* ===== Shared ===== */
section {
  position: relative;
}
.pad {
  padding: var(--pad) 0;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 34px;
}
.kicker::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--moss);
}
.kicker.light {
  color: rgba(242, 241, 234, 0.6);
}
.h2 {
  font-size: clamp(34px, 5.2vw, 74px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.h2 .it {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}
.h2 .moss {
  color: var(--moss-dark);
}
.body-m {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
}
.line {
  display: block;
  overflow: hidden;
}
.line > span {
  display: block;
  transform: translateY(115%);
}

.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #dce8cf, #ede8dc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(21, 33, 26, 0.4);
}
/* Любое фото любого исходного размера растягивается и обрезается
   так, чтобы полностью и одинаково заполнять свой блок (object-fit: cover) */
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}
.ph .ph-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}
.ph .ph-ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(21, 33, 26, 0.25);
  display: grid;
  place-items: center;
}
.ph svg {
  width: 18px;
  height: 18px;
}
.ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(125, 195, 82, 0.25), transparent 60%);
  pointer-events: none;
}

.num-tag {
  font-family: var(--disp);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--moss-dark);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #10160c;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg {
  background: url('../img/image111.png') center/cover no-repeat;
  filter: saturate(0.92) brightness(0.62) contrast(1.06) sepia(0.1);
}
.scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(14, 19, 10, 0.82) 5%, rgba(14, 19, 10, 0.35) 48%, transparent 74%),
    linear-gradient(0deg, rgba(9, 13, 6, 0.72) 0%, transparent 32%),
    linear-gradient(180deg, rgba(9, 13, 6, 0.5) 0%, transparent 20%);
}
.stage {
  position: relative;
  z-index: 15;
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 40px 0 70px;
  transform: translateY(-2.5vh);
}

/* --- звёзды-искры --- */
.sky {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
}
.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--moss-2);
  box-shadow: 0 0 8px 1px rgba(169, 217, 143, 0.8);
  animation: twinkle 3s ease-in-out infinite;
}
.spark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 22px;
  background: linear-gradient(transparent, var(--moss-2));
  transform: translate(-50%, -100%);
  opacity: 0.5;
}
.spark--1 {
  top: 12%;
  left: 18%;
}
.spark--2 {
  top: 20%;
  left: 62%;
  animation-delay: 0.6s;
}
.spark--3 {
  top: 30%;
  left: 82%;
  animation-delay: 1.1s;
}
.spark--4 {
  top: 10%;
  left: 88%;
  animation-delay: 1.7s;
}
.spark--5 {
  top: 38%;
  left: 14%;
  animation-delay: 2.1s;
}
.spark--6 {
  top: 16%;
  left: 40%;
  animation-delay: 0.3s;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* --- падающие листики --- */
.leaves {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  overflow: hidden;
}
.leaf {
  position: absolute;
  top: -30px;
  width: 12px;
  height: 16px;
  background: linear-gradient(135deg, var(--moss-2), #7dc352);
  border-radius: 0 70% 0 70%;
  opacity: 0.85;
  animation: fall linear infinite;
}
.l1 {
  left: 8%;
  animation-duration: 11s;
}
.l2 {
  left: 22%;
  animation-duration: 14s;
  animation-delay: 2.4s;
}
.l3 {
  left: 36%;
  animation-duration: 9s;
  animation-delay: 5.2s;
}
.l4 {
  left: 52%;
  animation-duration: 13s;
  animation-delay: 1.1s;
}
.l5 {
  left: 66%;
  animation-duration: 10s;
  animation-delay: 3.8s;
}
.l6 {
  left: 78%;
  animation-duration: 15s;
  animation-delay: 0.7s;
}
.l7 {
  left: 90%;
  animation-duration: 12s;
  animation-delay: 4.6s;
}
@keyframes fall {
  0% {
    transform: translateY(-4vh) rotate(0deg) translateX(0);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  40% {
    transform: translateY(46vh) rotate(180deg) translateX(30px);
  }
  100% {
    transform: translateY(110vh) rotate(360deg) translateX(-18px);
    opacity: 0;
  }
}

/* --- дымки / туман --- */
.mist {
  position: absolute;
  z-index: 4;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.mist--a {
  width: 70vw;
  height: 46vw;
  top: -18vw;
  right: -12vw;
  background: rgba(125, 195, 82, 0.22);
  animation: mistDrift 22s ease-in-out infinite alternate;
}
.mist--b {
  width: 60vw;
  height: 40vw;
  bottom: -16vw;
  left: -10vw;
  background: rgba(78, 143, 67, 0.3);
  animation: mistDrift 28s ease-in-out infinite alternate-reverse;
}
@keyframes mistDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(6vw, 3vw) scale(1.15);
  }
}

/* --- зелёное свечение --- */
.glow-green {
  position: absolute;
  z-index: 3;
  top: 24%;
  left: 58%;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 220, 110, 0.28), transparent 62%);
  filter: blur(8px);
  animation: pulseGlow 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

/* --- бегущий блик по фото --- */
.sweep {
  position: absolute;
  z-index: 5;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.sweep::after {
  content: '';
  position: absolute;
  top: -40%;
  bottom: -40%;
  width: 22%;
  left: -30%;
  background: linear-gradient(100deg, transparent, rgba(200, 240, 180, 0.09), transparent);
  transform: rotate(8deg);
  animation: sweepGlide 9s ease-in-out infinite;
}
@keyframes sweepGlide {
  0% {
    left: -30%;
  }
  55%,
  100% {
    left: 130%;
  }
}

/* --- бейджик по центру сверху --- */
.hero-badge {
  position: absolute;
  z-index: 22;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 247, 236, 0.6);
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
  pointer-events: none;
}
.hero-badge .hb-line {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 1px;
  background: var(--moss-2);
  margin: 0 12px;
  opacity: 0.6;
}

/* --- орбита-логотип --- */
.orbit-logo {
  position: absolute;
  z-index: 20;
  top: 34%;
  right: clamp(40px, 7vw, 120px);
  width: 110px;
  height: 110px;
  pointer-events: none;
}
.orbit-logo__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(169, 212, 143, 0.5);
  animation: spin 22s linear infinite;
}
.orbit-logo__dot {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--moss-2);
  box-shadow: 0 0 12px 2px rgba(169, 212, 143, 0.8);
}
.orbit-logo__core {
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(18, 24, 13, 0.55);
  border: 1px solid rgba(169, 212, 143, 0.35);
  font-size: 15px;
  color: var(--moss-2);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- время (live-точка) --- */
.hero-meta__time {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 26px;
}
.time__live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss-2);
  box-shadow: 0 0 0 0 rgba(125, 195, 82, 0.6);
  animation: live 2s infinite;
}
@keyframes live {
  0% {
    box-shadow: 0 0 0 0 rgba(125, 195, 82, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(125, 195, 82, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(125, 195, 82, 0);
  }
}

/* --- заголовок --- */
.hero-h1 {
  color: var(--milk);
  font-family: var(--sans);
  font-size: clamp(46px, 6.8vw, 116px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
  max-width: 14ch;
}
.hero-h1 .line {
  display: block;
  overflow: hidden;
}
.hero-h1 .line > span {
  display: block;
  transform: translateY(115%);
}
.hero-h1 .line--b > span {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
}
.hero-h1 .it {
  font-style: italic;
  color: var(--moss-2);
}

.hero-sub {
  margin-top: 26px;
  max-width: 52ch;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.16;
}
.hero-sub__line {
  display: block;
}
.hero-sub__line--b {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  margin-top: 0.08em;
}
.hero-sub__line--b u {
  text-decoration: none;
  color: var(--moss-2);
}
.hero-sub__meta {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-2);
  padding-left: 16px;
  border-left: 2px solid var(--moss-2);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.hero-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.hero-cta .btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s;
}
.hero-cta .btn:hover svg {
  transform: translateX(4px);
}
.hero-cta .btn:hover {
  transform: translateY(-3px);
}
.hero-cta .btn-solid {
  background: var(--moss-2);
  color: var(--ink);
  box-shadow: 0 18px 44px -16px rgba(125, 195, 82, 0.6);
}
.hero-cta .btn-solid:hover {
  background: #bde39c;
}
.hero-cta .btn-ghost {
  border: 1.5px solid rgba(244, 247, 236, 0.4);
  color: var(--milk);
}
.hero-cta .btn-ghost:hover {
  border-color: #fff;
}

/* --- факты под кнопками --- */
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 28px;
}
.hero-notes span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  color: #fff;
}
.hero-notes span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--moss-2);
  animation: live 2.6s infinite;
}

/* --- низ: адрес / скролл --- */
.hero-meta {
  position: absolute;
  z-index: 16;
  left: clamp(24px, 6vw, 100px);
  right: clamp(24px, 5vw, 64px);
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  color: #fff;
}
.hero-meta .row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-meta .row svg {
  width: 15px;
  height: 15px;
  color: var(--moss-2);
}
.meta__scroll {
  display: flex;
  align-items: center;
  gap: 10px;
}
.meta__scroll a::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 30px;
  height: 1px;
  background: var(--moss-2);
  vertical-align: middle;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    transform: scaleX(0.3);
    transform-origin: left;
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
  }
}

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-group span {
  font-family: var(--disp);
  font-size: clamp(22px, 3.4vw, 40px);
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  padding: 0 34px;
  font-weight: 400;
}
.marquee-group i {
  font-style: normal;
  color: var(--moss-dark);
  font-size: 20px;
}

/* ===== About ===== */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-lede {
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 40px;
}
.about-lede .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--moss-dark);
}
.about-p {
  margin-bottom: 22px;
  max-width: 540px;
}
.about-quote {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.about-quote .q-line {
  width: 2px;
  background: var(--moss);
}
.about-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
}

.about-visual {
  position: relative;
}
.about-img-main {
  aspect-ratio: 3 / 3.7;
  border-radius: 24px;
  clip-path: inset(100% 0 0 0);
}
.about-img-main .ph {
  width: 100%;
  height: 100%;
}
.about-img-small {
  position: absolute;
  right: -10%;
  bottom: -8%;
  width: 55%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  border: 6px solid var(--bg);
  clip-path: inset(100% 0 0 0);
  overflow: hidden;
}
.about-img-small img {
  border-radius: 10px;
}
.about-img-small .ph {
  width: 100%;
  height: 100%;
}
.about-stats {
  display: flex;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line);
}
.stat {
  flex: 1;
  padding: 34px 30px 0 0;
}
.stat + .stat {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}
.stat-num {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.stat-num sup {
  font-size: 0.4em;
  font-weight: 600;
  color: var(--moss-dark);
  margin-left: 4px;
}
.stat-lbl {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* ===== Section header ===== */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 70px;
}
.sec-head .h2 {
  max-width: 900px;
}
.sec-head .side {
  max-width: 340px;
  flex-shrink: 0;
  padding-bottom: 8px;
}

/* ===== Programs ===== */
.programs {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.prog {
  padding: 40px 34px;
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.5s var(--ease);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.prog:nth-child(4n) {
  border-right: none;
}
.prog:nth-last-child(-n + 4) {
  border-bottom: none;
}
.prog::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(125, 195, 82, 0.14), rgba(233, 239, 224, 0.6));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.prog:hover::before {
  opacity: 1;
}
.prog > * {
  position: relative;
  z-index: 1;
}
.prog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.prog-num {
  font-family: var(--disp);
  font-size: 12px;
  color: var(--ink-2);
}
.prog-ic {
  width: 42px;
  height: 42px;
  color: var(--moss-dark);
}
.prog-ic svg {
  width: 100%;
  height: 100%;
}
.prog h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 34px 0 10px;
}
.prog p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ===== Development ===== */
.dev {
  background: var(--bg);
}
.dev-list {
  border-top: 1px solid var(--line);
}
.dev-row {
  display: grid;
  grid-template-columns: 90px 1fr 340px;
  gap: 40px;
  align-items: center;
  padding: 42px 8px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition:
    background 0.5s var(--ease),
    padding 0.5s var(--ease);
}
.dev-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--moss);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease);
}
.dev-row:hover::before {
  transform: scaleY(1);
}
.dev-row:hover {
  background: var(--paper);
}
.dev-num {
  font-family: var(--disp);
  font-size: 15px;
  color: var(--ink-2);
}
.dev-title {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.dev-title .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--moss-dark);
}
.dev-text {
  font-size: 15px;
  color: var(--ink-2);
}

/* ===== Split (languages / food) ===== */
.split {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-image {
  aspect-ratio: 4 / 4.6;
  border-radius: 24px;
  clip-path: inset(100% 0 0 0);
}
.split-image .ph {
  width: 100%;
  height: 100%;
}
.split-image.rev {
  grid-row: 1;
}
.split-content.rev {
  grid-column: 1;
  grid-row: 1;
}
.check-list {
  margin-top: 40px;
}
.check {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.check:last-child {
  border-bottom: none;
}
.check-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-ic svg {
  width: 13px;
  height: 13px;
}
.check b {
  display: block;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.check span {
  font-size: 14px;
  color: var(--ink-2);
}

/* ===== Safety ===== */
.safety {
  background: var(--bg);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.safe {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px 32px 38px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.6s var(--ease),
    box-shadow 0.6s var(--ease),
    border-color 0.6s var(--ease);
}
.safe:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 70px -40px rgba(21, 33, 26, 0.3);
  border-color: rgba(125, 195, 82, 0.35);
}
.safe::after {
  content: attr(data-num);
  position: absolute;
  right: 22px;
  top: 20px;
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  opacity: 0.45;
}
.safe-ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--moss-dark);
  background: radial-gradient(
    circle at 30% 25%,
    rgba(169, 217, 143, 0.55),
    rgba(125, 195, 82, 0.14)
  );
  border: 1px solid rgba(125, 195, 82, 0.28);
  margin-bottom: 26px;
  transition:
    background 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.safe:hover .safe-ic {
  transform: scale(1.06);
  background: radial-gradient(
    circle at 30% 25%,
    rgba(169, 217, 143, 0.75),
    rgba(125, 195, 82, 0.22)
  );
}
.safe-ic svg {
  width: 26px;
  height: 26px;
}
.safe h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.safe p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ===== Price ===== */
.price {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.price-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 90px 60px;
  border-radius: 28px;
  background: linear-gradient(150deg, var(--bg-alt), #f4f2ea);
  border: 1px solid var(--line);
  overflow: hidden;
}
.price-card::before {
  content: 'ADEMI';
  position: absolute;
  inset: auto 0 0 0;
  font-family: var(--disp);
  font-size: clamp(80px, 16vw, 200px);
  color: rgba(21, 33, 26, 0.045);
  line-height: 0.8;
  text-align: center;
  letter-spacing: -0.02em;
  pointer-events: none;
}
.price-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.price-num {
  font-size: clamp(60px, 14vw, 100px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 24px 0 6px;
}
.price-num sup {
  font-size: 0.35em;
  font-weight: 600;
  color: var(--moss-dark);
  vertical-align: top;
  margin-left: 6px;
  letter-spacing: 0;
}
.price-per {
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 40px;
}
.price-meta {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.price-meta div {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-meta svg {
  width: 16px;
  height: 16px;
  color: var(--moss-dark);
}

/* ===== Reviews ===== */
.reviews {
  background: var(--bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rev {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transition: transform 0.6s var(--ease);
}
.rev:hover {
  transform: translateY(-8px);
}
.rev-stars {
  color: #d9a441;
  font-size: 13px;
  letter-spacing: 5px;
}
.rev-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  flex-grow: 1;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--moss-dark);
  font-family: var(--disp);
  font-size: 13px;
}
.rev-author b {
  display: block;
  font-size: 14.5px;
}
.rev-author span {
  font-size: 12px;
  color: var(--ink-2);
}

/* ===== Stars ===== */
.stars-sec {
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stars-sec .kicker::before {
  background: var(--moss);
}
.stars-sec .h2 .moss {
  color: var(--moss);
}
.stars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* Все фото в блоке "Наши звёзды" приводятся к единому размеру
   карточки независимо от исходного разрешения/пропорций фото */
.star {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  clip-path: inset(100% 0 0 0);
}
.star.wide {
  aspect-ratio: 4 / 3.1;
}
.star .ph {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.star .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.star .ph-caption {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--milk);
}
.star .ph::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(21, 33, 26, 0.55));
  pointer-events: none;
}
.star .ph::after {
  background: none;
}
.star:hover .ph img {
  transform: scale(1.06);
}
.star .ph img {
  transition: transform 1.2s var(--ease);
}

/* ===== Contact ===== */
.contact {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.contact-info .h2 {
  margin-bottom: 34px;
}
.contact-lines {
  display: grid;
  gap: 0;
  margin-top: 30px;
}
.cl {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.cl:last-child {
  border-bottom: 1px solid var(--line);
}
.cl-ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  color: var(--moss-dark);
  flex-shrink: 0;
}
.cl-ic svg {
  width: 18px;
  height: 18px;
}
.cl b {
  display: block;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 4px;
}
.cl a,
.cl p {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.cl a:hover {
  color: var(--moss-dark);
}

.form {
  background: var(--ink);
  color: var(--bg);
  border-radius: 28px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.form::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px 300px at 100% 0%, rgba(125, 195, 82, 0.16), transparent 60%);
}
.form h3 {
  font-family: var(--disp);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.form > p {
  color: rgba(242, 241, 234, 0.55);
  font-size: 15px;
  margin-bottom: 44px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 22px;
  position: relative;
  z-index: 1;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 241, 234, 0.5);
  margin-bottom: 10px;
}
.field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--bg);
  outline: none;
  transition: border-color 0.4s;
  border-radius: 0;
}
.field input::placeholder {
  color: rgba(242, 241, 234, 0.3);
}
.field input:focus {
  border-color: var(--moss);
}
.form-agree {
  font-size: 12px;
  color: rgba(242, 241, 234, 0.4);
  line-height: 1.6;
  grid-column: 1 / -1;
}
.form-btn {
  grid-column: 1 / -1;
  justify-self: start;
}

/* ===== Footer ===== */
footer {
  background: var(--ink);
  color: rgba(242, 241, 234, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 90px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
}
.f-logo {
  font-family: var(--disp);
  font-size: 22px;
  color: var(--bg);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.f-about {
  max-width: 320px;
  font-size: 14.5px;
  line-height: 1.7;
}
.f-h {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 22px;
}
.f-col li {
  margin-bottom: 12px;
  font-size: 14.5px;
}
.f-col a:hover {
  color: var(--moss);
}
.f-col b {
  color: var(--bg);
  font-weight: 700;
}
.f-socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.f-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s,
    transform 0.4s var(--ease);
}
.f-socials a:hover {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--ink);
  transform: translateY(-4px);
}
.f-socials svg {
  width: 17px;
  height: 17px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom .map {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom .map svg {
  width: 15px;
  height: 15px;
  color: var(--moss);
}

/* reveal helpers */
[data-reveal] {
  will-change: transform, opacity;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .prog:nth-child(4n) {
    border-right: 1px solid var(--line);
  }
  .prog:nth-child(3n) {
    border-right: none;
  }
  .prog:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .prog:nth-last-child(-n + 3) {
    border-bottom: none;
  }
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 900px) {
  .nav-links,
  .nav-phone {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .burger {
    display: block;
  }
  .hero-badge {
    top: 84px;
    font-size: 10px;
  }
  .hero-badge .hb-line {
    width: 18px;
    margin: 0 8px;
  }
  .orbit-logo {
    display: none;
  }
  .hero h1 {
    font-size: clamp(40px, 8vw, 64px);
  }
  .hero-sub {
    font-size: clamp(17px, 4vw, 24px);
    max-width: 30ch;
  }
  .hero-sub__meta {
    margin-top: 16px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-img-small {
    right: 0;
  }
  .split-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .split-content.rev {
    grid-column: auto;
    grid-row: auto;
  }
  .split-image.rev {
    grid-row: auto;
  }
  .dev-row {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }
  .dev-text {
    grid-column: 2;
  }
  .stars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .sec-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .about-stats {
    flex-direction: column;
  }
  .stat + .stat {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
}
@media (max-width: 700px) {
  .programs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prog {
    min-height: 220px;
    padding: 28px 22px;
  }
  .prog:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .prog:nth-child(2n) {
    border-right: none;
  }
  .prog:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .prog:nth-last-child(-n + 3) {
    border-bottom: none;
  }
  .prog:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .prog:nth-child(7) {
    border-bottom: 1px solid var(--line);
  }
  .prog:nth-child(8) {
    border-bottom: none;
  }
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .stars-grid {
    grid-template-columns: 1fr;
  }
  .form {
    padding: 40px 26px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-btn {
    grid-column: 1;
  }
  .price-card {
    padding: 70px 30px;
  }
  .price-meta {
    gap: 22px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .prog {
    border-right: none !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .prog:last-child {
    border-bottom: none !important;
  }
  .dev-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dev-text {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .line > span {
    transform: none;
  }
  .preloader {
    display: none;
  }
  .about-img-main,
  .about-img-small,
  .split-image {
    clip-path: none;
  }
  .leaf,
  .spark,
  .mist,
  .glow-green,
  .sweep,
  .orbit-logo__ring {
    animation: none;
  }
}
