/* RUNWAY SALON - PREMIUM STYLESHEET */

:root {
  /* ── Surfaces ── */
  --noir: #0c0a08;
  --noir-1: #131109;
  --noir-2: #1c1912;
  --noir-3: #252017;
  --noir-border: #2e2a1f;
  --noir-border-2: #3d3828;

  /* ── Gold System ── */
  --gold: #d4a843;
  --gold-bright: #f2c96e;
  --gold-deep: #9a7a28;
  --gold-trace: rgba(212, 168, 67, 0.10);
  --gold-glow: rgba(212, 168, 67, 0.25);

  /* ── Typography Colors ── */
  --cream: #f0e8d2;
  --cream-soft: #c4b898;
  --dust: #7a7060;

  /* ── Accents ── */
  --rose: #b8736a;
  --rose-trace: rgba(184, 115, 106, 0.12);
  --wa-green: #25D366;
  --wa-glow: rgba(37, 211, 102, 0.30);
  --call-blue: #2563eb;
  --call-glow: rgba(37, 99, 235, 0.30);

  /* ── Config ── */
  --section-pad-mobile: 72px 0px;
  --section-pad-desktop: 120px 0px;
  --max-width: 1140px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 100px;

  /* ── Motion ── */
  --ease-luxury: cubic-bezier(0.16, 1, 0.32, 1);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.22s;
  --dur-mid: 0.45s;
  --dur-slow: 0.70s;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ── BASE & RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--noir);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  /* Base for accessibility/zoom */
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* Form inputs min 16px to prevent iOS zoom */
input,
select,
textarea {
  font-size: 16px;
  font-family: inherit;
  border: none;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

/* ── UTILITIES ── */
.max-width {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.section-pad {
  padding: var(--section-pad-mobile);
  position: relative;
}

.section-pad::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 67, 0.25) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .max-width {
    padding: 0 60px;
  }

  .section-pad {
    padding: var(--section-pad-desktop);
  }
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.section-head h2 em {
  font-style: italic;
  color: var(--gold);
}

.head-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .section-head h2 {
    font-size: 64px;
  }
}

/* Dot Matrix Pattern Overlay */
.bg-dots {
  background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: 0 0;
  opacity: 0.04;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur-slow) var(--ease-luxury), transform var(--dur-slow) var(--ease-luxury);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease-luxury), transform 0.55s var(--ease-luxury);
}

.reveal-stagger.is-visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}

.reveal-stagger.is-visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 90ms;
}

.reveal-stagger.is-visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 180ms;
}

.reveal-stagger.is-visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 270ms;
}

.reveal-stagger.is-visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 360ms;
}

.reveal-stagger.is-visible>*:nth-child(n+6) {
  opacity: 1;
  transform: none;
  transition-delay: 450ms;
}

/* ── 1. NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 72px;
  background: rgba(12, 10, 8, 0.4);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: height var(--dur-mid) var(--ease-luxury),
              background var(--dur-mid) var(--ease-luxury),
              backdrop-filter var(--dur-mid) var(--ease-luxury),
              box-shadow var(--dur-mid) var(--ease-luxury),
              border-color var(--dur-mid) var(--ease-luxury);
}

.navbar.scrolled {
  height: 60px;
  background: rgba(12, 10, 8, 0.65);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 46px;
  width: auto;
  transition: height var(--dur-mid) var(--ease-luxury);
}

.navbar.scrolled .logo-img {
  height: 38px;
}

.logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn-book) {
  font: 400 14px var(--font-body);
  letter-spacing: 0.04em;
  color: var(--cream-soft);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s var(--ease-luxury);
}

.nav-links a:not(.btn-book)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-luxury);
}

.nav-links a:not(.btn-book):hover,
.nav-links a:not(.btn-book).active {
  color: var(--gold);
}

.nav-links a:not(.btn-book):hover::after,
.nav-links a:not(.btn-book).active::after {
  width: 100%;
}

.btn-book {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--noir);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all var(--dur-mid) var(--ease-luxury);
  box-shadow: 0 4px 12px var(--gold-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-book:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--gold-glow);
  border-color: rgba(255, 255, 255, 0.3);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle .line {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.35s var(--ease-luxury);
  transform-origin: center;
}

@media (min-width: 1024px) {
  .navbar {
    height: 88px;
  }
  
  .navbar.scrolled {
    height: 68px;
  }

  .logo-img {
    height: 54px;
  }
  
  .navbar.scrolled .logo-img {
    height: 42px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

.mobile-links {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 32px;
}

.mobile-links a:not(.mobile-btn-book) {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.4s var(--ease-luxury);
}

.mobile-btn-book {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--noir);
  padding: 18px 48px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s var(--ease-luxury);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 168, 67, 0.2);
}

.mobile-menu.open .mobile-links a {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger links in JS */

