/* ═══════════════════════════════════════════════════════════════
   SPA31 SHERMAN TX — Premium Spa Website Stylesheet
   Deep Emerald · Ivory · Gold  |  Cormorant Garamond + Inter
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --gold:       #d4af37;
  --gold-light: #e8c84a;
  --gold-dark:  #a8892b;
  --ivory:      #f5f0e8;
  --cream:      #ede8dc;
  --bg-dark:    #0a0c0b;
  --bg-2:       #0f1410;
  --bg-3:       #131a14;
  --fg:         #e8e4dc;
  --fg-muted:   rgba(232,228,220,0.55);
  --fg-soft:    rgba(232,228,220,0.75);
  --green-deep: #1a2e1e;
  --green-mid:  #2a4a30;
  --green-acc:  #3a6642;
  --border:     rgba(212,175,55,0.18);
  --glass:      rgba(255,255,255,0.04);
  --glass-b:    rgba(255,255,255,0.08);
  --r-sm:       8px;
  --r-md:       16px;
  --r-lg:       24px;
  --r-xl:       40px;
  --shadow-glow: 0 0 40px rgba(212,175,55,0.12), 0 20px 60px rgba(0,0,0,0.5);
  --transition:  cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overscroll-behavior: none;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--fg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

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

ul { list-style: none; }

/* ── Particle Canvas ────────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── Typography ─────────────────────────────────────────────── */
.eyebrow-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 20px;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header { margin-bottom: 64px; }
.section-header.text-center { text-align: center; }
.section-header.text-center .section-desc { margin: 0 auto; }

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: none; }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--transition) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0c0b;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: all 0.3s var(--transition);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: transparent;
  color: var(--ivory);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: 1px solid rgba(232,228,220,0.3);
  transition: all 0.3s var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(232,228,220,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--gold);
  transition: all 0.3s var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0c0b;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--transition), backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(10,12,11,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.logo-31 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0a0c0b;
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-spa {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--ivory);
}
.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav Links */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }

.btn-book-nav {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0c0b;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(212,175,55,0.3);
}
.btn-book-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: all 0.3s var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 24px 32px;
  background: rgba(10,12,11,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition);
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--fg-soft);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.25s;
}
.mobile-menu ul li a:hover { color: var(--gold); }
.btn-book-mobile {
  margin-top: 20px;
  display: block;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0c0b;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  text-align: center;
}
.mobile-phone {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,12,11,0.72) 0%,
    rgba(10,12,11,0.45) 40%,
    rgba(26,46,30,0.6)  100%
  );
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-duration: 12s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,102,66,0.2) 0%, transparent 70%);
  bottom: -50px; left: -80px;
  animation-duration: 9s;
  animation-delay: -3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  animation-duration: 15s;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 30px); }
}

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

.hero-award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-title-line { display: block; }
.hero-title-em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), #f0d060, var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
.hero-title-sub {
  font-size: 0.35em;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--fg-muted);
  color: var(--fg-muted);
  background: none;
  margin-top: 8px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg-soft);
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-tagline-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 400;
  color: var(--fg-muted);
  display: block;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 16px 36px;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════════════════════════════
   EXPERIENCE STRIP
   ═══════════════════════════════════════════════════════════════ */
.experience-strip {
  background: linear-gradient(135deg, var(--green-deep), #0f1a12);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
  font-weight: 500;
}
.strip-icon { color: var(--gold); font-size: 0.7rem; }
.strip-dot {
  width: 4px; height: 4px;
  background: var(--border);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════
   PHILOSOPHY
   ═══════════════════════════════════════════════════════════════ */
.philosophy-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--fg-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.philosophy-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.philosophy-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gold);
}

.philosophy-visual { position: relative; }
.philosophy-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.philosophy-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.philosophy-img-wrap:hover img { transform: scale(1.04); }
.philosophy-img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,12,11,0.6));
}

.philosophy-float-card {
  position: absolute;
  bottom: -28px; left: -28px;
  z-index: 2;
  background: rgba(10,12,11,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  max-width: 260px;
  box-shadow: var(--shadow-glow);
}
.float-star { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }
.float-card-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--fg-soft);
  line-height: 1.5;
  margin-bottom: 8px;
}
.float-author {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-dark);
}

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

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s var(--transition), border-color 0.4s, box-shadow 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: var(--shadow-glow);
}

.service-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.service-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card--featured .service-card-img { aspect-ratio: auto; min-height: 380px; }

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,12,11,0.7));
}

.service-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0c0b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 2;
}

.service-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.service-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
}
.service-card-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  flex: 1;
}

.service-treatments {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-sm);
  border: 1px solid var(--glass-b);
}
.treatment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.treatment-name { font-size: 0.85rem; color: var(--fg-soft); }
.treatment-price { font-size: 0.85rem; font-weight: 600; color: var(--gold); }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tags span,
.service-benefits span {
  padding: 4px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-b);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-benefits span { background: none; border: none; padding-left: 0; }

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: gap 0.3s var(--transition);
}
.service-cta:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════
   PACKAGES
   ═══════════════════════════════════════════════════════════════ */
