.booking-page {
  position: relative;
}

.booking-hero {
  padding-bottom: 72px;
}

.booking-hero__panel,
.booking-steps__panel,
.booking-faq__panel {
  position: relative;
  overflow: hidden;
}

.booking-hero__panel::after,
.booking-steps__panel::after,
.booking-faq__panel::after {
  content: "";
  position: absolute;
  inset: auto -48px -48px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 81, 132, 0.14), transparent 70%);
  pointer-events: none;
}

.booking-hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
}

.booking-hero__actions .social-btn {
  min-height: 46px;
}

.booking-hero__stats {
  display: grid;
  gap: 14px;
}

.booking-stat-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(234, 210, 207, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 241, 240, 0.72));
  box-shadow: 0 18px 32px rgba(36, 24, 53, 0.08);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.booking-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(36, 24, 53, 0.12);
  border-color: rgba(199, 81, 132, 0.28);
}

.booking-stat-card--accent {
  background: linear-gradient(135deg, rgba(36, 24, 53, 0.97), rgba(70, 40, 89, 0.96));
  border-color: rgba(36, 24, 53, 0.95);
  color: var(--color-white);
}

.booking-stat-card__label {
  display: block;
  color: var(--color-pale-oyster);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.booking-stat-card__value {
  display: block;
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--color-revolver);
}

.booking-stat-card--accent .booking-stat-card__label,
.booking-stat-card--accent .booking-stat-card__value,
.booking-stat-card--accent .booking-stat-card__hint {
  color: var(--color-white);
}

.booking-stat-card__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--color-scorpion);
  font-size: 14px;
  line-height: 1.6;
}

.booking-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.booking-section-title {
  font-size: 36px;
  line-height: 1.25;
}

.booking-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.booking-filter__button,
.booking-date-switcher__button {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(234, 210, 207, 0.9);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-scorpion);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition:
    transform var(--transition-base),
    color var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.booking-filter__button:hover,
.booking-date-switcher__button:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 81, 132, 0.34);
  color: var(--color-revolver);
  box-shadow: 0 14px 24px rgba(36, 24, 53, 0.08);
}

.booking-filter__button.is-active,
.booking-date-switcher__button.is-active {
  background: var(--color-revolver);
  color: var(--color-white);
  border-color: var(--color-revolver);
  box-shadow: 0 18px 30px rgba(36, 24, 53, 0.15);
}

.booking-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.booking-room-card,
.booking-schedule-panel,
.booking-step-card,
.booking-faq-item {
  border: 1px solid rgba(234, 210, 207, 0.7);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.booking-room-card {
  padding: 24px;
  border-radius: 24px;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    opacity var(--transition-base);
}

.booking-room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(36, 24, 53, 0.12);
  border-color: rgba(199, 81, 132, 0.26);
}

.booking-room-card.is-hidden {
  display: none;
}

.booking-room-card__top,
.booking-room-card__foot,
.booking-schedule-panel__head,
.booking-summary-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-room-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.booking-room-card__badge--available {
  background: rgba(0, 130, 54, 0.12);
  color: #0b7f41;
}

.booking-room-card__badge--limited {
  background: rgba(181, 150, 112, 0.16);
  color: #8d6c41;
}

.booking-room-card__badge--booked {
  background: rgba(199, 81, 132, 0.12);
  color: var(--color-mulberry);
}

.booking-room-card__meta,
.booking-room-card__list,
.booking-schedule-panel__kicker,
.booking-summary-box__label {
  color: var(--color-scorpion);
  font-size: 14px;
  line-height: 1.7;
}

.booking-room-card__meta i,
.booking-room-card__list i,
.booking-step-card__icon i,
.booking-faq-item i,
.booking-summary-box__cta i,
.booking-stat-card__hint i {
  color: var(--color-mulberry);
}

.booking-room-card__title,
.booking-schedule-panel__title,
.booking-step-card h3 {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0.4px;
}

.booking-room-card__text,
.booking-step-card p {
  margin-top: 10px;
  color: var(--color-scorpion);
  font-size: 16px;
  line-height: 1.9;
}

