.eslp-hero {
   position: relative;
   min-height: 620px;
   display: flex;
   align-items: center;
   overflow: hidden;
   background: #101815;
}

.eslp-hero__media {
   position: absolute;
   inset: 0;
   z-index: 1;
}

.eslp-hero__media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: 58% center;
}

.eslp-hero__overlay {
   position: absolute;
   inset: 0;
   z-index: 2;
   background: linear-gradient(
      90deg,
      rgba(8, 18, 15, 0.88) 0%,
      rgba(8, 18, 15, 0.68) 38%,
      rgba(8, 18, 15, 0.30) 72%,
      rgba(8, 18, 15, 0.18) 100%
   );
}

.eslp-hero__content {
   position: relative;
   z-index: 3;
   width: 100%;
   padding: 125px 0 80px;
}

.eslp-hero__text {
   max-width: 620px;
   color: #fff;
}

.eslp-hero__text span {
   display: block;
   margin-bottom: 16px;
   color: rgba(255, 255, 255, 0.84);
   font-size: 13px;
   font-weight: 600;
   letter-spacing: 0.5px;
}

.eslp-hero__text h1 {
   max-width: 560px;
   margin: 0 0 22px;
   color: #fff;
   font-size: clamp(44px, 4.8vw, 68px);
   line-height: 1.05;
   font-weight: 500;
   letter-spacing: -0.6px;
}

.eslp-hero__text p {
   max-width: 520px;
   margin: 0 0 30px;
   color: rgba(255, 255, 255, 0.88);
   font-size: clamp(18px, 1.8vw, 22px);
   line-height: 1.65;
}

.eslp-hero__btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 46px;
   padding: 12px 26px;
   border-radius: 999px;
   background: #ff6655;
   color: #fff;
   font-size: 14px;
   font-weight: 600;
   text-decoration: none;
   box-shadow: 0 10px 22px rgba(255, 102, 85, 0.24);
   transition: all 0.25s ease;
}

.eslp-hero__btn:hover {
   color: #fff;
   background: #f25544;
   transform: translateY(-2px);
}

@media (max-width: 991px) {
   .eslp-hero {
      min-height: 580px;
   }

   .eslp-hero__content {
      padding: 115px 0 75px;
   }

   .eslp-hero__text {
      max-width: 560px;
   }
}

@media (max-width: 767px) {
   .eslp-hero {
      min-height: 560px;
      text-align: center;
   }

   .eslp-hero__media img {
      object-position: center;
   }

   .eslp-hero__overlay {
      background: linear-gradient(
         180deg,
         rgba(8, 18, 15, 0.62) 0%,
         rgba(8, 18, 15, 0.80) 100%
      );
   }

   .eslp-hero__content {
      padding: 110px 0 70px;
   }

   .eslp-hero__text {
      max-width: 100%;
   }

   .eslp-hero__text h1,
   .eslp-hero__text p {
      margin-left: auto;
      margin-right: auto;
   }
}

@media (max-width: 575px) {
   .eslp-hero {
      min-height: 540px;
   }

   .eslp-hero__text h1 {
      font-size: 38px;
   }

   .eslp-hero__text p {
      font-size: 17px;
   }

   .eslp-hero__btn {
      width: 100%;
      max-width: 280px;
   }
}.es-retreat-intro {
   position: relative;
   padding: 80px 0 60px;
   background: #fbf8f2;
   overflow: hidden;
}

.es-retreat-intro::before {
   content: "";
   position: absolute;
   top: 35px;
   left: 9%;
   width: 420px;
   height: 420px;
   background: url("../../images/mandala-bg.png") no-repeat center / contain;
   opacity: 0.045;
   pointer-events: none;
}

.es-intro-wrap {
   position: relative;
   z-index: 2;
   margin-bottom: 55px;
}

.es-section-label {
   display: inline-block;
   margin-bottom: 14px;
   color: #c58b3b;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 1.2px;
   text-transform: uppercase;
}

.es-intro-wrap h2 {
   max-width: 760px;
   margin: 0 0 22px;
   color: #2a1718;
   font-size: clamp(34px, 4vw, 54px);
   line-height: 1.12;
   font-weight: 500;
}

.es-intro-wrap p {
   max-width: 920px;
   margin: 0 0 16px;
   color: #443536;
   font-size: 17px;
   line-height: 1.85;
}

.es-intro-card {
   padding: 32px 30px;
   border-radius: 22px;
   background: #fff;
   border: 1px solid rgba(197, 139, 59, 0.18);
   box-shadow: 0 18px 45px rgba(60, 42, 30, 0.08);
}

