:root {
  --hu-color-dark: #120701;
  --hu-color-dark-2: #1e0d02;
  --hu-color-gold: #EBAA2E;
  --hu-color-gold-light: #e2c97e;
  --hu-color-blush: #f4ece8;
  --hu-color-white: #ffffff;
  --hu-color-white-90: rgba(255, 255, 255, 0.90);
  --hu-color-white-80: rgba(255, 255, 255, 0.80);

  --hu-font-display: 'Aboreto', cursive;
  --hu-font-subtitle: 'Abhaya Libre', serif;
  --hu-font-body: 'Montserrat', sans-serif;

  --hu-fs-title-1: clamp(2.8rem, 8.65vw, 166px);
  --hu-fs-title-2: clamp(2.4rem, 5vw, 96px);
  --hu-fs-title-3: clamp(2rem, 3.95vw, 76px);
  --hu-fs-title-4: 20px;

  --hu-fs-headline-1: clamp(2rem, 3.4vw, 46px);
  --hu-fs-headline-2: clamp(1.65rem, 1.93vw, 37px);
  --hu-fs-headline-3: clamp(1.5rem, 2.56vw, 30px);

  --hu-fs-body-1: 20px;
  --hu-fs-body-2: 18px;
  --hu-fs-body-3: 16px;
  --hu-fs-body-4: 14px;

  --hu-fw-light: 300;
  --hu-fw-regular: 400;
  --hu-fw-medium: 500;
  --hu-fw-bold: 700;

  --hu-ls-display: 0.06em;
  --hu-ls-wide: 0.12em;
  --hu-ls-wider: 0.2em;

  --hu-space-xs: 0.5rem;
  --hu-space-s: 1rem;
  --hu-space-m: 1.5rem;
  --hu-space-l: 2.5rem;
  --hu-space-xl: 4rem;
  --hu-space-2xl: 6rem;
  --hu-space-3xl: 9rem;

  --hu-section-py: clamp(4rem, 8vw, 7rem);

  --hu-container-max: 1680px;
  --hu-container-px: clamp(1.25rem, 5vw, 4rem);

  --hu-radius-btn: 999px;
  --hu-radius-card: 0.75rem;
  --hu-radius-sm: 0.375rem;

  --hu-transition: 0.3s ease;
  --hu-transition-slow: 0.5s ease;

  --hu-shadow-card: 0 4px 32px rgba(18, 7, 1, 0.12);
}

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