/* Menu open icon state */
.menu-toggle.open .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open .line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── 2. HERO SECTION ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg.parallax-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
  mix-blend-mode: luminosity;
  filter: contrast(1.1) sepia(0.3) hue-rotate(-10deg);
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--noir) 100%);
  z-index: 0;
  pointer-events: none;
}

/* ── HERO RIGHT FADED IMAGE ── */
.hero-right-img {
  display: none; /* hidden on mobile */
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: 0;
  pointer-events: none;

  /* Use mask-image for a professional feathered blend (Canva style) */
  -webkit-mask-image: linear-gradient(to right, 
    transparent 0%, 
    rgba(0,0,0,0) 5%,
    rgba(0,0,0,0.5) 30%,
    black 70%
  );
  mask-image: linear-gradient(to right, 
    transparent 0%, 
    rgba(0,0,0,0) 5%,
    rgba(0,0,0,0.5) 30%,
    black 70%
  );

  background-image:
    /* Subtle darkening overlays */
    linear-gradient(to bottom,
      rgba(12, 10, 8, 0.4) 0%,
      transparent 25%,
      transparent 75%,
      rgba(12, 10, 8, 0.5) 100%
    ),
    url('image.png');

  background-size: cover;
  background-position: 80% center;

  /* Subtle blur + brightness + saturation */
  filter: blur(2px) brightness(0.6) saturate(0.9);
  opacity: 0.9;
}

@media (min-width: 768px) {
  .hero-right-img {
    display: block;
  }
}


.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-text {
  flex: 1;
  padding-bottom: 48px;
  position: relative;
  z-index: 2;
  margin-top: 64px;
}

.hero-logo-large {
  display: block;
  margin-bottom: 20px;
}

.hero-large-img {
  height: 170px;
  width: auto;
  max-width: 100%;
  object-fit: contain;

  transform: translateX(-20%) !important;
}


.hero-large-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1;
  margin-left: -4px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--cream-soft);
  margin-bottom: 24px;
  max-width: 600px;
}

/* JS applies spans for words */
.hero-headline span {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotateX(15deg);
}

#hero-headline.animated span {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
}

.hero-sub {
  font: 16px/1.8 var(--font-body);
  color: var(--cream-soft);
  margin-bottom: 40px;
}

.time-sub {
  color: var(--dust);
  font-size: 14px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--noir);
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--dur-mid) var(--ease-luxury);
  box-shadow: 0 6px 20px var(--gold-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: btn-shine 4s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px var(--gold-glow);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-arrow {
  margin-left: 8px;
  transition: transform 0.3s var(--ease-snap);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  color: var(--cream);
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--dur-mid) var(--ease-luxury);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-trace);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}



