:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-orange: #ff7b00;
  --c-cream: #fff1e3;
  --f-head: "Inter Tight", sans-serif;
  --f-body: "Inter", sans-serif;
  --scale-desktop: 0.520833333vw;
  --scale-tablet: 1.5vw;
  --scale-mobile: 2.5vw;
  --h-bg: transparent;
  --h-content: var(--c-white);
  --h-border: rgba(255, 255, 255, 0.15);
  --h-btn-bg: transparent;
  --h-btn-border: rgba(255, 255, 255, 0.3);
  --h-btn-text: var(--c-white);
}

/* === FIX WORDPRESS ADMIN BAR === */

/* Сдвигаем шапку вниз на 32px (высота админ-бара на ПК) */
body.admin-bar .header {
    top: 32px;
}

/* На экранах планшетов и мобильных админ-бар выше (46px) */
@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

.header--invert {
  --h-bg: transparent;
  --h-content: var(--c-black);
  --h-border: rgba(0, 0, 0, 0.1);
  --h-btn-bg: transparent;
  --h-btn-border: var(--c-orange);
  --h-btn-text: var(--c-black);
}

html {
  font-size: var(--scale-desktop);
}

@media (max-width: 768px) {
  html {
    font-size: var(--scale-tablet);
  }
}

@media (max-width: 540px) {
  html {
    font-size: var(--scale-mobile);
  }
}