.es-intro-card h3 {
   margin: 0 0 18px;
   color: #2a1718;
   font-size: 24px;
   font-weight: 500;
}

.es-intro-card ul {
   margin: 0;
   padding: 0;
   list-style: none;
}

.es-intro-card li {
   position: relative;
   padding: 10px 0 10px 26px;
   color: #4d4240;
   font-size: 15px;
   line-height: 1.55;
   border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.es-intro-card li:last-child {
   border-bottom: 0;
}

.es-intro-card li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 18px;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: #ff6655;
}

.es-more-content {
   position: relative;
   z-index: 2;
   margin-top: 10px;
}

.es-info-box {
   height: 100%;
   padding: 30px 28px;
   border-radius: 20px;
   background: #fff;
   border: 1px solid rgba(0, 0, 0, 0.06);
   box-shadow: 0 14px 35px rgba(60, 42, 30, 0.06);
   transition: all 0.25s ease;
}

.es-info-box:hover {
   transform: translateY(-4px);
   box-shadow: 0 20px 45px rgba(60, 42, 30, 0.1);
}

.es-info-box h3 {
   margin: 0 0 16px;
   color: #2a1718;
   font-size: 24px;
   line-height: 1.25;
   font-weight: 500;
}

.es-info-box p {
   margin: 0 0 16px;
   color: #514545;
   font-size: 15px;
   line-height: 1.75;
}

.es-info-box ul {
   margin: 0;
   padding: 0;
   list-style: none;
}

.es-info-box li {
   position: relative;
   margin-bottom: 11px;
   padding-left: 24px;
   color: #4c4140;
   font-size: 15px;
   line-height: 1.6;
}

.es-info-box li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 10px;
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: #d5a44f;
}

.es-info-box a {
   color: #b9792c;
   font-weight: 600;
   text-decoration: none;
}

.es-info-box a:hover {
   color: #ff6655;
}

.es-soft-cta {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   margin-top: 36px;
   padding: 30px 34px;
   border-radius: 24px;
   background: #17231f;
   color: #fff;
}

.es-soft-cta h3 {
   margin: 0 0 8px;
   color: #fff;
   font-size: 28px;
   font-weight: 500;
}

.es-soft-cta p {
   max-width: 760px;
   margin: 0;
   color: rgba(255, 255, 255, 0.78);
   font-size: 15px;
   line-height: 1.7;
}

.es-soft-cta-btn {
   flex: 0 0 auto;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 46px;
   padding: 12px 24px;
   border-radius: 999px;
   background: #ff6655;
   color: #fff;
   font-size: 14px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
}

.es-soft-cta-btn:hover {
   background: #f25544;
   color: #fff;
   transform: translateY(-2px);
}

.es-read-more {
   display: inline-flex;
   margin-top: 24px;
   color: #2a1718;
   font-weight: 700;
   text-decoration: none;
}

@media (max-width: 991px) {
   .es-retreat-intro {
      padding: 65px 0 50px;
   }

   .es-soft-cta {
      align-items: flex-start;
      flex-direction: column;
   }
}

@media (max-width: 767px) {
   .es-retreat-intro {
      padding: 55px 0 45px;
   }

   .es-intro-wrap {
      margin-bottom: 35px;
   }

   .es-intro-card,
   .es-info-box {
      padding: 24px 22px;
      border-radius: 18px;
   }

   .es-soft-cta {
      padding: 26px 22px;
      border-radius: 20px;
   }

   .es-soft-cta h3 {
      font-size: 24px;
   }

   .es-soft-cta-btn {
      width: 100%;
   }
}.es-retreat-intro {
   padding: 70px 0 45px;
}

.es-intro-wrap {
   margin-bottom: 25px;
}

.es-intro-wrap h2 {
   margin-bottom: 20px;
}

.es-intro-wrap p:last-child {
   margin-bottom: 0;
}

.es-read-more {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   margin-top: 20px;
   padding: 0;
   border: 0;
   background: transparent;
   color: #111;
   font-size: 15px;
   font-weight: 700;
   text-decoration: none;
   cursor: pointer;
}

.es-read-more:hover {
   color: #ff6655;
}

.more-read-content {
   display: none;
}

.more-read-content.is-open {
   display: block;
}

