html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, opacity 0.3s ease, padding 0.3s ease, background 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}
.header.header--hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.header.scrolled {
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.6);
}
.header__logo {
  margin-left: 40px;
  z-index: 2000;
}
.header__logo img {
  max-width: 140px;
  height: auto;
  display: block;
}
.header__nav {
  margin-right: 40px;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.header__nav ul li {
  list-style: none;
}
.header__nav ul li a {
  position: relative;
  color: #f4f1f5;
  text-decoration: none;
  font-size: clamp(14px, 1.2vw, 18px);
  font-family: russoone, sans-serif;
  letter-spacing: 1px;
  transition: 0.3s;
}
.header__nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #e6b84d;
  transition: 0.35s ease;
}
.header__nav ul li a:hover::after {
  width: 100%;
}
.header__nav ul li:last-child a {
  padding: 12px 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, #e6b84d 0%, #d8a016 100%);
  color: #fff;
}
.header__nav ul li:last-child a::after {
  display: none;
}
.header__nav ul li:last-child a:hover {
  color: #000;
}
.header__nav--desktop {
  display: flex;
}
.header__cta {
  padding: 12px 20px;
  background: linear-gradient(180deg, #e6b84d 0%, #d8a016 100%);
  border-radius: 8px;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-right: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
}
.header__burger span {
  width: 30px;
  height: 3px;
  background: #f4f1f5;
  transition: 0.4s;
}
.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 900;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  max-width: 420px;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #0a0a0a, #111);
  box-shadow: -20px 0 60px rgba(216, 160, 22, 0.25);
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 1000;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.mobile-menu ul li {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.4s ease;
}
.mobile-menu.active ul li {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.active ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active ul li:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-menu.active ul li:nth-child(5) {
  transition-delay: 0.5s;
}
.mobile-menu.active ul li:nth-child(6) {
  transition-delay: 0.6s;
}
.mobile-menu.active ul li:nth-child(7) {
  transition-delay: 0.7s;
}
.mobile-menu a {
  position: relative;
  color: #f4f1f5;
  text-decoration: none;
  font-size: 28px;
  font-family: russoone, sans-serif;
  letter-spacing: 1px;
  transition: 0.3s;
}
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #e6b84d;
  transition: 0.35s ease;
}
.mobile-menu a:hover::after {
  width: 100%;
}
.mobile-menu__cta {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(180deg, #e6b84d 0%, #d8a016 100%);
  border-radius: 8px;
}
.mobile-menu__cta::after {
  display: none;
}

@media (max-width: 1024px) {
  .header__nav--desktop {
    display: none;
  }
  .header__burger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .header__logo {
    margin-left: 20px;
  }
  .header__burger {
    margin-right: 20px;
  }
  .header__logo img {
    max-width: 100px;
  }
  .mobile-menu {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .header__logo img {
    max-width: 80px;
  }
  .mobile-menu {
    width: 88%;
  }
  .mobile-menu a {
    font-size: 22px;
  }
}
@font-face {
  font-family: inter;
  src: url(../fonts/Inter_18pt-Medium.ttf);
}
@font-face {
  font-family: russoone;
  src: url(../fonts/RussoOne-Regular.ttf);
}
.footer {
  position: relative;
  padding: 90px 20px 24px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.footer__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__brand, .footer__menu, .footer__contacts {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 22px;
}
.footer__logo img {
  width: 150px;
  height: auto;
  display: block;
}
.footer__text {
  max-width: 420px;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.75;
}
.footer-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.footer__menu h3, .footer__contacts h3 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav a {
  width: -moz-fit-content;
  width: fit-content;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.4;
  transition: 0.3s ease;
}
.footer__nav a:hover {
  color: #d8a016;
  transform: translateX(4px);
}
.footer__contact, .footer__address {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.6;
}
.footer__contacts {
  align-items: flex-start;
}
.footer__contact:hover {
  color: #d8a016;
}
.footer__btn {
  margin-top: 16px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
}
.footer__bottom p,
.footer__bottom a {
  color: #8a8a8a;
  font-size: 14px;
}
.footer__bottom a:hover {
  color: #d8a016;
}

@media (max-width: 1100px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
  .footer__text {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 72px 20px 24px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 28px;
  }
  .footer__logo img {
    width: 132px;
  }
  .footer__menu h3, .footer__contacts h3 {
    margin-bottom: 16px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 64px 16px 20px;
  }
  .footer__text, .footer__contact, .footer__address, .footer__nav a {
    font-size: 14px;
  }
  .footer__bottom p,
  .footer__bottom a {
    font-size: 13px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: inter, sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: russoone, sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 5vw, 64px);
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
}

p {
  color: #cfcfcf;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease;
}
a:hover {
  color: #d8a016;
}

button {
  font-family: inter, sans-serif;
  border: none;
  background: none;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn--primary {
  background: linear-gradient(135deg, #e6b84d 0%, #d8a016 100%);
  box-shadow: 0 10px 25px rgba(216, 160, 22, 0.3);
}
.btn--primary:hover {
  color: #000000;
  box-shadow: 0 15px 35px rgba(216, 160, 22, 0.5);
}
.btn--secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

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

video {
  -o-object-fit: cover;
     object-fit: cover;
}

ul,
ol {
  list-style: none;
}

.card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

::-moz-selection {
  color: #000;
  background: #d8a016;
}

::selection {
  color: #000;
  background: #d8a016;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #d8a016;
  border-radius: 10px;
}

* {
  transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.travel-intro,
.travel-directions,
.travel-steps,
.travel-cta {
  width: 100%;
  background: #131314;
}

.travel-hero {
  width: 100%;
  padding: 176px 40px 104px;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.74) 100%), url("../image/travel-back.jpg") center/cover no-repeat;
  background-attachment: fixed;
}
.travel-hero__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.travel-hero__subtitle {
  margin-bottom: 18px;
  color: #e6b84d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.travel-hero__title {
  max-width: 900px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: none;
}
.travel-hero__title span {
  color: #d8a016;
}
.travel-hero__text {
  max-width: 700px;
  margin-bottom: 36px;
  color: #cfcfcf;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.72;
}
.travel-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 992px) {
  .travel-hero {
    padding: 156px 24px 84px;
    background-attachment: scroll;
  }
}
@media (max-width: 768px) {
  .travel-hero {
    padding: 138px 20px 72px;
  }
  .travel-hero__title {
    font-size: clamp(34px, 8vw, 50px);
    line-height: 1.06;
  }
  .travel-hero__text {
    font-size: 16px;
    line-height: 1.66;
  }
}
@media (max-width: 480px) {
  .travel-hero {
    min-height: 78svh;
    padding: 120px 16px 40px;
    display: flex;
    align-items: flex-end;
  }
  .travel-hero__container {
    width: 100%;
  }
  .travel-hero__subtitle, .travel-hero__text {
    display: none;
  }
  .travel-hero .btn {
    width: 100%;
    min-width: 100%;
    min-height: 56px;
    font-size: 16px;
  }
  .travel-hero__actions {
    width: 100%;
    flex-direction: column;
  }
}
.travel-intro {
  padding: 64px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.travel-intro__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 760px);
  justify-content: space-between;
  align-items: start;
  gap: 56px;
}
.travel-intro__left h2 {
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: none;
}
.travel-intro__left h2 span {
  color: #d8a016;
}
.travel-intro__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.travel-intro__right p {
  max-width: 760px;
  color: #cfcfcf;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.75;
}

@media (max-width: 992px) {
  .travel-intro {
    padding-left: 24px;
    padding-right: 24px;
  }
  .travel-intro__container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .travel-intro {
    padding: 64px 20px;
  }
}
@media (max-width: 480px) {
  .travel-intro {
    padding-left: 16px;
    padding-right: 16px;
  }
  .travel-intro__left h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
}
.travel-directions {
  padding: 64px 40px;
}
.travel-directions__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.travel-directions__title {
  max-width: 780px;
  margin-bottom: 32px;
}
.travel-directions__title h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: none;
}
.travel-directions__title h2 span {
  color: #d8a016;
}
.travel-directions__title p {
  color: #cfcfcf;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.72;
}
.travel-directions__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.travel-directions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;
}

.travel-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.travel-filter:hover {
  color: #ffffff;
  border-color: rgba(216, 160, 22, 0.3);
}
.travel-filter.active {
  color: #d8a016;
  border-color: rgba(216, 160, 22, 0.4);
  background: rgba(216, 160, 22, 0.06);
}

.travel-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center center;
  will-change: transform, opacity;
}
.travel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 160, 22, 0.22);
}
.travel-card:hover .travel-card__image img {
  transform: scale(1.04);
}
.travel-card:hover .travel-card__link {
  color: #e6b84d;
}
.travel-card__image {
  width: 100%;
  aspect-ratio: 1.32/1;
  overflow: hidden;
  background: #0d0d0d;
}
.travel-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.travel-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}
.travel-card h3 {
  color: #ffffff;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.18;
}
.travel-card p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.72;
}
.travel-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: #d8a016;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.3s ease;
}