.booking-room-card__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.booking-room-card__list li + li {
  margin-top: 6px;
}

.booking-room-card__price {
  color: var(--color-mulberry);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.booking-room-card__cta {
  padding-inline: 18px;
}

.booking-schedule-panel {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
}

.booking-schedule-panel__status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(199, 81, 132, 0.1);
  color: var(--color-mulberry);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.booking-schedule-panel__kicker {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-date-switcher {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.booking-schedule-view {
  display: none;
  margin-top: 22px;
}

.booking-schedule-view.is-active {
  display: block;
  animation: fadePanel 0.35s ease;
}

.booking-slot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-slot {
  min-height: 86px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(234, 210, 207, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 241, 240, 0.7));
  text-align: left;
  cursor: pointer;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.booking-slot span,
.booking-summary-box__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--color-revolver);
}

.booking-slot small {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-scorpion);
}

.booking-slot:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 81, 132, 0.3);
  box-shadow: 0 16px 24px rgba(36, 24, 53, 0.1);
}

.booking-slot.is-selected {
  background: var(--color-revolver);
  border-color: var(--color-revolver);
  box-shadow: 0 18px 30px rgba(36, 24, 53, 0.18);
}

.booking-slot.is-selected span,
.booking-slot.is-selected small {
  color: var(--color-white);
}

.booking-summary-box {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(234, 210, 207, 0.6);
  align-items: flex-end;
}

.booking-summary-box__label {
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.booking-summary-box__cta {
  flex-shrink: 0;
}

.booking-steps__grid {
  margin-top: 24px;
}

.booking-step-card {
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.booking-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 81, 132, 0.28);
  box-shadow: 0 24px 38px rgba(36, 24, 53, 0.1);
}

.booking-step-card__num {
  display: inline-flex;
  min-width: 40px;
  justify-content: center;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(199, 81, 132, 0.08);
  color: var(--color-mulberry);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.booking-step-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(234, 210, 207, 0.8);
  background: rgba(255, 255, 255, 0.92);
  font-size: 24px;
}

.booking-faq__list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.booking-faq-item {
  border-radius: 20px;
  padding: 0 22px;
}

.booking-faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.booking-faq-item summary::-webkit-details-marker {
  display: none;
}

.booking-faq-item p {
  margin: 0 0 22px 34px;
  color: var(--color-scorpion);
  font-size: 16px;
  line-height: 1.9;
}

.hero {
  min-height: 810px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(0);
}

.hero::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -240px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: rgba(250, 241, 240, 0.45);
  filter: blur(70px);
  animation: floatOrb 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  left: -144px;
  bottom: -144px;
  width: 576px;
  height: 576px;
  border-radius: 50%;
  background: rgba(234, 210, 207, 0.18);
  filter: blur(64px);
  animation: floatOrb 11s ease-in-out infinite alternate-reverse;
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: 850px;
  padding-right: 101px;
  z-index: 1;
}

.hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 77.5px;
  line-height: 89.15px;
  font-weight: 700;
  letter-spacing: -1.938px;
  color: var(--color-revolver);
  white-space: nowrap;
}

.hero__subtitle {
  margin-top: 12.31px;
  font-family: var(--font-serif);
  font-size: 48.3px;
  line-height: 53.71px;
  letter-spacing: -1.938px;
  color: var(--color-mulberry);
}

.hero__text {
  margin-top: 35.6px;
  max-width: 656px;
  color: var(--color-scorpion);
  font-size: 20.1px;
  line-height: 32.6px;
  letter-spacing: 0.638px;
}

.hero__actions {
  margin-top: 54px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.button-primary--rounded {
  width: 168px;
  padding: 17px 3px;
  border-radius: var(--radius-md);
  font-weight: 700;
  letter-spacing: 3.101px;
  color: white;
}

.hero__hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-scorpion);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero__hint::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-mulberry), transparent);
}

.hero__contact {
  margin-top: 36px;
  padding-top: 21px;
  border-top: 1px solid var(--color-mine-shaft);
}