body {
  font-family: var(--f-body);
  font-size: 1.6rem;
  color: var(--c-black);
  background-color: var(--c-black);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

.container {
  position: relative;
  width: 100%;
  max-width: 176rem;
  margin: 0 auto;
  z-index: 1;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 4.8rem;
  border-radius: 6rem;
  font-size: 2rem;
  font-weight: 400;
  transition: 0.3s;
  line-height: 1;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: rotate(180deg);
}

.btn--primary {
  background: var(--c-orange);
  color: var(--c-white);
  display: flex;
  gap: 2rem;
  padding: 2.4rem 3rem 2.4rem 3.4rem;
}

.btn--primary svg {
  width: auto;
}

.btn--primary--white {
  background: var(--c-white);
  color: var(--c-black);
}

.btn--primary--border {
  background: var(--c-white);
  border: 0.1rem solid var(--c-orange);
  color: var(--c-black);
}

.btn--primary--border:hover {
  background: var(--c-orange);
  color: var(--c-white);
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--outline {
  border: 0.1rem solid rgba(255, 255, 255, 0.4);
  color: var(--c-white);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .btn {
    width: fit-content !important;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 9.6rem;
  background: var(--h-bg);
  border-bottom: 0.1rem solid var(--h-border);
  transition:
    background 0.3s,
    border-color 0.3s;
}

.header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6rem;
  max-width: 100%;
}

.header__logo svg {
  width: 18.1rem;
  height: 2.8rem;
}

.header__logo .logo-fill {
  fill: var(--h-content);
  transition: fill 0.3s;
}

.header__nav {
  display: flex;
  gap: 4rem;
}

.header__link {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--h-content);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.3s;
}

.header__link:hover {
  color: var(--c-orange);
}

.nav-arrow {
  width: 1.2rem;
  height: 0.7rem;
  margin-top: 0.2rem;
  transition:
    stroke 0.3s,
    transform 0.3s ease;
}

.nav-arrow path {
  stroke: var(--h-content);
  transition: stroke 0.3s;
}

.header__link:hover .nav-arrow path {
  stroke: var(--c-orange);
}

.link-with-arrow:hover .nav-arrow {
  transform: rotate(180deg);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.header__socials {
  display: flex;
  gap: 1.5rem;
}

.social-icon svg {
  width: 3.6rem;
  height: 3.6rem;
}

.social-stroke {
  stroke: var(--h-content);
  transition: stroke 0.3s;
}

.social-fill {
  fill: var(--h-content);
  transition: fill 0.3s;
}

.social-icon:hover .social-stroke {
  stroke: var(--c-orange);
}

.social-icon:hover .social-fill {
  fill: var(--c-orange);
}

.btn--book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 2rem;
  background: var(--h-btn-bg);
  border: 0.1rem solid var(--h-btn-border);
  border-radius: 5rem;
  color: var(--h-content);
  font-family: var(--f-head);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  transition: 0.3s;
  gap: 2rem;
}

.header--invert .btn--book {
  color: var(--h-btn-text);
  border-color: var(--c-orange);
}

.btn--book:hover {
  border-color: var(--c-orange);
  background: var(--c-orange);
  color: var(--c-white);
}

.btn--book svg {
  width: 2.4rem;
  height: 2.4rem;
}

.btn--book svg .btn-stroke {
  stroke: currentColor;
  transition: stroke 0.3s;
}

.mobile-trigger {
  display: none;
  align-items: center;
  gap: 0.8rem;
  color: var(--h-content);
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 1.6rem;
  text-transform: uppercase;
  height: 2rem;
}

.mobile-trigger svg {
  width: 1.4rem;
  height: 1.4rem;
}

.mobile-trigger .dot {
  transition: transform 0.3s ease;
  transform-origin: center;
  fill: currentColor;
}

.mobile-trigger.is-active .dot-tl {
  transform: translate(0.1rem, 0.1rem);
}
.mobile-trigger.is-active .dot-tr {
  transform: translate(-0.1rem, 0.1rem);
}
.mobile-trigger.is-active .dot-bl {
  transform: translate(0.1rem, -0.1rem);
}
.mobile-trigger.is-active .dot-br {
  transform: translate(-0.1rem, -0.1rem);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--c-white);
  z-index: 90;
  padding-top: 9.6rem;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header.is-menu-open {
  background-color: var(--c-white) !important;
  border-bottom-color: rgba(0, 0, 0, 0.1) !important;
  --h-content: var(--c-black);
}

@media (max-width: 768px) {
  .header {
    height: 6.5rem;
  }
  .header__container {
    padding: 0 2rem;
  }
  .header__logo svg {
    width: 15.5rem;
    height: 2.4rem;
  }
  .mobile-trigger {
    display: flex;
  }
  .mobile-menu {
    padding-top: 6.5rem;
    transition:
      transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.6s ease,
      visibility 0.6s ease;
  }
  .mobile-nav__link,
  .mobile-actions {
    opacity: 0;
    transform: translateY(2rem);
    transition:
      opacity 0.5s ease,
      transform 0.5s ease;
  }
  .mobile-menu.is-open .mobile-nav__link,
  .mobile-menu.is-open .mobile-actions {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu.is-open .mobile-nav__link:nth-child(1) {
    transition-delay: 0.1s;
  }
  .mobile-menu.is-open .mobile-nav__link:nth-child(2) {
    transition-delay: 0.15s;
  }
  .mobile-menu.is-open .mobile-nav__link:nth-child(3) {
    transition-delay: 0.2s;
  }
  .mobile-menu.is-open .mobile-nav__link:nth-child(4) {
    transition-delay: 0.25s;
  }
  .mobile-menu.is-open .mobile-nav__link:nth-child(5) {
    transition-delay: 0.3s;
  }
  .mobile-menu.is-open .mobile-actions {
    transition-delay: 0.35s;
  }
  .mobile-menu__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 2rem 4rem 2rem;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .mobile-nav__link {
    font-family: var(--f-body);
    font-weight: 500;
    font-size: 3.6rem;
    letter-spacing: -0.05em;
    color: var(--c-black);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .mobile-nav-arrow {
    width: 1.8rem;
    height: 1rem;
    display: block;
    margin-top: 0.6rem;
    transition: transform 0.3s ease;
  }
  .mobile-nav-arrow path {
    stroke: currentColor;
    stroke-width: 0.15rem;
  }
  .mobile-link-with-arrow:hover .mobile-nav-arrow {
    transform: rotate(180deg);
  }
  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .mobile-socials {
    gap: 1.5rem;
    display: flex;
  }
  .mobile-socials .social-icon svg {
    width: 4.8rem;
    height: 4.8rem;
  }
  .mobile-socials .social-stroke {
    stroke: var(--c-black) !important;
  }
  .mobile-socials .social-fill {
    fill: var(--c-black) !important;
  }
  .mobile-btn {
    width: 100% !important;
    background: var(--c-orange);
    color: var(--c-white);
    border-color: var(--c-orange);
    padding: 2rem 2rem 2rem 3rem;
  }
  .mobile-btn svg .btn-stroke {
    stroke: var(--c-white);
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100dvh;
  background: var(--c-black);
  overflow: hidden;
  z-index: 1;
  max-height: 108rem;
}

.slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 1.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}

.hero-slide.is-active {
  transform: translateX(0);
  z-index: 2;
}
.hero-slide.is-left {
  transform: translateX(-100%);
  z-index: 1;
}
.hero-slide.is-right {
  transform: translateX(100%);
  z-index: 1;
}
.no-transition {
  transition: none !important;
}

.hero-slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  pointer-events: none;
}

.hero-ui-container {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.titles-wrapper {
  position: relative;
  width: 100%;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 9.6rem;
  line-height: 0.95;
  color: var(--c-white);
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(10rem) scale(0.8);
  transition:
    transform 1s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 1s ease;
}

.hero-title.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s,
    opacity 1s ease 0.4s;
}

.hero-title.is-exit {
  opacity: 0;
  transform: translateY(-10rem) scale(0.8);
  transition:
    transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s,
    opacity 0.8s ease-in 0s;
}

.static-layer {
  position: absolute;
  top: 65%;
  width: 100%;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}

.static-content-wrapper {
  text-align: center;
}

.hero-slide__desc {
  font-family: var(--f-body);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4rem;
  font-weight: 400;
  min-height: 2.4rem;
}

#typewriter-text {
  position: relative;
  display: inline-block;
}

.is-strike {
  text-decoration: line-through;
  text-decoration-color: currentColor;
}

.hero-slide__buttons {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 6rem;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  pointer-events: auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: #00000040;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: 0.3s ease;
  color: var(--c-white);
}

.slider-arrow svg {
  width: 2.1rem;
  height: 1.5rem;
  display: block;
}

.slider-arrow path {
  fill: currentColor;
  transition: fill 0.3s ease;
}

.slider-arrow:hover {
  color: var(--c-orange);
  background: #00000060;
}

.slider-arrow--prev {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .slider-nav {
    display: none;
  }
  .hero-slide:not(.is-active) {
    display: none;
  }
  .titles-wrapper h1:not(.is-active) {
    display: none;
  }
  .hero-ui-container {
    padding-bottom: 12rem;
    justify-content: flex-end;
    text-align: center;
  }
  .titles-wrapper {
    height: auto;
    margin-bottom: 2rem;
    position: relative;
    top: auto;
    transform: none;
  }
  .hero-title {
    position: relative;
    font-size: 4.8rem;
    line-height: 1;
    opacity: 1 !important;
    transform: none !important;
    width: 100%;
    top: auto;
  }
  .static-layer {
    position: relative;
    top: auto;
  }
  .hero-slide__desc {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
    min-height: auto;
  }
  .hero-slide__buttons {
    flex-direction: column;
    width: 100%;
    gap: 1.2rem;
    padding: 0 2rem;
  }
  .hero-slide__buttons .btn {
    width: 100%;
  }
}

.about-section {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 5;
  margin-top: -6.6rem;
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  background-color: var(--c-white);
  color: var(--c-black);
  padding: 8rem 0 10rem 0;
  overflow: hidden;
  box-shadow: 0 -1rem 4rem rgba(0, 0, 0, 0.05);
  max-height: 108rem;
}

.bg-line-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.line-bg-about {
  position: absolute;
  top: 7%;
  left: 0;
  width: 90%;
  height: auto;
  opacity: 1;
}

.about__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2.4fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 15rem;
}

.about__col--video {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
}

.video-wrapper {
  position: relative;
  width: 36rem;
  height: 47.8rem;
  border-radius: 2.2rem;
  overflow: hidden;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.about-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #000;
  cursor: pointer;
  transition: opacity 0.3s;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.play-btn {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  z-index: 3;
}

.play-btn:hover {
  transform: scale(1.1);
}

.about__col--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 14rem;
}

