/* ===================================
   LUMIÈRE — Premium Beauty Salon CSS
   Chocolate × Gold Luxury Theme
   =================================== */

/* --- CSS Variables (Design Tokens) --- */
:root {
  --choco-dark:   #1e1008;   /* lighter — amber-warm mystical */
  --choco-deep:   #271708;
  --choco-mid:    #3c200e;
  --choco-warm:   #582d14;
  --amber:        #a15416;   /* key warm amber accent */
  --amber-light:  #c47820;
  --amber-glow:   rgba(161,84,22,0.3);
  --gold-dark:    #8a6510;
  --gold-mid:     #b88800;
  --gold:         #c8930f;
  --gold-light:   #e0b845;
  --gold-pale:    #f2d890;
  --gold-glow:    rgba(200,147,15,0.35);
  --cream:        #fdf6ec;
  --cream-warm:   #eee0c4;
  --white:        #ffffff;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;

  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --radius-card:  20px;
  --radius-btn:   100px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--choco-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
  /* Amber-mystical background — warm, luminous, deep */
  background-image:
    radial-gradient(ellipse 120% 60% at 80% 20%, rgba(161,84,22,0.38) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 10% 80%, rgba(30,15,8,0.60) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(161,84,22,0.14) 0%, transparent 55%);
}

a { color: inherit; text-decoration: none; cursor: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-smooth),
              height 0.2s var(--ease-smooth),
              background 0.2s ease,
              opacity 0.2s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 160, 23, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-smooth),
              width 0.3s var(--ease-smooth),
              height 0.3s var(--ease-smooth),
              border-color 0.3s ease,
              opacity 0.3s ease;
}

body.cursor-hover .cursor { width: 20px; height: 20px; }
body.cursor-hover .cursor-follower {
  width: 60px; height: 60px;
  border-color: var(--gold);
  border-width: 1px;
}
body.cursor-text .cursor { width: 4px; height: 24px; border-radius: 2px; }
body.cursor-text .cursor-follower { opacity: 0; }
body.cursor-hidden .cursor,
body.cursor-hidden .cursor-follower { opacity: 0; }

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--choco-dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s ease infinite;
  background-size: 200% 100%;
}

.preloader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
  animation: lineExpand 1.5s var(--ease-expo) 0.3s forwards;
}

@keyframes lineExpand { to { width: 200px; } }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
  padding: 16px 48px;
  background: rgba(26, 14, 7, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-warm);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: var(--radius-btn);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--choco-dark);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold-dark));
  background-size: 300% 100%;
  color: var(--choco-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(200,147,15,0.3), 0 0 0 0 rgba(200,147,15,0);
}

.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(200,147,15,0.5), 0 0 20px rgba(200,147,15,0.2);
}

.btn-outline {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid rgba(200,147,15,0.5);
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
  color: var(--gold-light);
}

.btn-full { width: 100%; text-align: center; }

/* ==========================================
   TYPOGRAPHY HELPERS
   ========================================== */
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header { text-align: center; margin-bottom: 72px; }

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

.reveal-card.visible { opacity: 1; transform: translateY(0); }

.reveal-gallery {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

.reveal-gallery.visible { opacity: 1; transform: scale(1); }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(ellipse 80% 100% at 60% 50%, rgba(18,10,5,0.45) 0%, transparent 60%),
    linear-gradient(160deg, rgba(18,10,5,0.55) 0%, rgba(40,20,8,0.3) 50%, rgba(18,10,5,0.5) 100%),
    url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=1400&q=72&fit=crop&fm=webp&auto=format');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(26, 14, 7, 0.3) 0%,
    rgba(26, 14, 7, 0.1) 40%,
    rgba(26, 14, 7, 0.6) 100%);
}

/* Floating golden orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
  bottom: 100px; left: 10%;
  animation-delay: -3s;
}

.orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(232, 196, 85, 0.12) 0%, transparent 70%);
  top: 30%; right: 30%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}

/* Hero silhouette — decorative woman figure */
.hero-silhouette {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 360px;
  height: 80%;
  background:
    linear-gradient(to top, transparent 0%, transparent 10%,
      rgba(92, 52, 32, 0.15) 20%, rgba(92, 52, 32, 0.25) 50%,
      rgba(92, 52, 32, 0.1) 80%, transparent 100%);
  clip-path: ellipse(45% 50% at 50% 50%);
  filter: blur(40px);
  animation: silhouettePulse 6s ease-in-out infinite;
}

