/**
 * Hello Aesthetics — dark luxury theme (nav + hero slider + global).
 */

:root {
  --ha-black: #070707;
  --ha-charcoal: #111111;
  --ha-panel: #181818;
  --ha-gold: #c9a962;
  --ha-gold-bright: #e8d5a3;
  --ha-gold-dim: #7a6840;
  --ha-cream: #f5f0e6;
  --ha-muted: #9a948a;
  --ha-line: rgba(201, 169, 98, 0.22);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Raleway", system-ui, sans-serif;
  --font-accent: "Italiana", "Cormorant Garamond", serif;
  --ha-header-h: 88px;
  --ha-hero-pad-extra: 88px;
  --ha-hero-top: calc(var(--ha-header-h) + var(--ha-hero-pad-extra));
  --ha-controls-h: 5.5rem;
}

/* —— Dark base —— */
body.ha-theme-luxury {
  color-scheme: dark;

  --color-ink: var(--ha-cream);
  --color-ink-soft: #d4cec4;
  --color-cream: var(--ha-black);
  --color-blush: var(--ha-charcoal);
  --color-white: var(--ha-panel);
  --color-surface: var(--ha-panel);
  --color-gold: var(--ha-gold);
  --color-gold-light: var(--ha-gold-bright);
  --color-coral: var(--ha-gold-dim);
  --color-rose: #3a3530;
  --color-muted: var(--ha-muted);
  --color-line: var(--ha-line);
  --font-hero-accent: var(--font-accent);
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 24px 56px rgba(0, 0, 0, 0.45);
  --shadow-photo: 0 32px 72px rgba(0, 0, 0, 0.55);
}

body.ha-theme-luxury,
body.ha-theme-luxury html {
  background: var(--ha-black);
  color: var(--ha-cream);
}

body.ha-theme-luxury a {
  color: var(--ha-gold-bright);
}

body.ha-theme-luxury a:hover {
  color: var(--ha-cream);
}

/* —— Buttons —— */
.ha-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}

.ha-btn--gold {
  background: var(--ha-gold);
  color: var(--ha-black);
  border-color: var(--ha-gold);
}

.ha-btn--gold:hover {
  background: var(--ha-gold-bright);
  color: var(--ha-black);
}

.ha-btn--ghost {
  background: transparent;
  color: var(--ha-cream);
  border-color: rgba(245, 240, 230, 0.35);
}

.ha-btn--ghost:hover {
  border-color: var(--ha-gold);
  color: var(--ha-gold-bright);
}

.ha-btn--lg {
  padding: 1rem 2rem;
}

.ha-btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.625rem;
}

/* —— Header —— */
body.ha-theme-luxury .site-header--luxury {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: transparent;
  border: none;
  backdrop-filter: none;
  transition: background 0.4s, box-shadow 0.4s;
}

body.ha-theme-luxury .site-header--luxury.is-scrolled,
body.ha-theme-luxury .site-header--luxury:not(.site-header--over-hero) {
  background: rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--ha-line);
}

body.ha-theme-luxury .site-header__line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ha-gold), transparent);
  opacity: 0.7;
}

body.ha-theme-luxury .site-header__inner {
  min-height: var(--ha-header-h);
}

body.ha-theme-luxury .site-logo__img {
  height: 46px;
  filter: brightness(1.08);
}

body.ha-theme-luxury .site-nav--luxury .site-nav__list {
  gap: 2.25rem;
}

body.ha-theme-luxury .site-nav--luxury .site-nav__list a {
  color: rgba(245, 240, 230, 0.82);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

body.ha-theme-luxury .site-nav--luxury .site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ha-gold);
  transition: width 0.3s;
}

body.ha-theme-luxury .site-nav--luxury .site-nav__list a:hover,
body.ha-theme-luxury .site-nav--luxury .site-nav__list .current-menu-item > a {
  color: var(--ha-gold-bright);
}

body.ha-theme-luxury .site-nav--luxury .site-nav__list a:hover::after,
body.ha-theme-luxury .site-nav--luxury .site-nav__list .current-menu-item > a::after {
  width: 100%;
}

