/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --color-brown:        #4C3926;
  --color-brown-black:  #2D1F11;
  --color-brown-rgb: 92, 61, 46; 
  --color-cream:        #F2E2CB;
  --color-cream-1:      #E3D2B9;

  
  --color-text:         #4C3926;
  --color-text-light:   rgba(76, 57, 38, 0.65);

  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;

  --transition: all 0.3s ease;
}

/* =============================================
   RESET & BASE (provided)
   ============================================= */

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

img, video {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

html {
  height: 100%;
  font-size: 100.01%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  margin: 0;
  padding: 0;
}
.has-text-align-center {
  text-align: center;
}
.has-text-align-left {
  text-align: left;
}
.has-text-align-right {
  text-align: right;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
a, button {
  cursor: pointer;
}
button, input, textarea, select {
  outline: none;
}
ul {
  list-style: none;
}

a, button {
  transition: var(--transition);
}

/* =============================================
   UTILITY CLASSES (provided)
   ============================================= */
.container {
  width: 100%;
  margin-inline: auto;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .container {
    width: 88%;
    max-width: 1520px;
    padding: 0 40px;
  }
}

.d-flex               { display: flex; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-stretch  { align-items: stretch; }
.align-items-center   { align-items: center; }
.align-items-start    { align-items: flex-start; }


/* =============================================
   BUTTONS
   ============================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 100px;
  z-index: 0;
  cursor: pointer;

}


.btn a::after, .btn button::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 100px;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover a::after,
.btn:hover button::after {
  width: 120%;
  left: -10%;
}

.btn a, .btn button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: clamp(14px, calc(14px + 2 * ((100vw - 1024px) / 896)), 16px);
  font-weight: 400;
  padding: 13px 26px;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
  
}
.btn__big.btn a, .btn__big.btn button {
  padding:20px 35px;
  font-size: clamp(16px, 16px + 0.125vw, 20px);
  gap: 15px;
}


/* btn-outline */
.btn-outline a::after, .btn-outline button::after { background: transparent; border: 2px solid var(--color-brown); }
.btn-outline:hover a::after, .btn-outline:hover button::after { background: var(--color-brown); }
.btn-outline a, .btn-outline button { color: var(--color-brown); }
.btn-outline:hover a, .btn-outline:hover button { color: var(--color-cream); }

/* Brown filled */
.btn--brown a::after, .btn--brown button::after { background: var(--color-brown); }
.btn--brown:hover a::after, .btn--brown:hover button::after { background: var(--color-brown-black); }
.btn--brown a, .btn--brown button { color: var(--color-cream); }

/* Cream */
.btn--cream a::after, .btn--cream button::after { background: var(--color-cream-1); }
.btn--cream a, .btn--cream button { color: var(--color-brown); }

@media (min-width: 768px) {
    .btn a, .btn button {
        padding: 16px 30px;
    }
    .btn__big.btn a, .btn__big.btn button {
        padding: 28px 60px;
        font-size: clamp(18px, 18px + 0.125vw, 20px);
        gap: 22px;
    }
}



/*headings*/
h1, .h1 {
  font-family: var(--font-heading);
  font-size: clamp(47px, calc(47px + 29 * ((100vw - 767px) / 1153)), 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
}
h2, .h2 {
  font-family: var(--font-heading);
  font-size: clamp(44px, calc(44px + 26 * ((100vw - 767px) / 1153)), 70px);
  font-weight: 400;
  line-height: 1em;
}
h3, .h3 {
  font-family: var(--font-heading);
  font-size: clamp(30px, calc(30px + 18 * ((100vw - 767px) / 1153)), 48px);
  font-weight: 400;
  line-height: 1em;
}
h4, .h4 {
  font-family: 'Birthstone', sans-serif;
  letter-spacing: -0.04%;
  font-size: 48px;
  font-size: clamp(36px, calc(36px + 18 * ((100vw - 767px) / 1153)), 48px);
  line-height: 1em;
  font-weight: 400;
}
h5, .h5 {
  font-family: var(--font-heading);
  font-size: clamp(28px, calc(28px + 18 * ((100vw - 767px) / 1153)), 32px);
  font-weight: 500;
  line-height: 1em;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 40px 0 40px 0;
  width: 100%;
}
.header__main {
  position: absolute;
}

.header__right {
  gap: clamp(30px, calc(30px + 45 * ((100vw - 1024px) / 856)), 75px);
}
.header__inner {
  gap: 24px;
}

.header__logo img {
  width: clamp(200px, calc(200px + (333 - 200) * ((100vw - 375px) / (1920 - 375))), 333px);
}

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-brown);
  transition: var(--transition);
}

/* Nav — hidden on mobile, shown on desktop */
.header__nav {
  display: none;
}

.header__nav-link {
  font-family: var(--font-body);
  font-size:16px;
  font-weight: 500;
  color: var(--color-brown);
  padding: 12px clamp(12px, calc(12px + 18 * ((100vw - 1024px) / 856)), 30px);
  border-bottom: 2px solid transparent;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.header__nav-link:hover {
  opacity: 1;
  border-bottom-color: rgba(var(--color-brown-rgb), 0.6);
}

.header__close {
  display: none;
}
.header__cta {
    display: none;
  }
@media (max-width: 1023.99px) {
  .header__nav {
    position: fixed;
    display: flex;
    visibility: hidden;
    width: 100%;
    left: 0;
    transform: translateX(-100%);
    top: 0;
    background: var(--color-brown);
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
  }
  .header__nav-link {
    color: var(--color-cream);
    font-size: clamp(30px, 4.5vw, 36px);
  }
  .header__nav-list {
    gap: 30px;
    flex-direction: column;
  }
  .header__close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 30px;
    line-height: 1em;
  }
  .open_menu .header__nav {
    visibility: visible;
    transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .header {
    padding: 58px 0 58px 0;
  }
  .header__cta {
    display: block;
  }
}
@media (min-width: 1024px) {
  .header__nav-list {
    gap: 5px;
  }
  .header__burger { display: none; }
  .header__nav    { display: block; }
  .header__cta    { display: inline-flex; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 860px;
  /*
  aspect-ratio: 1920 / 1412;
  */
  display: flex;

  overflow: hidden;
}
.hero__video {
  position: absolute;
  pointer-events: none;
  top: -10px;
  width: 100%;

  height: auto;
  min-width: 790px;
  left: 50%;
  transform: translateX(-50%);

}
.hero__gradient1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(191, 187, 172, 0) 0%,   
    rgba(224, 220, 204, 1) 100%   
  );
  opacity: 0.86; 
  pointer-events: none;
 
}

.hero__gradient2 {
  position: absolute;
  inset: 0;
    background-color: #704214;
    opacity: 0.1;

}
.hero__gradient3 {
  position: absolute;
  inset: 0;
    background-color: #CCBAA0;
    mix-blend-mode: overlay;
    opacity: 0.76;

}
.hero__gradient4 {
  content:"";
  position: absolute;
  inset: 0;
  height: 100px;
mix-blend-mode: soft-light;
    background: linear-gradient(to top, rgba(204, 186, 160, 0.0), #CCBAA0 70%);
}


.hero__bg {
  position: absolute;
  height:auto;
  width: 100%;
  min-width: 1180px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  
}
/*
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(76, 57, 38, 0.25) 0%,
    rgba(76, 57, 38, 0.55) 100%
  );
  mix-blend-mode: soft-light;
}
*/
.hero__img {
  width: 100%;
  height:auto;
  object-fit: cover;
  object-position: center top;
}

.hero .container {
  position: relative;
  z-index: 6;
  padding-bottom: 80px;
  padding-top: 170px;
}

.hero__content {
  max-width: 620px;
}

.hero__title {
    margin-bottom: 38px;
}

.hero__btn.btn a {
  padding: clamp(16px, 1.3vw, 26px) clamp(30px, 2.8vw, 54px);
  font-size: clamp(18px, 1.35vw, 26px);
  font-family: var(--font-heading);
  letter-spacing: 0;
}
.hero__btn:hover a::after{
  left:0;
  width: 100%;
}
.hero__btn a {
  gap: 0;
  flex-direction: row-reverse;
}
.hero__btn a:before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='42' height='9' viewBox='0 0 42 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 0C36 2 38.5 4.5 42 4.5' stroke='%23F2E2CB'/%3E%3Cpath d='M36 9C36 7 38.5 4.5 42 4.5' stroke='%23F2E2CB'/%3E%3Cpath d='M0 4.5L41.4074 4.5' stroke='%23F2E2CB'/%3E%3C/svg%3E%0A") center no-repeat;
  background-size: contain;
  width: 0;
  height: clamp(5px, 0.47vw, 9px);
  transition: all 0.3s ease;
  overflow: hidden;
}
.hero__btn:hover  a:before {
  width: clamp(24px, 2.19vw, 42px);
}
.hero__btn:hover a {
  gap: clamp(12px, 1.15vw, 22px);
}
@media (min-width:768px) {
  
  .hero {
    min-height: 932px;
  }
  .hero__video {
    min-width: 1070px;
    top: -120px;
  }
  .hero__bg {
    min-width: 1270px;
  }
  .hero .container {
    padding-top: 190px;
  }
}
@media (min-width: 1024px) {
    .hero__video {
      top: -17vw;
    }

  .hero {
    /*
    min-height: clamp(935px, calc(905px + 475 * ((100vw - 1024px) / 896)), 1410px);
    */
    min-height: clamp(935px, calc(935px + 380 * ((100vw - 1024px) / 896)), 1410px);
  }
  .hero__bg, .hero__video {
    min-width: clamp(1270px, calc(1270px + 520 * ((100vw - 1024px) / 896)), 1920px)
  }
  .hero .container {
    padding-top: clamp(190px, calc(190px + 95 * ((100vw - 1024px) / 896)), 315px);
  }
}


@media (min-width: 1650px) {
  .hero {
    min-height: clamp(935px, calc(880px + 475 * ((100vw - 1024px) / 896)), 1410px);
  }
}
 
@media (min-width: 1920px) {
  .hero {
    min-height: 72vw;
  }
  
}

/* =============================================
   JOURNEYS
   ============================================= */
.journeys {
  padding: 80px 0;
  overflow: hidden;
}

.journeys__item {
  gap: 0;
  flex-direction: column;
  margin-bottom: 64px;
  align-items: center;
}

.journeys__item:last-of-type {
  margin-bottom: 40px;
}

.journeys__image-wrap {
  width:100%;
  
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.journeys__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0) 60%, rgba(242, 226, 203, 1) 70%);
  pointer-events: none;
}