@keyframes silhouettePulse {
  0%, 100% { opacity: 0.6; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-sub {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation-delay: 0.2s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
  animation-delay: 0.4s;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease infinite;
}

.hero-title span { display: inline-block; }

.hero-desc {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--cream-warm);
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto 40px;
  animation-delay: 0.6s;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation-delay: 0.8s;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: fadeIn 1s ease 2s both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ==========================================
   QUOTE STRIP
   ========================================== */
.quote-strip {
  overflow: hidden;
  background: linear-gradient(90deg, var(--choco-deep), var(--choco-mid), var(--choco-deep));
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  padding: 18px 0;
}

.quote-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.quote-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.about-bg-figure {
  position: absolute;
  top: 0; right: -10%;
  width: 500px; height: 100%;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(92, 52, 32, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  height: 550px;
}

.about-img {
  position: absolute;
  border-radius: 0;
}

.about-img-1 {
  width: 68%;
  height: 75%;
  top: 0; left: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.15) 0%, rgba(18,10,5,0.4) 100%),
    url('/beauty/images/about-1.webp');
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(200,147,15,0.08);
  overflow: hidden;
}

.about-img-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 45% 55%, rgba(212, 160, 23, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, transparent 20%, rgba(26, 14, 7, 0.3) 100%);
}

.about-img-1::after {
  content: '♦';
  position: absolute;
  font-size: 8rem;
  color: rgba(212, 160, 23, 0.06);
  bottom: 20px;
  right: 20px;
  font-family: serif;
}

.about-img-2 {
  width: 55%;
  height: 55%;
  bottom: 0; right: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.08) 0%, rgba(18,10,5,0.28) 100%),
    url('/beauty/images/about-2.webp');
  background-size: cover, cover;
  background-position: center center, center center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(200,147,15,0.12);
  border: 1px solid rgba(200,147,15,0.28);
  overflow: hidden;
}

.about-img-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(212, 160, 23, 0.12) 0%, transparent 60%);
}

.about-stat-card {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: linear-gradient(145deg, var(--gold-dark), var(--gold-light));
  padding: 28px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 20px 60px rgba(200,147,15,0.4), 0 0 30px rgba(200,147,15,0.2);
  z-index: 3;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--choco-dark);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--choco-mid);
  margin-top: 4px;
}

.about-desc {
  font-size: 0.88rem;
  color: rgba(240, 228, 204, 0.8);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-warm);
}

.feature-icon {
  color: var(--gold);
  font-size: 0.6rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(44, 24, 16, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: linear-gradient(145deg, rgba(46,26,14,0.9), rgba(30,15,8,0.95));
  border: 1px solid rgba(200,147,15,0.15);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(200,147,15,0.08);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(212, 160, 23, 0.04));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200,147,15,0.4);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 50px rgba(200,147,15,0.15), inset 0 1px 0 rgba(200,147,15,0.2);
}

.service-card:hover::after { opacity: 1; }

.service-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover .service-img { transform: scale(1.05); }

/* Service image backgrounds — luxury CSS art */
.service-img-1 {
  background: linear-gradient(135deg, #2c1810 0%, #5c3420 40%, #3d2314 100%);
}
.service-img-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 120px at 50% 60%, rgba(212, 160, 23, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 85%, rgba(92, 52, 32, 0.6) 0%, transparent 70%);
}

.service-img-2 {
  background: linear-gradient(160deg, #3d2314 0%, #8b6914 50%, #2c1810 100%);
}
.service-img-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 150px at 65% 45%, rgba(232, 196, 85, 0.15) 0%, transparent 55%),
    linear-gradient(to top, rgba(26, 14, 7, 0.5) 0%, transparent 60%);
}

.service-img-3 {
  background: linear-gradient(120deg, #1a0e07 0%, #4a2a18 50%, #5c3420 100%);
}
.service-img-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 40% 50%, rgba(184, 134, 11, 0.2) 0%, transparent 60%);
}

.service-img-4 {
  background: linear-gradient(150deg, #2c1810 0%, #1a0e07 40%, #5c3420 100%);
}
.service-img-4::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 100px at 50% 50%, rgba(212, 160, 23, 0.12) 0%, transparent 50%);
}

.service-img-5 {
  background: linear-gradient(135deg, #4a2a18 0%, #3d2314 60%, #8b6914 100%);
}
.service-img-5::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 60%, rgba(212, 160, 23, 0.15) 0%, transparent 60%);
}

.service-img-6 {
  background: linear-gradient(160deg, var(--gold-dark) 0%, #3d2314 40%, #1a0e07 100%);
}
.service-img-6::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 180px at 55% 50%, rgba(232, 196, 85, 0.12) 0%, transparent 55%);
}

/* Decorative SVG-like overlay on service images */
.service-img::before {
  content: '◈';
  position: absolute;
  font-size: 7rem;
  color: rgba(212, 160, 23, 0.07);
  bottom: -10px;
  right: 10px;
  z-index: 1;
  font-family: serif;
}