@media (max-width: 767px) {
   .es-retreat-intro {
      padding: 45px 0 35px;
   }

   .es-intro-wrap {
      margin-bottom: 20px;
   }

   .es-intro-wrap h2 {
      font-size: 34px;
      line-height: 1.15;
      text-align: center;
   }

   .es-intro-wrap p {
      font-size: 15px;
      line-height: 1.75;
      text-align: center;
   }

   .es-section-label {
      display: block;
      text-align: center;
   }

   .es-intro-card {
      margin-top: 10px;
   }

   .es-read-more {
      display: flex;
      margin: 22px auto 0;
      width: fit-content;
   }
}@media (max-width: 767px) {
   .whatsapp,
   .whatsapp-float,
   .float-whatsapp {
      bottom: 18px !important;
      right: 14px !important;
      transform: scale(0.85);
      transform-origin: bottom right;
   }
}
.es-packages-sec {
   padding: 80px 0;
   background: #f8f4ee;
}

.es-packages-head {
   max-width: 850px;
   margin: 0 auto 55px;
}

.es-packages-head span {
   display: inline-block;
   margin-bottom: 12px;
   color: #c58b3b;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 1.3px;
   text-transform: uppercase;
}

.es-packages-head h2 {
   margin: 0 0 18px;
   color: #2a1718;
   font-size: clamp(34px, 4vw, 56px);
   line-height: 1.12;
   font-weight: 500;
}

.es-packages-head p {
   margin: 0 auto;
   max-width: 760px;
   color: #5a4a47;
   font-size: 16px;
   line-height: 1.8;
}

.es-package-group {
   margin-top: 55px;
}

.es-group-title {
   display: flex;
   align-items: flex-start;
   gap: 18px;
   max-width: 860px;
   margin-bottom: 28px;
}

.es-group-title > span {
   flex: 0 0 auto;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: #fff;
   color: #c58b3b;
   border: 1px solid rgba(197, 139, 59, 0.25);
   font-size: 14px;
   font-weight: 700;
}

.es-group-title h3 {
   margin: 0 0 8px;
   color: #2a1718;
   font-size: 30px;
   line-height: 1.25;
   font-weight: 500;
}

.es-group-title p {
   margin: 0;
   color: #6a5a56;
   font-size: 15px;
   line-height: 1.7;
}

.es-trip-card {
   height: 100%;
   background: #fff;
   border-radius: 22px;
   overflow: hidden;
   border: 1px solid rgba(0, 0, 0, 0.06);
   box-shadow: 0 14px 36px rgba(60, 42, 30, 0.07);
   transition: all 0.25s ease;
}

.es-trip-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 22px 48px rgba(60, 42, 30, 0.12);
}

.es-trip-img {
   position: relative;
   height: 235px;
   overflow: hidden;
}

.es-trip-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.45s ease;
}

.es-trip-card:hover .es-trip-img img {
   transform: scale(1.06);
}

.es-trip-img span {
   position: absolute;
   top: 18px;
   left: 18px;
   z-index: 2;
   display: inline-flex;
   align-items: center;
   min-height: 30px;
   padding: 7px 14px;
   border-radius: 999px;
   background: #ff6655;
   color: #fff;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.6px;
   text-transform: uppercase;
}

.es-trip-body {
   padding: 24px 24px 22px;
}

.es-trip-days {
   margin-bottom: 10px;
   color: #c58b3b;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 0.8px;
   text-transform: uppercase;
}

.es-trip-body a {
   color: inherit;
   text-decoration: none;
}

.es-trip-body h3 {
   min-height: 62px;
   margin: 0 0 12px;
   color: #2a1718;
   font-size: 23px;
   line-height: 1.28;
   font-weight: 500;
}

.es-trip-body p {
   min-height: 52px;
   margin: 0 0 18px;
   color: #5e5350;
   font-size: 15px;
   line-height: 1.6;
}

.es-trip-footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 14px;
   padding-top: 16px;
   border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.es-trip-footer small {
   color: #776865;
   font-size: 13px;
   line-height: 1.4;
}

.es-trip-footer a {
   flex: 0 0 auto;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 9px 15px;
   border-radius: 999px;
   border: 1px solid rgba(42, 23, 24, 0.18);
   color: #2a1718;
   font-size: 13px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
}

.es-trip-footer a:hover {
   background: #2a1718;
   color: #fff;
   border-color: #2a1718;
}

.es-package-cta {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 25px;
   margin-top: 65px;
   padding: 34px 38px;
   border-radius: 26px;
   background: #17231f;
   color: #fff;
}

.es-package-cta h3 {
   margin: 0 0 8px;
   color: #fff;
   font-size: 30px;
   font-weight: 500;
}

.es-package-cta p {
   max-width: 760px;
   margin: 0;
   color: rgba(255, 255, 255, 0.78);
   font-size: 15px;
   line-height: 1.7;
}