.journeys__image {
  width: 100%;
  height: auto;
  aspect-ratio: 731 / 624;
    object-position: center;
    object-fit: cover;
    border-radius: 100%;
    transition: all 1s ease;

}
.journeys__image-inner {
  width: 100%;
  overflow: hidden;
  display: block;
}

.journeys__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 0;
}

.journeys__divider-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-brown);
  background: transparent;
  flex-shrink: 0;
  position: relative;
}
.journeys__divider-dot:before {
  content:"";
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-left: 2px solid var(--color-brown);
  border-top: 2px solid var(--color-brown);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  margin-top: -2px;
}

.journeys__divider-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(76, 57, 38, 1) 0%,
    rgba(76, 57, 38, 0) 100%
  );
}

.journeys__text {
  text-align: center;
  padding: 0 16px;
}

.journeys__title {
  
  color: var(--color-brown);
  margin-bottom: 16px;
}

.journeys__desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 15.6px + 0.125vw, 18px);;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.journeys__more {
  text-align: center;
  padding-top: 0px;
}

.journeys__more-link {
  font-family: var(--font-body);
  font-size: clamp(16px, 15.6px + 0.125vw, 18px);;
  font-weight: 500;
  color: var(--color-brown);
  padding-bottom: 2px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
}
.journeys__more-link::after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='42' height='9' viewBox='0 0 42 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 0C36 2 38.5 4.5 42 4.5' stroke='%234C3926'/%3E%3Cpath d='M36 9C36 7 38.5 4.5 42 4.5' stroke='%234C3926'/%3E%3Cpath d='M0 4.5L41.4074 4.5' stroke='%234C3926'/%3E%3C/svg%3E%0A") center no-repeat;
  background-size: contain;
   height: clamp(5px, 0.47vw, 9px);
  transition: all 0.3s ease;
  width: clamp(24px, 2.19vw, 42px);

  transform-origin: 0 0;
}