.service-body {
  padding: 32px 28px;
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.service-body p {
  font-size: 0.8rem;
  color: rgba(240, 228, 204, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
  padding-bottom: 2px;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.service-card:hover .service-link::after { width: 100%; }

/* ==========================================
   PARALLAX BANNER
   ========================================== */
.parallax-banner {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-banner-bg {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(139, 105, 20, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 75% 40%, rgba(92, 52, 32, 0.5) 0%, transparent 55%),
    linear-gradient(135deg, var(--choco-deep) 0%, #4a2a18 40%, var(--choco-mid) 70%, var(--choco-dark) 100%);
  will-change: transform;
}

.parallax-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 14, 7, 0.7), rgba(26, 14, 7, 0.3), rgba(26, 14, 7, 0.6));
}

/* Decorative figure for parallax banner */
.parallax-banner-figure {
  position: absolute;
  left: 60%;
  top: 0; bottom: 0;
  width: 40%;
  background:
    radial-gradient(ellipse 55% 80% at 50% 50%, rgba(184, 134, 11, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 30% 70% at 40% 60%, rgba(92, 52, 32, 0.3) 0%, transparent 60%);
  filter: blur(20px);
}

.parallax-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.parallax-banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 40px;
}

.parallax-banner-content h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parallax-banner-content .section-eyebrow { margin-bottom: 20px; }

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
  padding: 120px 0;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 20px;
  margin-top: 20px;
  padding: 0 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s ease;
}

.gallery-item:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(200,147,15,0.12);
}

.gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 3 / 4; grid-row: 1 / 3; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 14, 7, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
}

/* Gallery item — rich CSS backgrounds with woman silhouette art */
.gallery-item-1 {
  background:
    linear-gradient(175deg, #1e0f08 0%, #3a1e0d 35%, #5a3218 60%, #7a5010 100%);
}
.gallery-item-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 48% 40%, rgba(200,147,15,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 35% 55% at 52% 75%, rgba(74,42,20,0.7) 0%, transparent 50%),
    linear-gradient(to top, rgba(18,10,5,0.5) 0%, transparent 50%);
}
/* Elegant woman back silhouette — spa massage */
.gallery-item-1::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 95%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(180,120,60,0.12) 15%,
    rgba(160,100,40,0.22) 35%,
    rgba(140,90,35,0.28) 55%,
    rgba(120,80,30,0.35) 75%,
    rgba(100,60,20,0.5) 100%);
  clip-path: path('M 90 0 C 90 0 115 8 120 30 C 128 60 122 90 118 120 C 112 160 105 180 100 210 C 94 240 90 255 95 270 C 100 285 108 290 110 300 L 90 300 L 70 300 C 72 290 80 285 85 270 C 90 255 86 240 80 210 C 75 180 68 160 62 120 C 58 90 52 60 60 30 C 65 8 90 0 90 0 Z');
  filter: blur(12px);
  opacity: 0.75;
  animation: figurePulse 5s ease-in-out infinite;
}

.gallery-item-2 {
  background:
    linear-gradient(145deg, #120a05 0%, #2a1509 40%, #4a2a14 70%, #3a2010 100%);
}
.gallery-item-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 150px at 55% 45%, rgba(220,180,60,0.16) 0%, transparent 50%),
    radial-gradient(ellipse 70% 40% at 50% 85%, rgba(60,30,10,0.7) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(18,10,5,0.2) 0%, transparent 40%);
}
/* Woman face profile glow */
.gallery-item-2::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 15%;
  width: 120px;
  height: 160px;
  background: radial-gradient(ellipse 50% 60% at 45% 40%,
    rgba(200,155,90,0.25) 0%,
    rgba(180,130,60,0.15) 40%,
    transparent 70%);
  border-radius: 60% 40% 40% 60% / 55% 45% 55% 45%;
  filter: blur(18px);
  opacity: 0.8;
  animation: figurePulse 6s ease-in-out 1s infinite;
}

.gallery-item-3 {
  background:
    linear-gradient(155deg, #2e1a0e 0%, #1e0f08 30%, #4a2a14 65%, #3a1e0c 100%);
}
.gallery-item-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 40% 50%, rgba(190,140,20,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 60% 80%, rgba(50,25,8,0.6) 0%, transparent 55%);
}
.gallery-item-3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 40%;
  height: 80%;
  background: linear-gradient(to top,
    rgba(120,75,25,0.4) 0%,
    rgba(100,60,20,0.25) 35%,
    rgba(80,50,15,0.12) 65%,
    transparent 100%);
  clip-path: ellipse(50% 50% at 50% 60%);
  filter: blur(20px);
  opacity: 0.65;
  animation: figurePulse 7s ease-in-out 2s infinite;
}