.es-package-cta a {
   flex: 0 0 auto;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 46px;
   padding: 12px 24px;
   border-radius: 999px;
   background: #ff6655;
   color: #fff;
   font-size: 14px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
}

.es-package-cta a:hover {
   background: #f25544;
   color: #fff;
   transform: translateY(-2px);
}

@media (max-width: 991px) {
   .es-packages-sec {
      padding: 65px 0;
   }

   .es-package-cta {
      flex-direction: column;
      align-items: flex-start;
   }
}

@media (max-width: 767px) {
   .es-packages-sec {
      padding: 55px 0;
   }

   .es-packages-head {
      margin-bottom: 38px;
   }

   .es-packages-head h2 {
      font-size: 34px;
   }

   .es-package-group {
      margin-top: 42px;
   }

   .es-group-title {
      gap: 14px;
      margin-bottom: 22px;
   }

   .es-group-title > span {
      width: 38px;
      height: 38px;
      font-size: 13px;
   }

   .es-group-title h3 {
      font-size: 24px;
   }

   .es-trip-img {
      height: 215px;
   }

   .es-trip-body {
      padding: 22px 20px 20px;
   }

   .es-trip-body h3 {
      min-height: auto;
      font-size: 22px;
   }

   .es-trip-body p {
      min-height: auto;
   }

   .es-trip-footer {
      align-items: flex-start;
      flex-direction: column;
   }

   .es-package-cta {
      margin-top: 45px;
      padding: 28px 22px;
      border-radius: 22px;
   }

   .es-package-cta h3 {
      font-size: 25px;
   }

   .es-package-cta a {
      width: 100%;
   }
}.es-packages-sec {
   padding: 60px 0;
}

.es-packages-head {
   max-width: 820px;
   margin: 0 auto 38px;
}

.es-packages-head h2 {
   font-size: clamp(32px, 3.4vw, 48px);
   line-height: 1.12;
}

.es-packages-head p {
   max-width: 700px;
   font-size: 15px;
   line-height: 1.75;
}

.es-package-group {
   margin-top: 38px;
}

.es-group-title {
   margin-bottom: 22px;
}

.es-group-title h3 {
   font-size: 26px;
}

.es-group-title p {
   font-size: 14px;
   line-height: 1.6;
}

.es-trip-img {
   height: 220px;
}

.es-trip-body h3 {
   font-size: 21px;
   min-height: 56px;
}

.es-trip-body p {
   font-size: 14px;
   min-height: 48px;
}
.es-retreat-choice {
   position: relative;
   padding: 70px 0;
   background: #fffaf3;
   overflow: hidden;
}

.es-retreat-choice::before {
   content: "";
   position: absolute;
   right: -120px;
   top: 40px;
   width: 360px;
   height: 360px;
   border-radius: 50%;
   background: rgba(213, 164, 79, 0.08);
   pointer-events: none;
}

.es-choice-head {
   position: relative;
   z-index: 2;
   max-width: 820px;
   margin: 0 auto 42px;
}

.es-choice-head span {
   display: inline-block;
   margin-bottom: 12px;
   color: #c58b3b;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 1.3px;
   text-transform: uppercase;
}

.es-choice-head h2 {
   margin: 0 0 16px;
   color: #2a1718;
   font-size: clamp(32px, 3.6vw, 50px);
   line-height: 1.12;
   font-weight: 500;
}

.es-choice-head p {
   max-width: 720px;
   margin: 0 auto;
   color: #5c4d4a;
   font-size: 16px;
   line-height: 1.8;
}

.es-choice-card {
   position: relative;
   z-index: 2;
   height: 100%;
   padding: 30px 26px 26px;
   border-radius: 22px;
   background: #fff;
   border: 1px solid rgba(42, 23, 24, 0.08);
   box-shadow: 0 14px 34px rgba(60, 42, 30, 0.06);
   transition: all 0.25s ease;
}

.es-choice-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 22px 46px rgba(60, 42, 30, 0.11);
}

.es-choice-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 42px;
   height: 42px;
   margin-bottom: 20px;
   border-radius: 50%;
   background: #fbf2e4;
   color: #c58b3b;
   border: 1px solid rgba(197, 139, 59, 0.22);
   font-size: 13px;
   font-weight: 700;
}

.es-choice-card h3 {
   margin: 0 0 14px;
   color: #2a1718;
   font-size: 25px;
   line-height: 1.25;
   font-weight: 500;
}

.es-choice-card p {
   margin: 0 0 18px;
   color: #5d514f;
   font-size: 15px;
   line-height: 1.7;
}

.es-choice-card ul {
   margin: 0 0 22px;
   padding: 0;
   list-style: none;
}

