:root {
  --gold: #c49128;
  --gold-soft: #e0bd74;
  --navy: #12142b;
  --ink: #0b0d1a;
  --text: #292929;
  --muted: #495057;
  --gray: #a4a7ab;
  --line: #e9eaeb;
  --mist: #f9f9f9;
  --white: #fff;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .3s ease, border-color .3s ease, letter-spacing .3s ease, background .4s ease, transform .45s var(--ease), box-shadow .45s ease;
}

button,
input {
  font-family: inherit;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 80;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
}

.skip-link:focus {
  top: 12px;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #8d6518, var(--gold-soft));
  z-index: 60;
  transition: width .12s linear;
}

.wrap {
  max-width: 1312px;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .45s ease, backdrop-filter .45s ease, border-color .45s ease;
}

.header.is-scrolled {
  background: rgba(11, 13, 26, .82);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(196, 145, 40, .22);
}

.header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
  padding: 26px clamp(24px, 4.4vw, 64px);
  max-width: 1440px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .48);
  animation: fadein 1.2s ease both;
}

.brand img {
  height: 36px;
  width: auto;
}

.brand__logo {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  line-height: 0;
}

.brand__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, .5) 50%, transparent 68%);
  transform: translateX(-140%) skewX(-12deg);
  opacity: 0;
}

/* Блик по логотипу меню после загрузки страницы */
.js body.is-ready .header .brand__logo::after {
  animation: logoShine 1.15s var(--ease) .55s forwards;
}

/* Логотип появляется с анимацией после подъёма прелоадера */
.js body.is-ready .header .brand img {
  animation: brandLogoReveal .9s var(--ease) .15s both;
}

.brand__rule {
  width: 1px;
  height: 20px;
  background: rgba(196, 145, 40, .5);
}

.brand__tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 34px;
  animation: fadein 1.2s ease .15s both;
}

.nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.nav__phone {
  font-family: "Prata", serif;
  font-size: 18px !important;
  letter-spacing: .03em !important;
  text-transform: none !important;
  color: var(--white) !important;
  white-space: nowrap;
  border: 0 !important;
}

.nav__phone:hover {
  color: var(--gold-soft) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1px;
  margin: 7px auto;
  background: var(--white);
  transition: transform .35s var(--ease), opacity .25s ease;
}

.header.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.header.is-open .nav-toggle__bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(102deg, rgba(8, 10, 22, .95) 0%, rgba(8, 10, 22, .84) 44%, rgba(8, 10, 22, .4) 76%, rgba(8, 10, 22, .66) 100%);
}

.hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -140px 160px -60px rgba(8, 10, 22, .9);
}

.hero__grid {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 56px 88px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 150px clamp(24px, 4.4vw, 64px) 96px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow--hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.eyebrow__line {
  height: 1px;
  width: 56px;
  background: var(--gold);
  animation: hairline 1.4s var(--ease) .2s both;
}

.hero h1 {
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 74px);
  line-height: 1.14;
  letter-spacing: -.005em;
  color: var(--white);
  max-width: 16ch;
  text-wrap: pretty;
  animation: rise 1.25s var(--ease) .45s both;
}

.hero__lead {
  margin-top: 36px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
  font-weight: 200;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .76);
  max-width: 48ch;
  text-wrap: pretty;
  animation: rise 1.25s var(--ease) .6s both;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 54px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  animation: rise 1.25s var(--ease) .75s both;
}

.hero__points article {
  min-width: 210px;
  max-width: 260px;
}

.hero__points h2 {
  font-family: "Prata", serif;
  font-size: 25px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2;
}

.hero__points p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
}

.form-card {
  position: relative;
  background: rgba(11, 13, 26, .66);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 145, 40, .3);
  padding: 46px 42px 42px;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .8);
  animation: rise 1.3s var(--ease) .85s both;
  transition: border-color .5s ease, box-shadow .5s ease;
}

.form-card:hover {
  border-color: rgba(196, 145, 40, .62);
  box-shadow: 0 46px 110px -40px rgba(0, 0, 0, .9);
}

.form-card--solid {
  background: var(--navy);
  animation: none;
}

form.form-card h2 {
  font-family: "Prata", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--white);
}

.form-card__lead,
.form-card__success p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .56);
}

.gold-line {
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin: 30px 0 32px;
}

.form-card__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-card label span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  margin-bottom: 12px;
}

.form-card input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding: 8px 0 12px;
  font-size: 17px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color .35s ease;
}

