/* ==========================================================================
   Glam Room — Editorial theme & homepage
   https://beyonce.com/ (homepage layout reference)

   File map:
   - styles.css    → shared components (legacy + grids)
   - home.css      → editorial theme + homepage panels
   - booking.css   → booking form layout
   - mobile.css    → responsive / touch (load last on every page)
   - data.js       → all copy, services, locations, images
   - app.js        → render + menu + interactions
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

body.editorial-theme,
body.home-editorial {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;

  --bg-primary: #000;
  --bg-secondary: #0a0a0a;
  --text-primary: #fff;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.45);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --card-hover-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  --accent: #c9a962;
  --accent-light: #c9a962;
  --premium-gold: #c9a962;
  --cursor-color: #fff;
}

body.home-editorial.home-horizontal {
  overflow: hidden;
}

body.editorial-theme .cursor-dot,
body.editorial-theme .cursor-ring,
body.home-editorial .cursor-dot,
body.home-editorial .cursor-ring {
  mix-blend-mode: difference;
}

body.editorial-theme .cursor-dot,
body.home-editorial .cursor-dot {
  background: #fff;
}

body.editorial-theme .cursor-ring,
body.home-editorial .cursor-ring {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hide legacy nav/footer on all editorial pages */
body.editorial-theme .nav,
body.editorial-theme .footer:not(.home-bottombar),
body.editorial-theme .mobile-menu,
body.editorial-theme .mobile-menu-overlay,
body.home-editorial .nav,
body.home-editorial .footer:not(.home-bottombar),
body.home-editorial .mobile-menu,
body.home-editorial .mobile-menu-overlay {
  display: none !important;
}

/* Top bar — GLAM ROOM | * | MENU */
.home-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: calc(1.15rem + env(safe-area-inset-top, 0px)) 1.75rem 1.15rem;
  pointer-events: none;
}

.home-topbar > * {
  pointer-events: auto;
}

.home-topbar-link {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.25s;
}

.home-topbar-link:hover {
  opacity: 0.65;
}

.home-topbar-sep {
  justify-self: center;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  line-height: 1;
}

.home-topbar-center {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform 0.3s ease;
}

.home-topbar-center:hover {
  transform: scale(1.08);
}

.site-topbar-mark {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  pointer-events: auto;
  transition: transform 0.3s ease;
}

.site-topbar-mark:hover {
  transform: scale(1.08);
}

.site-topbar-logo {
  width: 2rem;
  height: 2rem;
  display: block;
  object-fit: contain;
}

body.site-light-topbar .home-topbar-link,
body.site-light-topbar .home-menu-btn {
  color: #1a0f0a;
}

body.site-light-topbar .home-topbar {
  background: linear-gradient(180deg, rgba(253, 243, 231, 0.96) 0%, rgba(253, 243, 231, 0) 100%);
}

.home-menu-btn {
  justify-self: end;
  background: none;
  border: none;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  padding: 0.5rem;
  transition: opacity 0.25s;
}

.home-menu-btn:hover {
  opacity: 0.65;
}

/* Full-screen slide-out menu */
.home-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.home-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.home-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100vw);
  height: 100vh;
  height: 100dvh;
  background: #0a0a0a;
  z-index: 401;
  padding: 5rem 2.5rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.home-menu-panel.open {
  transform: translateX(0);
}

.home-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  text-transform: uppercase;
}

.home-menu-links {
  list-style: none;
  flex: 1;
}

.home-menu-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-menu-links a {
  display: block;
  padding: 1.35rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  transition: opacity 0.25s, padding-left 0.25s;
}

.home-menu-links a:hover {
  opacity: 0.55;
  padding-left: 0.5rem;
}

.home-menu-socials {
  display: flex;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-menu-socials a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  transition: color 0.2s;
}

.home-menu-socials a:hover {
  color: #fff;
}