body.ha-theme-luxury .site-header__phone {
  color: var(--ha-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  margin-right: 0.5rem;
}

body.ha-theme-luxury .site-header__phone:hover {
  color: var(--ha-gold-bright);
}

body.ha-theme-luxury .site-header__actions .btn {
  display: none;
}

body.ha-theme-luxury .nav-toggle--luxury span {
  background: var(--ha-cream);
}

@media (max-width: 768px) {
  body.ha-theme-luxury .site-nav--luxury {
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid var(--ha-line);
    top: var(--ha-header-h);
  }

  body.ha-theme-luxury .site-nav--luxury .site-nav__list a {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }

  body.nav-open {
    overflow: hidden;
  }
}

body.ha-theme-luxury .mobile-bar--dark {
  background: var(--ha-black);
  border-top: 1px solid var(--ha-line);
}

body.ha-theme-luxury .mobile-bar--dark .mobile-bar__item {
  color: var(--ha-muted);
}

body.ha-theme-luxury .mobile-bar--dark .mobile-bar__item--accent {
  color: var(--ha-gold-bright);
}

/* —— Hero slider —— */
.ha-hero-slider {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  isolation: isolate;
}

.ha-hero-slider__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ha-hero-slider__layout {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: var(--ha-hero-top);
  box-sizing: border-box;
}

.ha-hero-slider__main {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(1rem, 4vw, 2rem) 1rem;
  max-width: min(1200px, 92vw);
  margin: 0 auto;
  width: 100%;
}

.ha-hero-slider__main .container {
  width: auto;
  max-width: 580px;
  flex: 1;
  margin: 0;
  padding: 0;
}

.ha-hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.ha-hero-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.ha-hero-slider__slide.is-leaving {
  opacity: 0;
  z-index: 0;
}

.ha-hero-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.ha-hero-slider__slide.is-active .ha-hero-slider__img {
  transform: scale(1);
}

.ha-hero-slider__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.55) 48%, rgba(7, 7, 7, 0.35) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.4) 18%, transparent 42%),
    linear-gradient(0deg, rgba(12, 12, 12, 1) 0%, rgba(12, 12, 12, 0.6) 8%, transparent 22%);
}

.ha-hero-slider__content {
  position: relative;
  z-index: 3;
  padding: 0;
}

.ha-hero-slider__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--ha-gold);
  margin: 0 0 1.5rem;
}

.ha-hero-slider__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.2vw, 3.5rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ha-cream);
  margin: 0 0 1.25rem;
}

.ha-hero-slider__lead {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.9);
  margin: 0 0 1.75rem;
  max-width: 30rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

.ha-hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ha-hero-slider__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.ha-hero-slider__meta li {
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ha-muted);
  position: relative;
  padding-left: 1rem;
}

.ha-hero-slider__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--ha-gold);
  transform: translateY(-50%) rotate(45deg);
}

/* Unified aside card — fixes overlapping badge + caption */
.ha-hero-slider__aside {
  position: relative;
  flex-shrink: 0;
  z-index: 3;
  width: min(260px, 32vw);
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--ha-line);
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ha-hero-slider__caption {
  margin: 0;
  padding: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: left;
  color: rgba(245, 240, 230, 0.92);
  max-width: none;
  min-height: 3.2em;
}

.ha-hero-slider__rating {
  padding-top: 1.1rem;
  border-top: 1px solid var(--ha-line);
}

.ha-hero-slider__rating strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ha-gold-bright);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.ha-hero-slider__rating span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ha-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.ha-hero-slider__controls {
  position: relative;
  flex-shrink: 0;
  z-index: 4;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--ha-controls-h);
  padding: 0 clamp(1rem, 4vw, 2rem) 1.25rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  background: rgba(7, 7, 7, 0.92);
}