@media (max-width: 1300px) {
  .travel-directions__grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}
@media (max-width: 992px) {
  .travel-directions {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .travel-directions {
    padding: 64px 20px;
  }
  .travel-directions__grid {
    grid-template-columns: 1fr;
  }
  .travel-directions__filters {
    gap: 8px;
    margin-bottom: 28px;
  }
  .travel-filter {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 13px;
  }
  .travel-card__content {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .travel-directions {
    padding-left: 16px;
    padding-right: 16px;
  }
  .travel-directions__title h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
  .travel-card__content {
    padding: 18px;
  }
}
.travel-steps {
  padding: 88px 40px 0;
}
.travel-steps__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.travel-steps__head {
  margin-bottom: 30px;
}
.travel-steps__head h2 {
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: none;
}
.travel-steps__head h2 span {
  color: #d8a016;
}
.travel-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.travel-step {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.travel-step__number {
  display: inline-block;
  margin-bottom: 16px;
  color: #d8a016;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
.travel-step h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.2;
}
.travel-step p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.72;
}

@media (max-width: 1300px) {
  .travel-steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .travel-steps {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .travel-steps {
    padding: 64px 20px 0;
  }
  .travel-steps__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .travel-steps {
    padding-left: 16px;
    padding-right: 16px;
  }
  .travel-steps__head h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
}
.travel-cta {
  padding: 88px 40px 110px;
}
.travel-cta__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.travel-cta__container h2 {
  max-width: 860px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: none;
}
.travel-cta__container h2 span {
  color: #d8a016;
}
.travel-cta__container p {
  max-width: 680px;
  margin-bottom: 30px;
  color: #cfcfcf;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.74;
}
.travel-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 992px) {
  .travel-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .travel-cta {
    padding: 64px 20px 84px;
  }
  .travel-cta .btn {
    width: 100%;
    min-width: 100%;
    min-height: 56px;
    font-size: 16px;
  }
  .travel-cta__actions {
    width: 100%;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .travel-cta {
    padding-left: 16px;
    padding-right: 16px;
  }
  .travel-cta__container h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
}/*# sourceMappingURL=travel.css.map */