.home-menu-footer {
  margin-top: 1.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

/* Scroll-snap editorial panels */
.home-scroll {
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-scroll::-webkit-scrollbar {
  display: none;
}

.home-panel {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.home-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0) scale(var(--panel-scale, 1.02));
  transition: transform 8s ease-out;
  will-change: transform;
}

.home-panel:hover .home-panel-bg,
.home-panel.in-view .home-panel-bg {
  --panel-scale: 1.06;
}

.home-panel-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-panel-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 0 2rem 4.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease 0.05s, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.home-panel.in-view .home-panel-content {
  opacity: 1;
  transform: translateY(0);
}

body.home-intro-active .home-panel.in-view .home-panel-content,
body.home-intro-active .home-panel.in-view .home-panel-visual-labels {
  opacity: 0;
  transform: translateY(28px);
}

body.home-hero-title-active #hero .home-panel-content {
  opacity: 1;
  transform: none;
  transition: none;
}

body.home-hero-title-active #hero .home-panel-subtitle {
  opacity: 0;
}

body.home-hero-title-done #hero .home-panel-content {
  opacity: 1;
  transform: none;
}

body.home-hero-title-done #hero .home-panel-subtitle {
  opacity: 1;
  transition: opacity 0.6s ease 0.15s;
}

#hero.home-hero-title-settled .home-panel-subtitle {
  margin-top: 0.75rem;
}

.home-hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: center;
}

.home-hero-brand.is-revealing {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 400;
  width: max-content;
  max-width: calc(100vw - 3rem);
  margin: 0;
  transform: translate(-50%, -50%);
}

.home-hero-brand.is-revealing.is-sliding {
  transform: translate(-50%, calc(-50% + var(--hero-brand-shift, 0px)));
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero-brand.is-settled {
  position: relative;
  left: auto;
  top: auto;
  z-index: auto;
  transform: none;
  width: 100%;
  max-width: none;
}

.home-hero-brand.is-settled .home-intro-letter,
.home-hero-brand.is-settled .home-intro-subtitle {
  opacity: 1;
  transform: none;
  filter: none;
}

.home-hero-brand .home-intro-letter {
  font-size: clamp(2.5rem, 10vw, 6.75rem);
}

.home-hero-brand .home-intro-subtitle {
  font-size: clamp(0.5rem, 1.4vw, 0.68rem);
  letter-spacing: 0.32em;
}

.home-panel-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.home-panel-label::before,
.home-panel-label::after {
  content: '✦';
  font-size: 0.5rem;
  opacity: 0.5;
}

.home-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.home-panel-title.hero-name {
  font-size: clamp(4rem, 14vw, 9.5rem);
  font-style: italic;
}

.home-panel-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1.25rem;
}

.home-panel-cta {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.25rem;
  transition: opacity 0.25s, border-color 0.25s;
}

.home-panel-cta:hover {
  opacity: 0.6;
  border-color: rgba(255, 255, 255, 0.8);
}

.home-panel-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Find My Booking panel */
.home-panel--find-booking {
  align-items: center;
}

.home-panel-content--form {
  max-width: 420px;
  width: 100%;
}

.find-booking-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
  width: 100%;
}

.find-booking-field {
  display: grid;
  gap: 0.35rem;
  text-align: left;
}

.find-booking-field span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.find-booking-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.find-booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.find-booking-field input:focus {
  outline: none;
  border-color: rgba(212, 168, 83, 0.8);
  box-shadow: 0 0 0 2px rgba(212, 168, 83, 0.2);
}

.find-booking-submit {
  margin-top: 0.25rem;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #2d1b0e;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.find-booking-submit:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.find-booking-submit:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.find-booking-result {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
}

.find-booking-result--success {
  background: rgba(43, 94, 43, 0.35);
  border: 1px solid rgba(120, 200, 120, 0.45);
  color: #e8f5e9;
}

.find-booking-result--error {
  background: rgba(198, 40, 40, 0.25);
  border: 1px solid rgba(255, 120, 120, 0.35);
  color: #ffebee;
}

