.glass-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-soft);
}

.text-shadow-elegant {
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.btn-gold {
  background: var(--gradient-button-dark);
  color: #ffffff !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.btn-gold:hover {
  background: var(--gradient-button-dark-hover);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.btn-outline-gold {
  border: 1px solid var(--color-primary-container);
  color: var(--color-primary-container);
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: rgba(44, 41, 38, 0.05);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-rose {
  background: var(--gradient-button-rose);
  color: #fff;
  box-shadow: var(--shadow-cta);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(201, 131, 115, 0.28);
  filter: saturate(1.04);
}

.card-glass {
  background: var(--color-surface-light);
  border: 1px solid var(--color-outline-soft);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.card-glass:hover {
  border-color: var(--color-outline);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.coverflow-track {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  touch-action: pan-y;
  user-select: none;
}

.coverflow-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(220px, 18vw, 270px);
  height: clamp(340px, 31vw, 392px);
  border-radius: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.55s ease, opacity 0.55s ease, filter 0.55s ease;
  will-change: transform, opacity, filter;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  box-shadow: var(--shadow-card);
  background: #d7b19d;
}

.coverflow-card.is-dragging {
  transition: none;
  cursor: grabbing;
}

.coverflow-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}

.coverflow-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(0deg, rgba(61, 43, 33, 0.88) 0%, rgba(61, 43, 33, 0.20) 48%, rgba(61, 43, 33, 0) 74%);
}

.coverflow-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 35%);
  mix-blend-mode: screen;
}

.coverflow-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 46%;
  padding: 28px 22px 24px;
  color: #fff8f3;
}

.coverflow-card__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-bottom: 10px;
}

.coverflow-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  text-wrap: balance;
}

.coverflow-card__desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 18ch;
  opacity: 0.92;
  text-wrap: balance;
}

.treatment-benefit {
  position: relative;
  padding: 0 18px;
}

.treatment-benefit:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(147, 114, 98, 0.20);
}

.treatment-benefit-icon {
  width: 68px;
  height: 68px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: rgba(207, 143, 128, 0.14);
  color: var(--color-rose-text);
  box-shadow: inset 0 0 0 1px rgba(185, 125, 109, 0.12);
}

.promo-slider {
  position: relative;
  overflow: hidden;
  background: #241b15;
}

.promo-slider__track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.promo-slide {
  min-width: 100%;
  position: relative;
}

.promo-slide__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.promo-slider__button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 9999px;
  background: rgba(255, 248, 240, 0.84);
  color: #2f231c;
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.promo-slider__button:hover {
  background: #fff8f0;
  transform: translateY(-50%) scale(1.04);
}

.promo-slider__button--prev {
  left: 24px;
}

.promo-slider__button--next {
  right: 24px;
}

.promo-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.promo-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 9999px;
  background: rgba(255, 248, 240, 0.48);
  transition: width 0.25s ease, background 0.25s ease;
}

.promo-slider__dot.is-active {
  width: 26px;
  background: #fff8f0;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.services-menu {
  display: grid;
  gap: 10px;
}

.service-tab {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(92, 68, 52, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.74);
  color: #51382a;
  text-align: left;
  box-shadow: 0 16px 34px rgba(89, 63, 44, 0.08);
  transition: background 0.26s ease, border-color 0.26s ease, transform 0.26s ease;
}

.service-tab:hover,
.service-tab:focus,
.service-tab.is-active {
  background: rgba(61, 43, 33, 0.94);
  border-color: rgba(216, 170, 136, 0.40);
  color: #fff7ed;
  transform: translateX(4px);
  outline: none;
}

.service-tab__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(145, 101, 83, 0.11);
  color: currentColor;
}

.service-tab__eyebrow {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.service-tab__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.service-tab__arrow {
  font-size: 20px;
  opacity: 0.72;
  transition: transform 0.26s ease;
}

.service-tab.is-active .service-tab__arrow {
  transform: rotate(-90deg);
}

.services-panel {
  min-height: 340px;
  padding: 28px;
  border: 1px solid rgba(92, 68, 52, 0.15);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(245, 231, 211, 0.90) 100%);
  box-shadow: 0 24px 60px rgba(89, 63, 44, 0.12);
}

.services-panel__intro {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.services-panel__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 9999px;
  background: #fff8ef;
  color: #916553;
  box-shadow: inset 0 0 0 1px rgba(145, 101, 83, 0.14);
}

.services-panel__eyebrow {
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a47863;
}

.services-panel__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: #4c3528;
}

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

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(92, 68, 52, 0.12);
  border-radius: 15px;
  background: rgba(255, 250, 244, 0.66);
  color: #4c3528;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.service-link:hover,
.service-link:focus {
  background: rgba(61, 43, 33, 0.94);
  border-color: rgba(216, 170, 136, 0.42);
  color: #fff7ed;
  transform: translateY(-2px);
  outline: none;
}

.service-link .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 18px;
}

.service-modal-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.service-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(211, 169, 132, 0.20), transparent 32%),
    rgba(19, 14, 11, 0.68);
  backdrop-filter: blur(10px);
}

.service-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(151, 105, 79, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 251, 246, 0.98) 0%, rgba(245, 229, 207, 0.98) 100%);
  color: #443025;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.26s ease;
}

.service-modal.is-open .service-modal__dialog {
  transform: translateY(0) scale(1);
}

.service-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(92, 68, 52, 0.12);
  border-radius: 9999px;
  background: rgba(255, 250, 244, 0.86);
  color: #5b3d2d;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}

.service-modal__close:hover,
.service-modal__close:focus {
  background: #3d2b21;
  color: #fff7ed;
  outline: none;
  transform: rotate(5deg) scale(1.04);
}

.service-modal__eyebrow {
  max-width: calc(100% - 58px);
  margin-bottom: 12px;
  color: #9d6f58;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-modal__title {
  max-width: calc(100% - 58px);
  margin-bottom: 22px;
  color: #3f2c22;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.service-modal__body {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(92, 68, 52, 0.12);
}

.service-modal__body p {
  color: rgba(61, 43, 33, 0.86);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.72;
}

.service-modal__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.service-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 9999px;
  background: #2c251f;
  color: #fff8ef;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(44, 37, 31, 0.22);
  transition: transform 0.22s ease, background 0.22s ease;
}

.service-modal__cta:hover,
.service-modal__cta:focus {
  background: #4f3527;
  color: #fff8ef;
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .promo-slide__image {
    min-height: 260px;
  }

  .promo-slider__button {
    width: 38px;
    height: 38px;
  }

  .promo-slider__button--prev {
    left: 12px;
  }

  .promo-slider__button--next {
    right: 12px;
  }

  .services-grid,
  .services-panel__list {
    grid-template-columns: 1fr;
  }

  .services-panel {
    padding: 20px;
  }

  .services-panel__intro {
    align-items: flex-start;
  }

  .service-modal {
    padding: 14px;
  }

  .service-modal__dialog {
    max-height: 86vh;
    border-radius: 24px;
  }

  .service-modal__title,
  .service-modal__eyebrow {
    max-width: calc(100% - 44px);
  }
}
