/* JDS LUXURY UNISEX 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;
  scroll-padding-top: 72px;
}

@media (min-width: 1024px) {
  html {
    scroll-padding-top: 80px;
  }
}

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 (YS INTERIORS STYLE) ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(to bottom, rgba(12,10,8,0.95) 0%, rgba(12,10,8,0.6) 40%, transparent 100%);
}
#navbar.navbar-scrolled {
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(245,237,227,0.05);
}
.navbar-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
@media (min-width: 1024px) { .navbar-inner { padding: 0 2.5rem; height: 80px; } }

.nav-logo img { height: 2.5rem; width: auto; transition: transform 0.3s ease; }
.nav-logo:hover img { transform: scale(1.05); }
@media (min-width: 1024px) { .nav-logo img { height: 3rem; } }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream);
  position: relative; transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: none;
  background: var(--gold); color: var(--noir);
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.625rem 1.5rem; border-radius: 2px; border: none;
  transition: background 0.25s ease, transform 0.2s ease;
}
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* Hamburger */
.hamburger-btn {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.625rem 0.875rem; border-radius: 999px;
  border: 1px solid rgba(245,237,227,0.3); cursor: pointer;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
}
@media (min-width: 1024px) { .hamburger-btn { display: none; } }

.hamburger-label {
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream);
}
.hamburger-lines { display: flex; flex-direction: column; gap: 4px; width: 20px; }
.hamburger-line {
  height: 2.5px; background: var(--cream); border-radius: 999px;
  transition: all 0.3s ease; transform-origin: center;
}
.hamburger-line:nth-child(1) { width: 20px; }
.hamburger-line:nth-child(2) { width: 20px; }
.hamburger-line:nth-child(3) { width: 14px; }

.hamburger-btn.menu-open { background: rgba(255,255,255,0.12); border-color: rgba(245,237,227,0.3); }
.hamburger-btn.menu-open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.hamburger-btn.menu-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.menu-open .hamburger-line:nth-child(3) { width: 20px; transform: rotate(-45deg) translate(3px, -3px); }

/* Mobile Menu */
#mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  display: flex; flex-direction: column;
  background: linear-gradient(165deg, var(--noir) 0%, #1A1A1A 45%, var(--noir) 100%);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
#mobile-menu.menu-visible { opacity: 1; pointer-events: auto; }

.mobile-menu-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.02); pointer-events: none; user-select: none;
}
.mobile-menu-accent {
  position: absolute; left: 0; top: 15%; bottom: 15%; width: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent 100%);
  pointer-events: none;
}
.mobile-nav-content {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex: 1; padding: 5rem 2rem 2rem; position: relative; z-index: 10;
}
.mobile-nav-links {
  display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 280px;
}
.mobile-nav-link {
  display: flex; align-items: center; gap: 1rem; width: 100%;
  padding: 1rem 0; border-bottom: 1px solid rgba(245,237,227,0.05);
  opacity: 0; transform: translateY(20px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-nav-link .link-num {
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 500;
  color: rgba(212,168,67,0.5); letter-spacing: 0.1em; width: 1.5rem; text-align: right;
}
.mobile-nav-link .link-text {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 300;
  color: var(--cream); flex: 1; transition: color 0.3s ease;
}
.mobile-nav-link:hover .link-text { color: var(--gold-bright); }
.mobile-nav-link .link-arrow {
  width: 1rem; height: 1rem; color: rgba(212,168,67,0.5);
  transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-nav-link:hover .link-arrow { color: var(--gold); transform: translateX(4px); }

.mobile-nav-cta {
  margin-top: 2rem; opacity: 0; transform: translateY(20px);
}
.mobile-contact-info {
  margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  opacity: 0; transform: translateY(20px);
}
.mobile-contact-divider { width: 2rem; height: 1px; background: rgba(212,168,67,0.5); }
.mobile-contact-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 500;
  color: rgba(245,237,227,0.6); transition: color 0.3s ease;
}
.mobile-contact-phone:hover { color: var(--gold-bright); }
.mobile-contact-phone svg { width: 0.875rem; height: 0.875rem; color: var(--gold); }
.mobile-contact-details {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-body); font-size: 0.75rem; color: rgba(245,237,227,0.5);
}
.mobile-contact-details .dot { color: rgba(212,168,67,0.5); }


/* ── 2. HERO SECTION ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px; /* Prevent navbar overlap on mobile/tablet */
}