.ha-hero-slider__thumbs {
  display: flex;
  gap: 0;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.ha-hero-slider__thumbs::-webkit-scrollbar {
  display: none;
}

.ha-hero-slider__thumb {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem 1.5rem 1.25rem;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(201, 169, 98, 0.12);
  color: var(--ha-muted);
  cursor: pointer;
  text-align: left;
  transition: color 0.25s, background 0.25s;
  min-width: 140px;
}

.ha-hero-slider__thumb:first-child {
  border-left: 1px solid rgba(201, 169, 98, 0.12);
}

.ha-hero-slider__thumb.is-active,
.ha-hero-slider__thumb:hover {
  color: var(--ha-gold-bright);
  background: rgba(201, 169, 98, 0.06);
}

.ha-hero-slider__thumb-num {
  font-family: var(--font-accent);
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: var(--ha-gold);
}

.ha-hero-slider__thumb-label {
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
}

.ha-hero-slider__arrows {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ha-hero-slider__arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--ha-line);
  color: var(--ha-cream);
  font-size: 1.25rem;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.ha-hero-slider__arrow:hover {
  border-color: var(--ha-gold);
  color: var(--ha-gold-bright);
  background: rgba(201, 169, 98, 0.08);
}

.ha-hero-slider__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(201, 169, 98, 0.15);
  z-index: 5;
}

.ha-hero-slider__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ha-gold);
}

/* MacBook / laptop — compact hero */
@media (max-width: 1440px), (max-height: 860px) {
  body.ha-theme-luxury {
    --ha-hero-pad-extra: 72px;
    --ha-controls-h: 5rem;
  }

  .ha-hero-slider__main .container {
    max-width: 500px;
  }

  .ha-hero-slider__title {
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    margin-bottom: 1rem;
  }

  .ha-hero-slider__lead {
    font-size: 0.975rem;
    margin-bottom: 1.35rem;
  }

  .ha-hero-slider__actions {
    margin-bottom: 1.35rem;
  }

  .ha-hero-slider__aside {
    width: min(220px, 28vw);
    padding: 1.1rem 1.25rem;
  }

  .ha-hero-slider__caption {
    font-size: 0.95rem;
    min-height: 2.8em;
  }

  .ha-hero-slider__thumb {
    min-width: 115px;
    padding: 0.7rem 1rem 1rem;
  }
}

@media (max-width: 1100px) {
  .ha-hero-slider__aside {
    display: none;
  }

  .ha-hero-slider__main {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }
}

@media (max-width: 900px) {
  .ha-hero-slider__thumb {
    min-width: 120px;
    padding: 0.85rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ha-hero-slider__slide,
  .ha-hero-slider__img {
    transition: none;
  }

  .ha-hero-slider__slide.is-active .ha-hero-slider__img {
    transform: scale(1);
  }
}

body.ha-theme-luxury:not(.home) .site-main {
  padding-top: var(--ha-header-h);
}

body.ha-theme-luxury.home .site-main {
  padding-top: 0;
}

/* —— Stats strip — luxury cards —— */
.ha-stats {
  position: relative;
  z-index: 20;
  background: linear-gradient(180deg, #0c0c0c 0%, #101010 50%, #0a0a0a 100%);
  border-top: 3px solid var(--ha-gold);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  overflow: hidden;
}

.ha-stats__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 90vw);
  height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ha-stats__eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ha-gold);
  margin: 0 0 2.5rem;
}

.ha-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.ha-stats__card {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  background: linear-gradient(165deg, rgba(24, 24, 24, 0.95) 0%, rgba(12, 12, 12, 0.98) 100%);
  border: 1px solid var(--ha-line);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.ha-stats__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 48px;
  height: 1px;
  transform: translateX(-50%);
  background: var(--ha-gold);
  opacity: 0.6;
}

.ha-stats__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.ha-stats__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ha-stats__icon-wrap .ha-icon {
  width: 52px;
  height: 52px;
}

.ha-stats__value {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(2.25rem, 3.5vw, 2.85rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ha-gold-bright);
  margin-bottom: 0.65rem;
}

.ha-stats__label {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ha-muted);
}

@media (max-width: 900px) {
  .ha-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ha-stats__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* —— Treatments guide (sticky nav + scroll panels) —— */
.ha-treat-guide {
  background: var(--ha-black);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.ha-treat-guide__intro {
  max-width: 720px;
  margin-bottom: 3rem;
}

.ha-treat-guide__desc {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ha-muted);
  margin: 1rem 0 0;
}

.ha-treat-guide__layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.ha-treat-guide__sidebar {
  position: sticky;
  top: calc(var(--ha-header-h) + 28px);
  align-self: start;
  z-index: 5;
}

.ha-treat-guide__nav-label {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ha-gold);
  margin: 0 0 1.25rem;
}

.ha-treat-guide__nav-scroller {
  display: block;
}

.ha-treat-guide__nav-arrow {
  display: none;
}