.packages-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.packages-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.packages-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,12,11,0.88), rgba(26,46,30,0.85));
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.package-card {
  position: relative;
  background: rgba(10,12,11,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.1);
}

.package-card--featured {
  border-color: rgba(212,175,55,0.4);
  background: rgba(26,20,5,0.7);
}

.package-card--gold {
  border-color: rgba(212,175,55,0.5);
  background: linear-gradient(135deg, rgba(26,20,5,0.8), rgba(10,12,11,0.8));
}

.package-ribbon {
  position: absolute;
  top: 16px; right: -4px;
  padding: 5px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0c0b;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px 0 0 4px;
}

.package-top { display: flex; flex-direction: column; gap: 4px; }
.package-icon { font-size: 2rem; }
.package-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
}
.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
}

.package-card > p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}

.package-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.package-includes li {
  font-size: 0.83rem;
  color: var(--fg-soft);
  padding-left: 16px;
  position: relative;
}
.package-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.package-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: all 0.3s var(--transition);
  margin-top: auto;
}
.package-btn:hover {
  background: var(--gold);
  color: #0a0c0b;
  border-color: var(--gold);
}
.package-btn--featured,
.package-btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0c0b;
  border-color: transparent;
}
.package-btn--featured:hover,
.package-btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
}

.packages-promo {
  text-align: center;
  padding: 28px 40px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-badge {
  padding: 8px 20px;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.packages-promo p { color: var(--fg-soft); font-size: 0.95rem; }
.packages-promo strong { color: var(--ivory); }

/* ═══════════════════════════════════════════════════════════════
   WELLNESS EDUCATION
   ═══════════════════════════════════════════════════════════════ */
.wellness-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-3);
}
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.wellness-card {
  padding: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.wellness-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.wellness-card:hover { border-color: var(--border); }
.wellness-card:hover::before { opacity: 1; }

.wellness-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.wellness-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 12px;
}
.wellness-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 560px;
}
.about-img {
  position: absolute;
  border-radius: var(--r-lg);
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.about-img-1 {
  width: 70%; top: 0; left: 0;
  aspect-ratio: 3/4;
  height: auto;
  z-index: 1;
}
.about-img-2 {
  width: 60%; bottom: 0; right: 0;
  aspect-ratio: 1/1;
  height: auto;
  z-index: 2;
  border: 4px solid var(--bg-2);
}
.about-visual:hover .about-img-1 { transform: translate(-6px, -6px); }
.about-visual:hover .about-img-2 { transform: translate(6px, 6px); }

.about-awards-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(10,12,11,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}
.award-trophy { font-size: 1.8rem; }
.award-text { display: flex; flex-direction: column; gap: 2px; }
.award-text strong { font-size: 0.9rem; color: var(--gold); }
.award-text span { font-size: 0.72rem; color: var(--fg-muted); }

.about-text p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-team {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-md);
}
.team-member {
  display: flex;
  align-items: center;
  gap: 14px;
}
.team-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-acc));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.team-info { display: flex; flex-direction: column; gap: 2px; }
.team-info strong { font-size: 0.9rem; color: var(--ivory); }
.team-info span { font-size: 0.78rem; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.rating-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.rating-text { font-size: 0.85rem; color: var(--fg-muted); }

.testimonials-carousel {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  margin: 0 -24px;
  padding: 20px 24px;
  position: relative;
}

.testimonial-card {
  min-width: 380px;
  max-width: 380px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.4s, transform 0.4s;
  cursor: default;
}
.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 8px;
}
.testimonial-card > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--fg-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.9rem; color: var(--ivory); }
.test-author span { display: block; font-size: 0.75rem; color: var(--fg-muted); }
.test-stars { color: var(--gold); font-size: 0.75rem; margin-top: 2px; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--ivory);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--transition);
  backdrop-filter: blur(10px);
}
.carousel-btn:hover {
  background: var(--gold);
  color: #0a0c0b;
  border-color: var(--gold);
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--glass-b);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-3);
}
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--border); }
.faq-item summary {
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ivory);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-answer {
  padding: 0 24px 20px;
  animation: fadeDown 0.3s ease;
}
.faq-answer p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.8; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,12,11,0.92) 0%, rgba(26,46,30,0.88) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item strong { font-size: 0.9rem; color: var(--ivory); }
.contact-item span { font-size: 0.83rem; color: var(--fg-muted); }

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--glass);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-soft);
  transition: all 0.3s var(--transition);
  backdrop-filter: blur(10px);
}
.social-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
  transform: translateY(-3px);
}

.contact-map {
  height: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-31 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}
.footer-logo .logo-spa {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--ivory);
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-award-line {
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.8;
}

.footer-links h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links ul li a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  transition: color 0.25s;
}
.footer-links ul li a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--glass-b);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--fg-muted); }
.footer-bottom-right { color: var(--gold) !important; }