.form-card input::placeholder {
  color: rgba(255, 255, 255, .38);
}

.form-card input:hover {
  border-bottom-color: rgba(255, 255, 255, .4);
}

.form-card input:focus {
  border-bottom-color: var(--gold);
}

.form-card button,
.btn {
  display: inline-block;
  margin-top: 10px;
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 20px 0;
  border-radius: 999px;
  text-align: center;
  transition: background .35s ease, transform .35s var(--ease), box-shadow .35s ease;
}

.form-card button:hover,
.btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(196, 145, 40, .7);
}

.form-card button:active,
.btn:active {
  transform: translateY(0) scale(.985);
}

.form-card button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
  box-shadow: none;
}

.form-card__honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-card__note {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
}

.form-card__error {
  font-size: 13px;
  color: #ffb4b4;
}

.form-card__done {
  font-family: "Prata", serif;
  font-size: 23px;
  color: var(--gold);
  margin-top: 0 !important;
}

.form-card.is-sent .form-card__fields {
  display: none;
}

.form-card.is-sent .form-card__success {
  display: block;
  padding: 40px 0 44px;
  text-align: center;
  animation: rise .8s var(--ease) both;
}

.form-card--solid.is-sent .form-card__success {
  text-align: left;
  padding: 32px 0 36px;
}

.hero .form-card {
  padding: 50px 46px 46px;
}

.hero .form-card h2 {
  font-size: 30px;
}

.hero .form-card__lead,
.hero .form-card__success p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.7;
}

.hero .form-card label span {
  font-size: 12px;
  letter-spacing: .22em;
  margin-bottom: 14px;
}

.hero .form-card input {
  font-size: 20px;
  padding: 10px 0 14px;
}

.hero .form-card button {
  font-size: 14px;
  padding: 22px 0;
}

.hero .form-card__note {
  font-size: 13px;
  line-height: 1.65;
}

.hero .form-card__error {
  font-size: 14px;
}

.section {
  padding: 138px clamp(24px, 4.4vw, 64px) 126px;
}

.section--light {
  background: var(--white);
}

.section--navy {
  background: var(--navy);
}

.section--mist {
  background: var(--mist);
}

.section h2,
.dest__copy h3 {
  margin-top: 24px;
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.16;
  color: var(--navy);
}

.section--navy h2 {
  color: var(--white);
}

.title-narrow {
  max-width: 24ch;
  text-wrap: pretty;
}

.section__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 28px 96px;
  align-items: end;
  padding-bottom: 64px;
}

.section__head--dark {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 0;
}

.section__lede {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 40ch;
}

.section__head--dark .section__lede {
  font-size: 17px;
  font-weight: 200;
  color: rgba(255, 255, 255, .58);
  max-width: 42ch;
}

.requests {
  list-style: none;
}

.requests li {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 16px 72px;
  align-items: center;
  padding: 34px 24px;
  margin: 0 -24px;
  border-top: 1px solid var(--line);
  transition: background .45s ease;
}

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

.requests li:hover {
  background: var(--mist);
}

.requests h3 {
  font-family: "Prata", serif;
  font-size: clamp(22px, 2.4vw, 29px);
  font-weight: 400;
  line-height: 1.28;
  color: var(--navy);
}

.requests p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 56px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}

.text-link:hover {
  letter-spacing: .3em;
  color: var(--gold);
}

.fleet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 28px;
  margin-top: 68px;
}

.fleet-card {
  background: #171a35;
  border: 1px solid rgba(255, 255, 255, .07);
  transition: transform .6s var(--ease), border-color .5s ease, box-shadow .6s ease;
}

.fleet-card:hover,
.fleet-card[data-reveal].is-inview:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 145, 40, .45);
  box-shadow: 0 40px 80px -46px rgba(0, 0, 0, .9);
}

.fleet-card__media {
  height: 250px;
  overflow: hidden;
  background: #101328;
}

.fleet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.fleet-card:hover .fleet-card__media img {
  transform: scale(1.06);
}

.fleet-card__body {
  padding: 34px 32px 36px;
}

.fleet-card h3 {
  font-family: "Prata", serif;
  font-size: 25px;
  font-weight: 400;
  color: var(--white);
}

.fleet-card h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(196, 145, 40, .7);
  margin: 18px 0;
}

.fleet-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
}

.fleet-card__badge {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(196, 145, 40, .16);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 46px 0;
}