.es-choice-card li {
   position: relative;
   margin-bottom: 9px;
   padding-left: 22px;
   color: #4f4442;
   font-size: 14px;
   line-height: 1.5;
}

.es-choice-card li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 9px;
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: #ff6655;
}

.es-choice-card a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 40px;
   padding: 10px 18px;
   border-radius: 999px;
   background: #17231f;
   color: #fff;
   font-size: 13px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
}

.es-choice-card a:hover {
   background: #ff6655;
   color: #fff;
   transform: translateY(-2px);
}

@media (max-width: 991px) {
   .es-retreat-choice {
      padding: 60px 0;
   }
}

@media (max-width: 767px) {
   .es-retreat-choice {
      padding: 50px 0;
   }

   .es-choice-head {
      margin-bottom: 32px;
   }

   .es-choice-head h2 {
      font-size: 34px;
   }

   .es-choice-head p {
      font-size: 15px;
      line-height: 1.7;
   }

   .es-choice-card {
      padding: 26px 22px 24px;
      border-radius: 20px;
   }

   .es-choice-card h3 {
      font-size: 23px;
   }
}.es-spiritual-destinations {
   position: relative;
   padding: 75px 0;
   background: #fbf8f2;
   overflow: hidden;
}

.es-spiritual-destinations::before {
   content: "";
   position: absolute;
   left: -140px;
   bottom: -140px;
   width: 360px;
   height: 360px;
   border-radius: 50%;
   background: rgba(213, 164, 79, 0.08);
   pointer-events: none;
}

.es-dest-head {
   position: relative;
   z-index: 2;
   max-width: 850px;
   margin: 0 auto 44px;
}

.es-dest-head span {
   display: inline-block;
   margin-bottom: 12px;
   color: #c58b3b;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 1.3px;
   text-transform: uppercase;
}

.es-dest-head h2 {
   margin: 0 0 16px;
   color: #2a1718;
   font-size: clamp(32px, 3.6vw, 52px);
   line-height: 1.12;
   font-weight: 500;
}

.es-dest-head p {
   max-width: 740px;
   margin: 0 auto;
   color: #5c4d4a;
   font-size: 16px;
   line-height: 1.8;
}

.es-dest-card {
   position: relative;
   z-index: 2;
   height: 100%;
   border-radius: 22px;
   overflow: hidden;
   background: #fff;
   border: 1px solid rgba(42, 23, 24, 0.07);
   box-shadow: 0 14px 34px rgba(60, 42, 30, 0.06);
   transition: all 0.25s ease;
}

.es-dest-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 22px 46px rgba(60, 42, 30, 0.11);
}

.es-dest-card a {
   display: block;
   height: 100%;
   color: inherit;
   text-decoration: none;
}

.es-dest-img {
   height: 220px;
   overflow: hidden;
   background: #eee;
}

.es-dest-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.45s ease;
}

.es-dest-card:hover .es-dest-img img {
   transform: scale(1.06);
}

.es-dest-body {
   padding: 24px 24px 26px;
}

.es-dest-body span {
   display: inline-block;
   margin-bottom: 10px;
   color: #c58b3b;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.9px;
   text-transform: uppercase;
}

.es-dest-body h3 {
   margin: 0 0 12px;
   color: #2a1718;
   font-size: 28px;
   line-height: 1.2;
   font-weight: 500;
}

.es-dest-body p {
   margin: 0;
   color: #5d514f;
   font-size: 15px;
   line-height: 1.7;
}

@media (max-width: 991px) {
   .es-spiritual-destinations {
      padding: 65px 0;
   }

   .es-dest-img {
      height: 210px;
   }
}

@media (max-width: 767px) {
   .es-spiritual-destinations {
      padding: 55px 0;
   }

   .es-dest-head {
      margin-bottom: 34px;
   }

   .es-dest-head h2 {
      font-size: 34px;
   }

   .es-dest-head p {
      font-size: 15px;
      line-height: 1.7;
   }

   .es-dest-img {
      height: 205px;
   }

   .es-dest-body {
      padding: 22px 20px 24px;
   }

   .es-dest-body h3 {
      font-size: 25px;
   }
}.es-retreat-match {
   position: relative;
   padding: 75px 0;
   background: #fbf8f2;
   overflow: hidden;
}

.es-retreat-match::before {
   content: "";
   position: absolute;
   right: -120px;
   top: -120px;
   width: 340px;
   height: 340px;
   border-radius: 50%;
   background: rgba(213, 164, 79, 0.09);
   pointer-events: none;
}

.es-match-head {
   position: relative;
   z-index: 2;
   max-width: 850px;
   margin: 0 auto 42px;
}