.ha-treat-guide__nav-track {
  overflow: visible;
}

.ha-treat-guide__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--ha-line);
}

.ha-treat-guide__nav-item {
  margin: 0;
}

.ha-treat-guide__link {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 0 0.85rem 1.25rem;
  margin-left: -1px;
  border: none;
  border-left: 2px solid transparent;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  color: var(--ha-muted);
  font-family: var(--font-sans);
}

.ha-treat-guide__link:hover,
.ha-treat-guide__link.is-passed {
  color: rgba(245, 240, 230, 0.75);
}

.ha-treat-guide__link.is-active {
  color: var(--ha-cream);
  border-left-color: var(--ha-gold);
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.08), transparent);
}

.ha-treat-guide__link.is-passed .ha-treat-guide__link-num {
  color: var(--ha-gold-dim);
}

.ha-treat-guide__link-num {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  color: var(--ha-gold);
  flex-shrink: 0;
  min-width: 1.5rem;
}

.ha-treat-guide__link-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.35;
}

.ha-treat-guide__all {
  margin-top: 1.75rem;
  width: 100%;
  justify-content: center;
}

.ha-treat-guide__panels {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vh, 5rem);
}

.ha-treat-guide__panel {
  scroll-margin-top: calc(var(--ha-header-h) + 32px);
  min-height: min(70vh, 600px);
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ha-line);
  background: var(--ha-panel);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.ha-treat-guide__media {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 280px;
  overflow: hidden;
  background: var(--ha-panel);
  flex-shrink: 0;
}

.ha-treat-guide__img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.ha-treat-guide__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(24, 24, 24, 0.85) 100%);
}

.ha-treat-guide__price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  background: rgba(7, 7, 7, 0.8);
  border: 1px solid var(--ha-line);
  color: var(--ha-gold-bright);
}

.ha-treat-guide__body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ha-treat-guide__body-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ha-treat-guide__body-head .ha-icon {
  flex-shrink: 0;
}

.ha-treat-guide__panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ha-cream);
  margin: 0;
}

.ha-treat-guide__panel-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ha-muted);
  margin: 0 0 1.5rem;
}

.ha-treat-guide__facts {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.ha-treat-guide__facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
  color: var(--ha-cream);
}

.ha-treat-guide__fact-label {
  color: var(--ha-muted);
  font-weight: 300;
}

.ha-treat-guide__note {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--ha-muted);
}

/* —— Journey — compact strip —— */
.ha-journey-compact {
  background: #0e0e0e;
  border-top: 1px solid var(--ha-line);
  border-bottom: 1px solid var(--ha-line);
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.ha-journey-compact__head {
  margin-bottom: 1.5rem;
}

.ha-journey-compact__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--ha-cream);
  margin: 0.35rem 0 0;
  line-height: 1.25;
}

.ha-journey-compact__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ha-journey-compact__item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.ha-journey-compact__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.ha-journey-compact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ha-journey-compact__num {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-family: var(--font-accent);
  font-size: 1.125rem;
  color: var(--ha-gold-bright);
  background: rgba(7, 7, 7, 0.75);
  padding: 0.2rem 0.45rem;
  line-height: 1;
}

.ha-journey-compact__text h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ha-cream);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.ha-journey-compact__text p {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ha-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* —— Visit clinic —— */
.ha-visit {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  border-top: 1px solid var(--ha-line);
}

.ha-visit__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  flex-wrap: wrap;
}

.ha-visit__tagline {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ha-muted);
}

.ha-visit__badge {
  margin: 0;
  padding: 0.55rem 1rem;
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ha-gold-bright);
  border: 1px solid var(--ha-line);
  background: rgba(201, 169, 98, 0.06);
  white-space: nowrap;
}

.ha-visit__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.ha-visit__map-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border: 1px solid var(--ha-line);
  background: var(--ha-panel);
  position: relative;
}

.ha-visit__map-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border-top: 2px solid var(--ha-gold);
  border-left: 2px solid var(--ha-gold);
  pointer-events: none;
  z-index: 2;
}