::-webkit-scrollbar-track {
  background: var(--hu-color-dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--hu-color-gold);
  border-radius: 10px;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: var(--hu-color-dark);
  color: var(--hu-color-white);
  font-family: var(--hu-font-body);
  font-size: var(--hu-fs-body-1);
  font-weight: var(--hu-fw-regular);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

section {
  cursor: default;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.hu-title--1 {
  font-family: var(--hu-font-display);
  font-size: var(--hu-fs-title-1);
  font-weight: var(--hu-fw-regular);
  letter-spacing: var(--hu-ls-display);
  line-height: 1.05;
  text-transform: uppercase;
}
.hu-title--2 {
  font-family: var(--hu-font-display);
  font-size: var(--hu-fs-title-2);
  font-weight: var(--hu-fw-regular);
  letter-spacing: var(--hu-ls-display);
  line-height: 1.0;
  text-transform: uppercase;
}
.hu-title--3 {
  font-family: var(--hu-font-display);
  font-size: var(--hu-fs-title-3);
  font-weight: var(--hu-fw-regular);
  letter-spacing: var(--hu-ls-display);
  line-height: 1.15;
  text-transform: uppercase;
}
.hu-title--4 {
  font-family: var(--hu-font-body);
  font-size: var(--hu-fs-title-4);
  font-weight: var(--hu-fw-medium);
  letter-spacing: var(--hu-ls-wider);
  text-transform: uppercase;
}

.hu-headline--1, .has-headline-1-font-size {
  font-family: var(--hu-font-body);
  font-size: var(--hu-fs-headline-1);
  font-weight: var(--hu-fw-light);
  line-height: 1.3;
}
.hu-headline--2, .has-headline-2-font-size {
  font-family: var(--hu-font-body);
  font-size: var(--hu-fs-headline-2);
  font-weight: var(--hu-fw-light);
  line-height: 1.35;
}
.hu-headline--3, .has-headline-3-font-size {
  font-family: var(--hu-font-subtitle);
  font-size: var(--hu-fs-headline-3);
  font-weight: var(--hu-fw-regular);
  line-height: 1.15;
}

.hu-body--1 {
  font-size: var(--hu-fs-body-1);
  font-weight: var(--hu-fw-regular);
  line-height: 1.6;
  letter-spacing: -0.4px;
}
.hu-body--2 {
  font-size: var(--hu-fs-body-2);
  font-weight: var(--hu-fw-regular);
  line-height: 1.6;
  letter-spacing: -0.4px;
}
.hu-body--3 {
  font-size: var(--hu-fs-body-3);
  font-weight: var(--hu-fw-regular);
  line-height: 1.55;
  letter-spacing: -0.4px;
}
.hu-body--4 {
  font-size: var(--hu-fs-body-4);
  font-weight: var(--hu-fw-regular);
  line-height: 1.5;
  letter-spacing: 0.02em;
  letter-spacing: -0.4px;
}


.align--center {
  text-align: center;
}


.hu-eyebrow {
  font-family: var(--hu-font-display);
  font-size: 20px;
  font-weight: var(--hu-fw-medium);
  text-transform: uppercase;
  color: var(--hu-color-gold);
  display: block;
}

.hu-container {
  width: 100%;
  max-width: var(--hu-container-max);
  margin-inline: auto;
  padding-inline: var(--hu-container-px);
}

.hu-section {
  padding-block: var(--hu-section-py);
}

.hu-section--light {
  background-color: var(--hu-color-blush);
}

.hu-section--dark {
  background-color: var(--hu-color-dark);
  color: var(--hu-color-white);
}

.hu-section__header {
  margin-bottom: var(--hu-space-l);
}

.hu-section__header .hu-headline--2 {
  margin-top: var(--hu-space-xs);
  color: var(--hu-color-white-60);
}

.hu-mt-xs {
  margin-top: var(--hu-space-xs);
}

.hu-mt-s {
  margin-top: var(--hu-space-s);
}

.hu-mt-m {
  margin-top: var(--hu-space-m);
}

.hu-mt-l {
  margin-top: var(--hu-space-l);
}

.hu-mt-xl {
  margin-top: var(--hu-space-xl);
}

.hu-mt-2xl {
  margin-top: 100px;
}

.hu-mb-xs {
  margin-bottom: var(--hu-space-xs);
}

.hu-mb-s {
  margin-bottom: var(--hu-space-s);
}

.hu-mb-m {
  margin-bottom: var(--hu-space-m);
}

.hu-mb-l {
  margin-bottom: var(--hu-space-l);
}

.hu-mb-xl {
  margin-bottom: var(--hu-space-xl);
}

.hu-mb-2xl {
  margin-bottom: 100px;
}

.hu-spacing--xs {
  height: var(--hu-space-xs);
}

.hu-spacing--s {
  height: var(--hu-space-s);
}

.hu-spacing--m {
  height: var(--hu-space-m);
}

.hu-spacing--l {
  height: var(--hu-space-l);
}

.hu-spacing--xl {
  height: var(--hu-space-xl);
}

.hu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border-radius: var(--hu-radius-btn);
  font-family: var(--hu-font-body);
  font-weight: var(--hu-fw-medium);
  letter-spacing: -0.4px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--hu-transition), color var(--hu-transition), border-color var(--hu-transition), transform var(--hu-transition);
  text-decoration: none;
  background-color: var(--hu-color-white);
  color: var(--hu-color-dark);
  border: 1.5px solid var(--hu-color-white);
}