.es-match-head span {
   display: inline-block;
   margin-bottom: 12px;
   color: #c58b3b;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 1.3px;
   text-transform: uppercase;
}

.es-match-head h2 {
   margin: 0 0 16px;
   color: #2a1718;
   font-size: clamp(32px, 3.5vw, 52px);
   line-height: 1.12;
   font-weight: 500;
}

.es-match-head p {
   max-width: 740px;
   margin: 0 auto;
   color: #5c4d4a;
   font-size: 16px;
   line-height: 1.8;
}

.es-match-table {
   position: relative;
   z-index: 2;
   overflow: hidden;
   border-radius: 24px;
   background: #fff;
   border: 1px solid rgba(42, 23, 24, 0.08);
   box-shadow: 0 18px 42px rgba(60, 42, 30, 0.07);
}

.es-match-row {
   display: grid;
   grid-template-columns: 1.05fr 1.25fr 1.45fr 0.8fr 1fr;
   border-bottom: 1px solid rgba(42, 23, 24, 0.08);
}

.es-match-row:last-child {
   border-bottom: 0;
}

.es-match-row > div {
   padding: 22px 20px;
   color: #4f4442;
   font-size: 15px;
   line-height: 1.65;
   border-right: 1px solid rgba(42, 23, 24, 0.08);
}

.es-match-row > div:last-child {
   border-right: 0;
}

.es-match-row-head {
   background: #17231f;
}

.es-match-row-head > div {
   color: rgba(255, 255, 255, 0.9);
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 0.8px;
   text-transform: uppercase;
}

.es-match-title {
   display: flex;
   align-items: center;
   gap: 12px;
}

.es-match-title span {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   flex: 0 0 auto;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: #fbf2e4;
   color: #c58b3b;
   border: 1px solid rgba(197, 139, 59, 0.25);
   font-size: 12px;
   font-weight: 700;
}

.es-match-title strong {
   color: #2a1718;
   font-size: 22px;
   line-height: 1.2;
   font-weight: 500;
}

.es-match-actions {
   position: relative;
   z-index: 2;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 12px;
   margin-top: 30px;
}

.es-match-actions a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 42px;
   padding: 10px 20px;
   border-radius: 999px;
   background: #fff;
   color: #2a1718;
   border: 1px solid rgba(42, 23, 24, 0.14);
   font-size: 14px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
}

.es-match-actions a:hover {
   background: #ff6655;
   color: #fff;
   border-color: #ff6655;
   transform: translateY(-2px);
}

@media (max-width: 991px) {
   .es-retreat-match {
      padding: 65px 0;
   }

   .es-match-table {
      overflow-x: auto;
   }

   .es-match-row {
      min-width: 920px;
   }
}

@media (max-width: 767px) {
   .es-retreat-match {
      padding: 55px 0;
   }

   .es-match-head {
      margin-bottom: 34px;
   }

   .es-match-head h2 {
      font-size: 34px;
   }

   .es-match-head p {
      font-size: 15px;
      line-height: 1.7;
   }

   .es-match-table {
      border-radius: 20px;
   }

   .es-match-row {
      display: block;
      min-width: 0;
      padding: 22px 20px;
      border-bottom: 1px solid rgba(42, 23, 24, 0.08);
   }

   .es-match-row-head {
      display: none;
   }

   .es-match-row > div {
      padding: 0;
      border-right: 0;
      font-size: 14px;
   }

   .es-match-row > div:not(:first-child) {
      margin-top: 12px;
      padding-left: 48px;
   }

   .es-match-row > div:nth-child(2)::before {
      content: "Mejor para: ";
      font-weight: 700;
      color: #2a1718;
   }

   .es-match-row > div:nth-child(3)::before {
      content: "Cómo se vive: ";
      font-weight: 700;
      color: #2a1718;
   }

   .es-match-row > div:nth-child(4)::before {
      content: "Comodidad: ";
      font-weight: 700;
      color: #2a1718;
   }

   .es-match-row > div:nth-child(5)::before {
      content: "Destino ideal: ";
      font-weight: 700;
      color: #2a1718;
   }

   .es-match-title strong {
      font-size: 23px;
   }

   .es-match-actions {
      justify-content: flex-start;
   }

   .es-match-actions a {
      width: 100%;
   }
}
.es-retreat-process {
   position: relative;
   padding: 80px 0;
   background: #17231f;
   overflow: hidden;
}

.es-retreat-process::before {
   content: "";
   position: absolute;
   top: -160px;
   right: -120px;
   width: 380px;
   height: 380px;
   border-radius: 50%;
   background: rgba(213, 164, 79, 0.12);
   pointer-events: none;
}