@media (min-width: 768px) {
  .hero-large-img {
    height: 260px;
    transform: translateX(-9%);
  }

  .hero-large-fallback {
    font-size: 130px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-content {
    padding-top: 0;
  }
}



/* Hero Ticker */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: linear-gradient(90deg, var(--noir-border) 0%, var(--noir-2) 100%);
  border-top: 1px solid var(--noir-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 3;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker-content {
  white-space: nowrap;
  font: 500 11px var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes btn-shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* ── 3. TRUST BAR ── */
.trust-bar {
  background: var(--noir-2);
  border-bottom: 1px solid var(--noir-border);
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  padding: 32px 20px;
}

.trust-stat {
  text-align: center;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.stat-label {
  font: 500 10px var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dust);
}

.trust-sep {
  display: none;
}

@media (min-width: 768px) {
  .trust-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
  }

  .trust-stat {
    flex: 1;
    min-width: 130px;
  }

  .stat-val {
    font-size: 40px;
    margin-bottom: 4px;
  }

  .trust-sep {
    display: block;
    width: 1px;
    height: 40px;
    background: var(--noir-border-2);
    flex-shrink: 0;
  }
}

.star-icon {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  transform: translateY(-3px);
}

/* ── 4. SERVICES ── */
.services {
  background: linear-gradient(to bottom, var(--noir) 0%, rgba(19, 17, 9, 0.35) 50%, var(--noir) 100%), url('luxury_bg.png') no-repeat center/cover fixed;
  position: relative;
}

.services::before {
  content: '';
  display: block;
  opacity: 0.03;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.service-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-filters::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .service-filters {
    justify-content: flex-start;
    padding: 0 20px 10px;
    margin: 0 -20px 48px;
  }
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  color: var(--cream-soft);
  font: 400 13px/1 var(--font-body);
  scroll-snap-align: start;
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease-luxury);
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: var(--gold-glow);
  color: var(--gold-bright);
  border-color: var(--gold);
  font-weight: 500;
  box-shadow: inset 0 0 10px rgba(212, 168, 67, 0.2), 0 0 15px rgba(212, 168, 67, 0.1);
}

.service-grid {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
  .service-grid {
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: rgba(25, 22, 16, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-mid) var(--ease-luxury);
  opacity: 1;
  max-height: 800px;
  transform: none;
  display: flex;
  flex-direction: column;
}

.service-card.hidden {
  display: none !important;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 15px 40px rgba(212, 168, 67, 0.15);
}

.svc-art {
  height: 200px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 168, 67, 0.08);
}

.svc-art svg, .svc-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-mid) var(--ease-luxury);
}

.service-card:hover .svc-art svg {
  transform: scale(1.08);
}

.svc-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-pill {
  font: 500 10px var(--font-body);
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.svc-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.svc-content p {
  font-size: 14px;
  color: var(--cream-soft);
  margin-bottom: 24px;
  flex: 1;
}

.svc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--noir-border-2);
  padding-top: 16px;
  font-size: 13px;
  color: var(--dust);
}

.svc-meta .price {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
}

.btn-book-svc {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: 0.3s var(--ease-luxury);
  margin-top: auto;
  align-self: flex-start;
}

.btn-book-svc:hover {
  background: var(--gold);
  color: var(--noir);
  box-shadow: 0 4px 15px var(--gold-glow);
}

/* ── 5. FEATURES & TESTIMONIALS ── */
.features {
  background: var(--noir-1);
}