.hu-btn:hover {
  background-color: transparent;
  color: var(--hu-color-white);
  transform: translateY(-1px);
}

.hu-btn--l {
  font-size: var(--hu-fs-body-3);
  padding: 0.85em 2em;
  min-width: 160px;
}

.hu-btn--m {
  font-size: 17px;
  padding: 0.75em 1.75em;
  min-width: 130px;
}

.hu-btn--phantom {
  background-color: transparent;
  color: var(--hu-color-white);
  border-color: var(--hu-color-white);
}

.hu-btn--phantom:hover {
  background-color: var(--hu-color-white);
  color: var(--hu-color-dark);
}

.hu-btn--dark {
  background-color: var(--hu-color-dark);
  color: var(--hu-color-white);
  border-color: var(--hu-color-dark);
}

.hu-btn--dark:hover {
  background-color: transparent;
  color: var(--hu-color-dark);
}

.hu-btn--gold {
  background-color: var(--hu-color-gold);
  color: var(--hu-color-dark);
  border-color: var(--hu-color-gold);
}

.hu-btn--gold:hover {
  background-color: transparent;
  color: var(--hu-color-gold);
}

.hu-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hu-space-s);
  align-items: center;
  margin-top: var(--hu-space-m);
}



.hu--text .hu-title--1 {
  margin-top: 90px;
  margin-bottom: 90px;
}
.hu--text .hu-title--2 {
  margin-top: 80px;
  margin-bottom: 80px;
}
.hu--text .hu-title--3 {
  margin-top: 70px;
  margin-bottom: 70px;
}
.hu--text .hu-title--4 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.hu--text .hu-headline--1, .hu--text .has-headline-1-font-size {
  margin-top: 50px;
  margin-bottom: 30px;
}
.hu--text .hu-headline--2, .hu--text .has-headline-2-font-size {
  margin-top: 50px;
  margin-bottom: 30px;
}
.hu--text .hu-headline--3, .hu--text .has-headline-3-font-size {
  margin-top: 50px;
  margin-bottom: 30px;
}

.hu--text p, .hu--text ul, .hu--text ol {
  margin-bottom: 15px;
}
.hu--text ul, .hu--text ol {
  margin-left: 30px;
  list-style: initial;
}
.hu--text li {
  margin-bottom: 10px;
}



  /* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */

.hu-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color var(--hu-transition-slow), padding var(--hu-transition-slow), backdrop-filter var(--hu-transition-slow);
  background-color: transparent;
  backdrop-filter: none;
  padding: 20px 0;
}
.hu-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: -1;
  transition: 0.3s;
  pointer-events: none;
}

.hu-header.is-scrolled {
  background-color: rgba(18, 7, 1, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}
.hu-header.is-scrolled::after {
  opacity: 0;
}

.hu-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hu-space-m);
  height: 72px;
}

.hu-header__logo {
  flex-shrink: 0;
}

.hu-header__logo img {
  height: 40px;
  width: auto;
}

.hu-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.hu-nav__link {
  color: var(--hu-color-white);
  font-size: 0.9375rem;
  font-weight: var(--hu-fw-medium);
  letter-spacing: 0.025em;
  transition: color var(--hu-transition);
  position: relative;
}

.hu-nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--hu-color-gold);
  transition: width var(--hu-transition);
}

.hu-nav__link:hover {
  color: var(--hu-color-gold-light);
}

.hu-nav__link:hover::after {
  width: 100%;
}

.hu-header__actions .hu-btn {
  font-size: var(--hu-fs-body-3);
  padding: 0.65em 1.5em;
  background-color: transparent;
  color: var(--hu-color-white);
  border-color: var(--hu-color-white);
}

.hu-header__actions .hu-btn:hover {
  background-color: var(--hu-color-white);
  color: var(--hu-color-dark);
}