.hero-bg.parallax-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.28;
  /* Removed mix-blend-mode and filter — both force full-page GPU compositing on every video frame */
  pointer-events: none;
  will-change: opacity;
}

.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%, 
    transparent 45%, 
    rgba(0, 0, 0, 0.4) 65%, 
    black 90%
  );
  mask-image: linear-gradient(to right, 
    transparent 0%, 
    transparent 45%, 
    rgba(0, 0, 0, 0.4) 65%, 
    black 90%
  );

  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;

  /* Removed filter: blur() — blur forces its own GPU raster layer */
  /* Darkening handled by the linear-gradient overlay in background-image above */
  opacity: 0.5;
}

@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: 16px; /* Compact padding to fit within 100svh */
  position: relative;
  z-index: 2;
  margin-top: 0; /* Center vertically using padding on parent, no arbitrary push */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

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

.hero-large-img {
  height: 160px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-left: -20px; /* Offset the 8.8% transparent left padding in logo.png */
  margin-top: -24px; /* Offset the 15.4% transparent top padding in logo.png */
  /* Logo aligned perfectly to the left */
  transform: none !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-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  color: var(--cream-soft);
  margin-bottom: 18px;
  max-width: 700px;
}

.accent-gold {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-display);
}

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

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

.hero-desc {
  font: 16px/1.8 var(--font-body);
  color: var(--cream-soft);
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 8px 18px; /* Reduced from 10px 20px for better vertical fit */
  border-radius: var(--radius-pill);
  margin-top: 24px; /* Reduced from 36px to prevent vertical cutoff */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-rating-badge .badge-star {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.hero-rating-badge .badge-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--cream-soft);
  letter-spacing: 0.03em;
}

.hero-rating-badge .badge-text strong {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 767px) {
  .hero-rating-badge {
    padding: 6px 14px;
    gap: 8px;
    margin-top: 18px;
  }
  .hero-rating-badge .badge-star {
    font-size: 14px;
  }
  .hero-rating-badge .badge-text {
    font-size: 11.5px;
  }
}


.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: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  /* left removed — animation now uses translateX only (GPU-composited) */
  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(19, 17, 9, 0.75);
  /* Removed backdrop-filter — each instance forces a separate GPU compositing layer */
  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: 250px;
    margin-left: -31px; /* Offset the 8.8% transparent left padding in logo.png */
    margin-top: -38px; /* Offset the 15.4% transparent top padding in logo.png */
    transform: none !important;
  }

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

  .hero-eyebrow {
    font-size: 13px;
    margin-bottom: 16px; /* Compact margin */
  }

  .hero-headline {
    font-size: 48px; /* Reduced from 60px to prevent vertical cutoff and overflow */
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .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;
  will-change: transform;
}

.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 {
  /* Use translateX instead of left — left triggers layout, translateX is GPU-only */
  0% {
    transform: skewX(-25deg) translateX(-300%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    transform: skewX(-25deg) translateX(400%);
    opacity: 0;
  }
  100% {
    transform: skewX(-25deg) translateX(400%);
    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);
}

/* ── ABOUT SECTION ── */
.about {
  background: var(--noir-1);
  border-bottom: 1px solid var(--noir-border);
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 0 700px;
}

.about::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;
}

.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
  }
}

.about-content {
  position: relative;
}

.about-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--cream-soft);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-content p:last-of-type {
  margin-bottom: 32px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: background var(--dur-mid) var(--ease-luxury), border-color var(--dur-mid) var(--ease-luxury), transform var(--dur-mid) var(--ease-luxury);
}

.about-highlight-item:hover {
  background: rgba(212, 168, 67, 0.06);
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-2px);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.about-highlight-item div strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}

.about-highlight-item div span {
  font-size: 12px;
  color: var(--dust);
  line-height: 1.4;
}

.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Removed filter — forces a GPU raster layer */
  opacity: 0.88;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--noir);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px var(--gold-glow);
  white-space: nowrap;
}

.badge-rating {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

@media (max-width: 767px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 300px;
  }
}

/* ── 4. SERVICES ── */
.services {
  background: linear-gradient(to bottom, var(--noir) 0%, rgba(19, 17, 9, 0.2) 50%, var(--noir) 100%), url('luxury_bg.png') no-repeat center/cover;
  border-bottom: 1px solid var(--noir-border);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 0 900px;
}