.feature-blocks {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .feature-blocks {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.feat-box {
  position: relative;
  padding: 32px;
  background: rgba(25, 22, 16, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-mid) var(--ease-luxury);
}

.feat-box:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 15px 40px rgba(212, 168, 67, 0.15);
}

.feat-num {
  position: absolute;
  right: -10px;
  top: -20px;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--noir-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  background: var(--noir-3);
}

.feat-box h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feat-box p {
  font-size: 14px;
  color: var(--cream-soft);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.marquee-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-row {
  display: flex;
  overflow: hidden;
}

.marquee-track-fwd,
.marquee-track-rev {
  display: flex;
  width: max-content;
  gap: 20px;
}

.marquee-track-fwd {
  animation: marquee-fwd 28s linear infinite;
}

.marquee-track-rev {
  animation: marquee-rev 32s linear infinite;
}

.marquee-row:hover .marquee-track-fwd,
.marquee-row:hover .marquee-track-rev {
  animation-play-state: paused;
}

@keyframes marquee-fwd {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

@keyframes marquee-rev {
  0% {
    transform: translateX(calc(-50% - 10px));
  }

  100% {
    transform: translateX(0);
  }
}

.testimonial-card {
  background: var(--noir-3);
  border: 1px solid var(--noir-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  min-width: 300px;
  width: 320px;
  flex-shrink: 0;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--cream-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}

.testimonial-card .author {
  font: 500 12px var(--font-body);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── 6. GALLERY ── */
.gallery {
  background: linear-gradient(to bottom, var(--noir) 0%, rgba(12, 10, 8, 0.4) 50%, var(--noir) 100%), url('luxury_bg.png') no-repeat center/cover fixed;
}

.gallery-grid {
  columns: 2;
  column-gap: 12px;
}

@media (min-width: 600px) {
  .gallery-grid {
    column-gap: 16px;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    columns: 3;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--noir-2);
  border: 1px solid var(--noir-border);
  transition: transform 0.3s, border-color 0.3s;
}

.gallery-item:hover {
  transform: scale(0.98);
  border-color: var(--gold);
}

.gallery-item svg {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item.aspect-square svg {
  aspect-ratio: 1/1;
}

.gallery-item.aspect-tall svg {
  aspect-ratio: 3/4;
}

.gallery-item::after {
  content: 'View +';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 8, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item.hidden {
  display: none;
}

/* Lightbox UI */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 4, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-luxury);
  backdrop-filter: blur(10px);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-luxury);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--noir-border-2);
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-content svg {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  display: block;
  background: var(--noir-2);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid var(--gold-trace);
  font-size: 24px;
  z-index: 10000;
  transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--noir);
  transform: rotate(90deg);
}

/* ── 7. TEAM ── */
.team {
  background: linear-gradient(to bottom, rgba(12, 10, 8, 0.4) 0%, var(--noir) 100%), url('luxury_bg.png') no-repeat center/cover fixed;
}

.team-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 16px;
  margin: 0 -20px;
  padding-left: 20px;
}

.team-grid::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    margin: 0;
    padding-left: 0;
  }
}

.team-card {
  background: rgba(25, 22, 16, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  min-width: 280px;
  width: 88%;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: all var(--dur-mid) var(--ease-luxury);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 15px 40px rgba(212, 168, 67, 0.15);
}

@media (min-width: 1024px) {
  .team-card {
    width: auto;
  }
}

.team-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 67, 0.6);
  overflow: hidden;
  background: radial-gradient(circle, var(--gold-trace), var(--noir-2));
  position: relative;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.team-role {
  font: 500 12px var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.team-tags span {
  background: var(--noir-3);
  border: 1px solid var(--noir-border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--cream-soft);
}

.team-rating {
  font: 500 13px var(--font-body);
  color: var(--gold);
}

/* ── 8. BOOKING WIZARD ── */
.booking {
  background: var(--noir-2);
}

.form-container {
  max-width: 700px;
}

.booking-wizard {
  background: var(--noir-1);
  border: 1px solid var(--noir-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .booking-wizard {
    padding: 48px;
  }
}

.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--noir-border-2);
  background: var(--noir-1);
  color: var(--dust);
  font: 400 14px/34px var(--font-body);
  text-align: center;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-label {
  font: 500 11px var(--font-body);
  color: var(--dust);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 0.4s;
  position: absolute;
  top: 40px;
}

@media (max-width: 480px) {
  .step-label {
    display: none;
  }
}

.step.active .step-dot {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-trace);
  font-weight: 500;
}

.step.active .step-label {
  color: var(--gold);
}

.step.done .step-dot {
  background: var(--gold-deep);
  color: var(--cream);
  border-color: var(--gold-deep);
}

.step-line {
  flex: 1;
  height: 1.5px;
  background: var(--noir-border-2);
  position: relative;
  top: -10px;
  margin: 0 8px;
}

.step-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.5s var(--ease-luxury);
}

.wizard-panels {
  position: relative;
  min-height: 250px;
}