@media (max-width: 980px) {

  .hu-header__actions .hu-btn {
    padding: 8px 16px;
  }

}
@media (max-width: 570px) {

  .hu-header {
    padding: 10px 0;
  }
  .hu-header__actions .hu-btn {
    padding: 7px 14px;
    font-size: 15px;
  }

}


.hu-desktop-only {
  display: flex;
}

.hu-nav__mobile-btn {
  display: none;
}

.hu-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 110;
}

.hu-burger span {
  width: 100%;
  height: 2px;
  background-color: var(--hu-color-white);
  transition: var(--hu-transition);
  transform-origin: left;
}

.hu-burger.is-active span:nth-child(1) {
  transform: rotate(45deg);
}

.hu-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.hu-burger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .hu-desktop-only {
    display: none;
  }

  .hu-burger {
    display: flex;
    position: relative;
  }

  .hu-burger span {
    transform-origin: center;
  }

  .hu-burger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hu-burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hu-burger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hu-nav {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom right, var(--hu-color-dark), rgb(59, 35, 2));
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--hu-transition-slow);
    z-index: 105;
  }

  .hu-nav.is-active {
    transform: translateX(0);
  }

  .hu-nav__list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--hu-space-m);
    width: 100%;
  }

  .hu-nav__link {
    font-size: 1.2rem;
  }

  .hu-nav__mobile-btn {
    display: block;
    margin-top: var(--hu-space-m);
    width: auto;
  }
}

@media (max-width: 768px) {
  .hu-nav {
    display: none;
  }
}


/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */



.hu-hero {
  position: relative;
  min-height: 65svh;
  display: flex;
  align-items: flex-end;
  padding-block: 0;
  overflow: hidden;
  color: var(--hu-color-white);
}
.ti-widget {
  width: auto !important;
  display: inline-block !important;
  margin-bottom: 35px;
  transform: scale(0.9);
  transform-origin: left center;
}
.ti-header {
  padding: 12px !important;
}

.hu-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hu-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(18, 7, 1, 0.10) 0%,
      rgba(18, 7, 1, 0.25) 40%,
      rgba(18, 7, 1, 0.72) 100%);
  z-index: 1;
}

.hu-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}


.hu-hero__subtitle {
  font-family: var(--hu-font-subtitle);
  font-size: clamp(1.45rem, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  color: white;
  max-width: 540px;
  margin-bottom: 10px;
}

.hu-hero__title {
  color: var(--hu-color-white);
  margin-bottom: var(--hu-space-m);
  font-size: clamp(2.8rem, 9.5vw, 8rem);
  max-width: none;
}

@media (max-width: 1440px) {

  .hu-hero {
    min-height: 600px;
  }

  .ti-widget {
    margin-bottom: 15px;
  }

}
@media (max-width: 570px) {

  .hu-hero {
    min-height: 600px;
  }

}


/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */


.hu-services {
  background-color: var(--hu-color-dark);
  color: var(--hu-color-white);
  position: relative;
  overflow: hidden;
  padding-block: var(--hu-section-py);
}

.hu-services__watermark {
  position: absolute;
  right: -2%;
  bottom: 0;
  height: 92%;
  width: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  will-change: transform;
  transform: translateY(0);
  opacity: 0.2;
}

.hu-services__watermark img {
  height: 100%;
  width: auto;
  display: block;
  filter: contrast(100%);
}

.hu-services__inner {
  position: relative;
  z-index: 1;
  padding-top: 6vw;
  padding-bottom: 6vw;
}

.hu-service-item {
  /* padding-block: clamp(2.5rem, 5vw, 4rem); */
  padding-bottom: 60px;
}
.hu-service-item:last-child {
  padding-bottom: 0;
}

.hu-service-item__title {
  color: var(--hu-color-white);
  margin-bottom: var(--hu-space-s);
}

.hu-service-item__body {
  color: var(--hu-color-white);
  max-width: 590px;
  margin-bottom: var(--hu-space-m);
  font-weight: 400;
}

.hu-service-item .hu-btn {
  background-color: var(--hu-color-white);
  color: var(--hu-color-dark);
  border-color: var(--hu-color-white);
}

.hu-service-item .hu-btn:hover {
  background-color: transparent;
  color: var(--hu-color-white);
}

@media (max-width: 570px) {

  .hu-services__watermark {
    right: -22%;
    left: -30%;
    opacity: 0.15;
  }

}

/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */



.hu-reviews {
  background-color: var(--hu-color-dark);
  /* padding-block: var(--hu-section-py); */
  padding: 0;
  overflow: hidden;
}

.hu-reviews__viewport {
  overflow: hidden;
  width: 100%;
}

.hu-reviews__track {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hu-review-card {
  flex: 0 0 calc((100% - 2 * clamp(1rem, 2.5vw, 2rem)) / 3);
  display: flex;
  flex-direction: column;
  gap: var(--hu-space-m);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
}

.hu-review-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 1.25rem;
  color: var(--hu-color-gold);
}

.hu-review-card__text {
  font-size: var(--hu-fs-body-2);
  font-weight: var(--hu-fw-regular);
  line-height: 1.75;
  color: var(--hu-color-white);
  flex: 1;
}

.hu-review-card__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: auto;
}

