/* ============================================================
   NATASHA KELMAN — Premium Hair & Beauty
   Design System + Full Site Styles
   Palette: Black / Cream / Gold
   Fonts: Playfair Display / Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600&family=Great+Vibes&display=swap');

/* ---- Design Tokens ---- */
:root {
  --black:        #080808;
  --black-soft:   #111111;
  --black-mid:    #1C1C1C;
  --cream:        #FAF8F2;
  --cream-dark:   #F0EBE0;
  --cream-mid:    #E8DFD0;
  --gold:         #C9A84C;
  --gold-light:   #DFC07A;
  --gold-pale:    #F5E6C0;
  --gold-dark:    #A67C35;
  --charcoal:     #2A2A2A;
  --white:        #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #8A8A8A;
  --text-cream:   #FAF8F2;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-titling: 'Cinzel', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;
  --font-script:  'Great Vibes', cursive;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:      cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out:     cubic-bezier(0.215, 0.61, 0.355, 1);
  --t-fast:       0.25s var(--ease);
  --t-base:       0.4s var(--ease);
  --t-slow:       0.7s var(--ease);
  --t-xslow:      1.2s var(--ease);

  --nav-h:        80px;
  --max-w:        1200px;
  --max-w-narrow: 780px;
  --radius:       2px;
  --gap:          clamp(40px, 6vw, 80px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Custom Cursor ---- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.2s, opacity 0.2s;
  will-change: left, top;
  opacity: 0.6;
}
.cursor-dot.hovered { width: 4px; height: 4px; }
.cursor-ring.hovered { width: 50px; height: 50px; opacity: 1; }

/* ---- Intro Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  width: clamp(200px, 40vw, 320px);
  animation: loaderPulse 1s var(--ease) forwards;
  opacity: 0;
}
.loader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  animation: loaderBar 1.4s var(--ease) forwards;
  width: 0;
}
@keyframes loaderPulse {
  0%   { opacity: 0; transform: scale(0.9); }
  60%  { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes loaderBar {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 8000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 500;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 60px);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}
.nav.light-nav.scrolled {
  background: rgba(250, 248, 242, 0.97);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2);
}
.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0;
  transition: opacity var(--t-base);
  margin-right: auto;
}
.nav.scrolled .nav-logo { opacity: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-cream);
  position: relative;
  padding-bottom: 2px;
}
.nav.light-nav .nav-links a { color: var(--text-dark); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-base);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  margin-left: clamp(16px, 2vw, 32px);
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: var(--t-base);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-slow), visibility var(--t-slow);
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-overlay-logo { width: 180px; margin-bottom: 16px; }
.nav-overlay a {
  font-family: var(--font-serif);
  font-size: clamp(22px, 5vw, 32px);
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
}
.nav-overlay a:hover { color: var(--gold); }
.nav-overlay .nav-cta-overlay {
  margin-top: 16px;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Typography ---- */
.display {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
}
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; }
h2 { font-size: clamp(28px, 3.5vw, 44px); line-height: 1.2; }
h3 { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.3; }
h4 { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.4; }
p { font-size: clamp(14px, 1.1vw, 16px); line-height: 1.85; font-weight: 300; }
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.script { font-family: var(--font-script); font-size: clamp(28px, 4vw, 48px); }

/* Gold shimmer text */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 50%, var(--gold-light) 60%, var(--gold-dark) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease infinite;
}
@keyframes shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.35);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.25);
}

.btn-outline-cream {
  border: 1px solid var(--cream);
  color: var(--cream);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--black);
}

.btn-icon { font-size: 14px; }

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}
.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}
.section { padding: var(--gap) 0; }
.section-lg { padding: clamp(60px, 9vw, 120px) 0; }

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.5vw, 32px); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ---- Gold Divider ---- */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.gold-rule::before, .gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-rule-dot { color: var(--gold); font-size: 8px; }

/* Diamond separator */
.separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px auto;
  width: fit-content;
}
.separator::before, .separator::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.separator-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ---- Scroll Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =============================================
   NK CHAT WIDGET
   Floating AI assistant — LFM2.5-1.2B on Hetzner
   Falls back gracefully when server is offline
   ============================================= */
.nk-chat-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  animation: chatBtnIn 0.6s 3s var(--ease) both;
}
@keyframes chatBtnIn {
  from { opacity:0; transform: scale(0.7) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.nk-chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(201,168,76,0.5), 0 2px 12px rgba(0,0,0,0.3);
}
.nk-chat-btn.open { background: var(--black-mid); }
.nk-chat-icon { font-size: 22px; line-height:1; }
.nk-chat-icon-close { display:none; font-size:18px; color:var(--gold); }
.nk-chat-btn.open .nk-chat-icon      { display:none; }
.nk-chat-btn.open .nk-chat-icon-close { display:block; }

/* Unread dot */
.nk-chat-badge {
  position: absolute;
  top: 0; right: 0;
  width: 12px; height: 12px;
  background: var(--black);
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: badgePulse 2s ease infinite;
}
@keyframes badgePulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}
.nk-chat-btn.open .nk-chat-badge { display:none; }