.journeys__more-link:hover::after  {
  transform: scaleX(1.2);
}
.journeys_heading {
  margin-bottom: 1.6em;
}


@media (min-width: 768px) {
  .journeys .container {
    padding-left: 60px;
    padding-right: 60px;
  }
  .journeys__more {
    padding-top: 36px;
  }

  .journeys {
    padding: 120px 0 90px 0;
  }
  .journeys__1 {
    padding-top: 50px;
  }
  .journeys__more {
    padding-top: 75px;
  }
  .journeys__item {
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
    margin-bottom: 50px;
    width: 96%;
  }

.journeys__image-wrap {
    width: calc(48% + 40px);
        margin-left: -65px;
  }

  .journeys__item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .journeys__item:nth-child(even) .journeys__image-wrap {
        margin-right: -94px;
        margin-left: 0;

  }

  .journeys__divider {
    flex-direction: column;
    padding: 0 32px;
    height: 100%;
    min-height: 338px;
  }

  .journeys__divider-line {
    height: 100%;
    flex: 1;
  }

  .journeys__text {
    text-align: left;
    padding: 0;
    width: 41%;
  }
 

  .journeys__title {
    margin-bottom: 24px;
  }
  .journeys__desc {
    margin-bottom: 40px;
  }
  .journeys__item:nth-child(even) .journeys__text {
    margin-right: 4.5%;
  }
  
}
@media (min-width: 1024px) {
  .journeys__1 {
    padding-top: 148px;
  }
  .journeys .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  /*
  .journeys__image-inner:hover .journeys__image {
    transform: scale(1.05);
  }
*/
   .journeys__divider {
    min-height: clamp(338px, calc(338px + 100 * ((100vw - 1024px) / 896)), 438px);
  }
  .journeys__divider-dot {
    width: 50px;
    height: 50px;
  }
  .journeys__image-wrap {
    width: calc(48% + 60px);
        margin-left:-82px;
  }

  .journeys__item:nth-child(even) .journeys__image-wrap {
        margin-right: -120px;
        margin-left: 0;
  }
  .journeys__item:nth-child(even) .journeys__text {
    margin-right: 5%;
  }
  
}
@media (min-width: 1200px) {
  .journeys__item:nth-child(even) .journeys__text {
    margin-right: 6%;
  }  
}
@media (min-width: 1400px) {
  .journeys__item:nth-child(even) .journeys__text {
    margin-right: 8%;
  }  
}
@media (min-width: 1500px) {
  .journeys__item:nth-child(even) .journeys__image-wrap {
    margin-right: -124px;
  }  
}
@media (min-width: 1500px) {
  .journeys__item:nth-child(even) .journeys__image-wrap {
    margin-right: -126px;
  }  
}
/* =============================================
   WHY TRAVEL WITH US
   ============================================= */
.why {
  background-color:#E4D1B5;
  
  padding: 80px 0;
  margin: 0 20px;
  border-radius: 20px;
}

.why__title {
  max-width: 214px;
  color: var(--color-brown);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.why__list {
  flex-direction: column;
  gap: 40px;
}

.why__item {
  text-align: center;
  flex: 1;
  position: relative;
}

.why__icon {
  
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why__icon img {
  width: auto;
  height: 60px;
}

.why__item-title {
  font-family: var(--font-body);
  font-size: clamp(18px, 18px + 0.125vw, 20px);
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: 20px;
  line-height: 1.6em;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}

.why__item-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 15.6px + 0.125vw, 18px);;
  line-height: 1.56em;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .why__title {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .why .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .why {
    padding: 110px 0 80px 0;
    margin: 0 40px;
  }
  .why__item-title {
    margin: 0 10px 40px 10px;
  }
  .why__list {
    flex-direction: row;
    gap: 50px 0;
    flex-wrap: wrap!important;
    align-items: stretch;
  }

  .why__item {
    text-align: left;
    padding: 0 clamp(25px, 2.86vw, 55px) 20px clamp(25px, 2.86vw, 55px);
    min-width: 50%;
  }
  .why__item::before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #b7a48a, #E4D1B5 100%);
  }

  .why__item:nth-child(odd)::before {
    display: none;
  }

  
 
  .why__icon {
    margin: 0 0 40px;
  }
}
@media (min-width: 1024px) {
  .why .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .why__item:first-child {
    padding-left: 0;
  }
  .why__item:last-child {
    padding-right: 0;
  }
  .why__item:nth-child(odd)::before{
    display: block;
  }
  .why__item:first-child::before {
    display: none;
  }
  .why__list {
    flex-wrap: nowrap;
    gap: 0;
  }
  .why__item {
    width: auto;
    min-width:0;
  }
}

@media (min-width: 1730px) {
    .why {
    margin: 0 auto;
    max-width: 1678px;
  }
}