.hu-review-card__name {
  font-size: var(--hu-fs-body-2);
  font-weight: var(--hu-fw-bold);
  color: var(--hu-color-white);
  letter-spacing: 0.01em;
}

.hu-review-card__age {
  font-size: var(--hu-fs-body-4);
  font-weight: var(--hu-fw-light);
  color: var(--hu-color-white);
  letter-spacing: 0.03em;
}

.hu-reviews-pagination.swiper-pagination {
  bottom: 8px;
}

.hu-reviews-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hu-reviews-pagination .swiper-pagination-bullet-active {
  background-color: var(--hu-color-gold);
  transform: scale(1.3);
}

.hu-reviews .swiper-wrapper {
  padding-bottom: 30px;
}

.hu-massage-card .hu-eyebrow {
  margin-bottom: -8px;
}
.hu-massage-card .hu-massage-card__name {

}

.hu-massage-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s ease;
}

.hu-massage-card:hover .hu-massage-card__image img {
  transform: scale(1.1);
}



@media (max-width: 768px) {
  .hu-review-card {
    flex: 0 0 100%;
  }
}

/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */



.hu-text-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hu-text-media--left .hu-text-media__media {
  order: -1;
}

.hu-text-media__content {
  display: flex;
  flex-direction: column;
  gap: var(--hu-space-s);
}

.hu-text-media__content .hu-btn-group {
  margin-top: var(--hu-space-m);
}

.hu-text-media__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--hu-radius-card);
}

.hu-text-media__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hu-text-media__media:hover img {
  transform: scale(1.04);
}

.hu-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: rgba(18, 7, 1, 0.08);
  border-radius: var(--hu-radius-card);
}

@media (max-width: 768px) {
  .hu-text-media {
    grid-template-columns: 1fr;
  }

  .hu-text-media--left .hu-text-media__media {
    order: 0;
  }
}

.hu-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.hu-card {
  background-color: var(--hu-color-white);
  border-radius: var(--hu-radius-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--hu-shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--hu-space-s);
  transition: transform var(--hu-transition), box-shadow var(--hu-transition);
}

.hu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(18, 7, 1, 0.16);
}

.hu-card--dark {
  background-color: var(--hu-color-dark-2);
  color: var(--hu-color-white);
  box-shadow: none;
}

.hu-card__icon {
  width: 40px;
  height: 40px;
  background-color: rgba(201, 168, 76, 0.15);
  border-radius: var(--hu-radius-sm);
  margin-bottom: var(--hu-space-xs);
}