.find-booking-result p + p {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Image-only editorial panels (beyonce.com style) */
.home-panel--visual {
  align-items: flex-start;
}

.home-panel--visual .home-panel-bg {
  background-size: cover;
  background-repeat: no-repeat;
}

.home-panel-visual-labels {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5.5rem 2rem 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s ease 0.08s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.home-panel.in-view .home-panel-visual-labels {
  opacity: 1;
  transform: translateY(0);
}

.home-panel-visual-labels span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

/* Scroll progress dots */
.home-scroll-dots {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: auto;
}

.home-scroll-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: height 0.3s, width 0.3s, background 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}

.home-scroll-dot.active {
  height: 28px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.85);
}

/* Sticky bottom bar */
.home-bottombar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  pointer-events: none;
  mix-blend-mode: difference;
}

.home-bottombar span,
.home-bottombar a {
  pointer-events: auto;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
}

.home-bottombar a:hover {
  opacity: 0.55;
}

.home-scroll-hint {
  position: fixed;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  animation: homeScrollPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes homeScrollPulse {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(4px); }
}

.home-scroll-hint.hidden {
  opacity: 0;
  animation: none;
}

/* Launch intro — beyonce.com-style image sequence */
body.home-intro-active {
  overflow: hidden;
}

body.home-intro-active .home-scroll,
body.home-intro-active .home-topbar,
body.home-intro-active .home-bottombar,
body.home-intro-active .home-scroll-hint,
body.home-intro-active .home-scroll-dots {
  opacity: 0;
  pointer-events: none;
}

body.home-intro-done .home-scroll,
body.home-intro-done .home-topbar,
body.home-intro-done .home-bottombar,
body.home-intro-done .home-scroll-hint,
body.home-intro-done .home-scroll-dots {
  opacity: 1;
  transition: opacity 0.9s ease 0.15s;
}

.home-intro-loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  overflow: hidden;
}

.home-intro-loader__bg {
  position: absolute;
  inset: 0;
  background: #000;
}

.home-intro-loader__slides {
  position: absolute;
  inset: 0;
}

.home-intro-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.home-intro-slide.is-active {
  opacity: 1;
}

.home-intro-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 0.75s ease-out;
}

.home-intro-slide.is-active img {
  transform: scale(1);
}

.home-intro-loader__stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.home-intro-loader.show-stars .home-intro-loader__stars {
  opacity: 1;
}

.home-intro-star {
  position: absolute;
  color: #fff;
  font-size: clamp(0.65rem, 2vw, 0.85rem);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  mix-blend-mode: difference;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
}

.home-intro-loader.show-stars .home-intro-star {
  opacity: 1;
  transform: scale(1);
}

.home-intro-loader.show-stars .home-intro-star--center {
  transition-delay: 0.02s;
}

.home-intro-loader.show-stars .home-intro-star--tr,
.home-intro-loader.show-stars .home-intro-star--bl {
  transition-delay: 0.05s;
}

.home-intro-loader.show-stars .home-intro-star--tl,
.home-intro-loader.show-stars .home-intro-star--br {
  transition-delay: 0.08s;
}

.home-intro-star--tl { top: 1.25rem; left: 1.5rem; }
.home-intro-star--tr { top: 1.25rem; right: 1.5rem; }
.home-intro-star--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  font-size: clamp(1rem, 4vw, 1.35rem);
}

.home-intro-loader.show-stars .home-intro-star--center {
  transform: translate(-50%, -50%) scale(1);
}

.home-intro-loader.show-title .home-intro-star--center {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35);
  transition-delay: 0s;
}