.hero__contact-kicker {
  font-family: var(--font-mono);
  font-size: 15.5px;
  line-height: 20.67px;
  font-weight: 700;
  letter-spacing: 3.876px;
  color: var(--color-scorpion);
  text-transform: uppercase;
}

.hero__contact-title {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 20.67px;
  font-weight: 700;
  letter-spacing: 3.876px;
}

.hero__socials {
  margin-top: 18px;
  display: flex;
  gap: 11.4px;
  align-items: center;
  flex-wrap: wrap;
  overflow: visible;
  padding-bottom: 0;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9.11px;
  border: 1px solid var(--color-oyster-pink);
  border-radius: var(--radius-md);
  padding: 10.12px 14.68px;
  font-family: var(--font-jakarta);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 20.67px;
  letter-spacing: 0.638px;
  white-space: nowrap;
  text-align: center;
  background: rgba(255, 255, 255, 0.487);
  box-shadow: 0 10px 20px rgba(36, 24, 53, 0.05);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}

.social-btn__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}

.social-btn__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.social-btn__icon i,
.advantage-card__icon i,
.dashboard-card__icon i,
.notice__title i,
.notice li i,
.location__meta i {
  line-height: 1;
}

.social-btn__icon i {
  font-size: 18px;
}

.social-btn--instagram .social-btn__icon i {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.social-btn--facebook .social-btn__icon i {
  color: #1877f2;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 81, 132, 0.35);
  box-shadow: 0 16px 28px rgba(36, 24, 53, 0.09);
  background: white;
}

.social-btn--line {
  background: #008236;
  color: #f1ede9;
  height: 54px;
  width: 265px;
  padding: 10.12px 14.68px;
  border-radius: 18px;
  gap: 12px;
}

.social-btn--line:hover {
  background: #006b2d;
}

.social-label {
  font-family: var(--font-jakarta);
  font-weight: 700;
  font-size: 15.5px;
  color: #494949;
  white-space: nowrap;
}

.location[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.location.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-box {
  margin-top: 54.7px;
  position: relative;
  padding: 72.97px 54.72px 54.72px;
  border: 1px solid rgba(234, 210, 207, 0.6);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(251, 249, 246, 0.92)
    ),
    var(--color-spring-wood-2);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-box::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 81, 132, 0.18),
    transparent 70%
  );
}

.feature-box__grid {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  padding: 4.56px 13.68px;
  background: rgba(199, 81, 132, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-mulberry);
  font-size: 15.5px;
  line-height: 20.67px;
  font-weight: 700;
  letter-spacing: 1.55px;
}

.feature-box__title {
  margin-top: 17.2px;
  font-family: var(--font-serif);
  font-size: 30.6px;
  line-height: 40.86px;
  font-weight: 700;
  letter-spacing: 0.638px;
}

.feature-box__text {
  margin-top: 17.2px;
  font-size: 17.9px;
  line-height: 29px;
  letter-spacing: 0.638px;
  color: var(--color-scorpion);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  align-content: start;
}

.tag-list__item {
  padding: 9.11px 16.96px 10.77px;
  background: white;
  border: 1px solid rgba(234, 210, 207, 0.5);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.01);
  font-size: 15.5px;
  line-height: 20.67px;
  font-weight: 500;
  color: rgba(36, 24, 53, 0.8);
  letter-spacing: 0.388px;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.tag-list__item:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 81, 132, 0.24);
  box-shadow: 0 14px 24px rgba(36, 24, 53, 0.08);
}

.advantage {
  margin-top: 54.72px;
  position: relative;
  min-height: 520px;
}