.hu-card .hu-btn {
  margin-top: auto;
  align-self: flex-start;
}

.hu-card--dark .hu-btn {
  background-color: transparent;
  color: var(--hu-color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hu-card--dark .hu-btn:hover {
  background-color: var(--hu-color-white);
  color: var(--hu-color-dark);
  border-color: var(--hu-color-white);
}

.hu-banner {
  background-color: var(--hu-color-dark);
  color: var(--hu-color-white);
  padding-block: var(--hu-section-py);
}

.hu-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--hu-space-l);
}

@media (min-width: 768px) {
  .hu-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hu-banner__content {
  flex: 1;
  max-width: 560px;
}

.hu-banner__content .hu-title--3 {
  color: var(--hu-color-white);
  margin-bottom: var(--hu-space-s);
}

.hu-banner__content .hu-body--1 {
  color: var(--hu-color-white-60);
}

.hu-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hu-space-s);
  flex-shrink: 0;
}

.hu-cta {
  background-color: var(--hu-color-blush);
  text-align: center;
}

.hu-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hu-space-m);
  max-width: 640px;
  margin-inline: auto;
}

.hu-cta__inner .hu-title--3 {
  margin-bottom: 0;
}

.hu-cta__inner .hu-body--2 {
  color: rgba(18, 7, 1, 0.65);
}

.hu-cta__inner .hu-btn--dark {
  margin-top: var(--hu-space-xs);
}


/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */



.hu-footer {
  background-color: var(--hu-color-dark);
  color: var(--hu-color-white-90);
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
}

.hu-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--hu-space-m);
}

.hu-footer__brand {
  font-family: var(--hu-font-display);
  font-size: 1.5rem;
  letter-spacing: var(--hu-ls-wide);
  color: var(--hu-color-gold);
  text-transform: uppercase;
}

.hu-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hu-space-m);
}

.hu-footer__link {
  font-size: var(--hu-fs-body-4);
  letter-spacing: 0.04em;
  color: var(--hu-color-white-90);
  transition: color var(--hu-transition);
}

.hu-footer__link:hover {
  color: var(--hu-color-gold-light);
}

.hu-footer__copy {
  color: rgba(255, 255, 255, 0.35);
}

.hu-text--white {
  color: var(--hu-color-white);
}

.hu-text--gold {
  color: var(--hu-color-gold);
}

.hu-text--muted {
  color: var(--hu-color-white-90);
}

.hu-text--dark {
  color: var(--hu-color-dark);
}

.hu-divider {
  border: none;
  border-top: 1px solid rgba(18, 7, 1, 0.1);
  margin-block: var(--hu-space-l);
}

.hu-divider--light {
  border-top-color: rgba(255, 255, 255, 0.08);
}

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




/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */


.hu-massage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hu-space-2xl) var(--hu-space-xl);
}

.hu-massage-card {
  display: flex;
  flex-direction: column;
}

.hu-massage-card__name {
  font-family: var(--hu-font-subtitle);
  font-size: var(--hu-fs-headline-1);
  font-weight: var(--hu-fw-regular);
  color: var(--hu-color-white);
  line-height: 1;
  margin-top: 12px;
  margin-bottom: 16px;
}

.hu-massage-card__details {
  font-size: var(--hu-fs-body-3);
  color: var(--hu-color-white-90);
  line-height: 1.4;
  margin-bottom: var(--hu-space-m);
  margin-top: -6px;
}

.hu-massage-card__image {
  width: 100%;
  aspect-ratio: 15 / 10;
  overflow: hidden;
  border-radius: 28px;
}

.hu-massage-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hu-massage-card .hu-btn-group {
  margin-top: auto;
  padding-top: var(--hu-space-m);
}

@media (max-width: 1024px) {
  .hu-massage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hu-massage-grid {
    grid-template-columns: 1fr;
    gap: var(--hu-space-xl);
  }
}