.ha-visit__map-frame {
  flex: 1 1 auto;
  min-height: 380px;
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.ha-visit__map-embed,
.ha-visit__map-placeholder {
  height: 100%;
  min-height: 380px;
  border-radius: 0;
  overflow: hidden;
}

.ha-visit__map-embed iframe,
.ha-visit .map-embed,
.ha-visit .map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 0 !important;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

.ha-visit__map-placeholder {
  display: grid;
  place-items: center;
  background: var(--ha-charcoal);
  color: var(--ha-muted);
}

.ha-visit__map-cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.15rem;
  border-top: 1px solid var(--ha-line);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ha-cream);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.ha-visit__map-cta:hover {
  background: rgba(201, 169, 98, 0.1);
  color: var(--ha-gold-bright);
}

.ha-visit__map-cta .ha-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--ha-gold);
}

.ha-visit__map-cta-arrow {
  margin-left: auto;
  color: var(--ha-gold);
}

.ha-visit__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.ha-visit__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  border: 1px solid var(--ha-line);
  flex-shrink: 0;
}

.ha-visit__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ha-visit__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.88) 0%, transparent 55%);
  pointer-events: none;
}

.ha-visit__photo-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ha-cream);
  z-index: 1;
}

.ha-visit__panel {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.5rem;
  border: 1px solid var(--ha-line);
  background: linear-gradient(160deg, rgba(24, 24, 24, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
}

.ha-visit__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.ha-visit__fact {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.ha-visit__fact-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ha-line);
  background: rgba(201, 169, 98, 0.08);
}

.ha-visit__fact-icon .ha-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--ha-gold);
}

.ha-visit__fact-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ha-gold);
  margin-bottom: 0.35rem;
}

.ha-visit__fact-body {
  flex: 1;
  min-width: 0;
}

.ha-visit__fact-body address,
.ha-visit__fact-body p {
  margin: 0;
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ha-cream);
}

.ha-visit__fact-body a {
  color: var(--ha-cream);
  text-decoration: none;
}

.ha-visit__fact-body a:hover {
  color: var(--ha-gold-bright);
}

.ha-visit__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.ha-visit__actions .ha-btn {
  width: 100%;
  justify-content: center;
  padding: 0.7rem 0.5rem;
  font-size: 0.75rem;
}

.ha-visit__directions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ha-gold-bright);
  text-decoration: none;
  border: 1px solid var(--ha-line);
  background: rgba(201, 169, 98, 0.05);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ha-visit__directions:hover {
  color: var(--ha-cream);
  border-color: var(--ha-gold);
  background: rgba(201, 169, 98, 0.12);
}

.ha-visit__social {
  margin: 1rem 0 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--ha-line);
  background: rgba(201, 169, 98, 0.04);
  text-align: center;
}

.ha-visit__social a {
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .ha-visit__grid {
    grid-template-columns: 1fr;
  }

  .ha-visit__map-frame,
  .ha-visit__map-embed,
  .ha-visit__map-placeholder,
  .ha-visit__map-embed iframe,
  .ha-visit .map-embed iframe {
    min-height: 280px;
  }

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

  .ha-visit__actions .ha-btn {
    flex: 1 1 auto;
    min-width: calc(50% - 0.35rem);
  }
}

@media (max-width: 640px) {
  .ha-visit__actions {
    grid-template-columns: 1fr;
  }
}

/* —— Booking CTA —— */
.ha-cta {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4rem);
  background: var(--ha-black);
  border-top: 1px solid var(--ha-line);
}

.ha-cta__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 2.75rem);
  border: 1px solid var(--ha-line);
  background: linear-gradient(135deg, rgba(24, 24, 24, 0.98) 0%, rgba(10, 10, 10, 1) 100%);
  position: relative;
  overflow: hidden;
}

.ha-cta__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--ha-gold-bright), var(--ha-gold-dim));
}

.ha-cta__card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--ha-line);
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}

.ha-cta__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ha-gold);
}

.ha-cta__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ha-cream);
  max-width: 22ch;
}

.ha-cta__desc {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ha-muted);
  max-width: 42ch;
}

.ha-cta__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  min-width: min(100%, 260px);
}

.ha-cta__book {
  width: 100%;
  justify-content: center;
  letter-spacing: 0.06em;
}

.ha-cta__quick {
  display: flex;
  gap: 0.5rem;
}

.ha-cta__quick .ha-btn {
  flex: 1;
  justify-content: center;
}