.gallery-item-4 {
  background:
    linear-gradient(165deg, #5a3c0a 0%, #2e1a08 35%, #1a0e05 65%, #3a2010 100%);
}
.gallery-item-4::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 48% 45%, rgba(200,150,15,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 38% 55% at 52% 72%, rgba(80,45,15,0.6) 0%, transparent 50%),
    linear-gradient(to top, rgba(18,10,5,0.55) 0%, transparent 55%);
}
/* Lying woman silhouette — spa body treatment */
.gallery-item-4::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(160,100,35,0.25) 15%,
    rgba(180,120,45,0.35) 40%,
    rgba(170,110,40,0.35) 60%,
    rgba(150,95,30,0.22) 85%,
    transparent 100%);
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.75;
  animation: figurePulse 5.5s ease-in-out 0.5s infinite;
}

.gallery-item-5 {
  background:
    linear-gradient(130deg, #2a1508 0%, #4a2a14 45%, #2e1a0a 75%, #1a0d05 100%);
}
.gallery-item-5::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 120px at 50% 38%, rgba(210,165,25,0.14) 0%, transparent 48%),
    radial-gradient(ellipse 65% 38% at 50% 88%, rgba(40,20,5,0.65) 0%, transparent 60%);
}
.gallery-item-5::after {
  content: '';
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 75%;
  background: radial-gradient(ellipse 45% 55% at 50% 45%,
    rgba(190,140,65,0.2) 0%,
    rgba(160,110,45,0.12) 50%,
    transparent 75%);
  filter: blur(22px);
  opacity: 0.7;
  animation: figurePulse 6.5s ease-in-out 1.5s infinite;
}

.gallery-item-6 {
  background:
    linear-gradient(148deg, #120a05 0%, #3a2010 40%, #5a3c10 70%, #3a2010 100%);
}
.gallery-item-6::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 65% at 52% 42%, rgba(195,148,18,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 42% 35% at 48% 80%, rgba(50,25,8,0.65) 0%, transparent 55%);
}
.gallery-item-6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 90%;
  background: linear-gradient(to top,
    rgba(130,85,28,0.45) 0%,
    rgba(110,70,22,0.28) 30%,
    rgba(90,58,18,0.15) 60%,
    transparent 100%);
  clip-path: polygon(25% 2%, 50% 0%, 75% 2%, 88% 18%, 92% 42%, 85% 68%, 73% 85%, 58% 100%, 42% 100%, 27% 85%, 15% 68%, 8% 42%, 12% 18%);
  filter: blur(14px);
  opacity: 0.7;
  animation: figurePulse 5s ease-in-out 3s infinite;
}

@keyframes figurePulse {
  0%, 100% { opacity: 0.65; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scaleX(1.04); }
}

/* Subtle scan line texture on all gallery items */
.gallery-item > * { position: relative; z-index: 2; }

/* ==========================================
   TEAM SECTION
   ========================================== */
.team {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--choco-dark) 0%, var(--choco-deep) 50%, var(--choco-dark) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
  position: relative;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.2);
  transition: border-color 0.4s ease, transform 0.4s var(--ease-smooth), box-shadow 0.4s ease;
}

.team-card:hover .team-photo {
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.2);
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, transparent 60%);
}

.team-photo-1 {
  background: url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=400&q=75&fit=crop&crop=face,top&fm=webp&auto=format') center top / cover no-repeat;
}

.team-photo-2 {
  background: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400&q=75&fit=crop&crop=face,top&fm=webp&auto=format') center top / cover no-repeat;
}