/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */


.hu-petei {
  padding-bottom: 0;
}

.hu-petei__content {
  max-width: 1150px;
  z-index: 10;
  position: relative;
}
.hu-petei__content .hu-eyebrow {
  font-size: 30px;
}


.hu-petei__title {
  font-family: var(--hu-font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--hu-color-white);
  text-transform: uppercase;
  font-weight: var(--hu-fw-regular);
}

.hu-petei__meta {
  font-size: var(--hu-fs-body-2);
  color: var(--hu-color-white-90);
  line-height: 1.4;
  margin-bottom: var(--hu-space-m);
  margin-top: 20px;
}



.hu-petei__headline {
  font-family: var(--hu-font-subtitle);
  font-size: var(--hu-fs-headline-1);
  font-weight: var(--hu-fw-regular);
  color: var(--hu-color-white);
  line-height: 1.15;
}

.hu-petei__body {
  font-size: var(--hu-fs-body-3);
  color: var(--hu-color-white-90);
  line-height: 1.4;
  width: 70%;
}

@media (max-width: 668px) {
  .hu-petei__body {
    width: 100%;
  }
}

.hu-petei__body p+p {
  margin-top: 0.5rem;
}

.hu-petei__full-image {
  width: 100%;
  position: relative;
  margin-top: -5vw;
  pointer-events: none;
}
.hu-petei__full-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, var(--hu-color-dark), rgba(0, 0, 0, 0));
  z-index: -1;
  transition: 0.3s;
  pointer-events: none;
  z-index: 1;
}

.hu-petei__full-image img {
  width: 100%;
  max-height: 750px;
  display: block;
  object-fit: cover;
  object-position: top;
}

.hu-mt-3xl {
  margin-top: var(--hu-space-3xl);
}

@media (max-width: 1440px) {

  .hu-petei__full-image img {
    max-height: 500px;
  }

}
@media (max-width: 1110px) {

  .hu-petei__full-image img {
    max-height: 350px;
  }

}
@media (max-width: 768px) {

  .hu-petei__full-image {
    margin-top: 15px;
  }
  .hu-petei__full-image img {
    max-height: 250px;
  }
  .hu-petei__full-image::after {
    height: 20%;
  }

}


/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */



.hu-gift {
  padding-bottom: 0;
  overflow: hidden;
}

.hu-gift__content {
  max-width: 750px;
}

.hu-gift__title {
  font-family: var(--hu-font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--hu-color-white);
  text-transform: uppercase;
  font-weight: var(--hu-fw-regular);
}

.hu-gift__subtitle {
  font-family: var(--hu-font-subtitle);
  font-size: var(--hu-fs-headline-2);
  font-weight: var(--hu-fw-regular);
  color: var(--hu-color-white);
  line-height: 1.15;
}

.hu-gift__body {
  font-size: var(--hu-fs-body-2);
  color: var(--hu-color-white-80);
  line-height: 1.6;
}

.hu-gift__body p+p {
  margin-top: 0.1rem;
}


.hu-gift__full-image {
  position: relative;
  height: 410px;
  width: 100%;
}
.hu-gift__full-image__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hu-gift__full-image__gift {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  height: calc(100% + 400px);
  width: 850px;
  max-width: 90%;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
}

@media (max-width: 1640px) {

  .hu-gift__full-image__gift {
    width: 800px;
  }

}
@media (max-width: 1440px) {

  .hu-gift__full-image {
    height: 350px;
  }
  .hu-gift__full-image__gift {
    width: 750px;
  }

}
@media (max-width: 1110px) {

  .hu-gift__full-image {
    height: 300px;
  }
  .hu-gift__full-image__gift {
    width: 650px;
  }

}
@media (max-width: 768px) {

  .hu-gift__full-image {
    margin-top: var(--hu-space-xl);
  }

  .hu-gift__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

}
@media (max-width: 570px) {

  .hu-gift__full-image {
    height: 220px;
  }
  .hu-gift__full-image__gift {
    height: calc(100% + 60px);
  }

}