.about-title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 7.8rem;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 3rem;
  text-align: center;
}

.text-orange {
  color: var(--c-orange);
}

.about-desc {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: -0.05em;
  text-align: center;
  width: 100%;
  max-width: 66rem;
  margin-bottom: 4rem;
  color: var(--c-black);
}

.about__col--images {
  position: relative;
  height: 100%;
  min-height: 60rem;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-card {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-card--top {
  width: 21rem;
  height: 27.9rem;
  border-radius: 2.2rem;
  top: 0;
  right: 0;
  z-index: 2;
}

.img-card--bottom {
  width: 42rem;
  height: 28rem;
  border-radius: 2.2rem;
  bottom: 0;
  right: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .about-section {
    position: relative;
    top: auto;
    margin-top: -3.2rem;
    padding: 6rem 0 8rem 0;
    max-height: none;
    border-top-left-radius: 3.2rem;
    border-top-right-radius: 3.2rem;
  }
  .about-section .bg-line-wrapper {
    top: 33%;
    width: 220%;
  }
  .about-mobile.container {
    display: flex !important;
    flex-direction: column;
    padding: 0;
    gap: 4rem;
    width: 100%;
  }
  .about-mobile__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
  }
  .about-mobile__content .about-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
  }
  .about-mobile__content .about-title br {
    display: none;
  }
  .about-mobile__content .about-desc {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    max-width: 100%;
  }
  .about-mobile__content .btn {
    width: fit-content !important;
  }
  .about-mobile__slider {
    display: flex;
    gap: 1.6rem;
    overflow-x: auto;
    padding: 0 2rem 4rem 2rem;
    width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .about-mobile__slider::-webkit-scrollbar {
    display: none;
  }
  .about-card {
    flex: 0 0 85%;
    width: 85%;
    aspect-ratio: 4 / 5;
    height: auto;
    border-radius: 2.4rem;
    overflow: hidden;
    scroll-snap-align: center;
    position: relative;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    background-color: #eee;
  }
  .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .video-wrapper-mobile {
    width: 100%;
    height: 100%;
    position: relative;
  }
}

.destinations-section {
  position: relative;
  z-index: 10;
  margin-top: -6.6rem;
  background-color: var(--c-orange);
  color: var(--c-white);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding: 10rem 0 18rem 0;
  overflow: hidden;
}

.destinations-section .bg-line-wrapper img {
  position: absolute;
  top: -10%;
  right: -10%;
  z-index: 0;
  width: 58.6rem;
  left: auto;
}

.destinations-title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 7.8rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 3rem;
}

.destinations-desc {
  font-family: var(--f-body);
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 4rem auto;
  opacity: 1;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.dest-card {
  background-color: var(--c-white);
  border-radius: 3rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 45rem;
  transition: transform 0.3s ease;
  color: var(--c-black);
  text-decoration: none;
  min-height: 46rem;
}

.dest-card:hover {
  background-color: var(--c-black);
  color: var(--c-white);
}

.dest-card__content {
  margin-bottom: 2rem;
}

.dest-card__title {
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 90%;
}

.dest-card__tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.dest-tag {
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 0.1rem solid var(--c-orange);
  padding: 0.6rem 1.6rem;
  border-radius: 2rem;
}

.dest-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 24rem;
  border-radius: 2rem;
  overflow: hidden;
  margin-top: auto;
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.dest-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 6.5rem;
  height: 6.5rem;
  background-color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-black);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s ease;
}

.dest-card:hover .dest-arrow,
.world-card:hover .dest-arrow {
  background-color: var(--c-orange);
  transform: rotate(-45deg) scale(1.05);
  color: var(--c-white);
}

.dest-card:hover .dest-card__image-wrapper {
  transform: scaleY(1.02);
}

.destinations-more {
  display: flex;
  justify-content: center;
}

.btn--white {
  background-color: var(--c-white);
  color: var(--c-black);
  padding: 2rem 4rem;
  font-weight: 500;
  gap: 1.5rem;
}

.btn--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.plus-icon {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 768px) {
  .destinations-section {
    position: relative;
    margin-top: -3.2rem;
    padding: 6rem 0 8rem 0;
    border-top-left-radius: 3.2rem;
    border-top-right-radius: 3.2rem;
  }
  .destinations-section .bg-line-wrapper {
    top: 32%;
    width: 157%;
  }
  .destinations-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    padding: 0 2rem;
  }
  .destinations-desc {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 4rem;
    padding: 0 2rem;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }
  .dest-card {
    min-height: auto;
    height: auto;
    padding: 2rem;
    border-radius: 2.4rem;
  }
  .dest-card__title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  .dest-card__image-wrapper {
    height: 22rem;
    border-radius: 1.6rem;
  }
  .dest-arrow {
    width: 5rem;
    height: 5rem;
    bottom: 1rem;
    right: 1rem;
  }
  .destinations-more {
    margin-top: 4rem;
  }
  .destinations-more .btn {
    width: fit-content !important;
  }
}

.world-section {
  position: relative;
  z-index: 15;
  margin-top: -6.6rem;
  background-color: var(--c-white);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding: 10rem 0 18rem 0;
  overflow: hidden;
}

.world-section .bg-line-wrapper img {
  position: absolute;
  top: 0;
  right: auto;
  z-index: 0;
  width: 58.6rem;
  left: 0;
}

.world-title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 7.8rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 3rem;
}

.world-desc {
  font-family: var(--f-body);
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 4rem auto;
  opacity: 1;
}

.world-title--highlight {
  color: var(--c-orange);
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.world-card {
  position: relative;
  height: 52rem;
  border-radius: 3rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  text-decoration: none;
  color: var(--c-white);
  transition: 0.3s ease;
}

.world-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.3s ease;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: background 0.3s ease;
}

.world-card:hover .card-video {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.world-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
}

.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--c-white);
  color: var(--c-black);
  padding: 0.8rem 1.6rem;
  border-radius: 4rem;
  font-family: var(--f-body);
  font-size: 1.4rem;
  font-weight: 500;
}

.world-card__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.world-card__title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.world-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
  max-width: 80%;
}