/* =============================================
   TRAVEL JOURNAL
   ============================================= */
.journal {
  padding: 80px 0;
}
 .journal.journal1 {
     padding-top: 10px;
  }
.journal__more-btn {
  left: 50%;
  transform: translateX(-50%);
  margin-top: 60px;
  
}
.journal__heading {
  margin-bottom: 0.6em;
  text-align: center;
}
.journal__more-btn a {
  min-width: 120px;
}
.journal__header {
  margin-bottom: 48px;
  gap: 16px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: space-between;
  
}
.journal__header  .btn  {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}


.journal__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr)!important;
  gap: 50px 40px;
}

.journal__item, .journal__list .wp-block-post {
  flex: 1;
}

.journal__item-img {
  width: 100%;
  aspect-ratio: 453 / 350;
  overflow: hidden;
  margin-bottom: 20px;
}

.journal__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.journal__item:hover .journal__item-img img, .journal__list .wp-block-post:hover .journal__item-img img {
  transform: scale(1.04);
}

.journal__item-title {
  font-family: var(--font-body);
  font-size: clamp(18px, 18px + 0.125vw, 20px);
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: 12px;
  line-height: 1.6em;
  position: relative;
  /*
  background: url("data:image/svg+xml,%3Csvg width='65' height='43' viewBox='0 0 65 43' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M64.3536 21.8536C64.5488 21.6583 64.5488 21.3417 64.3536 21.1464L61.1716 17.9645C60.9763 17.7692 60.6597 17.7692 60.4645 17.9645C60.2692 18.1597 60.2692 18.4763 60.4645 18.6716L63.2929 21.5L60.4645 24.3284C60.2692 24.5237 60.2692 24.8403 60.4645 25.0355C60.6597 25.2308 60.9763 25.2308 61.1716 25.0355L64.3536 21.8536ZM0 21.5V22H64V21.5V21H0V21.5Z' fill='%237E6C58'/%3E%3C/svg%3E%0A") right center no-repeat;
*/
  }

.journal__item-title a:before {
  content: "";
  right: 9px;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  background: url("data:image/svg+xml,%3Csvg width='42' height='9' viewBox='0 0 42 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 0C36 2 38.5 4.5 42 4.5' stroke='%234C3926'/%3E%3Cpath d='M36 9C36 7 38.5 4.5 42 4.5' stroke='%234C3926'/%3E%3Cpath d='M0 4.5L41.4074 4.5' stroke='%234C3926'/%3E%3C/svg%3E%0A") center no-repeat;
  background-size: contain;
  width: 42px;
  height: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  transform-origin: 0 0;
}
.journal__item:hover .journal__item-title a:before {
  transform: scaleX(1.2);
}

.journal__item-title a {
  display: block;
  padding-right: 80px;
}

.journal__item-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 15.6px + 0.125vw, 18px);;
  line-height: 1.56em;
  color: var(--color-text-light);
}
.journal__btn-desktop {
    display: none;
  }
.journal__btn-mob {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .journal__btn-desktop {
    display: block;
  }
  .journal__btn-mob {
    display: none;
  }
  .journal__more-btn {
    margin-top: 90px;
  }
  .journal__item-title a {
    padding-right: 100px;
  }
  .journal__header {
    justify-content:center;
    
  }
  .journal__item-img {
    margin-bottom: 50px;
  }
  .journal {
    padding: 140px 0 130px 0;
  }
  .journal.journal1 {
     padding: 10px 0 90px 0;
  }
  .journal__item-title {
    margin-bottom: 50px;
  }
  .journal__item-text {
    padding-right: 50px;
  }
  .journal__list {
    margin-top: 105px;
    grid-template-columns: repeat(2, 1fr)!important;
    gap: 50px 40px;
  }
  .journal__list.journal__list1 {
    margin-top: 0;
  }
  /*
  .journal__item:last-child {
    min-width: 100%;
    display: flex;
        gap: 40px;
        align-items: center;
  }
  .journal__item:last-child .journal__item-body, .journal__item:last-child .journal__item-img {
    flex: 1;
    margin-bottom: 0;
  }
    */
  
}
@media (min-width:1024px) {
   .journal__list {
    grid-template-columns: repeat(3, 1fr)!important;
    gap: 85px 40px;
    
    
   }
   /*
   .journal__item:last-child .journal__item-img {
    margin-bottom: 50px;
   }
   .journal__item:last-child {
    min-width:0;
    gap: 0;
    display: block;
  }
    */
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background-color:#3C2D1E;
  padding: 64px 0;
}

.footer__inner {
  flex-direction: column;
  gap: 48px;
  padding-bottom: 56px;

}

/* Brand col */
.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo img {
  height: auto;
  width: clamp(180px, calc(180px + (297 - 180) * ((100vw - 297px) / (1920 - 375))), 297px);
}

.footer__contact-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__contact-line {

  font-size: 16px;
  color: var(--color-cream);
  line-height: 1.5em;
}