.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 Menu System ── */

/* --- Top Tabs --- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.menu-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 14px var(--font-body);
  color: var(--cream-soft);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-luxury), border-color var(--dur-fast) var(--ease-luxury), color var(--dur-fast) var(--ease-luxury), box-shadow var(--dur-fast) var(--ease-luxury);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.menu-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.menu-tab.active {
  background: var(--gold-glow);
  color: var(--gold-bright);
  border-color: var(--gold);
  box-shadow: inset 0 0 12px rgba(212, 168, 67, 0.2);
}

/* --- Menu Container (Sidebar + Content Grid) --- */
.menu-container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  min-height: 500px;
  background: rgba(25, 22, 16, 0.97);
  /* Removed backdrop-filter — replaced with near-opaque solid bg */
  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;
  position: relative;
  z-index: 1;
}

/* --- Sidebar Navigation --- */
.menu-sidebar {
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid var(--noir-border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 600px;
}

.sidebar-desktop {
  display: flex;
  flex-direction: column;
}

.sidebar-mobile {
  display: none;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
  padding: 0 16px;
}

.sidebar-dropdown {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--dur-mid) var(--ease-luxury);
}

.sidebar-dropdown:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 168, 67, 0.1);
}

.sidebar-dropdown option {
  background: var(--noir-base);
  color: var(--cream);
}

.select-arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  font-size: 10px;
}

/* Custom scrollbar – sidebar */
.menu-sidebar::-webkit-scrollbar {
  width: 4px;
}

.menu-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.menu-sidebar::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 67, 0.18);
  border-radius: 100px;
}

.menu-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 67, 0.35);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font: 400 13px var(--font-body);
  color: var(--cream-soft);
  border: none;
  background: transparent;
  border-left: 3px solid transparent;
  transition: all var(--dur-fast) var(--ease-luxury);
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.sidebar-item:hover {
  background: rgba(212, 168, 67, 0.06);
  color: var(--cream);
}

.sidebar-item.active {
  border-left-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  color: var(--gold-bright);
  font-weight: 500;
}

.si-icon {
  font-size: 16px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

/* --- Menu Content Area --- */
.menu-content {
  padding: 32px;
  overflow-y: auto;
  max-height: 600px;
  scroll-behavior: smooth;
  transition: opacity 0.25s ease;
}

/* Custom scrollbar – content */
.menu-content::-webkit-scrollbar {
  width: 5px;
}

.menu-content::-webkit-scrollbar-track {
  background: transparent;
}

.menu-content::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 67, 0.15);
  border-radius: 100px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 67, 0.3);
}

/* --- Category Section --- */
.menu-category-section {
  margin-bottom: 40px;
}

.menu-category-section:last-child {
  margin-bottom: 0;
}

.menu-cat-title {
  font: 400 28px var(--font-display);
  color: var(--cream);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--noir-border-2);
  position: relative;
}

.menu-cat-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

/* --- Accordion --- */
.menu-accordion {
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-fast);
}

.menu-accordion:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast);
}

.accordion-header:hover {
  background: rgba(212, 168, 67, 0.05);
}

.acc-title {
  font: 500 15px var(--font-body);
  color: var(--cream);
}

.acc-count {
  font: 400 12px var(--font-body);
  color: var(--dust);
  margin-left: auto;
  margin-right: 12px;
}

.acc-chevron {
  color: var(--gold);
  font-size: 14px;
  transition: transform var(--dur-fast) var(--ease-luxury);
}

.accordion-header.open .acc-chevron {
  transform: rotate(180deg);
}

/* --- Accordion Body --- */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease-luxury),
    padding 0.3s;
  padding: 0 20px;
}

.accordion-body.open {
  max-height: 2000px;
  padding: 4px 20px 20px;
}

/* --- Price Table --- */
.price-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background var(--dur-fast), border-radius var(--dur-fast);
  border-radius: 0;
}

.price-row:hover {
  background: rgba(212, 168, 67, 0.04);
  border-radius: var(--radius-sm);
  padding-left: 8px;
  padding-right: 8px;
}

.price-row:last-child {
  border-bottom: none;
}

.pr-name {
  font: 400 14px var(--font-body);
  color: var(--cream-soft);
}