.home-intro-loader.show-title .home-intro-letter,
.home-hero-brand.show-title .home-intro-letter {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.home-intro-loader.show-title .home-intro-subtitle,
.home-hero-brand.show-title .home-intro-subtitle {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.home-intro-loader.show-title::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  opacity: 0;
  animation: home-intro-veil 0.35s ease forwards;
}

@keyframes home-intro-veil {
  to { opacity: 1; }
}

.home-intro-star--bl { bottom: 1.5rem; left: 1.5rem; }
.home-intro-star--br { bottom: 1.5rem; right: 1.5rem; }

.home-intro-loader.is-exiting {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.home-intro-loader.is-exiting .home-intro-loader__slides,
.home-intro-loader.is-exiting .home-intro-loader__stars,
.home-intro-loader.is-exiting .home-intro-loader__title {
  transform: scale(1.02);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.home-intro-loader__title {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  pointer-events: none;
  text-align: center;
  padding: 1.5rem;
}

.home-intro-title-line {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: baseline;
  line-height: 1;
  max-width: 100%;
}

.home-intro-letter {
  display: inline-block;
  flex: 0 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 9.5vw, 6.75rem);
  font-style: normal;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 0.36s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.36s ease;
  transition-delay: calc(var(--i) * var(--letter-stagger, 28ms));
}

.home-intro-subtitle {
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(0.5rem, 1.4vw, 0.68rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: translateY(12px);
  filter: blur(5px);
  transition:
    opacity 0.38s ease,
    transform 0.44s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.38s ease;
  transition-delay: calc(var(--i) * var(--letter-stagger, 28ms) + 80ms);
}

/* Desktop — horizontal scroll (beyonce.com) */
@media (min-width: 1024px) {
  .home-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
  }

  #home-panels {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: max-content;
  }

  .home-panel {
    flex: 0 0 100vw;
    flex: 0 0 100dvw;
    width: 100vw;
    width: 100dvw;
    height: 100dvh;
    min-height: 100dvh;
  }

  .home-hero-brand .home-intro-title-line {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .home-hero-brand .home-intro-letter {
    font-size: clamp(3rem, 5vw, 6.5rem);
  }

  .home-hero-brand .home-intro-subtitle {
    font-size: clamp(0.55rem, 0.85vw, 0.68rem);
    letter-spacing: 0.28em;
  }

  .home-scroll-hint::after {
    content: ' →';
  }

  .home-scroll-dots {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 3.25rem;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 0.45rem;
  }

  .home-scroll-dot.active {
    width: 28px;
    height: 5px;
    border-radius: 3px;
  }
}

@media (max-width: 640px) {
  .home-topbar {
    padding: 1rem 1.25rem;
  }

  .home-panel-content {
    padding-bottom: 5rem;
  }

  .home-panel-label::before,
  .home-panel-label::after {
    display: none;
  }

  .home-scroll-dots {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-scroll {
    scroll-snap-type: none;
  }

  .home-panel-bg {
    transition: none;
    transform: none !important;
    --parallax-x: 0px !important;
    --parallax-y: 0px !important;
    --panel-scale: 1 !important;
  }

  .home-panel-content,
  .home-panel-visual-labels {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-scroll-hint {
    animation: none;
  }

  .home-intro-loader {
    display: none !important;
  }

  .home-intro-letter,
  .home-intro-subtitle {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .home-intro-loader::after {
    animation: none !important;
    opacity: 0 !important;
  }
}

/* ==========================================================================
   Inner pages — editorial theme
   ========================================================================== */

.editorial-main {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

body.editorial-theme .section {
  padding: 4.5rem 1.5rem;
  background: transparent;
}

body.editorial-theme .section:nth-child(even) {
  background: var(--bg-secondary);
}

body.editorial-theme .section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

body.editorial-theme .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
}

body.editorial-theme .section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

body.editorial-theme .glass-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: blur(16px);
}

body.editorial-theme .glass-card:hover {
  border-color: rgba(212, 168, 83, 0.4);
}

body.editorial-theme .quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

body.editorial-theme .quote-author {
  color: var(--gold);
}

body.editorial-theme .about-content p,
body.editorial-theme .contact-card p {
  color: var(--text-secondary);
}

body.editorial-theme .stat-value {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
}

body.editorial-theme .stat-label {
  color: var(--text-muted);
}

/* Services: two cards per row on phones (pairs) */
body.editorial-theme #services-grid.services-grid,
body.editorial-theme .services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.65rem, 2.5vw, 1rem);
  width: 100%;
}

body.editorial-theme .services-grid > .service-card,
body.editorial-theme .services-grid > .skeleton,
body.editorial-theme .services-grid > article {
  min-width: 0;
}

@media (min-width: 1024px) {
  body.editorial-theme .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.editorial-theme .service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
}

body.editorial-theme .service-desc {
  color: var(--text-secondary);
}

body.editorial-theme .service-price {
  color: var(--gold);
}

body.editorial-theme .btn-primary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  box-shadow: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 1rem 2rem;
}

body.editorial-theme .btn-primary:hover {
  background: #fff;
  color: #000;
  box-shadow: none;
}

body.editorial-theme .btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
}