.team-photo-3 {
  background: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&q=75&fit=crop&crop=face,top&fm=webp&auto=format') center top / cover no-repeat;
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.team-exp {
  font-size: 0.78rem;
  color: rgba(240, 228, 204, 0.55);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.testimonials-bg-figure {
  position: absolute;
  top: 0; left: -5%;
  width: 400px; height: 100%;
  background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(92, 52, 32, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-slider { position: relative; max-width: 800px; margin: 0 auto; }

.testimonial-card {
  display: none;
  text-align: center;
  padding: 40px;
  background: linear-gradient(145deg, rgba(30,15,8,0.85), rgba(46,26,14,0.7));
  border: 1px solid rgba(200,147,15,0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(200,147,15,0.1);
  animation: fadeInCard 0.5s ease;
}

.testimonial-card.active { display: block; }

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream-warm);
  line-height: 1.7;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.3);
  flex-shrink: 0;
}

.author-1 { background: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?w=100&q=80&fit=crop&crop=face&fm=webp&auto=format') center top / cover no-repeat; }
.author-2 { background: url('https://images.unsplash.com/photo-1531746020798-e6953c6e8e04?w=100&q=80&fit=crop&crop=face&fm=webp&auto=format') center top / cover no-repeat; }
.author-3 { background: url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=100&q=80&fit=crop&crop=face&fm=webp&auto=format') center top / cover no-repeat; }

.testimonial-author strong {
  display: block;
  font-weight: 500;
  color: var(--cream);
  font-size: 0.85rem;
}

.testimonial-author span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.t-nav-btn {
  width: 48px; height: 48px;
  border: 1px solid rgba(200,147,15,0.3);
  border-radius: 50%;
  background: rgba(30,15,8,0.5);
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}

.t-nav-btn:hover {
  border-color: var(--gold);
  background: rgba(200,147,15,0.15);
  box-shadow: 0 0 20px rgba(200,147,15,0.2);
}

.t-dots { display: flex; gap: 8px; }

.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}

.t-dot.active { background: var(--gold); transform: scale(1.3); }

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(44, 24, 16, 0.6) 0%, transparent 60%),
    linear-gradient(135deg, var(--choco-dark) 0%, var(--choco-deep) 100%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details { margin-top: 40px; }

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item span {
  font-size: 0.88rem;
  color: var(--cream-warm);
  opacity: 0.8;
}

.contact-form-wrap {
  background: linear-gradient(145deg, rgba(22,11,5,0.9), rgba(46,26,14,0.8));
  border: 1px solid rgba(200,147,15,0.18);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(200,147,15,0.08);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 32px;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(18,10,5,0.6);
  border: 1px solid rgba(200,147,15,0.2);
  padding: 16px 20px;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  outline: none;
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(18,10,5,0.8);
  box-shadow: 0 0 0 3px rgba(200,147,15,0.12), 0 0 20px rgba(200,147,15,0.08);
}

.form-group select option { background: var(--choco-deep); }

.form-group label {
  display: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 60px 0 30px;
  background: var(--choco-dark);
}

.footer-top {
  text-align: center;
  padding-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212, 160, 23, 0.6);
  margin-bottom: 32px;
}

.footer-social {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.social-link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 228, 204, 0.5);
  transition: color 0.3s ease;
  position: relative;
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.social-link:hover { color: var(--gold-light); }
.social-link:hover::after { width: 100%; }

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.2), transparent);
  margin: 0 40px 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 0.72rem;
  color: rgba(240, 228, 204, 0.3);
  letter-spacing: 0.05em;
}

/* ==========================================
   MOBILE NAV OVERLAY
   ========================================== */
/* Kill ALL third-party fixed widgets when mobile nav is open */
body.mobile-nav-open .luna-widget-wrap,
body.mobile-nav-open elevenlabs-convai,
body.mobile-nav-open [class*="elevenlabs"],
body.mobile-nav-open [id*="elevenlabs"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 14, 7, 0.97);
  /* max possible z-index — above any third-party widget */
  z-index: 2147483647;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  /* create isolated stacking context */
  transform: translateZ(0);
  will-change: transform;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.mobile-nav-overlay a:hover { color: var(--gold-light); }

/* Invisible close zone — tightly wraps the X button (52px + 8px padding = 68px).
   Deliberately small so it never overlaps language selector buttons. */
.mobile-nav-close-zone {
  position: absolute;
  top: 0; right: 0;
  width: 68px; height: 68px;
  z-index: 10;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
}

.mobile-nav-close {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,147,15,0.25);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: none; /* clicks handled by close-zone above */
  z-index: 3;
  transition: background 0.15s;
}
.mobile-nav-close-zone:active .mobile-nav-close,
.mobile-nav-close-zone:hover .mobile-nav-close {
  background: rgba(200,147,15,0.18);
  border-color: rgba(200,147,15,0.5);
}

/* Language switcher inside mobile nav — always above close zone */
.mobile-lang-switcher {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 20;   /* above close-zone z-index:10 */
}

.mobile-lang-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,147,15,0.25);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  touch-action: manipulation;   /* prevents 300ms delay on mobile */
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;  /* never block from parent */
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
  background: rgba(200,147,15,0.22);
  border-color: rgba(200,147,15,0.6);
  color: var(--gold-light);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { order: -1; }
  .about-img-wrap { height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }

  .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 0 24px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: auto; grid-row: auto; }
  .gallery-item { height: 220px; }

  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .about-stat-card { right: 0; }
  .contact-form-wrap { padding: 32px 24px; }
}

/* ==========================================
   GOLD DECORATIVE LINES
   ========================================== */
.services::before,
.gallery::before,
.team::before {
  content: '';
  display: block;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto -20px;
}