.advantage__head {
  padding-bottom: 19.24px;
  border-bottom: 1px solid rgba(234, 210, 207, 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.advantage__kicker {
  font-family: var(--font-mono);
  font-size: 15.5px;
  line-height: 20.67px;
  font-weight: 700;
  letter-spacing: 3.876px;
  color: var(--color-teak);
}

.advantage__title {
  margin-top: 6.8px;
  font-family: var(--font-serif);
  font-size: 25.2px;
  line-height: 35.24px;
  letter-spacing: 0.638px;
}

.advantage__controls,
.dashboard__controls {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.advantage__control,
.dashboard__control {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(234, 210, 207, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(36, 24, 53, 0.68);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(36, 24, 53, 0.06);
  transition:
    transform var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.advantage__control:hover,
.dashboard__control:hover {
  transform: translateY(-2px);
  color: var(--color-mulberry);
  border-color: rgba(199, 81, 132, 0.3);
  box-shadow: 0 12px 24px rgba(36, 24, 53, 0.1);
}

.advantage__control:disabled,
.dashboard__control:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.advantage__control i,
.dashboard__control i {
  font-size: 18px;
  line-height: 1;
}

.advantage__cards-wrap {
  position: relative;
  margin-top: 36px;
}

.advantage__cards {
  position: relative;
  margin-top: 0;
  padding: 18px 0 18px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.advantage__cards::-webkit-scrollbar,
.dashboard__tabs::-webkit-scrollbar {
  display: none;
}

.advantage__cards > * {
  position: relative;
  z-index: 1;
  flex: 0 0 calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
}

.advantage-card {
  min-height: 385px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(234, 210, 207, 0.9);
  border-radius: 22px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: none;
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 36px rgba(36, 24, 53, 0.07);
  border-color: rgba(199, 81, 132, 0.24);
}

.advantage-card__icon,
.dashboard-card__icon {
  width: 54.72px;
  height: 54.72px;
  border: 1px solid var(--color-oyster-pink);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: var(--color-spring-wood);
  font-size: 24px;
}

.advantage-card__icon {
  color: #c75184;
}

.dashboard-card__icon {
  color: var(--color-mulberry);
  transition:
    color var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.dashboard-card--active .dashboard-card__icon {
  color: var(--color-spring-wood-2);
  background: rgba(251, 249, 246, 0.1);
  border-color: rgba(251, 249, 246, 0.22);
  box-shadow: inset 0 0 0 1px rgba(251, 249, 246, 0.04);
}

.advantage-card__title {
  margin-top: 21.8px;
  font-family: var(--font-serif);
  font-size: 20.1px;
  line-height: 30.1px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.advantage-card__text {
  margin-top: 9.11px;
  color: var(--color-scorpion);
  font-size: 17.9px;
  line-height: 29px;
  letter-spacing: 0.638px;
}

.advantage-card__num {
  margin-top: 18.24px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 15.5px;
  line-height: 20.67px;
  font-weight: 700;
  letter-spacing: 0.775px;
  color: var(--color-mulberry);
}

.advantage__progress,
.dashboard__progress {
  margin-top: 14px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(234, 210, 207, 0.45);
  overflow: hidden;
}

.advantage__progress-bar,
.dashboard__progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--color-mulberry);
  transition:
    width 240ms ease,
    transform 240ms ease;
}

.intro {
  background: white;
  border-top: 1px solid rgba(234, 210, 207, 0.4);
  border-bottom: 1px solid rgba(234, 210, 207, 0.4);
}

.intro__copy {
  max-width: 766px;
  margin-top: 22.8px;
  color: var(--color-scorpion);
  font-size: 17.9px;
  line-height: 29px;
  letter-spacing: 0.638px;
}

.dashboard {
  margin-top: 72.95px;
}

.dashboard__head {
  padding-bottom: 14.68px;
  border-bottom: 1px solid rgba(234, 210, 207, 0.4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.dashboard__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 15.5px;
  line-height: 20.67px;
  letter-spacing: 1.55px;
  color: var(--color-teak);
  text-transform: uppercase;
}

.dashboard__label::before {
  content: "";
  width: 11.39px;
  height: 11.39px;
  border-radius: 50%;
  background: var(--color-mulberry);
}

.dashboard__tabs {
  margin-top: 27.4px;
  padding: 18px 0 18px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.dashboard__tabs > * {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}

.dashboard__progress {
  margin-top: 0;
}

.dashboard-card {
  appearance: none;
  width: 100%;
  position: relative;
  background: #fcfbf9;
  border: 1px solid rgba(234, 210, 207, 0.4);
  border-radius: var(--radius-md);
  padding: 23.8px;
  min-height: 173.67px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-align: left;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background var(--transition-base);
}

.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.dashboard-card--active {
  background: var(--color-revolver);
  border-color: var(--color-revolver);
  color: var(--color-spring-wood-2);
  box-shadow: var(--shadow-float);
}

.dashboard-card--active::before {
  background: var(--color-mulberry);
}

.dashboard-card__top {
  display: flex;
  gap: 15.95px;
  align-items: flex-start;
}

.dashboard-card__title {
  font-family: var(--font-serif);
  font-size: 17.9px;
  line-height: 25.54px;
  font-weight: 700;
  letter-spacing: 0.447px;
}

.dashboard-card__desc {
  margin-top: 4.55px;
  font-size: 15.5px;
  line-height: 25.19px;
  letter-spacing: 0.638px;
  color: var(--color-scorpion);
  font-weight: 500;
}

.dashboard-card--active .dashboard-card__desc {
  color: rgba(250, 249, 246, 0.85);
}

.dashboard-card__foot {
  border-top: 1px dashed rgba(36, 24, 53, 0.1);
  padding-top: 12.4px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(104, 89, 95, 0.6);
  text-transform: uppercase;
}

.dashboard-card--active .dashboard-card__foot {
  border-color: rgba(251, 249, 246, 0.1);
  color: var(--color-mulberry);
}

.locker {
  margin-top: 18.24px;
  background: #fcfbf9;
  border: 1px solid var(--color-oyster-pink);
  border-radius: var(--radius-lg);
  padding: 46.6px;
  min-height: 520px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.locker__panel {
  display: none;
  animation: fadePanel 0.45s ease;
}

.locker__panel.is-active {
  display: block;
}

.locker__head {
  padding-bottom: 23.8px;
  border-bottom: 1px solid rgba(234, 210, 207, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.locker__kicker {
  font-family: var(--font-mono);
  font-size: 15.5px;
  line-height: 20.67px;
  font-weight: 700;
  letter-spacing: 1.55px;
  color: var(--color-teak);
  text-transform: uppercase;
}

.locker__title {
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: 25.2px;
  line-height: 35.24px;
  font-weight: 700;
  letter-spacing: 0.638px;
}

.locker__badge {
  padding: 5.56px 16.96px;
  border: 1px solid rgba(224, 125, 126, 0.2);
  background: rgba(224, 125, 126, 0.1);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.775px;
  white-space: nowrap;
}

.locker__text {
  margin-top: 36.5px;
  font-size: 15.5px;
  line-height: 25.19px;
  letter-spacing: 0.638px;
  color: var(--color-scorpion);
}

.locker__faq {
  margin-top: 28px;
}

.locker__faq-item {
  padding: 28px 0;
}

.locker__faq-item + .locker__faq-item {
  border-top: 1px solid rgba(234, 210, 207, 0.4);
}

.locker__faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-revolver);
  font-size: 17.9px;
  line-height: 29px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.locker__faq-question i {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  margin-top: 4px;
  color: var(--color-mulberry);
}

.locker__faq-answer {
  margin: 12px 0 0 30px;
  color: var(--color-scorpion);
  font-size: 15.5px;
  line-height: 31px;
  letter-spacing: 0.45px;
}

.locker__faq-answer strong {
  color: #c52828;
  font-weight: 700;
}

.locker__prices {
  margin-top: 18.24px;
}

.price-card {
  position: relative;
  background: white;
  border: 1px solid rgba(234, 210, 207, 0.55);
  border-radius: var(--radius-md);
  padding: 27.36px 28.36px 28.36px;
  text-align: center;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 13.68px);
  width: 27.36px;
  height: 3px;
  background: var(--color-new-york-pink);
}

.price-card:nth-child(2)::before {
  background: var(--color-mulberry);
}

.price-card:nth-child(3)::before {
  background: var(--color-revolver);
}

.price-card__name {
  font-size: 15.5px;
  line-height: 20.67px;
  font-weight: 700;
  letter-spacing: 0.775px;
  color: var(--color-scorpion);
}

.price-card__price {
  margin-top: 13.7px;
  font-family: var(--font-serif);
  font-size: 30.6px;
  line-height: 40.86px;
  font-weight: 700;
}

.price-card__price span {
  font-family: var(--font-jakarta);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--color-scorpion);
}

.price-card__desc {
  margin-top: 13.7px;
  font-size: 15.5px;
  line-height: 25.19px;
  color: var(--color-scorpion);
  letter-spacing: 0.638px;
}

.notice {
  margin-top: 18.24px;
  background: rgba(252, 250, 249, 0.4);
  border-radius: var(--radius-md);
  padding: 22.8px;
  color: var(--color-scorpion);
  font-size: 15.5px;
  line-height: 25.19px;
  letter-spacing: 0.638px;
  border: 1px solid rgba(234, 210, 207, 0.5);
}

.notice__title {
  display: flex;
  gap: 6.83px;
  align-items: center;
  color: var(--color-revolver);
  font-weight: 700;
  margin-bottom: 15.64px;
}

.notice ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.notice li + li {
  margin-top: 8.7px;
}

.notice li i,
.location__meta i {
  margin-right: 8px;
  color: var(--color-mulberry);
}

.spaces {
  background: var(--color-spring-wood);
  padding-bottom: 76px;
}

.spaces__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.spaces__more {
  border-bottom: 1px solid var(--color-scorpion);
  padding-bottom: 2px;
  font-size: 15.5px;
  line-height: 20.67px;
  font-weight: 700;
  letter-spacing: 1.55px;
  color: var(--color-scorpion);
}

.spaces__grid {
  margin-top: 20px;
}

.space-card {
  display: block;
  background: white;
  border: 1px solid var(--color-oyster-pink);
  border-radius: var(--radius-lg);
  padding: 14.68px;
  min-height: 543px;
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.space-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-float);
  border-color: rgba(199, 81, 132, 0.24);
}

.space-card__image-wrap {
  position: relative;
  border: 1px solid var(--color-spring-wood);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 291px;
}

.space-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.space-card:hover .space-card__image {
  transform: scale(1.06);
}

.space-card__badge {
  position: absolute;
  left: 13.67px;
  top: 13.68px;
  background: var(--color-pale-oyster);
  color: white;
  border-radius: var(--radius-sm);
  padding: 4.56px 11.39px;
  font-family: var(--font-jakarta);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 20.67px;
  letter-spacing: 0.775px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.space-card__caption {
  position: absolute;
  left: 13.67px;
  bottom: 13.3px;
  background: rgba(36, 24, 53, 0.9);
  color: white;
  border-radius: var(--radius-sm);
  padding: 4.56px 11.4px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 20.67px;
  letter-spacing: 1.55px;
}

.space-card__body {
  padding: 22.8px 9.12px 0;
}

.space-card__title {
  font-family: var(--font-serif);
  font-size: 25.2px;
  line-height: 35.24px;
  font-weight: 600;
  letter-spacing: 0.638px;
}

.space-card__desc {
  margin-top: 11.4px;
  color: var(--color-scorpion);
  font-size: 15.5px;
  line-height: 25.19px;
  letter-spacing: 0.638px;
  font-weight: 500;
}

.space-card__foot {
  margin: 36.48px 9.11px 0;
  padding-top: 19.24px;
  border-top: 1px solid var(--color-spring-wood);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 20.67px;
  letter-spacing: 0.638px;
}

.space-card__price {
  color: var(--color-mulberry);
}

.space-card__detail {
  color: var(--color-scorpion);
}

.location {
  background: white;
  border-top: 1px solid var(--color-oyster-pink);
  padding: 92.2px 0 91.2px;
}

.location__grid {
}

.location__title {
  margin-top: 26.4px;
  font-family: var(--font-serif);
  font-size: 30.6px;
  line-height: 40.86px;
  letter-spacing: 0.638px;
}

.location__text {
  margin-top: 26.4px;
  font-size: 17.9px;
  line-height: 35.75px;
  letter-spacing: 0.638px;
  color: var(--color-scorpion);
}

.location__meta {
  margin-top: 26.4px;
  display: flex;
  flex-direction: column;
  gap: 15.95px;
  font-size: 15.5px;
  line-height: 20.67px;
  font-weight: 500;
  letter-spacing: 0.638px;
  color: var(--color-revolver);
}

.location__map {
  border: 1px solid var(--color-oyster-pink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 364.5px;
  background: #fcfbf9;
  box-shadow: var(--shadow-card);
}

.location__map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes floatOrb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(20px, 28px, 0) scale(1.08);
  }
}

@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 96px 0;
  }

  .booking-hero__panel {
    grid-template-columns: 1fr;
  }

  .booking-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-filter {
    justify-content: flex-start;
  }

  .booking-card-grid {
    grid-template-columns: 1fr;
  }

  .booking-schedule-panel {
    position: static;
  }

  .booking-summary-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    padding-right: 0;
  }

  .hero__title {
    font-size: 58px;
    line-height: 1.12;
  }

  .hero__subtitle {
    font-size: 36px;
    line-height: 1.2;
  }

  .space-card {
    min-height: auto;
  }

}

@media (max-width: 768px) {
  .advantage__head,
  .dashboard__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .advantage__controls,
  .dashboard__controls {
    width: 100%;
    justify-content: flex-end;
  }

  .advantage__cards,
  .dashboard__tabs {
    padding-bottom: 14px;
  }

  .advantage__cards > *,
  .dashboard__tabs > * {
    flex-basis: 280px;
    max-width: 280px;
  }

  .hero {
    padding: 72px 0;
  }

  .booking-hero {
    padding-bottom: 48px;
  }

  .booking-section-title {
    font-size: 30px;
  }

  .booking-filter,
  .booking-date-switcher {
    width: 100%;
  }

  .booking-filter__button,
  .booking-date-switcher__button {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }

  .booking-hero__actions .social-btn,
  .booking-room-card__cta,
  .booking-summary-box__cta {
    width: 100%;
  }

  .booking-stat-card,
  .booking-room-card,
  .booking-schedule-panel,
  .booking-step-card,
  .booking-faq-item {
    border-radius: 20px;
  }

  .booking-schedule-panel,
  .booking-room-card,
  .booking-step-card {
    padding: 22px 18px;
  }

  .booking-slot-list {
    grid-template-columns: 1fr;
  }

  .booking-slot span,
  .booking-summary-box__value {
    font-size: 19px;
  }

  .booking-room-card__top,
  .booking-room-card__foot,
  .booking-schedule-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-room-card__foot {
    margin-top: 18px;
  }

  .booking-faq-item {
    padding: 0 18px;
  }

  .booking-faq-item summary {
    font-size: 18px;
    min-height: 64px;
  }

  .booking-faq-item p {
    margin-left: 0;
    font-size: 15px;
  }

  .hero__title {
    font-size: 42px;
    white-space: normal;
  }

  .hero__subtitle {
    font-size: 27px;
  }

  .hero__text {
    font-size: 17px;
    line-height: 30px;
  }

  .hero__actions {
    align-items: flex-start;
  }

  .button-primary--rounded {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .hero__hint {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .hero__contact {
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
  }

  .hero__contact-kicker {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 3px;
  }

  .hero__contact-title {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1.8px;
  }

  .hero__socials {
    margin-top: 20px;
    justify-content: center;
    gap: 16px 12px;
  }

  .social-btn--line {
    width: min(100%, 360px);
    min-height: 62px;
    height: auto;
    padding: 14px 18px;
    justify-content: center;
    margin-inline: auto;
    font-size: 14px;
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(0, 130, 54, 0.18);
  }

  .social-label {
    width: 100%;
    text-align: center;
    font-size: 14px;
    margin-top: 4px;
  }

  .social-btn:not(.social-btn--line) {
    min-width: 150px;
    min-height: 52px;
    justify-content: center;
    border-radius: 18px;
    padding-inline: 18px;
  }

  .feature-box {
    padding: 36px 22px;
  }

  .locker {
    padding: 28px 18px;
  }

  .locker__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .spaces__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .location__map {
    height: 260px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .location[data-reveal] {
    opacity: 1;
    transform: none;
  }
}