body.editorial-theme .btn-secondary:hover {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

body.editorial-theme .btn-whatsapp {
  background: transparent;
  border: 1px solid #25D366;
  color: #25D366;
  box-shadow: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
}

body.editorial-theme .btn-whatsapp:hover {
  background: #25D366;
  color: #000;
}

body.editorial-theme .editorial-main .business-hero {
  padding-top: 0;
  margin-top: -4.5rem;
  padding-bottom: 2rem;
}

body.editorial-theme .editorial-main .business-hero-inner {
  padding-top: 6rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}

body.editorial-theme .business-hero .hero-buttons {
  justify-content: center;
}

body.editorial-theme .business-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 6rem);
  color: #fff;
  font-style: italic;
  text-align: center;
  width: 100%;
}

body.editorial-theme .business-hero-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 540px;
}

body.editorial-theme .business-hero .hero-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  margin-right: auto;
}

body.editorial-theme .hero-parallax,
body.editorial-theme .hero-gradient {
  opacity: 0.35;
}

body.editorial-theme .ghana-stripe {
  height: 2px;
  opacity: 0.6;
}

body.editorial-theme .social-link {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.editorial-theme .social-link:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

body.editorial-theme .carousel-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.editorial-theme .carousel-btn:hover {
  background: #fff;
  color: #000;
}

body.editorial-theme .carousel-dot.active {
  background: #fff;
}

body.editorial-theme .testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
}