.pr-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  margin: 0 12px;
  min-width: 20px;
  height: 1px;
  align-self: flex-end;
  margin-bottom: 6px;
}

.pr-price {
  font: 400 16px var(--font-display);
  color: var(--gold);
  white-space: nowrap;
}

/* --- Book Button (in accordion) --- */
.menu-book-btn {
  margin-top: 16px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font: 500 12px var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.menu-book-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(212, 168, 67, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-luxury);
}

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

.menu-book-btn:hover::before {
  transform: translateX(100%);
}

/* --- Booking Cascade --- */
.booking-cascade {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.booking-price-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-md);
  margin-top: 4px;
}

.bpd-label {
  font: 400 13px var(--font-body);
  color: var(--cream-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bpd-price {
  font: 400 28px var(--font-display);
  color: var(--gold-bright);
}

/* --- Mobile Responsive (≤ 768px) --- */
@media (max-width: 768px) {
  .menu-container {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--noir-border);
    padding: 12px 0;
    max-height: none;
    overflow-y: visible;
  }

  .sidebar-desktop {
    display: none;
  }

  .sidebar-mobile {
    display: block;
  }
  .menu-content {
    padding: 20px;
    max-height: none;
  }

  .menu-cat-title {
    font-size: 22px;
  }

  .menu-tabs {
    justify-content: flex-start;
    padding: 0 20px 10px;
    margin: 0 -20px 32px;
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    flex-shrink: 0;
  }
}

.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);
}

/* Old service card styles removed — replaced by menu system */

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

.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.95);
  /* Removed backdrop-filter: blur(16px) — each card creates its own GPU composite layer */
  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: transform var(--dur-mid) var(--ease-luxury), border-color var(--dur-mid) var(--ease-luxury), box-shadow 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;
  will-change: transform;
}

.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.25) 50%, var(--noir) 100%), url('luxury_bg.png') no-repeat center/cover;
  border-bottom: 1px solid var(--noir-border);
  content-visibility: auto;
  contain-intrinsic-size: 0 1000px;
}

.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 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-luxury);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

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

.gallery-item.aspect-tall {
  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.98);
  /* Removed backdrop-filter from lightbox — it's fully opaque anyway */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-luxury);
}

.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: var(--noir-2);
  border-bottom: 1px solid var(--noir-border);
  content-visibility: auto;
  contain-intrinsic-size: 0 700px;
}

.team-carousel-wrapper {
  position: relative;
  width: 100%;
}

.team-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  margin: 0 -20px;
  padding-left: 20px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.team-grid::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

@media (min-width: 1024px) {
  .team-grid {
    gap: 32px;
    margin: 0;
    padding-left: 0;
    padding-bottom: 20px;
  }
}

/* ── Carousel Navigation ── */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(12, 10, 8, 0.92);
  /* Removed backdrop-filter — replaced with more opaque bg */
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.32, 1), transform 0.4s cubic-bezier(0.16, 1, 0.32, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.32, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.carousel-nav svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.32, 1);
}

.carousel-nav.prev-btn {
  left: -26px;
}

.carousel-nav.next-btn {
  right: -26px;
}

.carousel-nav:hover {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold-bright);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4), 0 12px 30px rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav:hover.prev-btn svg {
  transform: translateX(-2px);
}

.carousel-nav:hover.next-btn svg {
  transform: translateX(2px);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 1199px) {
  .carousel-nav.prev-btn {
    left: -10px;
  }
  .carousel-nav.next-btn {
    right: -10px;
  }
}

@media (max-width: 1023px) {
  .carousel-nav {
    display: none; /* Hide navigation buttons on mobile/tablet since swipe is native and preferred */
  }
  .team-grid {
    padding-right: 20px;
  }
}

/* ── Team Cards ── */
.team-card {
  background: linear-gradient(135deg, rgba(28, 25, 18, 0.98) 0%, rgba(14, 12, 9, 0.99) 100%);
  /* Removed backdrop-filter:blur(24px) — 5 cards × heavy blur = worst scroll culprit */
  border: 1px solid rgba(212, 168, 67, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  min-width: 290px;
  width: 85%;
  flex-shrink: 0;
  scroll-snap-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.32, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

/* Luxury card glow background effect */
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 168, 67, 0.15), transparent 70%);
  opacity: 0.5;
  transition: opacity 0.5s var(--ease-luxury);
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(212, 168, 67, 0.18), 0 20px 50px rgba(0, 0, 0, 0.7);
}