.ha-cta__note {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--ha-gold-dim);
}

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

  .ha-cta__title,
  .ha-cta__desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .ha-cta__aside {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
}

@media (min-width: 1025px) {
  .ha-treat-guide__panel {
    display: grid !important;
    grid-template-columns: 1.05fr 1fr;
    flex-direction: unset;
  }

  .ha-treat-guide__media {
    min-height: 280px;
    height: auto;
    max-height: none;
  }

  .ha-treat-guide__img {
    position: static;
    min-height: 280px;
    max-height: none;
    height: 100%;
  }
}

/* —— Mobile & tablet responsive —— */
@media (max-width: 1024px) {
  .ha-treat-guide {
    overflow-x: clip;
    max-width: 100%;
  }

  .ha-treat-guide__layout,
  .ha-treat-guide__layout.container {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    gap: 0;
  }

  .ha-treat-guide__sidebar {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 0 1rem;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid var(--ha-line);
    flex-shrink: 0;
  }

  .ha-treat-guide__nav-label {
    display: block;
    margin-bottom: 0.65rem;
    padding: 0 0.25rem;
  }

  .ha-treat-guide__all {
    display: none;
  }

  .ha-treat-guide__nav-scroller {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: stretch;
    gap: 0.25rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    position: relative;
    box-sizing: border-box;
  }

  .ha-treat-guide__nav-scroller::before,
  .ha-treat-guide__nav-scroller::after {
    display: none;
  }

  .ha-treat-guide__nav-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    min-width: 42px;
    min-height: 44px;
    padding: 0;
    border: 1px solid var(--ha-line);
    background: rgba(201, 169, 98, 0.06);
    color: var(--ha-cream);
    font-size: 1.125rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, opacity 0.2s;
    z-index: 2;
  }

  .ha-treat-guide__nav-arrow--prev {
    grid-column: 1;
    grid-row: 1;
  }

  .ha-treat-guide__nav-track {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .ha-treat-guide__nav-arrow--next {
    grid-column: 3;
    grid-row: 1;
  }

  .ha-treat-guide__nav-arrow:hover:not(:disabled) {
    border-color: var(--ha-gold);
    color: var(--ha-gold-bright);
    background: rgba(201, 169, 98, 0.12);
  }

  .ha-treat-guide__nav-arrow:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .ha-treat-guide__nav-arrow.is-hidden {
    display: flex !important;
    opacity: 0.35;
    pointer-events: none;
  }

  .ha-treat-guide__nav-track::-webkit-scrollbar {
    display: none;
  }

  .ha-treat-guide__nav-list {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    border-left: none;
    padding: 0 0.15rem 0.35rem;
    margin: 0;
    width: auto;
    min-width: min-content;
  }

  .ha-treat-guide__nav-item {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .ha-treat-guide__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.65rem 0.85rem;
    margin-left: 0;
    border-left: none;
    border-bottom: 2px solid transparent;
    white-space: normal;
    min-width: 8.5rem;
    max-width: 10.5rem;
  }

  .ha-treat-guide__link-name {
    font-size: 0.8125rem;
    line-height: 1.3;
  }

  .ha-treat-guide__link.is-active {
    border-left: none;
    border-bottom-color: var(--ha-gold);
    background: rgba(201, 169, 98, 0.1);
  }

  .ha-treat-guide__panels {
    gap: 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .ha-treat-guide__panel {
    display: none !important;
    min-height: 0 !important;
    max-height: none;
    scroll-margin-top: 0;
    border: none;
    border-top: 1px solid var(--ha-line);
    background: transparent;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0;
    padding: 0;
  }

  .ha-treat-guide__panel.is-active-panel {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden;
  }

  .ha-treat-guide__panel[hidden] {
    display: none !important;
  }

  .ha-treat-guide__media {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 300px;
    max-height: 300px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: var(--ha-panel);
    flex: 0 0 300px;
  }

  .ha-treat-guide .ha-treat-guide__img {
    position: relative;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    max-height: 300px !important;
    min-height: 0 !important;
    object-fit: cover;
    object-position: center center;
  }

  .ha-treat-guide__media-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: 300px;
    background: linear-gradient(0deg, rgba(7, 7, 7, 0.55) 0%, transparent 45%);
    pointer-events: none;
  }

  .ha-treat-guide__price {
    z-index: 2;
  }

  .ha-treat-guide__body {
    padding: 1.25rem 0 1.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 auto;
  }
}