.world-card__list li {
  font-size: 1.4rem;
  line-height: 1.3;
  list-style-type: disc;
  opacity: 0.9;
}

.world-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.world-card__tags {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.world-arrow {
  width: 5rem;
  height: 5rem;
  background-color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-black);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.world-arrow svg {
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.4s ease;
}

.world-card:hover .world-arrow {
  transform: scale(1.1);
}

.world-card:hover .world-arrow svg {
  transform: rotate(-45deg);
}

.world-more {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .world-section {
    position: relative;
    margin-top: -3.2rem;
    padding: 6rem 0 8rem 0;
    border-top-left-radius: 3.2rem;
    border-top-right-radius: 3.2rem;
  }
  .world-title {
    font-size: 4rem;
    padding: 0 2rem;
  }
  .destinations-desc {
    font-size: 1.8rem;
    padding: 0 2rem;
  }
  .world-grid {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
}

.founder-section {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: -6.6rem;
  background-color: var(--c-cream);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding-top: 10rem;
  padding-bottom: 0;
  overflow: hidden;
}

.founder-section .bg-line-wrapper img {
  position: absolute;
  bottom: 10%;
  top: auto;
  right: auto;
  z-index: 0;
  width: 120rem;
  left: 0;
}

.founder-bg-line {
  position: absolute;
  top: 10rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.founder-bg-line svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  min-height: 70rem;
}

.founder__col {
  position: relative;
}

.founder__col--left {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-self: start;
}

.founder-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 4rem;
}

.founder-role {
  font-family: var(--f-body);
  font-size: 1.8rem;
  opacity: 0.7;
}

.insta-card {
  background-color: var(--c-white);
  border-radius: 3rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 34rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.insta-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.insta-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
}

.insta-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  transform: rotate(-45deg);
}

.insta-card:hover .insta-btn {
  transform: rotate(0);
}