/* ==========================================
   SELECTION STYLE
   ========================================== */
::selection {
  background: rgba(212, 160, 23, 0.3);
  color: var(--cream);
}

/* ==========================================
   SCROLLBAR STYLE
   ========================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--choco-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
  border-radius: 3px;
}

/* ==========================================
   SECTION PARALLAX DEPTH LAYERS
   ========================================== */

/* About section — deep right-side golden glow */
.about {
  background:
    radial-gradient(ellipse 60% 70% at 95% 50%, rgba(74,42,20,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 5% 30%, rgba(30,15,8,0.6) 0%, transparent 55%),
    var(--choco-dark);
}

/* Services section — bottom upward dark glow */
.services {
  background:
    radial-gradient(ellipse 100% 50% at 50% 110%, rgba(46,26,14,0.6) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(122,90,10,0.12) 0%, transparent 50%),
    var(--choco-dark);
}

/* Gallery section — multi-point depth */
.gallery {
  background:
    radial-gradient(ellipse 70% 60% at 10% 40%, rgba(46,26,14,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 60%, rgba(74,42,20,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 0%, rgba(200,147,15,0.04) 0%, transparent 50%),
    var(--choco-dark);
}

/* Team section — warm center glow */
.team {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(46,26,14,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(30,15,8,0.7) 0%, transparent 55%),
    var(--choco-dark);
}

/* Testimonials — left warm glow */
.testimonials {
  background:
    radial-gradient(ellipse 55% 65% at 5% 50%, rgba(74,42,20,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 95% 50%, rgba(74,42,20,0.2) 0%, transparent 55%),
    var(--choco-dark);
}

/* Contact — right golden accent */
.contact {
  background:
    radial-gradient(ellipse 65% 65% at 90% 45%, rgba(46,26,14,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 15% 75%, rgba(30,15,8,0.5) 0%, transparent 50%),
    var(--choco-dark);
}

/* ==========================================
   PARALLAX LAYER DATA ITEMS (JS driven)
   ========================================== */
[data-parallax] { will-change: transform; }

/* Enhanced quote strip */
.quote-strip {
  background:
    linear-gradient(90deg, #1e0f08 0%, #2e1a0e 30%, #2a1809 60%, #1e0f08 100%);
  border-top: 1px solid rgba(200,147,15,0.2);
  border-bottom: 1px solid rgba(200,147,15,0.2);
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

/* ==========================================
   DEPTH GRAIN TEXTURE OVERLAY
   ========================================== */
body::before {
  content: '';
  position: fixed;
  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 type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* ==========================================
  PARALLAX BANNER ENHANCED
  ========================================== */
.parallax-banner-bg {
  background:
    radial-gradient(ellipse 75% 65% at 25% 50%, rgba(122,90,10,0.45) 0%, transparent 50%),
    radial-gradient(ellipse 55% 75% at 78% 38%, rgba(74,42,20,0.55) 0%, transparent 52%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(30,15,8,0.5) 0%, transparent 55%),
    linear-gradient(135deg, #1e0f08 0%, #2e1a0a 25%, #3a2010 50%, #2a1508 75%, #120a05 100%);
}

/* Service images — Unsplash CDN photos with dark overlay */
.service-img-1 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.1) 0%, rgba(18,10,5,0.45) 100%),
    url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=560&q=72&fit=crop&fm=webp&auto=format');
  background-size: cover, cover;
  background-position: center, center;
}
.service-img-2 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.1) 0%, rgba(18,10,5,0.45) 100%),
    url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=560&q=72&fit=crop&fm=webp&auto=format');
  background-size: cover, cover;
  background-position: center top, center top;
}
.service-img-3 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.05) 0%, rgba(18,10,5,0.4) 100%),
    url('https://images.unsplash.com/photo-1547592180-85f173990554?w=560&q=72&fit=crop&fm=webp&auto=format');
  background-size: cover, cover;
  background-position: center, center;
}
.service-img-4 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.05) 0%, rgba(18,10,5,0.4) 100%),
    url('https://images.unsplash.com/photo-1507652313519-d4e9174996dd?w=560&q=72&fit=crop&fm=webp&auto=format');
  background-size: cover, cover;
  background-position: center, center;
}
.service-img-5 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.1) 0%, rgba(18,10,5,0.45) 100%),
    url('https://images.unsplash.com/photo-1552693673-1bf958298935?w=560&q=72&fit=crop&fm=webp&auto=format');
  background-size: cover, cover;
  background-position: center, center;
}
.service-img-6 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.1) 0%, rgba(18,10,5,0.45) 100%),
    url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=560&q=72&fit=crop&fm=webp&auto=format');
  background-size: cover, cover;
  background-position: center, center;
}