.footer__contact-btn a {
  gap: 20px;
  
}
.footer__contact-btn a::before {
  content:"";
  width: 20px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg width='22' height='20' viewBox='0 0 22 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.7918 8.79636C20.8103 9.52316 20.7918 9.85013 20.7918 10.7955C20.7918 14.5652 20.7918 16.4501 19.6206 17.6211C18.4496 18.7923 16.5647 18.7923 12.7951 18.7923H8.7967C5.02701 18.7923 3.14217 18.7923 1.97108 17.6211C0.799988 16.4501 0.799988 14.5652 0.799988 10.7955C0.799988 7.02585 0.799988 5.14101 1.97108 3.96992C3.14217 2.79883 5.02701 2.79883 8.7967 2.79883H11.7955' stroke='%234C3926' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M4.79834 6.79736L6.95635 8.5957C8.79223 10.1256 9.71022 10.8906 10.7959 10.8906C11.8815 10.8906 12.7995 10.1256 14.6354 8.5957' stroke='%234C3926' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M17.793 6.79734C19.4492 6.79734 20.7918 5.45474 20.7918 3.79857C20.7918 2.1424 19.4492 0.799805 17.793 0.799805C16.1368 0.799805 14.7942 2.1424 14.7942 3.79857C14.7942 5.45474 16.1368 6.79734 17.793 6.79734Z' stroke='%234C3926' stroke-width='1.6'/%3E%3C/svg%3E ") center no-repeat;
  background-size: contain;
}
/*
.footer__contact-ico {
  width: 16px;
  height: 16px;
}
*/
.footer__cert {
  margin-top: 8px;
}

.footer__cert img {
  width: 195px;
}

/* Nav col */
.footer__col--nav {}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 20px;
  opacity: 0.6;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.footer__nav-link {
  font-family: var(--font-body);
  font-size: clamp(16px, 15.6px + 0.125vw, 18px);;
  color: var(--color-cream);
  transition: var(--transition);
}

.footer__nav-link:hover {
  opacity: 1;
  padding-left: 4px;
}

/* Payment + social col */
.footer__col--pay {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 340px;
  min-width: 221px;
}

.footer__pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap:15px;
  justify-content:flex-start;

  
}

.footer__pay-icon {
  height: 58px;
  width: 100px;
  background-color: var(--color-cream);
  border-radius: 4px;
}

.footer__soc {
  gap: 16px;
  align-items: center;
}

.footer__soc-link img {

  width: 60px;
  transition: var(--transition);
}

.footer__soc-link:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* Footer bottom */
.footer__bottom {
  padding: 39px 0 0 0;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-cream);

  
}
.footer__copy p {
  margin: 0;
  line-height: 2.0em;
}
.footer__copy-text1 {
  font-size: 16px;
}
.footer__copy-text2 {
  font-size: 14px;
}
.footer__legal {
  gap: 24px;
  line-height: 2.0em;
}

.footer__legal-link {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-cream);

  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.footer__legal-link:hover {
  border-bottom-color: 1px solid var(--color-cream);
}

.footer__legal-link:hover {
  opacity: 0.85;
}

@media (min-width: 0) and (max-width: 767.99px) {
  .footer__inner {
    padding-bottom: 30px;
    gap: 30px;
  }
  .footer__col--brand {
    max-width: 190px;
  }
  .footer__col--nav {
    max-width: 110px;
  }
  .footer__bottom {
    padding-top: 20px;
  }
  .footer__inner1 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer__nav-list {
    gap: 25px;
  }
  .footer__col--pay {
    min-width: 100%;
    max-width: none;
  }

  .footer__bottom  {
    flex-direction: column-reverse;
  }
  .footer__legal  {
    justify-content: center;
  }
  .footer__inner2  {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .footer__pay-grid {
    gap:20px;
    justify-content:flex-end;
  }
  .footer__col--pay {
    min-width: 221px;
    max-width: 340px;
  }
  .footer {
    padding:100px 0 133px 0;
  }
  .footer__col--brand {
    gap: 52px;
  }
  .footer__inner {
    flex-direction: row;
    gap: 60px;
  }
  .footer__inner2 {
    padding-top:30px;
  }

  .footer__col--brand {
    flex: 1.5;
  }

  .footer__col--nav {
    flex: 1;
    padding-top: 5px;
  }

  .footer__col--pay {
    flex: 1.5;
    align-items: flex-end;
    padding-top: 10px;
  }

  .footer__bottom {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .footer__inner {
    gap: 80px;
  }
  .footer__col--pay {
    padding-top: 40px;
    min-width: 340px;
  }
}

/*breadcrumps*/
.breadcrumps {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 27px;
  z-index: 0;
  background-color: #FFFFFF;
  padding: 12px 26px 12px 64px;
  color: var(--color-brown);
  align-items: center;
  line-height: 30px;
  gap: 0 20px;
  flex-wrap: wrap;
  max-width: fit-content;
}

.breadcrumps a:first-child:before {
  content:"";
  background: url("data:image/svg+xml,%0A%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23BEAB94'/%3E%3Cpath d='M17.0002 20.4998L11.5004 15L17.0002 9.50022' stroke='%234C3926' stroke-width='1.4'/%3E%3C/svg%3E ") center no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 12px;
  left: 14px;
}

/*page__header*/
.page__header {
  margin-bottom:45px;
  padding-top: 10px;
  gap:25px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media (min-width: 768px) {
.page__header {
    justify-content:center;
    margin-bottom:85px;
  }
}
@media (min-width: 1024px) {
  .page__header  .breadcrumps {
    position: absolute;
    left: 0;
    top: clamp(11px, calc(11px + 8 * ((100vw - 1024px) / 896)), 19px);
  }
  .page__header h1, .page__header h2 {
    margin-left: 250px;
    margin-right: 250px;
  }
  .page__header h1, .page__header .h1 {
    font-size: clamp(47px, calc(47px + 29 * ((100vw - 767px) / 1153)), 70px);
  }
}





/* ── Journey Card Section ── */
.journey-card {
  padding: 0 0 60px 0;
}

.journey-card__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}


/* Info column */
.journey-card__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each row */
.journey-card__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 0;
}

.journey-card__row--top {
  align-items: flex-start;
}

/* Label */
.journey-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 12.6px + 0.125vw, 15px);
  font-weight: 500;
}
.journey-card__label span {
  opacity: 0.6;
}
.journey-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Value */
.journey-card__value {
  font-size: clamp(16px, 15.6px + 0.125vw, 18px);
  line-height: 1.6;
  padding-left: 27px;
}