.insta-handle {
  display: block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.insta-desc {
  font-size: 1.8rem;
  line-height: 1.4;
}

.founder__col--center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.founder-photo {
  width: 100%;
  height: auto;
  display: block;
}

.founder__col--right {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-self: start;
}

.mission-card {
  background-color: var(--c-white);
  border-radius: 3rem;
  padding: 4rem;
}

.mission-text-block {
  margin-bottom: 3rem;
}

.mission-text-block p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.mission-text-block p:last-child {
  margin-bottom: 0;
}

.mission-highlight {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .founder-section {
    position: relative;
    top: auto;
    margin-top: -3.2rem;
    padding: 6rem 0 8rem 0;
    border-top-left-radius: 3.2rem;
    border-top-right-radius: 3.2rem;
    min-height: auto;
  }
  .founder__container {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 2rem;
  }
  .founder__col--left,
  .founder__col--center,
  .founder__col--right {
    display: contents;
  }
  .founder-header {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  .founder-photo-wrapper {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .insta-card {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-bottom: 4rem;
  }
  .mission-card {
    order: 4;
    width: 100%;
    padding: 3rem;
  }
  .founder-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
  }
  .founder-role {
    font-size: 1.8rem;
    opacity: 0.8;
  }
  .founder-photo {
    width: 85%;
    height: auto;
    display: block;
  }
  .mission-text-block p {
    font-size: 1.6rem;
  }
  .mission-highlight {
    font-size: 1.8rem;
  }
  .mission-btn {
    width: fit-content !important;
    margin: 0 !important;
  }
  .founder-section .bg-line-wrapper img {
    opacity: 0.2;
    left: -20%;
  }
}

.reviews-section {
  position: relative;
  z-index: 25;
  margin-top: -6.6rem;
  background-color: var(--c-white);
  color: var(--c-black);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding: 12rem 0 12rem 0;
  overflow: visible;
}

.reviews-section .bg-line-wrapper img {
  position: absolute;
  bottom: auto;
  top: 5%;
  right: 0;
  z-index: 0;
  width: 120rem;
  left: auto;
}

.reviews__container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.reviews__col--left {
  position: -webkit-sticky;
  position: sticky;
  top: 6rem;
}

.reviews-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.text-orange {
  color: var(--c-orange);
}

.reviews__col--right {
  position: relative;
}

.reviews-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.reviews-line svg {
  width: 100%;
  height: 100%;
}

.reviews-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.review-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 4rem;
}

.review-item--reverse {
  justify-content: flex-end;
}

.review-item--reverse .review-video-link {
  margin-left: -4rem;
}

.review-video-link {
  position: relative;
  width: 47rem;
  height: 32rem;
  border-radius: 2rem;
  overflow: hidden;
  display: block;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.review-video-link:hover {
  transform: scale(1.02);
}

.review-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn-red {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 4.5rem;
  background-color: #ff0000;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  z-index: 2;
}

.review-video-link:hover .play-btn-red {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.caption-small {
  font-size: 1.4rem;
}

.caption-right {
  right: 2rem;
  left: auto;
  text-align: right;
}

.review-card {
  background-color: var(--c-cream);
  padding: 3rem;
  border-radius: 2rem;
  width: 38rem;
  min-height: 23rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-bottom: 4rem;
  z-index: 10;
  margin-left: -4rem;
}

.review-card .dest-arrow {
  position: relative;
  bottom: 0;
  right: 0;
  color: var(--c-black);
  transform: rotate(-45deg);
  transition: transform 0.3s;
  width: 4rem;
  height: 4rem;
}

.review-card:hover .dest-arrow {
  transform: rotate(0deg);
  background-color: var(--c-orange);
  color: var(--c-white);
}

.review-card__title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.review-card__desc {
  font-size: 1.4rem;
  line-height: 1.4;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.review-arrow-btn {
  transform: rotate(0deg);
}

.review-card:hover .review-arrow-btn {
  transform: rotate(45deg);
}

.artists-block {
  display: flex;
  align-items: flex-end;
  gap: 8rem;
  margin-top: 8rem;
  justify-content: flex-end;
}

.artists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  flex-shrink: 0;
}

.artist-item {
  width: 16rem;
  height: 16rem;
  border-radius: 3rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.artist-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.artists-card {
  background-color: var(--c-cream);
  border-radius: 3rem;
  padding: 5rem 4rem;
  flex-grow: 1;
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 33rem;
}

.artists-card__title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--c-black);
}

.artists-card__desc {
  font-family: var(--f-body);
  font-size: 1.6rem;
  line-height: 1.5;
  color: #555;
  max-width: 90%;
}

@media (max-width: 768px) {
  .reviews-section {
    overflow: visible;
    margin-top: -3.2rem;
    padding: 6rem 0 8rem 0;
    border-top-left-radius: 3.2rem;
    border-top-right-radius: 3.2rem;
  }
  .reviews-mobile.container {
    display: flex !important;
    flex-direction: column;
    padding: 0;
    width: 100%;
  }
  .reviews-mobile__header {
    padding: 2rem 2rem 3rem 2rem;
    margin-bottom: 2rem;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
  .reviews-mobile__header .reviews-title {
    font-size: 4rem;
    line-height: 1.1;
    text-align: center;
  }
  .reviews-mobile__carousel {
    display: flex;
    gap: 1.6rem;
    overflow-x: auto;
    padding: 0 2rem 4rem 2rem;
    width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-mobile__carousel::-webkit-scrollbar {
    display: none;
  }
  .review-mobile-card {
    flex: 0 0 85%;
    background-color: var(--c-cream);
    border-radius: 2.4rem;
    overflow: hidden;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
  }
  .review-mobile-media {
    position: relative;
    width: 100%;
    height: 24rem;
    background-color: #000;
  }
  .review-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
  }
  .mobile-play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 4.5rem;
  }
  .review-mobile-content {
    padding: 2.5rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .review-mobile-content .review-card__title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .review-mobile-content .review-card__desc {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
  .mobile-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background-color: var(--c-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
  }
}

.testimonials-section {
  position: relative;
  z-index: 30;
  margin-top: -6.6rem;
  background-color: var(--c-orange);
  color: var(--c-white);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding: 10rem 0 12rem 0;
  overflow: hidden;
  box-shadow: 0 -1rem 4rem rgba(0, 0, 0, 0.1);
}

.testimonials-section .bg-line-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 40rem;
  left: auto;
}

.testimonials-title {
  position: relative;
  z-index: 2;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 6.4rem;
  line-height: 0.95;
  text-align: center;
  margin: 0 auto 8rem auto;
  letter-spacing: -0.04em;
  max-width: 110rem;
}

.testimonials-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.testi-card {
  background-color: var(--c-white);
  color: var(--c-black);
  border-radius: 3rem;
  padding: 4rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.testi-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  background-color: #eee;
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testi-name {
  font-family: var(--f-head);
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
}

.testi-city {
  font-size: 1.6rem;
}

.testi-body {
  flex-grow: 1;
  margin-bottom: 4rem;
}

.testi-body p {
  font-size: 1.6rem;
  line-height: 1.4;
  opacity: 0.9;
}

.btn-read-more {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 2.4rem;
  border: 0.1rem solid #ebebeb;
  border-radius: 4rem;
  background: transparent;
  font-family: var(--f-body);
  font-size: 1.6rem;
  color: var(--c-black);
  transition: 0.3s;
}

.btn-read-more:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
}

.btn-plus {
  width: 2.4rem;
  height: 2.4rem;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: #000;
  transition: 0.3s;
}

.btn-read-more:hover .btn-plus {
  background-color: var(--c-orange);
  color: var(--c-white);
}

.testimonials-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testi-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-circle-btn {
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 50%;
  background-color: var(--c-white);
  color: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.nav-circle-btn:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-all-reviews {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background-color: var(--c-white);
  color: var(--c-black);
  padding: 2rem 4rem;
  border-radius: 6rem;
  font-size: 1.8rem;
  font-weight: 500;
  transition: 0.3s;
}

.btn-all-reviews:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-0.2rem);
}

@media (max-width: 768px) {
  .testimonials-section {
    margin-top: -4rem;
    padding: 6rem 0 8rem 0;
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
    position: relative;
  }
  .testimonials-title {
    font-size: 3.2rem;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
  }
  .testimonials-title br {
    display: none;
  }
  .testimonials-grid {
    display: flex;
    grid-template-columns: none;
    gap: 1.6rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 2rem 4rem 2rem;
    margin-bottom: 0;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testi-card {
    min-width: 85vw;
    flex: 0 0 85vw;
    scroll-snap-align: center;
    border-radius: 2.4rem;
    padding: 3rem;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .testi-header {
    margin-bottom: 2rem;
  }
  .testi-name {
    font-size: 2.4rem;
  }
  .testi-body {
    margin-bottom: 3rem;
  }
  .testi-body p {
    font-size: 1.6rem;
  }
  .btn-read-more {
    width: 100%;
    justify-content: space-between;
    margin-top: auto;
  }
  .testimonials-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    margin-top: 2rem;
  }
  .testi-nav {
    display: flex;
    gap: 1.2rem;
  }
  .nav-circle-btn {
    width: 6rem;
    height: 6rem;
  }
  .testimonials-footer .btn {
    padding: 1.6rem 2.4rem;
    font-size: 1.6rem;
    width: fit-content !important;
  }
}

.how-section {
  position: relative;
  z-index: 35;
  margin-top: -6.6rem;
  background-color: var(--c-cream);
  color: var(--c-black);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding: 10rem 0 6.6rem 0;
  overflow: hidden;
}

.how-section .bg-line-wrapper img {
  position: absolute;
  bottom: 10%;
  top: auto;
  right: auto;
  z-index: 0;
  width: 120rem;
  left: 0;
}

.how__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  min-height: 70rem;
}

.how__col--left {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  align-self: start;
  padding-top: 4rem;
}

.how-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 7.8rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 6rem;
}

.how-subtitle {
  font-family: var(--f-body);
  font-size: 1.8rem;
  opacity: 0.7;
}

.how__col--center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.how-photo-wrapper {
  width: 100%;
}

.how-photo {
  width: 100%;
  height: auto;
  display: block;
}

.how__col--right {
  align-self: center;
}

.process-card {
  background-color: var(--c-white);
  border-radius: 3rem;
  padding: 4rem;
}

.process-number {
  display: block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 6.4rem;
  color: var(--c-orange);
  line-height: 1;
  margin-bottom: 2rem;
}

.process-title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 3rem;
}