/* Panel */
.nk-chat-panel {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 799;
  width: clamp(300px, 88vw, 380px);
  background: var(--black-soft);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  max-height: 520px;
}
.nk-chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Panel header */
.nk-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--black);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  flex-shrink: 0;
}
.nk-chat-header-logo { width: 28px; opacity: 0.9; }
.nk-chat-header-info { flex: 1; }
.nk-chat-header-name {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--cream);
  line-height: 1.2;
}
.nk-chat-header-status {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.nk-status-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: statusPulse 2.5s ease infinite;
}
@keyframes statusPulse {
  0%,100% { opacity:1; }
  50%      { opacity:0.4; }
}

/* Messages area */
.nk-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.2) transparent;
}
.nk-msg {
  display: flex;
  flex-direction: column;
  max-width: 84%;
  gap: 4px;
}
.nk-msg.user { align-self: flex-end; align-items: flex-end; }
.nk-msg.ai   { align-self: flex-start; }
.nk-msg-bubble {
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
  font-family: var(--font-sans);
  font-weight: 300;
}
.nk-msg.user .nk-msg-bubble {
  background: var(--gold);
  color: var(--black);
  border-radius: 12px 12px 2px 12px;
}
.nk-msg.ai .nk-msg-bubble {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px 12px 12px 2px;
}

/* Typing indicator */
.nk-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px 12px 12px 2px;
  width: fit-content;
}
.nk-typing span {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: typingDot 1.2s ease infinite;
}
.nk-typing span:nth-child(2) { animation-delay: 0.2s; }
.nk-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%,80%,100% { opacity: 0.25; transform: scale(0.85); }
  40%          { opacity: 1;    transform: scale(1.1); }
}

/* Input row */
.nk-chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.1);
  flex-shrink: 0;
}
.nk-chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--cream);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}
.nk-chat-input:focus { border-color: rgba(201,168,76,0.45); }
.nk-chat-input::placeholder { color: rgba(250,248,242,0.3); }
.nk-chat-send {
  width: 36px; height: 36px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: var(--black);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.nk-chat-send:hover { background: var(--gold-light); transform: scale(1.05); }
.nk-chat-send:disabled { opacity: 0.4; cursor: default; transform: none; }

/* Offline state */
.nk-chat-offline {
  padding: 20px 16px;
  text-align: center;
}
.nk-chat-offline p {
  font-size: 13px;
  color: rgba(250,248,242,0.55);
  margin-bottom: 16px;
  line-height: 1.7;
}
.nk-chat-offline-actions { display: flex; flex-direction: column; gap: 8px; }
.nk-offline-btn {
  padding: 10px 16px;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font-sans);
}
.nk-offline-btn:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

@media (max-width: 480px) {
  .nk-chat-btn  { bottom: 20px; right: 20px; }
  .nk-chat-panel { right: 12px; bottom: 88px; width: calc(100vw - 24px); }
}

/* =============================================
   CROSSFADE SPOTLIGHT GALLERY
   Three columns, each cycling images with an
   elegant slow fade. Centre column is hero size.
   Columns offset in timing — never all change
   at once. Cinematic, ordered, premium.
   ============================================= */
.hair-gallery {
  background: var(--black);
  overflow: hidden;
  position: relative;
  padding: 0;
}

/* Eyebrow label with flanking gold lines */
.hair-gallery-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 40px 0;
  position: relative;
  z-index: 2;
}
.hair-gallery-header::before,
.hair-gallery-header::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: rgba(201,168,76,0.25);
}
.hair-gallery-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
  white-space: nowrap;
}

/* Three-column stage */
.gallery-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding: 20px 0 0;
  position: relative;
}

/* Each column is a fixed-height crossfade slot */
.gallery-col {
  position: relative;
  flex: 1;
  max-width: 320px;
  height: clamp(260px, 34vw, 420px);
  overflow: visible;
}
.gallery-col.gc-center {
  max-width: 440px;
  height: clamp(340px, 46vw, 560px);
  z-index: 1;
}

/* Each slide: absolutely fills its column, bottom-aligned */
.gallery-slide {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-slide.gs-active {
  opacity: 1;
}

/* Images fill column height, transparent bg */
.gallery-slide img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.75));
  transition: filter 1.6s ease;
}
.gallery-slide.gs-active img {
  animation: galleryCinema 5.5s ease-in-out forwards;
}
@keyframes galleryCinema {
  from { transform: scale(1);    filter: drop-shadow(0 28px 56px rgba(0,0,0,0.75)); }
  to   { transform: scale(1.04); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)) drop-shadow(0 0 20px rgba(201,168,76,0.08)); }
}