.es-retreat-process::after {
   content: "";
   position: absolute;
   left: -140px;
   bottom: -160px;
   width: 360px;
   height: 360px;
   border-radius: 50%;
   background: rgba(255, 102, 85, 0.10);
   pointer-events: none;
}

.es-process-head {
   position: relative;
   z-index: 2;
   max-width: 860px;
   margin: 0 auto 48px;
}

.es-process-head span {
   display: inline-block;
   margin-bottom: 12px;
   color: #d5a44f;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 1.3px;
   text-transform: uppercase;
}

.es-process-head h2 {
   margin: 0 0 16px;
   color: #fff;
   font-size: clamp(32px, 3.6vw, 52px);
   line-height: 1.12;
   font-weight: 500;
}

.es-process-head p {
   max-width: 760px;
   margin: 0 auto;
   color: rgba(255, 255, 255, 0.76);
   font-size: 16px;
   line-height: 1.8;
}

.es-process-wrap {
   position: relative;
   z-index: 2;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 22px;
}

.es-process-card {
   position: relative;
   height: 100%;
   padding: 30px 24px 28px;
   border-radius: 22px;
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(255, 255, 255, 0.12);
   transition: all 0.25s ease;
}

.es-process-card:hover {
   transform: translateY(-5px);
   background: rgba(255, 255, 255, 0.09);
   border-color: rgba(213, 164, 79, 0.35);
}

.es-process-number {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 44px;
   height: 44px;
   margin-bottom: 22px;
   border-radius: 50%;
   background: #d5a44f;
   color: #17231f;
   font-size: 13px;
   font-weight: 800;
}

.es-process-card h3 {
   margin: 0 0 14px;
   color: #fff;
   font-size: 23px;
   line-height: 1.25;
   font-weight: 500;
}

.es-process-card p {
   margin: 0;
   color: rgba(255, 255, 255, 0.72);
   font-size: 15px;
   line-height: 1.75;
}

.es-process-note {
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   margin-top: 38px;
   padding: 30px 34px;
   border-radius: 24px;
   background: #fff;
   box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.es-process-note h3 {
   margin: 0 0 8px;
   color: #2a1718;
   font-size: 28px;
   line-height: 1.25;
   font-weight: 500;
}

.es-process-note p {
   max-width: 760px;
   margin: 0;
   color: #5c4d4a;
   font-size: 15px;
   line-height: 1.7;
}

.es-process-note a {
   flex: 0 0 auto;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 46px;
   padding: 12px 24px;
   border-radius: 999px;
   background: #ff6655;
   color: #fff;
   font-size: 14px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
}

.es-process-note a:hover {
   background: #f25544;
   color: #fff;
   transform: translateY(-2px);
}

@media (max-width: 1199px) {
   .es-process-wrap {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 991px) {
   .es-retreat-process {
      padding: 65px 0;
   }

   .es-process-note {
      flex-direction: column;
      align-items: flex-start;
   }
}

@media (max-width: 767px) {
   .es-retreat-process {
      padding: 55px 0;
   }

   .es-process-head {
      margin-bottom: 34px;
   }

   .es-process-head h2 {
      font-size: 34px;
   }

   .es-process-head p {
      font-size: 15px;
      line-height: 1.7;
   }

   .es-process-wrap {
      grid-template-columns: 1fr;
      gap: 18px;
   }

   .es-process-card {
      padding: 26px 22px 24px;
      border-radius: 20px;
   }

   .es-process-card h3 {
      font-size: 22px;
   }

   .es-process-note {
      margin-top: 28px;
      padding: 26px 22px;
      border-radius: 20px;
   }

   .es-process-note h3 {
      font-size: 24px;
   }

   .es-process-note a {
      width: 100%;
   }
}.ei-cta-final {
   padding: 70px 0;
   background: #fbf8f2;
}

.ei-cta-final__box {
   position: relative;
   display: grid;
   grid-template-columns: minmax(0, 1fr) 260px;
   gap: 40px;
   align-items: center;
   padding: 44px 48px;
   border-radius: 26px;
   background: #14201b;
   overflow: hidden;
   box-shadow: 0 22px 55px rgba(60, 42, 30, 0.14);
}

.ei-cta-final__box::before {
   content: "";
   position: absolute;
   top: -110px;
   left: -110px;
   width: 260px;
   height: 260px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.06);
   pointer-events: none;
}

.ei-cta-final__box::after {
   content: "";
   position: absolute;
   right: -80px;
   bottom: -100px;
   width: 230px;
   height: 230px;
   border-radius: 50%;
   background: rgba(213, 164, 79, 0.12);
   pointer-events: none;
}

.ei-cta-final__content,
.ei-cta-final__actions {
   position: relative;
   z-index: 2;
}

.ei-cta-final__label {
   display: inline-block;
   margin-bottom: 12px;
   color: #d5a44f;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 1.3px;
   text-transform: uppercase;
}

.ei-cta-final h2 {
   max-width: 760px;
   margin: 0 0 16px;
   color: #fff;
   font-size: clamp(32px, 3.4vw, 50px);
   line-height: 1.12;
   font-weight: 500;
}

.ei-cta-final p {
   max-width: 760px;
   margin: 0;
   color: rgba(255, 255, 255, 0.78);
   font-size: 16px;
   line-height: 1.8;
}

.ei-cta-final__list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin: 24px 0 0;
   padding: 0;
   list-style: none;
}