.journey-card__value p {
  margin: 0 0 8px;
}

.journey-card__value p:last-child {
  margin-bottom: 0;
}


/* Route */
.journey-card__route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.journey-card__route-arrow {
  opacity: 0.4;
  font-size: 12px;
}

/* Itinerary link */
.journey-card__itinerary {
  padding: 20px 0 4px;
}

.journey-card__itinerary-link {
   font-size: clamp(16px, 15.6px + 0.125vw, 18px);

  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 20px;
}

.journey-card__itinerary-link:after {
  content: "";
  background: url("data:image/svg+xml,%0A%3Csvg width='9' height='30' viewBox='0 0 9 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24C2 24 4.5 26.5 4.5 30' stroke='%234C3926'/%3E%3Cpath d='M9 24C7 24 4.5 26.5 4.5 30' stroke='%234C3926'/%3E%3Cpath d='M4.5 0L4.5 27.6049' stroke='%234C3926'/%3E%3C/svg%3E%0A"); center no-repeat;
  background-size: contain;
  width: 9px;
  height:28px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.journey-card__itinerary-link:hover:after { 
  transform: translateY(3px);
}

.journey-card__itinerary-arrow {
  display: inline-block;
}

/* Button */
.journey-card__btn {
  margin-top: 16px;
}


.journey-card__btn a:before,
.page404__btn  a:before,
.page404__btn  button:before {
  content:"";
  width: 19px;
  height: 19px;
  background: url("data:image/svg+xml,%0A%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.4345 8.09476L15.8039 12.9866C14.6542 16.4358 14.0794 18.1603 13.2364 18.6503C12.4345 19.1166 11.444 19.1166 10.6421 18.6503C9.79907 18.1603 9.22423 16.4358 8.07453 12.9866C7.88995 12.4328 7.79761 12.1559 7.64266 11.9245C7.49253 11.7002 7.29985 11.5074 7.07554 11.3573C6.84409 11.2024 6.56719 11.1101 6.01338 10.9255C2.56427 9.77578 0.839727 9.20094 0.34966 8.35791C-0.116553 7.556 -0.116553 6.56556 0.34966 5.76363C0.839727 4.92066 2.56427 4.3458 6.01338 3.1961L10.9053 1.56548C15.1787 0.140997 17.3155 -0.571247 18.4433 0.55665C19.5713 1.68456 18.859 3.8213 17.4345 8.09476Z' fill='%23F2E2CB'/%3E%3C/svg%3E%0A") center no-repeat;
  background-size: contain;
}



/* ── Tablet ── */
@media (min-width: 768px) {
  .journey-card__row {
    grid-template-columns: 180px 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 0;
  }
  .journey-card__label {
    padding-top: 3px;
  }
  

  .journey-card__value {
    padding-left: 0;
  }
  .journey-card__btn {
    margin-top: 50px;
  }

}
@media (max-width: 1023.99px) {
  .journey__image-wrap {
    width: 100%;
    margin-left: 0;
  }
}
/* ── Desktop ── */
@media (min-width: 1024px) {
  .journey-card {
    padding: 0 0 80px;
        margin-top: -17px;
  }

  .journey-card__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }


  .journey-card__info {
    flex: 1;
    padding-top: 10px;
  }
  .journey-card__row {
    grid-template-columns: 1fr;
  }
  

}
@media (min-width: 1200px) {
  .journey-card__row {
    grid-template-columns: 185px 1fr;
    padding: 18px 0;
  }
  .journey-card__inner {
    gap: 80px;
  }
}
@media (min-width: 1400px) {
  .journey-card__row {
    grid-template-columns: 245px 1fr;
    padding: 18px 0;
  }
}


/*thanks*/
.thanks {
  padding: 0 0 70px 0;
}
.thanks__img {
  position: relative;
}
.thanks__img img {
    width: 100%;
    max-width: 731px;
    height: auto;
    aspect-ratio: 731 / 624;
    object-position: center;
    object-fit: cover;
    border-radius: 100%;
    transition: all 1s ease;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
  max-width: 884px;
}
.thanks__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0) 60%, rgba(242, 226, 203, 1) 70%);
    pointer-events: none;
}
.thanks__h1 {
  font-size: clamp(47px, calc(47px + 39 * ((100vw - 767px) / 1153)), 86px);
  letter-spacing: -0.03em;
  line-height: 1em;
}
.thanks__h3 {
  font-size: clamp(26px, calc(26px + 10 * ((100vw - 767px) / 1153)), 36px);
  letter-spacing: -0.03em;
  line-height: 1em;
}
.thanks__btn  a:before {
  content:"";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%0A%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.5192 5.82274C5.72205e-08 6.77128 0 7.91549 0 10.2039V11.725C0 15.6258 1.14441e-07 17.5763 1.17157 18.7881C2.34315 20 4.22876 20 8 20H12C15.7712 20 17.6569 20 18.8284 18.7881C20 17.5763 20 15.6258 20 11.725V10.2039C20 7.91549 20 6.77128 19.4808 5.82274C18.9616 4.87421 18.0131 4.28551 16.116 3.10812L14.116 1.86687C12.1106 0.62229 11.1079 0 10 0C8.8921 0 7.88939 0.62229 5.88403 1.86687L3.88403 3.10813C1.98695 4.28551 1.0384 4.87421 0.5192 5.82274Z' fill='%23F2E2CB'/%3E%3C/svg%3E%0A") center no-repeat;
  background-size: contain;
} 
@media (min-width: 1024px) {
  .thanks {
    padding: 20px 0 90px 0;
  }
  .thanks .container {
    gap: 70px;
  }
}