.step-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury), visibility 0s linear 0.4s;
}

.step-panel.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
  position: relative;
  transition: opacity 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury);
}

.panel-label {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 20px;
}

.form-input,
.custom-select select {
  width: 100%;
  height: 54px;
  background: var(--noir-3);
  border: 1px solid var(--noir-border-2);
  border-radius: var(--radius-md);
  color: var(--cream);
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.custom-select select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-trace);
}

textarea.form-input {
  height: auto;
  min-height: 100px;
  padding: 16px;
}

.custom-select {
  position: relative;
}

.custom-select::after {
  content: '\25BC';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 10px;
  pointer-events: none;
}

.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.mb-16 {
  margin-bottom: 16px;
}

.stylist-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .stylist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stylist-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1.5px solid var(--noir-border-2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: 0.2s;
  background: var(--noir-3);
}

.stylist-option:hover {
  border-color: var(--gold-deep);
}

.stylist-option.selected {
  border-color: var(--gold);
  background: var(--gold-trace);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.st-avi {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
}

.st-info strong {
  display: block;
  font: 400 16px var(--font-display);
  color: var(--cream);
  margin-bottom: 2px;
}

.st-info span {
  display: block;
  font: 400 12px var(--font-body);
  color: var(--dust);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .time-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.time-slot {
  border: 1px solid var(--noir-border-2);
  border-radius: var(--radius-pill);
  padding: 12px 8px;
  text-align: center;
  font: 400 13px var(--font-body);
  color: var(--cream-soft);
  cursor: pointer;
  transition: 0.2s;
}

.time-slot:hover {
  border-color: var(--gold-deep);
  color: var(--gold);
}

.time-slot.selected {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
  font-weight: 500;
}

.phone-input {
  display: flex;
}

.prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--noir-border-2);
  color: var(--cream-soft);
  padding: 0 16px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  border: 1px solid var(--noir-border-2);
  border-right: none;
  font-size: 15px;
}

.phone-input .form-input {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.panel-nav {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.panel-nav.right {
  justify-content: flex-end;
}

.panel-nav.split {
  justify-content: space-between;
}

.btn-next,
.btn-prev {
  height: 52px;
  border-radius: var(--radius-pill);
  font: 500 15px var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  transition: 0.2s;
}

@media (min-width: 600px) {

  .btn-next,
  .btn-prev {
    max-width: 200px;
  }
}

.btn-prev {
  border: 1px solid var(--noir-border-2);
  color: var(--cream-soft);
}

.btn-prev:hover {
  border-color: var(--cream-soft);
  color: var(--cream);
}

.btn-next {
  background: var(--gold);
  color: var(--noir);
}

.btn-next:hover {
  background: var(--gold-bright);
  box-shadow: 0 4px 16px var(--gold-glow);
  transform: translateY(-2px);
}

/* #wa-confirm styles merged into .btn-wa-confirm */

/* ── 9. LOCATION ── */
.location {
  background: var(--noir-1);
}

.loc-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .loc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

.loc-info {
  background: var(--noir-2);
  border: 1px solid var(--noir-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.loc-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-item p {
  font: 400 15px/1.6 var(--font-body);
  color: var(--cream-soft);
}

.loc-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.btn-dir {
  border: 1px solid var(--gold);
  color: var(--gold);
  height: 48px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  font-weight: 500;
  transition: 0.2s;
  flex: 1;
}

.btn-dir:hover {
  background: var(--gold-trace);
}

.btn-call {
  background: var(--call-blue);
  color: #fff;
  height: 48px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  font-weight: 500;
  box-shadow: 0 4px 16px var(--call-glow);
  transition: 0.2s;
  flex: 1;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--call-glow);
}

/* ── 10. FOOTER ── */
.footer {
  background: var(--noir);
  border-top: 1px solid var(--noir-border);
  padding-top: 64px;
}

.footer-top {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  padding-bottom: 48px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1.5fr;
    text-align: left;
  }
}

.brand-col .nav-logo {
  justify-content: center;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .brand-col .nav-logo {
    justify-content: flex-start;
  }
}

.brand-col .tagline {
  font: italic 16px var(--font-display);
  color: var(--dust);
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-links a {
  font: 400 15px var(--font-body);
  color: var(--cream-soft);
  transition: color 0.25s;
}

.foot-links a:hover {
  color: var(--gold);
}

.social-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .social-row {
    justify-content: flex-start;
  }
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--noir-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dust);
  transition: 0.2s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-trace);
  transform: translateY(-2px);
}