.team-card:hover::before {
  opacity: 1;
}

@media (min-width: 1024px) {
  .team-card {
    width: 340px;
    scroll-snap-align: start;
  }
}

.team-avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 67, 0.35);
  overflow: hidden;
  background: radial-gradient(circle, var(--gold-trace), var(--noir-2));
  position: relative;
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.32, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.32, 1);
}

.team-card:hover .team-avatar {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.team-card:hover .team-avatar img {
  transform: scale(1.1);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.team-card:hover h3 {
  color: var(--gold-bright);
}

.team-role {
  font: 600 11px var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.team-tags span {
  background: rgba(212, 168, 67, 0.04);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--cream-soft);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.32, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.32, 1), color 0.4s cubic-bezier(0.16, 1, 0.32, 1);
  letter-spacing: 0.02em;
}

.team-card:hover .team-tags span {
  background: rgba(212, 168, 67, 0.09);
  border-color: rgba(212, 168, 67, 0.4);
  color: var(--gold-bright);
}

.team-rating {
  font: 600 13px var(--font-body);
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(212, 168, 67, 0.08);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 168, 67, 0.15);
}

/* ── 8. BOOKING WIZARD ── */
.booking {
  background: var(--noir-2);
  border-bottom: 1px solid var(--noir-border);
}

.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: 14px 18px;
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.32, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.32, 1), background 0.3s cubic-bezier(0.16, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.32, 1);
  background: rgba(30, 27, 20, 0.98);
  /* Removed backdrop-filter:blur(12px) — 6 cards × blur = constant GPU pressure */
  position: relative;
  overflow: hidden;
}

/* Glassmorphism gradient effect on hover */
.stylist-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 0%, rgba(212, 168, 67, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.stylist-option:hover {
  border-color: rgba(212, 168, 67, 0.4);
  background: rgba(25, 22, 16, 0.6);
  transform: translateY(-2px);
}

.stylist-option:hover::before {
  opacity: 1;
}

.stylist-option.selected {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stylist-option.selected::before {
  background: radial-gradient(circle at 10% 0%, rgba(212, 168, 67, 0.15), transparent 70%);
  opacity: 1;
}

.st-avi {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--noir-2);
  border: 1.5px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.32, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.stylist-option:hover .st-avi,
.stylist-option.selected .st-avi {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 168, 67, 0.3);
}

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

.stylist-option:hover strong,
.stylist-option.selected strong {
  color: var(--gold-bright);
}

.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);
  border-bottom: 1px solid var(--noir-border);
}

.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);
}

/* ── 9b. INSTAGRAM SECTION ── */
.instagram-section {
  background: var(--noir-1);
  border-bottom: 1px solid var(--noir-border);
  position: relative;
}

.ig-handle-bar {
  text-align: center;
  margin-top: -12px;
  margin-bottom: 36px;
}

.ig-handle-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: color var(--dur-fast) var(--ease-luxury), opacity var(--dur-fast) var(--ease-luxury);
}

.ig-handle-link:hover {
  color: var(--gold-bright);
  opacity: 0.9;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 2.5rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

@media (min-width: 768px) { 
  .instagram-grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
  } 
}

.instagram-card {
  display: flex;
  flex-direction: column;
  background: var(--noir-1);
  border: 1px solid var(--noir-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-luxury), border-color var(--dur-mid) var(--ease-luxury), box-shadow var(--dur-mid) var(--ease-luxury);
  will-change: transform;
}