.pills button {
  cursor: pointer;
  border: 1px solid #d1d3d5;
  background: var(--white);
  color: var(--muted);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .4s ease, color .4s ease, border-color .4s ease, transform .4s var(--ease);
}

.pills button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.pills button.is-active,
.pills button[aria-selected="true"] {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.dest {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  border: 1px solid var(--line);
}

.dest__media {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.dest__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .7s ease, transform 1.4s var(--ease);
  z-index: 1;
}

.dest__media img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.dest__copy {
  padding: 68px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--mist);
}

.dest__copy h3 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.12;
}

.dest__copy h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.dest__copy p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  text-wrap: pretty;
}

.dest__meta {
  margin-top: 38px;
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.dest__meta span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gray);
}

.dest__meta strong {
  display: block;
  margin-top: 10px;
  font-family: "Prata", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
}

.dest__copy .text-link {
  margin-top: 44px;
  align-self: flex-start;
}

.muted {
  margin-top: 30px;
  font-size: 15px;
  color: var(--gray);
}

.program {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 56px 80px;
  align-items: center;
}

.program h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.program__route {
  margin-top: 28px;
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--muted);
}

.program__price {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid #d1d3d5;
}

.program__price strong {
  font-family: "Prata", serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.program__price span {
  font-size: 15px;
  color: var(--muted);
}

.btn--navy {
  width: auto;
  margin-top: 42px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 44px;
}

.btn--navy:hover {
  background: #262e62;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -20px rgba(18, 20, 43, .6);
}

.program__media {
  height: 540px;
  overflow: hidden;
  background: var(--navy);
}

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

.adv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 56px;
  margin-top: 80px;
}

.adv h3 {
  font-family: "Prata", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
}

.adv ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.adv li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .64);
}

.contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 64px 96px;
  align-items: start;
}

.contacts h2 {
  font-size: clamp(32px, 4vw, 46px);
  max-width: 20ch;
  text-wrap: pretty;
}

.person {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.avatar {
  width: 112px;
  height: 112px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Prata", serif;
  font-size: 28px;
  color: var(--gold-soft);
  background: radial-gradient(circle at 30% 25%, #2a2f55, var(--navy));
  border: 1px solid rgba(196, 145, 40, .45);
}

.person__name {
  font-family: "Prata", serif;
  font-size: 25px;
  color: var(--navy);
}

.person__role {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray);
}

.person__links {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.person__tel {
  font-family: "Prata", serif;
  font-size: 23px;
  color: var(--navy);
}

.person__tel:hover,
.offices a:hover {
  color: var(--gold);
}

.person__tel span {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: var(--gray);
}

.person__links a[href^="mailto"] {
  font-size: 18px;
  font-weight: 300;
}

.offices {
  margin-top: 46px;
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.offices span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gray);
}

.offices a {
  display: block;
  margin-top: 10px;
  font-family: "Prata", serif;
  font-size: 18px;
  color: var(--navy);
}

.footer {
  background: var(--ink);
  padding: 54px clamp(24px, 4.4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer__inner {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.brand--footer img {
  height: 28px;
}

.brand--footer span:last-child {
  font-size: 13px;
}

.footer p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .34);
  max-width: 60ch;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

[data-reveal].is-inview {
  opacity: 1;
  transform: none;
}

@keyframes kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.16) translate(-1.5%, -1%); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

@keyframes hairline {
  from { width: 0; opacity: 0; }
  to { width: 56px; opacity: 1; }
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes brandLogoReveal {
  from { opacity: 0; transform: scale(.9) translateY(10px); }
  to { opacity: 1; transform: none; }
}

@keyframes logoShine {
  0% { transform: translateX(-140%) skewX(-12deg); opacity: 0; }
  12% { opacity: .9; }
  75% { opacity: .9; }
  100% { transform: translateX(140%) skewX(-12deg); opacity: 0; }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero__grid,
  .contacts,
  .program {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dest__copy {
    padding: 42px 28px 48px;
  }

  .dest__media,
  .program__media {
    min-height: 360px;
    height: 360px;
  }

  .form-card {
    padding: 36px 28px 32px;
  }

  .hero .form-card {
    padding: 36px 28px 32px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 18px;
    animation: none;
  }

  .header.is-open .nav {
    display: flex;
  }

  .brand__tag {
    display: none;
  }
}

@media (max-width: 640px) {
  .header__inner,
  .hero__grid,
  .section,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__grid {
    padding-top: 128px;
  }

  .hero__points {
    gap: 28px;
  }

  .requests li {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

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