.foot-address {
  font: 400 14px/1.6 var(--font-body);
  color: var(--dust);
}

.foot-bottom {
  border-top: 1px solid var(--noir-border);
  padding: 24px 20px;
  text-align: center;
}

.foot-bottom p {
  font: 400 13px var(--font-body);
  color: var(--dust);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── 11. FABs ── */
.fab-stack {
  position: fixed;
  bottom: 20px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9998;
  animation: fab-enter 0.6s 1s var(--ease-luxury) both;
}

@media (min-width: 768px) {
  .fab-stack {
    bottom: 24px;
    right: 24px;
  }
}

@keyframes fab-enter {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.22s var(--ease-snap);
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
}

.fab:active {
  transform: scale(0.93);
}

.fab-wa {
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 4s ease-in-out 1.6s infinite;
}

.fab-call {
  background: #2563eb;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.40);
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.15);
  }
}

.fab::before {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 12px);
  background: var(--noir-3);
  color: var(--cream);
  font: 400 12px/1 var(--font-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--noir-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: opacity 0.2s;
}

/* ── AMBIENT TEXTURES ── */
.services::after, .gallery::after, .team::after {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: -10%;
  left: -20%;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.gallery::after {
  top: auto;
  bottom: -10%;
  left: auto;
  right: -20%;
  background: radial-gradient(circle, var(--rose-trace), transparent 70%);
}

.team::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--gold-trace), transparent 70%);
  opacity: 0.3;
}

.services > *, .gallery > *, .team > * {
  position: relative;
  z-index: 1;
}

.team, .gallery, .services {
  overflow: hidden;
}

.fab:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .fab::before {
    display: none;
  }
}

/* ── WhatsApp Confirm Button ── */
.btn-wa-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  height: 52px;
  background: #25D366;
  color: #fff;
  font: 500 15px/1 var(--font-body);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.30);
  transition: all 0.25s var(--ease-snap);
  text-decoration: none;
}

.btn-wa-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
  background: #22c55e;
}

.btn-wa-confirm:active {
  transform: scale(0.97);
}

.btn-wa-confirm svg {
  flex-shrink: 0;
}


/* ── Premium Date & Time Picker ── */
.datetime-section {
  margin-bottom: 24px;
}

.dt-label {
  display: block;
  font: 500 13px var(--font-body);
  color: var(--cream-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.time-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--noir-3);
  border: 1px solid var(--noir-border-2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: border-color 0.3s;
}

.time-picker:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-trace);
}

.time-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tp-arrow {
  width: 40px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--dust);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  user-select: none;
}

.tp-arrow:hover {
  color: var(--gold);
  background: var(--gold-trace);
  border-color: rgba(212, 168, 67, 0.2);
}

.tp-arrow:active {
  transform: scale(0.9);
}