/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */


.hu-faq {
  background-color: #6E6C66;
  color: var(--hu-color-white);
  padding-top: 120px;
}

.hu-faq__grid {
  max-width: 900px;
}

.hu-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hu-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--hu-space-m) 0;
  text-align: left;
  color: var(--hu-color-white);
  font-family: var(--hu-font-body);
  font-size: var(--hu-fs-body-2);
  transition: opacity var(--hu-transition);
  font-weight: 500;
}

.hu-faq__trigger:hover {
  opacity: 0.7;
}

.hu-faq__trigger svg {
  width: 20px;
  height: 20px;
  transition: transform var(--hu-transition);
}

.hu-faq__item.is-active .hu-faq__trigger svg {
  transform: rotate(180deg);
}

.hu-faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hu-faq__body {
  padding-bottom: var(--hu-space-m);
  color: rgba(255, 255, 255, 0.7);
}


/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */


.hu-location__title {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.hu-location__map {
  filter: brightness(0.7) contrast(1.2);
  transition: 0.3s ease;
}

.hu-location__map:hover {
  filter: brightness(1) contrast(1);
}

.hu-location__grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: clamp(4rem, 15vw, 12rem);
}

.hu-location__col {
  display: flex;
  flex-direction: column;
  min-width: 250px;
}

@media (max-width: 768px) {
  .hu-location__title {
    text-align: left;
  }

  .hu-location__grid {
    grid-template-columns: 1fr;
    justify-content: flex-start;
    justify-items: flex-start;
    gap: var(--hu-space-l);
  }

  .hu-location__col {
    min-width: unset;
  }
}

/* --------------------------------- */
/* --------------------------------- */
/* --------------------------------- */

.hu-footer {
  cursor: default;
  padding-block: var(--hu-space-m);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--hu-color-dark);
}

.hu-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hu-space-m);
}

.hu-footer__logo img {
  height: 32px;
  width: auto;
}

.hu-footer__copyright {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--hu-fs-body-4);
  color: var(--hu-color-white-80);
}

.hu-footer__copyright a {
  transition: color var(--hu-transition);
}

.hu-footer__copyright a:hover {
  color: var(--hu-color-gold);
}

.hu-footer__divider {
  opacity: 0.3;
}

.hu-footer__socials {
  display: flex;
  align-items: center;
  gap: var(--hu-space-m);
}

.hu-footer__icon {
  display: block;
  transition: 0.15s;
}
.hu-footer__icon:hover {
  color: var(--hu-color-gold);
}

@media (max-width: 768px) {
  .hu-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--hu-space-l);
    padding-block: var(--hu-space-l);
  }

  .hu-footer__copyright {
    flex-direction: column;
    gap: var(--hu-space-xs);
    order: 3;
  }

  .hu-footer__socials {
    order: 2;
  }

  .hu-footer__logo {
    order: 1;
  }

  .hu-footer__divider {
    display: none;
  }
}


/* Popup */
.popup {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup:target {
  opacity: 1;
  pointer-events: unset;
}

.popup__bg {
  background: var(--hu-color-dark);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.popup__wrapper {
  width: calc(100% - 30px);
  max-width: 500px;
  max-height: 90vh;
  padding: 40px;
  padding-top: 70px;
  padding-bottom: 60px;
  background: var(--hu-color-dark);
  position: relative;
  border: 1px solid rgba(255,255,255,0.1)
}
.popup__close {
  position: absolute;
  top: 8px;
  right: 16px;
  opacity: 0.7;
  font-size: 20px;
}

@media (max-width: 570px) {

  .popup__wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

}


/* Opciones de reserva del popup */
.reservar__option {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  justify-content: space-between;
}
.reservar__option > span {
  display: flex;
  gap: 15px;
  align-items: center;
}