/* ── Floating Book CTA ──────────────────────────────────────── */
.floating-book {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0c0b;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(212,175,55,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s var(--transition);
  transform: translateY(100px);
  opacity: 0;
}
.floating-book.visible {
  transform: translateY(0);
  opacity: 1;
}
.floating-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212,175,55,0.55);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: span 1; display: flex; flex-direction: column; }
  .service-card--featured .service-card-img { min-height: auto; aspect-ratio: 16/9; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .philosophy-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { height: 400px; }
  .about-awards-badge { white-space: normal; text-align: center; }
  .philosophy-float-card { position: static; max-width: 100%; margin-top: 20px; }
  .wellness-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #primary-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-radius: var(--r-lg);
  }
  .stat-divider { width: 40px; height: 1px; }
  .testimonial-card { min-width: 300px; max-width: 300px; }
  .packages-promo { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-map { height: 300px; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .floating-book { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.82rem; }
}

/* --- HERO SLIDESHOW --- */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}
.hero-slide.active .hero-slide-bg {
  animation: kenBurns 10s ease-out forwards;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Re-target hero content per slide */
.hero-slide .hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-top: -50px; /* Slight lift */
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}
.slide-dots {
  display: flex;
  gap: 12px;
}
.slide-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.slide-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}
#slide-prev, #slide-next {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}
#slide-prev:hover, #slide-next:hover {
  opacity: 1;
  transform: scale(1.1);
}


/* --- OFFICIAL BRANDING INTEGRATION --- */
.spa31-logo-header {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}
.spa31-logo-header:hover {
  transform: scale(1.05);
}

.spa31-logo-footer {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: grayscale(100%) brightness(200%);
  opacity: 0.8;
}

/* Ambient Slow-Moving Watermark */
.brand-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 140vw;
  max-width: 1400px;
  height: auto;
  opacity: 0.02; /* Extremely subtle */
  z-index: -2; /* Under everything, including canvas */
  pointer-events: none;
  filter: grayscale(100%) blur(4px);
  animation: slowOrbitWatermark 160s linear infinite;
  transform-origin: center center;
}

@keyframes slowOrbitWatermark {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.15); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}


/* --- TEAM SECTION --- */
.team-section {
  padding: 100px 0;
  background: relative;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.team-card {
  text-align: center;
  transition: transform 0.4s ease;
}
.team-card:hover {
  transform: translateY(-10px);
}
.team-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  aspect-ratio: 1 / 1.1;
  border: 1px solid rgba(212,175,55,0.1);
}
.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card:hover .team-img-wrapper img {
  transform: scale(1.08);
}
.team-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(21, 24, 22, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 0 5px;
}
.team-info p {
  color: #aaa;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING WIDGET
   ═══════════════════════════════════════════════════════════════ */
.floating-widget-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.floating-widget-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 12, 11, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 12px 24px;
  border-radius: 100px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.widget-mini-avatars {
  display: flex;
  margin-right: 2px;
  transition: all 0.3s ease;
}
.widget-mini-avatars img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.8);
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}
.widget-mini-avatars img:first-child { margin-left: 0; }
.floating-widget-container:hover .widget-mini-avatars {
  opacity: 0;
  transform: scale(0.8);
  width: 0;
  margin-right: -10px;
}

.pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 100px;
  border: 1px solid var(--gold);
  animation: widgetPulse 3s infinite cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
@keyframes widgetPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.3, 1.6); opacity: 0; }
}

.floating-widget-container:hover .floating-widget-toggle {
  background: var(--gold);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 30px rgba(212, 175, 55, 0.4);
}
.floating-widget-container:hover .pulse-ring {
  display: none;
}

.floating-widget-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  visibility: hidden;
  pointer-events: none;
  align-items: flex-end;
  margin-bottom: 5px;
  margin-right: 15px;
}
.floating-widget-container:hover .floating-widget-menu {
  visibility: visible;
  pointer-events: all;
}

.widget-avatar-link {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.5);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* Stagger animation delay */
  transition-delay: calc(var(--i) * 0.05s);
  background: #000;
  text-decoration: none;
  flex-shrink: 0;
}

.floating-widget-container:hover .widget-avatar-link {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.widget-avatar-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.widget-avatar-link:hover {
  border-color: var(--gold);
  transform: scale(1.15) !important;
  z-index: 10;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}
.widget-avatar-link:hover img {
  transform: scale(1.1);
}

.widget-tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(10, 12, 11, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  text-align: right;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.widget-tooltip small {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.widget-avatar-link:hover .widget-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ═══════════════════════════════════════════════════════════════
   HERO AWARD BADGE (Relocated)
   ═══════════════════════════════════════════════════════════════ */
.hero-award-badge {
    position: absolute;
    bottom: 50px;
    left: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(10,12,11,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.15);
    white-space: nowrap;
    animation: floatAward 4s ease-in-out infinite;
}
@keyframes floatAward {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-award-badge .award-trophy { font-size: 1.8rem; }
.hero-award-badge .award-text { display: flex; flex-direction: column; gap: 2px; }
.hero-award-badge .award-text strong { 
    font-size: 0.95rem; 
    color: var(--gold); 
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}
.hero-award-badge .award-text span { 
    font-size: 0.75rem; 
    color: #bbb; 
    letter-spacing: 0.5px;
}