.tp-display {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  background: var(--noir-1);
  border: 1.5px solid var(--noir-border-2);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tp-ampm-display {
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.tp-sep {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  padding: 0 2px;
  align-self: center;
  margin-top: 4px;
}

.tp-hint {
  text-align: center;
  font: 400 12px var(--font-body);
  color: var(--dust);
  margin-top: 12px;
  letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE OVERRIDES
   ══════════════════════════════════════════════════ */

/* ── Booking: Panel nav stacking on mobile ── */
@media (max-width: 480px) {
  .panel-nav.split {
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }

  .btn-prev,
  .btn-next,
  .btn-wa-confirm {
    height: 64px;
    font-size: 15px;
    flex: 1;
    width: auto;
    padding: 0 12px;
  }

  /* Give WA button more flex space for long text */
  .btn-wa-confirm {
    flex: 1.6;
    font-size: 13px;
    gap: 6px;
  }
}

/* ── Section headings: smaller on mobile ── */
@media (max-width: 480px) {
  .section-head h2 {
    font-size: 32px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .panel-label {
    font-size: 20px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .section-head h2 {
    font-size: 40px;
  }
}

/* ── Service cards: compact on very small screens ── */
@media (max-width: 420px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-art {
    height: 160px;
  }

  .svc-content {
    padding: 16px;
  }

  .svc-content h3 {
    font-size: 20px;
  }

  .svc-content p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .svc-meta {
    font-size: 12px;
    padding-top: 12px;
  }

  .svc-meta .price {
    font-size: 16px;
  }

  .btn-book-svc {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (min-width: 421px) and (max-width: 599px) {
  .svc-art {
    height: 140px;
  }

  .svc-content {
    padding: 14px;
  }

  .svc-content h3 {
    font-size: 16px;
  }

  .svc-content p {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .svc-meta {
    font-size: 11px;
  }

  .svc-meta .price {
    font-size: 15px;
  }

  .btn-book-svc {
    padding: 7px 14px;
    font-size: 11px;
  }
}

/* ── Gallery: ensure 2-col masonry holds ── */
@media (max-width: 420px) {
  .gallery-grid {
    columns: 2;
  }
}

/* ── Time picker: compact on mobile ── */
@media (max-width: 380px) {
  .time-picker {
    padding: 14px 12px;
    gap: 4px;
  }

  .tp-display {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }

  .tp-ampm-display {
    font-size: 15px;
  }

  .tp-sep {
    font-size: 28px;
  }

  .tp-arrow {
    width: 34px;
    height: 24px;
    font-size: 10px;
  }
}

/* ── Trust bar: tighter on mobile ── */
@media (max-width: 380px) {
  .trust-container {
    gap: 20px 12px;
    padding: 24px 16px;
  }

  .stat-val {
    font-size: 28px;
  }
}

/* ── Team: snap cards narrower ── */
@media (max-width: 380px) {
  .team-card {
    min-width: 240px;
    padding: 24px 16px;
  }

  .team-avatar {
    width: 110px;
    height: 110px;
  }

  .team-card h3 {
    font-size: 22px;
  }
}

/* ── Location: map height ── */
@media (max-width: 480px) {
  .loc-grid iframe {
    height: 260px !important;
  }

  .loc-info {
    padding: 24px 16px;
  }
}

/* ── Hero: text sizing ── */
@media (max-width: 380px) {
  .hero-headline {
    font-size: 22px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 16px 32px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .hero-large-img {
    height: 120px;
  }
}

/* ── Booking wizard step dots ── */
@media (max-width: 380px) {
  .step-dot {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 28px;
  }

  .steps-indicator {
    margin-bottom: 32px;
  }

  .booking-wizard {
    padding: 24px 16px;
  }
}

/* ── Footer: compact ── */
@media (max-width: 480px) {
  .footer-top {
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer {
    padding-top: 40px;
  }
}

/* ── Features/testimonials ── */
@media (max-width: 480px) {
  .feature-blocks {
    margin-bottom: 48px;
  }

  .feat-box {
    padding: 24px;
  }

  .feat-box h4 {
    font-size: 20px;
  }

  .testimonial-card {
    min-width: 260px;
    width: 280px;
    padding: 20px 22px;
  }

  .testimonial-card p {
    font-size: 15px;
  }
}

/* ── Fab buttons: don't overlap content ── */
@media (max-width: 380px) {
  .fab-stack {
    bottom: 12px;
    right: 12px;
    gap: 10px;
  }

  .fab {
    width: 48px;
    height: 48px;
  }

  .fab-wa svg,
  .fab-call svg {
    width: 22px;
    height: 22px;
  }
}

/* ── Lightbox: full-width on mobile ── */
@media (max-width: 600px) {
  .lightbox-content {
    max-width: 96vw;
    border-radius: var(--radius-md);
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}



/* ══════════════════════════════════════════════════
   PRELOADER / LOADING SCREEN — PREMIUM
   ══════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #060503;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.32, 1),
              visibility 0s linear 1s;
}

.preloader.loaded {
  opacity: 0;
  transform: scale(1.05);
  visibility: hidden;
  pointer-events: none;
}

/* Ambient radial glow behind logo */
.preloader-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, rgba(212, 168, 67, 0.04) 40%, transparent 70%);
  animation: preloader-glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes preloader-glow-pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Floating gold particles */
.preloader-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.preloader-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: preloader-float 4s ease-in-out infinite;
}

.preloader-particles span:nth-child(1)  { left: 15%; animation-delay: 0s; animation-duration: 3.5s; }
.preloader-particles span:nth-child(2)  { left: 30%; animation-delay: 0.4s; animation-duration: 4.2s; }
.preloader-particles span:nth-child(3)  { left: 45%; animation-delay: 0.8s; animation-duration: 3.8s; }
.preloader-particles span:nth-child(4)  { left: 60%; animation-delay: 1.2s; animation-duration: 4.5s; }
.preloader-particles span:nth-child(5)  { left: 75%; animation-delay: 0.2s; animation-duration: 3.2s; }
.preloader-particles span:nth-child(6)  { left: 20%; animation-delay: 1.5s; animation-duration: 4s; width: 2px; height: 2px; }
.preloader-particles span:nth-child(7)  { left: 50%; animation-delay: 0.6s; animation-duration: 3.6s; width: 4px; height: 4px; }
.preloader-particles span:nth-child(8)  { left: 80%; animation-delay: 1s; animation-duration: 4.3s; width: 2px; height: 2px; }
.preloader-particles span:nth-child(9)  { left: 35%; animation-delay: 1.8s; animation-duration: 3.4s; }
.preloader-particles span:nth-child(10) { left: 65%; animation-delay: 0.3s; animation-duration: 4.1s; width: 4px; height: 4px; }

@keyframes preloader-float {
  0% {
    bottom: -10%;
    opacity: 0;
    transform: translateX(0) scale(0);
  }
  15% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(40px) scale(0.3);
  }
}

/* Logo container */
.preloader-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  z-index: 2;
}

/* Triple animated rings */
.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(212, 168, 67, 0.2);
  animation: preloader-spin 1.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-ring-2 {
  inset: -14px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: var(--gold-deep);
  border-left-color: rgba(154, 122, 40, 0.15);
  animation-duration: 2s;
  animation-direction: reverse;
}

.preloader-ring-3 {
  inset: -28px;
  border-width: 1px;
  border-top-color: rgba(212, 168, 67, 0.15);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: rgba(212, 168, 67, 0.08);
  animation-duration: 3s;
}

@keyframes preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Logo */
.preloader-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  position: relative;
  z-index: 3;
  animation: preloader-pulse 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.3));
}

.preloader-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  position: relative;
  z-index: 3;
  animation: preloader-pulse 2.5s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(212, 168, 67, 0.4);
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* Tagline */
.preloader-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--dust);
  letter-spacing: 0.1em;
  margin-top: 48px;
  opacity: 0;
  animation: preloader-fade-up 1s 0.5s ease forwards;
  position: relative;
  z-index: 2;
}

@keyframes preloader-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Progress bar at bottom */
.preloader-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(212, 168, 67, 0.08);
  overflow: hidden;
}

.preloader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright));
  animation: preloader-progress 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.5);
  position: relative;
}

.preloader-progress-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 60px;
  height: 7px;
  background: linear-gradient(90deg, transparent, rgba(242, 201, 110, 0.6));
  filter: blur(3px);
  border-radius: 50%;
}

@keyframes preloader-progress {
  0% { width: 0%; }
  30% { width: 40%; }
  60% { width: 70%; }
  100% { width: 100%; }
}