/* Side columns: slightly faded to direct eye to centre */
.gallery-col:not(.gc-center) .gallery-slide.gs-active {
  opacity: 0.75;
}

/* Soft darkness vignette on sides */
.gallery-stage::before,
.gallery-stage::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.gallery-stage::before {
  left: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
}
.gallery-stage::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--black) 100%);
}

/* Home: no extra classes needed — default is home-sized */
.hair-gallery-home .hair-gallery-label { color: rgba(201,168,76,0.55); }
.hair-gallery-home .hair-gallery-header { padding-top: 36px; }

/* Footer variant: smaller */
.hair-gallery-footer .gallery-col {
  height: clamp(190px, 24vw, 300px);
  max-width: 240px;
}
.hair-gallery-footer .gallery-col.gc-center {
  height: clamp(240px, 32vw, 400px);
  max-width: 320px;
}
.hair-gallery-footer .hair-gallery-header { padding: 20px 40px 0; }

/* Mobile: show only center column */
@media (max-width: 600px) {
  .gallery-col.gc-side { display: none; }
  .gallery-col.gc-center {
    max-width: 100%;
    height: clamp(280px, 80vw, 420px);
  }
  .gallery-stage { padding: 16px 0 0; }
}

/* =============================================
   HERO — Dark Full Viewport
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    var(--black);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 1px;
  height: 1px;
  background: var(--gold);
  border-radius: 50%;
  animation: particleFloat var(--duration, 8s) ease-in-out infinite var(--delay, 0s);
  opacity: var(--opacity, 0.4);
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  20% { opacity: var(--opacity, 0.4); }
  80% { opacity: var(--opacity, 0.4); }
  100% { transform: translateY(-80vh) translateX(var(--drift, 20px)); opacity: 0; }
}

/* Gold geometric lines */
.hero-line-top {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  animation: lineGrow 1.5s 1.6s var(--ease) forwards;
}
.hero-line-bottom {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  animation: lineGrow 1.5s 1.8s var(--ease) forwards;
}
@keyframes lineGrow { to { height: 80px; } }

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 40px) clamp(24px, 5vw, 60px) 80px;
  max-width: 900px;
}
.hero-sub {
  color: rgba(250, 248, 242, 0.65);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: heroTextIn 0.9s 2.5s var(--ease) forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroTextIn 0.9s 2.8s var(--ease) forwards;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroTextIn 0.9s 7.2s var(--ease) forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.7);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =============================================
   DARK SECTION (Black backgrounds)
   ============================================= */
.section-dark {
  background: var(--black-soft);
  color: var(--text-cream);
}
.section-dark .eyebrow { color: var(--gold); }
.section-dark p { color: rgba(250, 248, 242, 0.7); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }

/* Very dark variant */
.section-black {
  background: var(--black);
  color: var(--text-cream);
}
.section-black .eyebrow { color: var(--gold); }
.section-black p { color: rgba(250, 248, 242, 0.65); }
.section-black h2, .section-black h3 { color: var(--cream); }

/* Cream section */
.section-cream {
  background: var(--cream);
  color: var(--text-dark);
}
.section-cream-dark {
  background: var(--cream-dark);
  color: var(--text-dark);
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 36px 32px;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s var(--ease);
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.service-card:hover::before { height: 100%; }
.service-card-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h4 { margin-bottom: 12px; }
.service-card p { font-size: 13.5px; }

/* Dark variant */
.service-card-dark {
  background: rgba(255,255,255,0.03);
  border-color: rgba(201, 168, 76, 0.12);
}
.service-card-dark h4 { color: var(--cream); }
.service-card-dark p { color: rgba(250,248,242,0.6); }
.service-card-dark:hover { background: rgba(201, 168, 76, 0.06); }

/* =============================================
   SERVICE ACCORDION
   ============================================= */
.service-category {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.service-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: none;
  transition: color var(--t-fast);
}
.service-category-header:hover { color: var(--gold); }
.service-category-header h3 { font-size: clamp(17px, 2vw, 22px); }
.service-category-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: transform var(--t-base), background var(--t-base);
  flex-shrink: 0;
}
.service-category.open .service-category-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
}
.service-category-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.service-category.open .service-category-body { grid-template-rows: 1fr; }
.service-category-inner { overflow: hidden; }
.service-items { padding-bottom: 32px; }
.service-item {
  padding: 24px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.service-item:first-child { border-top: none; padding-top: 0; }
.service-item-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 10px; }
.service-item-name { font-family: var(--font-serif); font-size: 18px; font-weight: 400; }
.service-item-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  border-radius: 20px;
}

/* =============================================
   CROWN CLUB
   ============================================= */