/*blog_article*/
.blog_article .container {
  max-width: 1266px;
}
.blog_article {
  font-family: var(--font-body);
  font-size: clamp(16px, 15.6px + 0.125vw, 18px);;
  line-height: 1.6em;
  padding-bottom: 70px;
}
.blog_article h3, .blog_article .h3 {
  font-family: var(--font-heading);
  font-size: clamp(26px, calc(26px + 18 * ((100vw - 767px) / 1153)), 36px);
  font-weight: 400;
  line-height: 1em;
  margin-top: 1.45em;
  margin-bottom: 1.45em;
}
.blog_article h2, .blog_article .h2 {
  margin-top: 1.45em;
  margin-bottom: 0.6em;
}
.blog_article h4 {
  margin-top: 1.20em;
    margin-bottom: 1.22em;
}

 .blog_article  p {
  margin-bottom: 1.6em;
}
 .blog_article  ul {
  list-style: none;
  padding: 0;
  margin: 2.8em 0 2.8em 0;
}
 .blog_article ul li {

  padding: 0 0 0 35px;
  margin-bottom: 0.2em;
  position: relative;
}
 .blog_article ul li::before {
  content: "";
  width: 22px;
  height: 2px;
  background:var(--color-brown);
  position: absolute;
  left: 0;
  opacity: .3;
  top: 0.7em;

}
 .blog_article__img {
  width: 100%;
  margin: 3.0em 0;
  
}
 .blog_article__img img {
  width: 100%;
 }
.blog_article__img_main, .blog_article__img:first-child {
  margin-top: 0;
  margin-bottom: 4.7em;
}




@media (min-width: 1024px) {
  .blog_article {
    padding-top: 10px;
    padding-bottom: 90px;
  }
  .blog_article__img {
    max-width: 1760px;
    width:calc(100vw - 160px) ;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .blog_article ul li {
    padding: 0 0 0 72px;
  }
  .blog_article ul li::before {
    left: 20px;
  }
}
@media (min-width: 1200px) {
    .blog_article {
      padding-left: 40px;
      padding-right: 40px;
    }
    
}


/*how-it-works*/
.how-it-works{
  text-align: center;
}
.how-it-works__list {
   counter-reset: hiw-counter;
}
.how-it-works__item {
  counter-increment: hiw-counter;
  margin-top: 4em;
}
.how-it-works__item h4 {
    margin-top: 0.35em;
    margin-bottom: 0.65em;
}
.how-it-works__item h2::before {
  content: counter(hiw-counter) ". ";
  border: 1px solid #B3A38D;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.60em;
    height: 1.60em;
    margin-right: 0.4em;
    font-size: 1em;
    line-height: 1em;
    box-sizing: border-box;
    padding: 0 0 0.15em 0.1em;
}
.how-it-works__item:nth-child(3) h2::before {
  padding-bottom: 0.35em;
}
.how-it-works__item:nth-child(4) h2::before {
  padding-bottom: 0.35em;
}
.how-it-works__item-not-number h2:before {
  display: none;
}
.how-it-works h2,.how-it-works .h2 {
  font-size: clamp(34px, calc(34px + 18 * ((100vw - 767px) / 1153)), 56px);
  display: flex;
    justify-content: center;
    align-items: center;
}
.how-it-works__item-not-number h2 {
  margin-bottom:0.95em;
}

.how-it-works__img {
  position: relative;
  width: 100%;
  max-width: 952px;
  margin-left: auto;
  margin-right: auto;
}
.how-it-works .how-it-works__img {
  margin-top: 5em;
}
.how-it-works__img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 731 / 624;
    object-position: center;
    object-fit: cover;
    border-radius: 100%;
    transition: all 1s ease;
}
.how-it-works__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0) 60%, rgba(242, 226, 203, 1) 70%);
    pointer-events: none;
}
@media (min-width:768px) {
  .how-it-works__img {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  .how-it-works__img {
    width: 55vw;
  }
  .how-it-works__item {
    margin-top: 6em;
  }
  .how-it-works {
    padding-top: 10px;
    padding-bottom: 58px;
  }
}


/*about*/
.about {
  font-size: clamp(16px, 15.6px + 0.125vw, 18px);;
  line-height: 1.6em;
  padding-bottom: 70px;
}

.about h4 {
  font-size: clamp(38px, calc(38px + 18 * ((100vw - 767px) / 1153)), 54px);
  line-height: 1.3em;
  margin: 0;
}
.about .container {
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: 1266px;
}
.about__imgs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.about__imgs h4 {
  margin:0;
  text-align: center;
  
}
.about__imgs-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  
  }
 .about__imgs-name {
  position: relative;
  font-size: clamp(16px, 16px + 0.125vw, 20px);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 15px;
  font-weight: bold;
 }
  .about__imgs-name:before {
    content:"";
    background: url("data:image/svg+xml,%0A%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.87683 8.87671C12.3281 8.87671 14.3152 6.88959 14.3152 4.43835C14.3152 1.98712 12.3281 0 9.87683 0C7.4256 0 5.43848 1.98712 5.43848 4.43835C5.43848 6.88959 7.4256 8.87671 9.87683 8.87671Z' fill='%23C0AF99'/%3E%3Cpath d='M18.7534 15.0068C18.7534 17.7645 18.7534 20 9.87671 20C1 20 1 17.7645 1 15.0068C1 12.2492 4.97424 10.0137 9.87671 10.0137C14.7792 10.0137 18.7534 12.2492 18.7534 15.0068Z' fill='%23C0AF99'/%3E%3C/svg%3E%0A") center no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
  }
  .about__columns-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
  }
  .about__columns-item {
    padding: 40px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;

  }

  .about__columns {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .about__columns h4 {
    text-align: center;
  }
  .about__bg {
    background: url(../images/about3.jpg) -70px 0 no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 30px 20px 50px 80px;
    min-height: 280px;
  }
  .about__local {
    display: flex;
    flex-direction: column;
    
  }

  .about__local h3 {
  text-align: center;
  width: 100%;
  line-height: 1.2em;
  }

  .about__imgs-list,   .about__columns-item,   .about__local {
    gap: 25px;
  }

@media (max-width:767.99px) {
  .about__columns-item:nth-child(odd) {
    background: #E4D1B5;
  }
}
@media (min-width:768px) {
  .about__bg {
    padding: 70px 80px 70px 250px;
    min-height: 372px;
    background-position: 0 0;
  }
   .about__imgs-name {
    padding-top: 25px;
  }
  .about__columns-item {
    padding: 50px 30px;
  }
   .about__columns {
    gap: 60px;
  }
  .about .container {
    gap: 100px;
  }
  .about__imgs {
    gap: 50px;
}
  .about__imgs-list,   .about__columns-item,   .about__local {
    gap: 40px;
  }
  .about__imgs-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__columns-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .about__columns-item:nth-child(4n+1),
  .about__columns-item:nth-child(4n+4) {
    background: #E4D1B5;
  }
}
@media (min-width:1024px) {
  .about {
    padding-top: 10px;
    padding-bottom: 90px;
  }
  .about__columns-item {
    padding: 70px 50px;
  }
}




/*thanks*/
.page404 {
  padding: 0 0 70px 0;
}
.page404__img {
  position: relative;
}
.page404__img img {
    width: 100%;
    max-width: 595px;
    height: auto;
    aspect-ratio: 595 / 500;
    object-position: center;
    object-fit: cover;
    border-radius: 100%;
    transition: all 1s ease;
}
.page404 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 884px;
}
.page404 .container p:not(p.h3) {
  font-size: clamp(16px, 15.6px + 0.125vw, 18px);;
}
.page404__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0) 60%, rgba(242, 226, 203, 1) 70%);
    pointer-events: none;
}