@media (max-width: 768px) {
  body.ha-theme-luxury {
    --ha-header-h: 72px;
    --ha-hero-pad-extra: 48px;
    --ha-controls-h: auto;
    overflow-x: hidden;
  }

  body.ha-theme-luxury .site-main {
    overflow-x: hidden;
  }

  body.ha-theme-luxury .container {
    width: min(1180px, 92vw);
    max-width: 100%;
  }

  body.ha-theme-luxury.home {
    padding-bottom: 56px;
  }

  body.ha-theme-luxury .site-header__book {
    padding: 0.5rem 0.65rem;
    font-size: 0.5625rem;
  }

  body.ha-theme-luxury .site-logo__img {
    height: 38px;
  }

  body.ha-theme-luxury .site-nav.site-nav--luxury:not(.is-open) {
    position: fixed;
    inset: var(--ha-header-h) 0 auto 0;
    left: 0;
    right: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
  }

  body.ha-theme-luxury .site-nav.site-nav--luxury {
    position: fixed;
    inset: var(--ha-header-h) 0 auto 0;
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--ha-header-h));
    overflow-y: auto;
    background: rgba(7, 7, 7, 0.98);
    padding: 1.25rem 1.5rem 1.5rem;
    transition: opacity 0.25s, transform 0.25s;
    border-bottom: 1px solid var(--ha-line);
  }

  body.ha-theme-luxury .site-nav.site-nav--luxury.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.ha-theme-luxury .site-nav--luxury .site-nav__list {
    flex-direction: column;
    gap: 1.25rem;
  }

  /* Hero */
  .ha-hero-slider {
    height: auto;
    min-height: 100svh;
    max-height: none;
  }

  .ha-hero-slider__layout {
    min-height: 100svh;
    padding-top: calc(var(--ha-header-h) + var(--ha-hero-pad-extra));
    padding-bottom: 0;
  }

  .ha-hero-slider__main {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem 0.75rem;
    max-width: 100%;
  }

  .ha-hero-slider__main .container {
    max-width: 100%;
    width: 100%;
  }

  .ha-hero-slider__title {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    margin-bottom: 0.85rem;
  }

  .ha-hero-slider__lead {
    font-size: 0.9rem;
    margin-bottom: 1.1rem;
  }

  .ha-hero-slider__eyebrow {
    margin-bottom: 0.85rem;
    font-size: 0.6875rem;
  }

  .ha-hero-slider__meta {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .ha-hero-slider__controls {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.75rem 1rem 1rem;
    min-height: 0;
  }

  .ha-hero-slider__thumbs {
    width: 100%;
  }

  .ha-hero-slider__thumb {
    min-width: 5.5rem;
    padding: 0.55rem 0.65rem 0.7rem;
    flex: 1;
  }

  .ha-hero-slider__thumb-label {
    display: block;
    font-size: 0.5625rem;
    max-width: 5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ha-hero-slider__arrows {
    align-self: flex-end;
  }

  /* Stats */
  .ha-stats {
    padding: 2rem 0;
  }

  .ha-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  /* Treatments guide */
  .ha-treat-guide {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .ha-treat-guide__intro {
    margin-bottom: 1.25rem;
    padding: 0 0.25rem;
  }

  .ha-treat-guide__desc {
    font-size: 0.9375rem;
  }

  .ha-treat-guide__body {
    padding: 1.25rem 1rem 1.5rem;
  }

  .ha-treat-guide__body-head {
    flex-wrap: wrap;
  }

  .ha-treat-guide__panel-title {
    font-size: 1.35rem;
  }

  .ha-treat-guide__facts li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .ha-treat-guide__body .ha-btn {
    width: 100%;
    justify-content: center;
  }

  .ha-treat-guide__note {
    margin-top: 1.5rem;
    padding: 0 1rem;
    font-size: 0.8125rem;
  }

  /* Journey compact */
  .ha-journey-compact__strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ha-journey-compact__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 0.85rem;
  }

  .ha-journey-compact__thumb {
    width: 38%;
    max-width: 140px;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
  }

  .ha-journey-compact__text p {
    -webkit-line-clamp: 4;
  }

  /* Why / features / about / reviews */
  body.ha-theme-luxury .why-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.ha-theme-luxury .why-layout__intro--sticky {
    position: relative;
    top: auto;
  }

  body.ha-theme-luxury .feature-grid--photo {
    grid-template-columns: 1fr;
  }

  body.ha-theme-luxury .about-block--creative {
    grid-template-columns: 1fr;
  }

  body.ha-theme-luxury .review-grid--photo {
    grid-template-columns: 1fr;
  }

  body.ha-theme-luxury .ha-visit__photo {
    aspect-ratio: 16 / 9;
  }

  body.ha-theme-luxury .section-head--split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

}

@media (max-width: 640px) {
  .ha-hero-slider__actions {
    flex-direction: column;
    width: 100%;
  }

  .ha-hero-slider__actions .ha-btn {
    width: 100%;
    justify-content: center;
  }

  .ha-stats__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .ha-treat-guide__link {
    min-width: 7.25rem;
    max-width: 9rem;
  }
}

@media (max-width: 480px) {
  body.ha-theme-luxury .site-header__book {
    display: none;
  }

  .ha-hero-slider__meta {
    display: none;
  }
}

/* —— Page sections (dark) —— */
body.ha-theme-luxury .section {
  background: var(--ha-black);
}

body.ha-theme-luxury .section--blush {
  background: var(--ha-charcoal);
}

body.ha-theme-luxury .section--dark,
body.ha-theme-luxury .section--why {
  background: linear-gradient(165deg, #0e0e0e 0%, #070707 100%);
}

body.ha-theme-luxury .eyebrow {
  color: var(--ha-gold);
  letter-spacing: 0.26em;
}

body.ha-theme-luxury .section-head__title {
  font-family: var(--font-display);
  color: var(--ha-cream);
}

body.ha-theme-luxury .section-head__desc,
body.ha-theme-luxury .section-note {
  color: var(--ha-muted);
}

body.ha-theme-luxury .trust-strip--photo {
  display: none;
}

body.ha-theme-luxury .service-card--photo {
  background: var(--ha-panel);
  border: 1px solid var(--ha-line);
}

body.ha-theme-luxury .service-card__desc,
body.ha-theme-luxury .service-card__meta {
  color: var(--ha-muted);
}

body.ha-theme-luxury .service-card__price-tag {
  background: rgba(7, 7, 7, 0.85);
  color: var(--ha-gold-bright);
  font-family: var(--font-hero);
}

body.ha-theme-luxury .feature-card--photo {
  border: 1px solid var(--ha-line);
}

body.ha-theme-luxury .review-card--photo {
  background: var(--ha-panel);
  border: 1px solid var(--ha-line);
}

body.ha-theme-luxury .btn--primary {
  background: var(--ha-gold);
  color: var(--ha-black);
  border-color: var(--ha-gold);
  border-radius: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

body.ha-theme-luxury .btn--outline {
  border-color: rgba(245, 240, 230, 0.35);
  color: var(--ha-cream);
}

body.ha-theme-luxury .btn--outline:hover {
  border-color: var(--ha-gold);
  color: var(--ha-gold-bright);
}

body.ha-theme-luxury .btn--light {
  background: var(--ha-gold);
  color: var(--ha-black);
}

body.ha-theme-luxury .site-footer {
  background: #040404;
  border-top: 2px solid var(--ha-gold);
  color: var(--ha-muted);
}

body.ha-theme-luxury .site-footer__title {
  font-family: var(--font-accent);
  color: var(--ha-cream);
}

body.ha-theme-luxury .page-hero--photo {
  margin-top: 0;
  background: var(--ha-charcoal);
}

body.ha-theme-luxury .page-hero__bg-img {
  filter: brightness(0.4);
}

body.ha-theme-luxury .page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ha-cream);
}

body.ha-theme-luxury .booking-panel,
body.ha-theme-luxury .info-card {
  background: var(--ha-panel);
  border: 1px solid var(--ha-line);
  color: var(--ha-cream);
}

body.ha-theme-luxury .ha-icon {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--ha-line);
  color: var(--ha-gold);
}

body.ha-theme-luxury .skip-link {
  background: var(--ha-gold);
  color: var(--ha-black);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