.instagram-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-glow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.ig-card-header {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  gap: 8px;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

@media (min-width: 768px) { 
  .ig-card-header { 
    padding: 14px 18px; 
    gap: 12px; 
  } 
}

.ig-avatar {
  width: 24px; 
  height: 24px;
  border-radius: 50%; 
  background: var(--gold); 
  color: var(--noir);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: var(--font-display); 
  font-size: 0.65rem; 
  font-weight: 700;
  flex-shrink: 0;
}

@media (min-width: 768px) { 
  .ig-avatar { 
    width: 32px; 
    height: 32px; 
    font-size: 0.8rem; 
  } 
}

.ig-username {
  font-family: var(--font-body); 
  font-size: 0.75rem; 
  font-weight: 500;
  color: var(--cream); 
  flex-grow: 1;
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis;
}

@media (min-width: 768px) { 
  .ig-username { 
    font-size: 0.85rem; 
  } 
}

.ig-more { 
  width: 16px; 
  height: 16px; 
  color: var(--cream-soft); 
  flex-shrink: 0; 
}

@media (min-width: 768px) { 
  .ig-more { 
    width: 20px; 
    height: 20px; 
  } 
}

.ig-card-image { 
  width: 100%; 
  aspect-ratio: 1; 
  overflow: hidden; 
  position: relative;
  background: #000;
}

.ig-card-image img, 
.ig-card-image video { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
}

.ig-card-footer { 
  padding: 12px; 
  background: rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) { 
  .ig-card-footer { 
    padding: 16px 20px 20px; 
  } 
}

.ig-actions {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  margin-bottom: 8px; 
  color: var(--cream);
}

.ig-actions-left { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

@media (min-width: 768px) { 
  .ig-actions-left { 
    gap: 16px; 
  } 
}

.ig-actions svg {
  width: 18px; 
  height: 18px;
  stroke: var(--cream-soft);
  fill: none;
  transition: stroke var(--dur-fast) var(--ease-luxury), transform var(--dur-fast) var(--ease-luxury);
  cursor: pointer;
}

@media (min-width: 768px) { 
  .ig-actions svg { 
    width: 22px; 
    height: 22px; 
  } 
}

.instagram-card:hover .ig-actions svg:hover { 
  stroke: var(--gold); 
  transform: scale(1.1); 
}

.ig-likes {
  font-family: var(--font-body); 
  font-size: 0.75rem; 
  font-weight: 600;
  color: var(--cream); 
  margin-bottom: 6px;
}

.ig-caption {
  font-family: var(--font-body); 
  font-size: 0.75rem; 
  color: var(--cream-soft);
  line-height: 1.45; 
  display: -webkit-box; 
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; 
  overflow: hidden;
}

@media (min-width: 768px) { 
  .ig-likes {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  .ig-caption { 
    font-size: 0.85rem; 
    line-height: 1.5; 
  } 
}

.ig-caption strong {
  color: var(--cream);
  font-weight: 600;
  margin-right: 6px;
}

.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--dur-fast) var(--ease-luxury), color var(--dur-fast) var(--ease-luxury), box-shadow var(--dur-fast) var(--ease-luxury), transform var(--dur-fast) var(--ease-luxury);
  text-decoration: none;
}

.insta-follow-btn:hover {
  background: var(--gold);
  color: var(--noir);
  box-shadow: 0 6px 20px var(--gold-glow);
  transform: translateY(-2px);
}

.insta-follow-btn svg {
  transition: transform var(--dur-fast) var(--ease-luxury);
}

.insta-follow-btn:hover svg {
  transform: rotate(15deg) scale(1.1);
}


/* ── BOOKING VALIDATION ── */
.wizard-error {
  background: rgba(184, 115, 106, 0.12);
  border: 1px solid rgba(184, 115, 106, 0.3);
  color: #e59c92;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font: 400 13px var(--font-body);
  margin-top: 16px;
  opacity: 0;
  display: none;
  transition: opacity var(--dur-mid) var(--ease-luxury);
  line-height: 1.45;
  text-align: center;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.input-shake {
  animation: shakeError 0.4s var(--ease-luxury) !important;
}

.form-input.is-invalid {
  border-color: var(--rose) !important;
  box-shadow: 0 0 10px var(--rose-trace) !important;
}

.custom-select.is-invalid select {
  border-color: var(--rose) !important;
  background-color: rgba(184, 115, 106, 0.05) !important;
}


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

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

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

.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-desc {
  font: 400 14px/1.7 var(--font-body);
  color: var(--dust);
  margin-top: 12px;
  margin-bottom: 20px;
}

.foot-heading {
  font: 500 14px var(--font-body);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.foot-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--gold);
}

@media (min-width: 768px) {
  .foot-heading::after {
    left: 0;
    transform: none;
  }
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

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

.foot-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.foot-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.foot-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.foot-contact-item span {
  font: 400 13px/1.6 var(--font-body);
  color: var(--cream-soft);
}

.foot-book-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-pill);
  font: 500 12px var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.3s var(--ease-luxury), color 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury);
  text-decoration: none;
}

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