/* Gallery items — Unsplash CDN photos */
.gallery-item-1 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.05) 0%, rgba(18,10,5,0.4) 100%),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=560&q=72&fit=crop&fm=webp&auto=format') !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
}
.gallery-item-2 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.05) 0%, rgba(18,10,5,0.4) 100%),
    url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=560&q=72&fit=crop&fm=webp&auto=format') !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
}
.gallery-item-3 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.05) 0%, rgba(18,10,5,0.4) 100%),
    url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=560&q=72&fit=crop&fm=webp&auto=format') !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
}
.gallery-item-4 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.05) 0%, rgba(18,10,5,0.4) 100%),
    url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=560&q=72&fit=crop&fm=webp&auto=format') !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
}
.gallery-item-5 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.05) 0%, rgba(18,10,5,0.4) 100%),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=560&q=72&fit=crop&fm=webp&auto=format') !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
}
.gallery-item-6 {
  background:
    linear-gradient(to bottom, rgba(18,10,5,0.05) 0%, rgba(18,10,5,0.4) 100%),
    url('https://images.unsplash.com/photo-1612817288484-6f916006741a?w=560&q=72&fit=crop&fm=webp&auto=format') !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
}

/* Contact background */
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18,10,5,0.75) 0%, rgba(30,15,8,0.65) 50%, rgba(18,10,5,0.8) 100%),
    url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1100&q=72&fit=crop&fm=webp&auto=format') !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
}

/* ==========================================
   LUNA B2B SECTIONS
   ========================================== */

/* Transition strip */
.luna-transition {
  background: linear-gradient(90deg, transparent, rgba(200,147,15,0.06), transparent);
  border-top: 1px solid rgba(200,147,15,0.12);
  border-bottom: 1px solid rgba(200,147,15,0.12);
  padding: 22px 0;
  text-align: center;
}
.lt-inner {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  max-width: 700px; margin: 0 auto; padding: 0 24px;
}
.lt-inner p {
  color: rgba(242,216,144,0.55); font-family: var(--font-body);
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.lt-star { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* Pain points */
.luna-pain { padding: 100px 0; background: var(--choco-dark); position: relative; overflow: hidden; }
.luna-pain::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200,147,15,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.pain-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(200,147,15,0.1);
  border-radius: 20px; padding: 32px 26px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.pain-card:hover {
  border-color: rgba(200,147,15,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.pain-icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,147,15,0.10);
  border: 1px solid rgba(200,147,15,0.22);
  border-radius: 14px;
  font-size: 1.4rem; line-height: 1;
}
.pain-card h3 {
  font-family: var(--font-display); font-size: 1.18rem; font-weight: 400;
  color: var(--cream); margin: 0 0 10px; letter-spacing: 0.01em;
}
.pain-card p {
  font-family: var(--font-body); font-size: 0.88rem;
  color: rgba(255,245,230,0.68); line-height: 1.78; margin: 0;
}

/* Social proof */
.luna-social {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--choco-dark) 0%, rgba(12,6,2,0.95) 100%);
  border-top: 1px solid rgba(200,147,15,0.08);
}
.social-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.social-quote {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(200,147,15,0.14);
  border-radius: 20px; padding: 36px 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.social-quote:hover {
  border-color: rgba(200,147,15,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.sq-stars {
  color: var(--gold); font-size: 0.7rem; letter-spacing: 3px;
  margin-bottom: 18px;
}
.sq-text {
  font-family: var(--font-display); font-size: 1.08rem;
  font-style: italic; font-weight: 300;
  color: rgba(242,216,144,0.85); line-height: 1.7;
  margin: 0 0 24px;
}
.sq-author { display: flex; flex-direction: column; gap: 4px; }
.sq-name {
  font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 500; color: var(--cream); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sq-role {
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(255,245,220,0.52); letter-spacing: 0.03em;
}

/* How it works */
.luna-how { padding: 100px 0; }
.how-steps {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: 64px;
}
.how-step { flex: 1; text-align: center; padding: 0 32px; }
.how-connector {
  width: 80px; flex-shrink: 0;
  height: 1px; align-self: stretch; margin-top: 52px;
  background: linear-gradient(90deg, rgba(200,147,15,0.15), rgba(200,147,15,0.5), rgba(200,147,15,0.15));
}
.how-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 300;
  color: rgba(200,147,15,0.30); line-height: 1; margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.how-step h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 400;
  color: var(--cream); margin: 0 0 14px;
}
.how-step p {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 400;
  color: rgba(255,245,230,0.65); line-height: 1.8;
}

/* Results numbers */
.luna-results {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(18,10,5,0.95) 0%, rgba(30,15,8,0.9) 100%);
  border-top: 1px solid rgba(200,147,15,0.1);
  border-bottom: 1px solid rgba(200,147,15,0.1);
}
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.result-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 12px;
}
.result-label {
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 400;
  color: rgba(255,245,225,0.60); letter-spacing: 0.04em; line-height: 1.55;
}

/* Pricing */
.luna-pricing { padding: 100px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px; align-items: start;
}
.price-plan {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(200,147,15,0.15);
  border-radius: 24px; padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.price-plan:hover { border-color: rgba(200,147,15,0.35); }
.price-plan--popular {
  border-color: rgba(200,147,15,0.45);
  background: rgba(200,147,15,0.05);
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 0 1px rgba(200,147,15,0.1);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #120a05; font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 18px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.plan-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price {
  font-family: var(--font-display); font-size: 3rem; font-weight: 300;
  color: var(--cream); line-height: 1;
}
.plan-mo {
  font-family: var(--font-body); font-size: 0.9rem;
  color: rgba(255,245,220,0.52);
}
.plan-sub {
  font-family: var(--font-body); font-size: 0.82rem;
  color: rgba(255,245,220,0.56); margin: 6px 0 8px;
}
.plan-setup {
  font-family: var(--font-body); font-size: 0.76rem;
  color: var(--gold); margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200,147,15,0.1);
  opacity: 0.75;
}
.plan-features {
  list-style: none; margin: 0 0 16px; padding: 0;
  display: flex; flex-direction: column; gap: 13px;
}
.plan-tag {
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(200,147,15,0.75); font-style: italic;
  text-align: center; margin: 0 0 20px;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  background: rgba(200,147,15,0.06);
  border-radius: 6px;
}
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
}
.plan-features li::before { content: '✦'; color: var(--gold); font-size: 0.55rem; flex-shrink: 0; }
.plan-cta {
  display: block; text-align: center; padding: 14px 20px;
  border-radius: 100px; font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.25s ease; cursor: pointer;
}
.plan-cta--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #120a05;
}
.plan-cta--primary:hover {
  box-shadow: 0 8px 32px rgba(200,147,15,0.45);
  transform: translateY(-2px);
}
.plan-cta--outline {
  border: 1px solid rgba(200,147,15,0.35);
  color: var(--gold);
}
.plan-cta--outline:hover { background: rgba(200,147,15,0.08); }
.pricing-note {
  text-align: center; margin-top: 40px;
  font-family: var(--font-body); font-size: 0.82rem;
  color: rgba(255,255,255,0.42); letter-spacing: 0.05em;
  border: 1px solid rgba(200,147,15,0.12);
  border-radius: 100px; padding: 10px 28px;
  display: inline-block;
}