.process-text {
  margin-bottom: 4rem;
}

.process-text p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.process-text strong {
  font-weight: 600;
}

.process-btn {
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .how-section {
    position: relative;
    top: auto;
    margin-top: -3.2rem;
    padding: 6rem 0 2rem 0;
    border-top-left-radius: 3.2rem;
    border-top-right-radius: 3.2rem;
    min-height: auto;
    overflow: hidden;
  }
  .how__container {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    padding: 0 2rem;
  }
  .how__col--left,
  .how__col--right {
    display: contents;
  }
  .how-header {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  .how__col--center {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .insta-card {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-bottom: 4rem;
  }
  .process-card {
    order: 4;
    width: 100%;
    padding: 3rem;
  }
  .how-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
  }
  .how-subtitle {
    font-size: 1.8rem;
    opacity: 0.8;
  }
  .how-photo {
    width: 85%;
    height: auto;
    margin: 0 auto;
  }
  .process-number {
    font-size: 4.8rem;
    margin-bottom: 1rem;
  }
  .process-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .process-card .btn {
    width: fit-content !important;
    margin: 0 !important;
  }
  .how-section .bg-line-wrapper img {
    width: 150%;
    left: -25%;
    opacity: 0.3;
  }
}

.steps-section {
  position: relative;
  z-index: 35;
  margin-top: -6.6rem;
  background-color: var(--c-white);
  color: var(--c-black);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding: 10rem 0 16.6rem 0;
  overflow: hidden;
}

.steps-section .bg-line-wrapper img {
  position: absolute;
  top: auto;
  bottom: 0rem;
  right: auto;
  left: 0;
  z-index: 0;
  width: 180rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background-color: #fff8f0;
  border-radius: 3rem;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-0.5rem);
}

.step-number {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 6.4rem;
  color: var(--c-orange);
  line-height: 1;
  margin-bottom: 2rem;
}

.step-title {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.1;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.step-desc p {
  font-size: 1.8rem;
  line-height: 1.5;
}

.steps-line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  pointer-events: none;
  z-index: 0;
}

.steps-line-bottom svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .steps-section {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 0 0 8rem 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: var(--c-cream);
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }
  .step-card {
    padding: 3rem;
    border-radius: 2.4rem;
    background-color: var(--c-white);
  }
  .step-number {
    font-size: 4.8rem;
    margin-bottom: 1rem;
  }
  .step-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  .step-desc p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .steps-section .bg-line-wrapper img {
    width: 200%;
    left: -50%;
    opacity: 0.3;
  }
}

.cta-section {
  position: relative;
  z-index: 40;
  margin-top: -6.6rem;
  background-color: var(--c-orange);
  color: var(--c-white);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding: 10rem 0 14rem 0;
  overflow: hidden;
}

.cta-section .bg-line-wrapper img {
  position: absolute;
  top: 0;
  right: auto;
  z-index: 0;
  width: 58.6rem;
  left: 40%;
}

.cta__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.cta__col--left {
  display: flex;
  flex-direction: column;
}

.cta-title {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 7.8rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.cta-subtitle {
  font-size: 2rem;
  margin-bottom: 6rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 40rem;
}

.btn--messenger {
  justify-content: flex-start;
  gap: 2rem;
  padding: 2.4rem 4rem;
  font-size: 2.4rem;
  border-radius: 6rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.4);
}

.btn--messenger:hover {
  background-color: var(--c-white);
  color: var(--c-orange);
  border-color: var(--c-white);
}

.btn--messenger:hover svg {
  transform: rotate(0deg);
}

.btn--messenger:hover svg path {
  stroke: var(--c-orange);
}

.cta__col--right {
  display: flex;
  justify-content: flex-end;
}

.cta-form {
  background-color: #fff8f0;
  color: var(--c-black);
  border-radius: 3rem;
  padding: 5rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
  max-width: 54rem;
}

.form-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 4rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  padding: 2rem 3rem;
  border-radius: 6rem;
  border: none;
  background-color: var(--c-white);
  font-family: var(--f-body);
  font-size: 1.8rem;
  color: var(--c-black);
  outline: none;
  transition: box-shadow 0.3s;
  min-height: 7.4rem;
}

.form-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 123, 0, 0.2);
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-policy {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 4rem;
  margin-top: 3rem;
}

.policy-check {
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--c-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-policy p {
  font-size: 1.6rem;
  line-height: 1.4;
  opacity: 0.6;
}

.form-policy a {
  color: var(--c-orange);
  text-decoration: none;
}

.form-btn {
  width: 100%;
  padding: 2.4rem 4rem;
  font-size: 2rem;
  min-height: 7.4rem;
}

@media (max-width: 768px) {
  .cta-section {
    display: block;
    position: relative;
    top: auto;
    margin-top: -4rem;
    padding: 6rem 0 8rem 0;
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
    overflow: hidden;
  }
  .cta__container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 0 2rem;
  }
  .cta__col--left {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .cta-title {
    font-size: 3.6rem;
    line-height: 1;
    margin-bottom: 2rem;
  }
  .cta-subtitle {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    opacity: 0.9;
  }
  .cta-buttons {
    width: 100%;
    align-items: center;
    gap: 1.6rem;
  }
  .btn--messenger {
    width: 100%;
    justify-content: center;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--c-white);
  }
  .btn--messenger svg path {
    stroke: var(--c-white);
  }
  .cta__col--right {
    width: 100%;
    display: block;
  }
  .cta-form {
    width: 100%;
    max-width: 100%;
    padding: 3rem 2rem;
    border-radius: 2.4rem;
  }
  .form-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
  }
  .form-input {
    padding: 1.8rem 2.4rem;
    font-size: 1.6rem;
    border-radius: 4rem;
  }
  .form-policy {
    gap: 1.2rem;
    margin-bottom: 3rem;
  }
  .policy-check {
    margin-top: 0.2rem;
  }
  .form-btn {
    width: 100%;
    justify-content: space-between;
    padding: 2rem 2.4rem;
  }
  .cta-section .bg-line-wrapper img {
    width: 200%;
    left: -80%;
    top: 0;
    opacity: 0.3;
  }
}