@media (max-width: 767px) {
  .foot-links {
    align-items: center;
  }
  .foot-contact-item {
    justify-content: center;
    text-align: center;
  }
}


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

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--noir-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dust);
  transition: border-color 0.25s var(--ease-luxury), color 0.25s var(--ease-luxury), background 0.25s var(--ease-luxury), transform 0.25s var(--ease-luxury);
}

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

.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);
}


/* ── 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;
  /* Promote ambient glow to its own layer so it doesn't affect scroll paint */
  will-change: opacity;
  transform: translateZ(0);
}

.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: transform 0.25s var(--ease-snap), box-shadow 0.25s var(--ease-snap), background 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;
  }
}

/* Old service card responsive styles removed — replaced by menu system mobile styles */

/* ── 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-desc {
    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: 105px;
    margin-left: -13px;
    margin-top: -12px;
  }
}

/* ── 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%; }
}

/* ── LUXURY RITUALS (SENSORY PALETTE) ── */
.ritual-section {
  background: var(--noir-1);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .ritual-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .ritual-grid { grid-template-columns: repeat(6, 1fr); gap: 1.25rem; } }

.ritual-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  cursor: pointer;
  border: 1px solid var(--noir-border);
}
.ritual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-luxury);
}
.ritual-card:hover img {
  transform: scale(1.08);
}
.ritual-card .ritual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,8,0.95) 0%, rgba(12,10,8,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.4s ease;
}
.ritual-card:hover .ritual-overlay {
  background: linear-gradient(to top, rgba(12,10,8,0.98) 0%, rgba(12,10,8,0.5) 60%, rgba(12,10,8,0.2) 100%);
}
.ritual-card .ritual-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.ritual-card .ritual-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--cream-soft);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ritual-card:hover .ritual-desc {
  opacity: 1;
  transform: translateY(0);
}
.ritual-card .ritual-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.3;
}

/* ── BEAUTY JOURNEY (PROCESS TIMELINE) ── */
.process-section {
  background: var(--noir-1);
  border-bottom: 1px solid var(--noir-border);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .process-step::after {
    content: '';
    position: absolute;
    top: 3.75rem;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
    z-index: 0;
    opacity: 0.3;
  }
  .process-step:last-child::after {
    display: none;
  }
}

.process-step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  background: var(--noir-2);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover .process-step-number {
  background: var(--gold);
  color: var(--noir);
  box-shadow: 0 0 15px var(--gold-glow);
}

.process-step-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.process-step-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream-soft);
  line-height: 1.6;
}

/* ── Hero: height-based media queries for vertical fit ── */
@media (min-width: 768px) and (max-height: 850px) {
  .hero {
    padding-top: 76px;
  }
  .hero-large-img {
    height: 200px;
    margin-left: -25px;
    margin-top: -30px;
  }
  .hero-eyebrow {
    margin-bottom: 8px;
  }
  .hero-headline {
    font-size: 38px;
    margin-bottom: 12px;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 500px;
  }
  .hero-ctas {
    gap: 12px;
  }
  .btn-primary, .btn-secondary {
    padding: 14px 30px;
    font-size: 14px;
  }
  .hero-rating-badge {
    margin-top: 16px;
    padding: 6px 14px;
  }
}

@media (min-width: 768px) and (max-height: 680px) {
  .hero {
    padding-top: 68px;
  }
  .hero-large-img {
    height: 160px;
    margin-left: -20px;
    margin-top: -24px;
  }
  .hero-eyebrow {
    margin-bottom: 6px;
  }
  .hero-headline {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .hero-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: 450px;
  }
  .hero-ctas {
    gap: 10px;
  }
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
  }
  .hero-rating-badge {
    margin-top: 10px;
    padding: 4px 12px;
    gap: 6px;
  }
  .hero-rating-badge .badge-star {
    font-size: 14px;
  }
  .hero-rating-badge .badge-text {
    font-size: 11px;
  }
}

@media (max-width: 767px) and (max-height: 700px) {
  .hero {
    padding-top: 60px;
  }
  .hero-large-img {
    height: 130px;
    margin-left: -16px;
    margin-top: -20px;
  }
  .hero-eyebrow {
    margin-bottom: 6px;
  }
  .hero-headline {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .hero-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
  }
  .hero-rating-badge {
    margin-top: 10px;
    padding: 5px 12px;
  }
}