.stamp-card {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-mid) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.stamp-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stamps-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}
.stamp {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(201, 168, 76, 0.3);
  transition: var(--t-base);
  position: relative;
}
.stamp.earned {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}
.stamp.earned::after {
  content: '✦';
  position: absolute;
  font-size: 8px;
  top: -6px;
  right: -4px;
  color: var(--gold);
  animation: twinkle 2s ease infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* =============================================
   BOOKING FORM / STEPS
   ============================================= */
.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.booking-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
}
.booking-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-light);
  margin: 0 auto 10px;
  background: var(--cream);
  transition: var(--t-base);
}
.booking-step.active .step-num,
.booking-step.done .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.step-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.booking-step.active .step-label { color: var(--gold); }

.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.25);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--t-fast);
  border-radius: var(--radius);
}
.form-input:focus { border-color: var(--gold); }
.form-input-dark {
  color: var(--cream);
  border-color: rgba(201, 168, 76, 0.2);
}
.form-input-dark:focus { border-color: var(--gold); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-textarea { resize: vertical; min-height: 120px; }

/* =============================================
   PHOTO PLACEHOLDER (before real photos arrive)
   ============================================= */
.photo-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black-mid) 0%, var(--black) 100%);
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 40%, rgba(201,168,76,0.04) 50%, transparent 60%);
  background-size: 200% 200%;
  animation: photoShimmer 6s ease infinite;
}
@keyframes photoShimmer {
  0%   { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}
.photo-frame-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  white-space: nowrap;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================
   STAT BLOCKS
   ============================================= */
.stat-block { text-align: center; padding: 32px 20px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
  padding: 36px;
  border-top: 2px solid var(--gold);
  background: rgba(255,255,255,0.03);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.5vw, 18px);
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   LOYALTY EXCLUSIONS
   ============================================= */
.exclusion-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.exclusion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(250,248,242,0.65);
}
.exclusion-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: 48px;
}
.footer-logo { width: 160px; margin-bottom: 20px; }
.footer-tagline {
  font-size: 12px;
  color: rgba(250,248,242,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  color: rgba(250,248,242,0.5);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(250,248,242,0.3);
  line-height: 1.6;
}
.footer-bottom a {
  color: rgba(201,168,76,0.6);
  transition: color var(--t-fast);
}
.footer-bottom a:hover { color: var(--gold); }

/* Social icons */
.social-links { display: flex; gap: 14px; margin-top: 20px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,0.6);
  font-size: 13px;
  transition: var(--t-base);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { color: var(--cream); margin-bottom: 20px; }
.page-hero p { color: rgba(250,248,242,0.6); max-width: 600px; margin: 0 auto; }
.page-hero-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 32px auto 0;
}

/* =============================================
   APP PROMO SECTION
   ============================================= */
.app-mockup {
  width: clamp(180px, 25vw, 260px);
  margin: 0 auto;
  position: relative;
}
.phone-frame {
  background: linear-gradient(145deg, var(--black-mid), var(--black));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 28px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.08),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(201,168,76,0.08);
}
.phone-screen {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-mid) 100%);
  border-radius: 20px;
  height: clamp(320px, 45vw, 480px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.phone-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: var(--black-mid);
  border-radius: 0 0 12px 12px;
}
.phone-screen-logo { width: 80px; }
.phone-nav-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(201,168,76,0.06);
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
}
.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: rgba(201,168,76,0.4);
}
.phone-nav-item.active { color: var(--gold); }
.phone-nav-item span { font-size: 8px; letter-spacing: 0.06em; }
.phone-feature-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 48px;
}
.phone-pill {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 11px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-pill-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* App feature list */
.app-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.app-feature:last-child { border-bottom: none; }
.app-feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.app-feature-text h4 { font-size: 15px; margin-bottom: 4px; color: var(--cream); }
.app-feature-text p { font-size: 13px; color: rgba(250,248,242,0.55); }

/* =============================================
   SPLIT LAYOUT
   ============================================= */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split-content {
  padding: clamp(48px, 7vw, 96px) clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-image { position: relative; overflow: hidden; }

/* =============================================
   POLICY BLOCKS
   ============================================= */
.policy-block {
  padding: 36px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.policy-block:last-child { border-bottom: none; }
.policy-block h3 {
  font-size: clamp(17px, 1.8vw, 21px);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.policy-block h3::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.policy-block p + p { margin-top: 12px; }

/* =============================================
   CONTACT
   ============================================= */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 14px;
  color: var(--cream);
  font-weight: 300;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  font-size: 11px;
  color: rgba(250,248,242,0.4);
  letter-spacing: 0.06em;
  position: absolute;
  top: calc(var(--nav-h) + 20px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}
.breadcrumb a { color: inherit; transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .split-layout { grid-template-columns: 1fr; }
  .split-image { min-height: 320px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .exclusion-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-steps { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}