.footer {
  position: relative;
  z-index: 50;
  margin-top: -6.6rem;
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  background: var(--c-cream);
  padding: 12rem 0 8rem 0;
  color: var(--c-black);
}

.footer__container {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer__col--info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  padding-right: 35rem;
}

.footer__text {
  font-size: 1.6rem;
  line-height: 1.5;
  opacity: 0.8;
}

.footer__text p {
  margin-bottom: 2rem;
}

.footer__policy {
  color: var(--c-orange);
  text-decoration: none;
  border-bottom: 0.1rem solid transparent;
}

.footer__policy:hover {
  border-bottom-color: var(--c-orange);
}

.footer__socials {
  display: flex;
  gap: 1.5rem;
}

.footer__socials .social-stroke {
  stroke: var(--c-black);
}

.footer__socials .social-fill {
  fill: var(--c-black);
}

.footer__btn {
  padding: 1.4rem 3.2rem;
  font-family: var(--f-head);
  font-size: 1.8rem;
  gap: 1rem;
  border-radius: 6rem;
}

.footer__btn svg {
  width: 2.4rem;
  height: 2.4rem;
}

.footer__title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  line-height: 1.1;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer__link {
  font-size: 1.6rem;
  opacity: 0.9;
  transition: 0.3s;
}

.footer__link:hover {
  color: var(--c-orange);
  opacity: 1;
}

.footer__logo svg {
  min-width: 45rem;
  height: auto;
}

@media (max-width: 768px) {
  .footer {
    margin-top: -4rem;
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
    padding: 6rem 2rem;
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
  .footer__col--info {
    padding-right: 0;
    gap: 3rem;
    order: -1;
  }
  .footer__btn {
    width: 100%;
    justify-content: center;
  }
  .footer__title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  .footer__link {
    font-size: 1.8rem;
  }
  .footer__socials .social-icon svg {
    width: 4.8rem;
    height: 4.8rem;
  }
  .footer__logo svg {
    min-width: 30rem;
  }
}

.destinations-more .btn {
  width: fit-content !important;
}

/* === PAGE: MISSION HERO === */

.mission-hero {
  position: relative !important;
  width: 100%;
  padding-top: 18rem;
  padding-bottom: 10rem;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}

.mission-bg {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1 !important;
  pointer-events: none;
}

.mission-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-hero .about__container {
  position: relative;
  z-index: 5;
}

.breadcrumbs {
  font-family: var(--f-body);
  font-size: 1.4rem;
  color: var(--c-black);
  opacity: 0.6;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mission-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 5.6rem;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.04em;
  margin-bottom: 4rem;
  color: var(--c-black);
}

.mission-desc {
  font-family: var(--f-body);
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
  color: var(--c-black);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .mission-hero {
    padding: 12rem 0 6rem 0;
  }
  .mission-mobile .about-mobile__content {
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
  }
  .mission-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 2rem;
  }
  .mission-desc {
    font-size: 1.6rem;
    padding: 0 1rem;
  }
}
/* === SECTION: MISSION WHY (Видео слева, Тексты ровно справа) === */

.mission-why-section {
  position: relative;
  z-index: 20;
  margin-top: -6.6rem;
  background-color: var(--c-white);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding: 12rem 0 12rem 0;
  overflow: visible;
}

.mission-why-section .bg-line-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.mission-why__container {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 6rem;
}

/* Левая колонка (Sticky: Заголовок + Видео внизу) */
.mission-why__col--left {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  padding-top: 15rem;
  padding-bottom: 6rem;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mission-why-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--c-black);
}

.experience-video-left {
  width: 100%;
  height: 32rem; /* Высота видео */
  border-radius: 2.2rem;
  overflow: hidden;
  position: relative;
  margin-top: auto;
}

.experience-video-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Правая колонка */
.mission-why__col--right {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding-top: 15rem; /* Выравниваем первый текст с заголовком */
}

/* Текстовые блоки справа */
.why-text-block {
  max-width: 60rem;
  margin-bottom: 6rem;
  align-self: flex-start;
}

.why-text-block p {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.text-bold {
  font-weight: 600;
}

.text-small {
  font-size: 1.4rem;
  opacity: 0.7;
  display: block;
}

/* Сетка картинок */
.why-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 50rem;
  margin-left: auto;
  margin-bottom: 8rem;
}

.why-gallery-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 3rem;
  overflow: hidden;
}

.why-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Статический поворот картинок */
.why-gallery-item:nth-child(1) {
  transform: rotate(-5deg);
}
.why-gallery-item:nth-child(2) {
  transform: rotate(5deg) translateY(2rem);
}
.why-gallery-item:nth-child(3) {
  transform: rotate(3deg);
}
.why-gallery-item:nth-child(4) {
  transform: rotate(-3deg) translateY(2rem);
}

/* Цитата */
.why-quote-box {
  background-color: var(--c-cream);
  border-radius: 3rem;
  padding: 4rem;
  margin-bottom: 12rem;
  max-width: 70rem;
  align-self: flex-start;
}