@media (min-width: 1024px) {
  .page404 {
    padding: 20px 0 90px 0;
  }
  .page404 .container {
    gap: 40px;
  }
}

/*forms*/
.input {
  border: none;
  border-bottom: 1px solid #4C392680;
  height:55px;
  width: 100%;
  color: var(--color-brown);
  background-color: transparent;
  padding:5px 10px 5px 35px;
  outline: none;
  box-sizing: border-box;
  font-size: clamp(18px, 18px + 0.125vw, 20px)!important;
  font-family: var(--font-body);
  font-weight: 400;
  
}
.input:-webkit-autofill,
.input:-webkit-autofill:hover,
.input:-webkit-autofill:focus {
  font-size: 18px !important;
  background: var(--color-cream)!important;
   -webkit-text-fill-color:var(--color-brown) !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    transition: background 5000s ease-in-out 0s !important;
}

.form__field input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border:none;
    border-radius: 4px;
    background:var(--color-brown);
    cursor: pointer;
    position: relative;
    margin: 0;
}

.form__field input[type="checkbox"]:checked {
    background: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6029 0.799978L5.71419 7.68868C4.93315 8.46973 3.66682 8.46973 2.88577 7.68868L0.800112 5.60303' stroke='%23F2E2CB' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center no-repeat var(--color-brown);
}
.form__field .wpcf7-checkbox label {
  display: flex;
  gap: 21px;
  font-size: 15px;
  line-height: 1.2em;
  max-width: 490px;
}

.form__field {
  margin: 0 0 20px 0!important ;
  position: relative;
}
.form__field  .wpcf7-list-item {
  margin-left: 0;
}
.form__field p {
  margin: 0!important ;
}
.form__field:before {
  content:"";
  position: absolute;
  left: 0;
  top: 17px;
  height: 20px;
  width: 20px;

  pointer-events: none;
  background-repeat: no-repeat;
}
.form__field-name:before {
  background-image: url(../images/inputs_logo.svg);
  background-position: 0 -242px;
}
.form__field-email:before {
  background-image: url(../images/inputs_logo.svg);
  background-position: 0 -26px;
}
.form__field-date:before {
  background-image: url(../images/inputs_logo.svg);
  background-position: 0 -98px;
}
.form__field-message:before {
  background-image: url(../images/inputs_logo.svg);
  background-position: 0 -170px;
  top: 20px;
}

.input::placeholder {
  opacity: 1;
  color: var(--color-brown);
}
.input:focus::placeholder {
  opacity: 0;
}
textarea.input{
  height: 180px;
  resize: none;
  padding-top: 17px;
}
.form__field-btn {
  margin-top: 4em!important;
  text-align: center;
}

@media (min-width:768px) {
  .input {
    height:72px;
    padding-left: 55px;
  }
  .form__field-message:before {
    top: 35px;
  }
  .form__field:before {
    left: 15px;
    top: 25px;
  }
  textarea.input{
    padding-top: 22px;
  }
}

/* contacts */
.contacts {
  color: var(--color-brown);
  position: relative;
}
.contacts, .contacts__form {
  max-width: 570px;
  margin: 0 auto;
}
.contacts  h2 {
  margin-bottom: 1.3em;
}
.contacts.contacts__journeys {
  max-width: none;
  padding-bottom: 70px;
} 
.contacts__img {
  display: none;
}
.contacts__img img {
    width: 100%;
    max-width: 728px;
    height: auto;
    aspect-ratio: 728 / 728;
    object-position: center;
    object-fit: cover;
    border-radius: 100%;
}
.contacts__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0) 60%, rgba(242, 226, 203, 1) 70%);
    pointer-events: none;
}
@media (min-width:1400px) {
  .contacts__img {
    position: absolute;
    display: block;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 128%;
    max-width: 728px;
    margin-right: 50px;
  }
}
@media (min-width:1600px) {
  .contacts__img {
    margin-right: 100px;
  }
}