.ei-cta-final__list li {
   display: inline-flex;
   align-items: center;
   min-height: 34px;
   padding: 8px 14px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.13);
   color: rgba(255, 255, 255, 0.88);
   font-size: 13px;
   font-weight: 600;
   line-height: 1.3;
}

.ei-cta-final__actions {
   display: grid;
   gap: 12px;
}

.ei-cta-final__btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 48px;
   padding: 12px 22px;
   border-radius: 999px;
   font-size: 14px;
   font-weight: 700;
   line-height: 1.2;
   text-align: center;
   text-decoration: none;
   transition: all 0.25s ease;
}

.ei-cta-final__btn--primary {
   background: #ff6655;
   color: #fff;
   box-shadow: 0 12px 26px rgba(255, 102, 85, 0.24);
}

.ei-cta-final__btn--primary:hover {
   background: #f25544;
   color: #fff;
   transform: translateY(-2px);
}

.ei-cta-final__btn--outline {
   background: rgba(255, 255, 255, 0.08);
   color: #fff;
   border: 1px solid rgba(255, 255, 255, 0.22);
}

.ei-cta-final__btn--outline:hover {
   background: #fff;
   color: #14201b;
   border-color: #fff;
   transform: translateY(-2px);
}

@media (max-width: 991px) {
   .ei-cta-final {
      padding: 58px 0;
   }

   .ei-cta-final__box {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 38px 34px;
   }

   .ei-cta-final__actions {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }
}

@media (max-width: 767px) {
   .ei-cta-final {
      padding: 45px 0;
   }

   .ei-cta-final__box {
      padding: 30px 22px;
      border-radius: 22px;
      gap: 24px;
   }

   .ei-cta-final__label {
      font-size: 12px;
      margin-bottom: 10px;
   }

   .ei-cta-final h2 {
      font-size: 32px;
      line-height: 1.15;
   }

   .ei-cta-final p {
      font-size: 15px;
      line-height: 1.7;
   }

   .ei-cta-final__list {
      display: grid;
      gap: 8px;
      margin-top: 20px;
   }

   .ei-cta-final__list li {
      justify-content: center;
      width: 100%;
      min-height: 36px;
      text-align: center;
   }

   .ei-cta-final__actions {
      grid-template-columns: 1fr;
      gap: 10px;
   }

   .ei-cta-final__btn {
      width: 100%;
      min-height: 46px;
      padding: 12px 18px;
      border-radius: 999px;
   }
}

@media (max-width: 420px) {
   .ei-cta-final__box {
      padding: 28px 20px;
   }

   .ei-cta-final h2 {
      font-size: 29px;
   }
}
.ei-cta-final {
   padding: 55px 0 65px;
}.es-spiritual-destinations,
.es-retreat-match,
.es-retreat-process {
   padding: 60px 0;
}

@media (max-width: 767px) {
   .es-spiritual-destinations,
   .es-retreat-match,
   .es-retreat-process {
      padding: 45px 0;
   }
}.es-spiritual-destinations,
.es-retreat-match,
.es-retreat-process {
   padding: 60px 0;
}

@media (max-width: 767px) {
   .es-spiritual-destinations,
   .es-retreat-match,
   .es-retreat-process {
      padding: 45px 0;
   }
}.ei-cta-final__note {
   display: block;
   margin-top: 4px;
   color: rgba(255, 255, 255, 0.62);
   font-size: 12px;
   line-height: 1.5;
   text-align: center;
}

@media (max-width: 991px) {
   .ei-cta-final__note {
      width: 100%;
      text-align: left;
   }
}

@media (max-width: 767px) {
   .ei-cta-final__note {
      text-align: center;
      font-size: 12px;
   }
}