.why-quote-box p {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.experience-content-simple {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: flex-start;
}

.experience-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 5.6rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

/* === SECTION: MISSION ROUTE (Кремовая) === */

.mission-route-section {
  position: relative;
  z-index: 25;
  margin-top: -6.6rem;
  background-color: var(--c-cream);
  color: var(--c-black);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding: 12rem 0 14rem 0;
  overflow: visible;
}

.mission-route-section .bg-line-wrapper img {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.mission-route__container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.mission-route__col--left {
  position: -webkit-sticky;
  position: sticky;
  top: 15rem;
  padding-right: 2rem;
}

.mission-route-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 4rem;
}

.route-description p {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.text-small-gray {
  font-size: 1.4rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}

.mission-route__col--right {
  position: relative;
  z-index: 2;
}

.route-cards-list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.route-card {
  background-color: var(--c-white);
  border-radius: 3rem;
  padding: 3rem;
  width: calc((100% - 6rem) / 4);
  min-width: 26rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 42rem;
}

.route-card__content {
  /* Пусто, для порядка */
}

.route-num {
  display: block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 4.8rem;
  color: var(--c-orange);
  line-height: 1;
  margin-bottom: 2rem;
}

.route-card__text {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
}

.route-card__image {
  width: 100%;
  height: 16rem;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-top: 3rem;
}

/* Класс для картинки сверху */
.route-card__image--top {
  margin-top: 0;
  margin-bottom: 3rem;
}

.route-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card__action {
  margin-top: auto;
}

.btn--consult {
  width: 100%;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  border-radius: 4rem;
  justify-content: space-between;
}

/* === MOBILE ADAPTIVE === */
@media (max-width: 768px) {
  .mission-why-section,
  .mission-route-section {
    padding: 6rem 0 8rem 0;
    margin-top: -3.2rem;
    border-top-left-radius: 3.2rem;
    border-top-right-radius: 3.2rem;
  }

  .mission-why-mobile,
  .mission-route-mobile {
    display: flex !important;
    flex-direction: column;
    padding: 0 2rem;
  }

  .mission-why-title,
  .mission-route-title,
  .experience-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 3rem;
  }

  .why-gallery-grid-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
  }

  .why-quote-box {
    padding: 2.5rem;
    margin-bottom: 6rem;
  }

  .why-quote-box p {
    font-size: 2rem;
  }

  .video-wrapper-mobile {
    height: 40rem;
    margin-bottom: 3rem;
    border-radius: 2.2rem;
    overflow: hidden;
    position: relative;
  }

  .route-mobile-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    margin-top: 3rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .route-mobile-slider::-webkit-scrollbar {
    display: none;
  }

  .route-card-mobile {
    min-width: 28rem;
    background-color: var(--c-white);
    border-radius: 2.4rem;
    padding: 2.5rem;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
  }

  .route-mobile-img {
    width: 100%;
    height: 18rem;
    border-radius: 1.6rem;
    object-fit: cover;
    margin-top: 2rem;
  }

  .btn--consult-mobile {
    width: 100%;
    margin-top: 2rem;
    justify-content: center;
  }
}

/* === SECTION: MISSION BORN (Orange Map Section) === */

.mission-born-section {
  position: relative;
  z-index: 30; /* Выше предыдущей секции (25) */
  margin-top: -6.6rem;
  background-color: var(--c-orange);
  color: var(--c-white);
  border-top-left-radius: 6.6rem;
  border-top-right-radius: 6.6rem;
  padding: 12rem 0 16rem 0;
  overflow: hidden;
}

/* Карта на фоне */
.mission-map-bg {
  position: absolute;
  top: 15%; /* Смещаем карту чуть ниже, чтобы не перекрывала заголовок */
  left: 10%;
  width: 80%;
  height: 80%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4; /* Полупрозрачная, как на макете */
}

.mission-map-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mission-born__container {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Левая колонка чуть уже */
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 2; /* Контент выше карты */
}

/* Левая колонка */
.mission-born__col--left {
  position: -webkit-sticky;
  position: sticky;
  top: 15rem;
}

.mission-born-title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 7.8rem; /* Очень крупный заголовок */
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--c-white);
  margin-bottom: 4rem;
}

/* Правая колонка */
.mission-born__col--right {
  display: flex;
  flex-direction: column;
  padding-top: 2rem; /* Небольшой сдвиг вниз относительно заголовка */
}

.born-text-top {
  max-width: 65rem;
  margin-bottom: 8rem;
}

.text-white {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: 500;
}

.text-white-opacity {
  font-size: 1.6rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* Белая плашка с цитатой */
.born-quote-card {
  background-color: var(--c-white);
  border-radius: 3rem;
  padding: 5rem 6rem;
  color: var(--c-black);
  max-width: 68rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
  /* Центрируем или сдвигаем плашку, как на макете */
  align-self: center;
}

.born-quote-card p {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* === MOBILE ADAPTIVE === */
@media (max-width: 768px) {
  .mission-born-section {
    padding: 6rem 0 8rem 0;
    margin-top: -3.2rem;
    border-top-left-radius: 3.2rem;
    border-top-right-radius: 3.2rem;
  }

  .mission-born-mobile {
    display: flex !important;
    flex-direction: column;
    padding: 0 2rem;
  }

  .mission-born-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 3rem;
  }

  .born-text-top {
    margin-bottom: 4rem;
  }

  .text-white {
    font-size: 1.8rem;
  }

  .born-quote-card {
    padding: 3rem;
    width: 100%;
    align-self: flex-start;
  }

  .born-quote-card p {
    font-size: 2rem;
  }

  .mission-map-bg {
    width: 150%;
    left: -25%;
    top: 20%;
    opacity: 0.2;
  }
}

/* === HERO COUNTRY (STATIC) === */
.hero-country {
  position: relative;
  width: 100%;
  height: 100vh; /* На весь экран */
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -9.6rem; /* Компенсация высоты шапки */
  padding-top: 9.6rem;
}

.hero-country__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-country__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-country__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--c-white);
  padding-bottom: 4rem;
}

/* Хлебные крошки */
.breadcrumbs {
  font-family: var(--f-body);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.8;
}

.breadcrumbs--white,
.breadcrumbs--white a {
  color: var(--c-white);
  text-decoration: none;
}

.breadcrumbs .sep {
  font-size: 1rem;
}

/* Типографика */
.hero-country__title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 9.6rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 3rem;
  max-width: 120rem;
}

.hero-country__desc {
  font-family: var(--f-body);
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 5rem;
  max-width: 70rem;
  opacity: 0.9;
}

.hero-country__buttons {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .hero-country {
    margin-top: -6.5rem;
    padding-top: 6.5rem;
  }
  
  .hero-country__title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
  }

  .hero-country__desc {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
  }

  .hero-country__buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 2rem;
    gap: 1.5rem;
  }

  .hero-country__buttons .btn {
    width: 100% !important;
  }
}