body.editorial-theme .map-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Two shop locations */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 560px) {
  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.location-card {
  padding: 1.5rem;
  text-align: left;
}

.location-card-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.location-card-name i {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.location-card-brand {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.35rem 0 0.5rem;
}

.location-card-address {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.location-card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.location-card-hours {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.location-card-hours i {
  color: var(--gold);
  margin-right: 0.35rem;
}

.location-card-map {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.15rem;
  display: inline-block;
}

.location-card-map:hover {
  color: #fff;
  border-color: #fff;
}

body.editorial-theme .booking-info-list li strong {
  display: block;
  color: #fff;
  margin-bottom: 0.2rem;
}

body.editorial-theme .contact-card h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.editorial-theme .contact-card a {
  color: var(--gold);
}

body.editorial-theme .whatsapp-float {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: none;
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
}

body.editorial-theme .whatsapp-float::before {
  display: none;
}

body.editorial-theme .whatsapp-float:hover {
  background: #fff;
  color: #000;
}

body.editorial-theme .skeleton {
  background: rgba(255, 255, 255, 0.05);
}

body.editorial-theme .business-hours {
  color: var(--text-muted);
  border-color: var(--glass-border);
}

body.editorial-theme .booking-page {
  background: #0a0a0a;
}

body.editorial-theme .booking-bg__shade {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.78) 50%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

body.editorial-theme .personality-card,
body.editorial-theme .booking-form-card {
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

body.editorial-theme .booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #fff;
}

body.editorial-theme .booking-title span {
  color: var(--gold);
  font-style: italic;
}

body.editorial-theme .booking-subhead,
body.editorial-theme .booking-logo {
  color: var(--text-secondary);
  font-family: 'IBM Plex Mono', monospace;
  background: transparent;
  box-shadow: none;
}

body.editorial-theme .booking-quote-card {
  background: rgba(255, 255, 255, 0.04);
  border-left-color: var(--gold);
  color: var(--text-secondary);
}

body.editorial-theme .booking-info-list li {
  border-color: var(--glass-border);
  color: var(--text-secondary);
}

body.editorial-theme .form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

body.editorial-theme.booking-page .form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: normal;
}

body.editorial-theme .form-group input,
body.editorial-theme .form-group select,
body.editorial-theme .form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

body.editorial-theme .form-group input:focus,
body.editorial-theme .form-group select:focus,
body.editorial-theme .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: none;
}

body.editorial-theme .booking-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

body.editorial-theme .btn-book-submit {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

body.editorial-theme .btn-book-submit:hover:not(:disabled) {
  background: #fff;
  color: #000;
  box-shadow: none;
}

body.editorial-theme .booking-whatsapp-alt a {
  color: var(--gold);
}

body.editorial-theme .booking-container {
  padding-top: 5rem;
}

@media (max-width: 899px) {
  body[data-page="booking"] .booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }

  body[data-page="booking"] .booking-form-card {
    order: 1;
  }

  body[data-page="booking"] .personality-card {
    order: 2;
  }

  body[data-page="booking"] .personality-card,
  body[data-page="booking"] .booking-form-card {
    min-width: 0;
  }
}

body.editorial-theme .booking-footer-note {
  color: var(--text-muted);
}

body.editorial-theme .booking-owner-name {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
}

body.editorial-theme .service-tag {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

body.editorial-theme .booking-form-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

body.editorial-theme .booking-avatar {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

body.editorial-theme .booking-avatar i {
  color: rgba(255, 255, 255, 0.5);
}

body.editorial-theme .flatpickr-calendar {
  background: #111;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

body.editorial-theme .flatpickr-months,
body.editorial-theme .flatpickr-months .flatpickr-month {
  background: #111;
}

body.editorial-theme .flatpickr-current-month,
body.editorial-theme .flatpickr-current-month .flatpickr-monthDropdown-months,
body.editorial-theme .flatpickr-current-month input.cur-year {
  color: #fff;
  font-weight: 500;
}

body.editorial-theme .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #111;
}

body.editorial-theme .flatpickr-weekdays {
  background: #111;
}

body.editorial-theme span.flatpickr-weekday {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

body.editorial-theme .flatpickr-months .flatpickr-prev-month,
body.editorial-theme .flatpickr-months .flatpickr-next-month {
  color: #fff;
  fill: #fff;
}

body.editorial-theme .flatpickr-months .flatpickr-prev-month:hover,
body.editorial-theme .flatpickr-months .flatpickr-next-month:hover {
  color: var(--gold);
  fill: var(--gold);
}

body.editorial-theme .flatpickr-day {
  color: #fff;
}

body.editorial-theme .flatpickr-day.today {
  border-color: var(--gold);
}

body.editorial-theme .flatpickr-day.today:hover,
body.editorial-theme .flatpickr-day.today:focus {
  background: rgba(212, 168, 83, 0.2);
  border-color: var(--gold);
  color: #fff;
}

body.editorial-theme .flatpickr-day:hover,
body.editorial-theme .flatpickr-day:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.editorial-theme .flatpickr-day.selected,
body.editorial-theme .flatpickr-day.selected:hover,
body.editorial-theme .flatpickr-day.selected:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

body.editorial-theme .flatpickr-day.flatpickr-disabled,
body.editorial-theme .flatpickr-day.prevMonthDay,
body.editorial-theme .flatpickr-day.nextMonthDay {
  color: rgba(255, 255, 255, 0.28);
}

body.editorial-theme .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

body.editorial-theme .flatpickr-day.fully-booked-day {
  position: relative;
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}

body.editorial-theme .flatpickr-day.fully-booked-day::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  background: #e53935;
  transform: rotate(-45deg);
  pointer-events: none;
  z-index: 1;
}

body.editorial-theme .flatpickr-day.fully-booked-day:hover,
body.editorial-theme .flatpickr-day.fully-booked-day:focus {
  background: rgba(229, 57, 53, 0.12);
  border-color: rgba(229, 57, 53, 0.45);
  color: rgba(255, 255, 255, 0.4);
}

body.editorial-theme .numInputWrapper span.arrowUp:after {
  border-bottom-color: #fff;
}

body.editorial-theme .numInputWrapper span.arrowDown:after {
  border-top-color: #fff;
}

body.editorial-theme .form-group input::placeholder,
body.editorial-theme .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
}