/* Demo contact additions */
.contact-sub {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 400;
  color: rgba(255,245,225,0.62); line-height: 1.78;
  margin: 16px 0 28px;
}
.demo-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.demo-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(200,147,15,0.08);
  border: 1px solid rgba(200,147,15,0.22);
  border-radius: 100px; padding: 7px 16px;
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(242,216,144,0.65);
}

/* JARES brand bar */
.jares-bar {
  background: var(--choco-dark);
  border-top: 1px solid rgba(200,147,15,0.12);
  padding: 28px 0;
}
.jares-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.jares-bar-contact {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}
.jares-bar-label {
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(255,255,255,0.36); letter-spacing: 0.04em;
}
.jares-bar-email {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(200,147,15,0.3); border-radius: 100px;
  padding: 6px 16px; transition: all 0.2s;
}
.jares-bar-email:hover { background: rgba(200,147,15,0.1); border-color: rgba(200,147,15,0.55); }
.jares-bar-sep {
  width: 1px; height: 22px;
  background: rgba(200,147,15,0.18);
}
.jares-bar-powered {
  font-family: var(--font-body); font-size: 0.74rem;
  color: rgba(255,255,255,0.2); letter-spacing: 0.04em;
}
.jares-bar-powered a { color: rgba(200,147,15,0.5); text-decoration: none; }
.jares-bar-powered a:hover { color: var(--gold); text-decoration: underline; }

/* Honeypot anti-spam */
.hpot { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; overflow: hidden; pointer-events: none; }

/* Responsive — B2B sections */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .social-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .price-plan--popular { transform: none; }
}
@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; align-items: center; gap: 0; }
  .how-step { padding: 0 16px; }
  .how-connector {
    width: 1px; height: 40px; margin: 0;
    background: linear-gradient(180deg, rgba(200,147,15,0.15), rgba(200,147,15,0.5), rgba(200,147,15,0.15));
  }
  .lt-inner { flex-direction: column; gap: 8px; }
  .lt-inner p { font-size: 0.75rem; }
}
