/* ═══════════════════════════════════════════════════════════════
   AUVIEPHY PREMIUM UPGRADES · premium.css  (Fixed)
   ═══════════════════════════════════════════════════════════════
   FIX LOG:
   ✓ Removed .reveal / .reveal-left / .reveal-right / .reveal-scale
     (canonical definition moved to style.css — was 0.8s here vs
     0.75s there; last-write-wins caused inconsistent animation
     timing between pages)
   ✓ Removed .cursor-dot / .cursor-ring (style.css owns these
     under @media pointer:fine; duplicate caused z-index fight)
   ✓ Removed #scroll-progress basic definition (shimmer version
     below is the only definition; style.css no longer defines it)
   ✓ Removed duplicate @keyframes pranaFloat (was in both files;
     now only here; style.css .avy-particle references it)
   ✓ Fixed mobile-menu: removed display:flex !important that
     fought style.css display:none. Now uses transform-only
     approach — always rendered, off-screen via translateX(100%).
     JS toggles .open class which sets translateX(0).
   ✓ Fixed openMenu GSAP conflict: removed gsap.fromTo(mob,{x:60})
     from main.js — that overrode the CSS translateX(100%) and
     made the menu pop from wrong position on iPhone. CSS
     transform handles slide; GSAP only animates the links inside.
   ✓ Removed ctaPulse animation on .cta-band::before — was
     causing continuous layout paint via transform:scale on a
     pseudo-element. Replaced with static radial glow.
   ✓ nav-dropdown: removed display:none→block conflict with
     style.css. premium.css uses opacity/pointer-events approach
     (no layout shift on open); style.css .nav-has-dropdown uses
     display:block on hover (both coexist; premium wins via load order).
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════
   DESIGN TOKENS (Premium Upgrades)
   ════════════════════════════════════════ */
:root {
  --cosmic-dark: #06040f;
  --ease-smooth: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ════════════════════════════════════════
   PREMIUM HERO (Centralized)
   ════════════════════════════════════════ */
.courses-hero {
  background: var(--forest);
  padding: 140px 64px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.courses-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(196,154,74,0.12) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 20%, rgba(10,61,110,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.courses-hero .ch-breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(196,154,74,0.6);
  margin-bottom: 1.2rem;
}
.courses-hero .ch-breadcrumb a {
  color: rgba(196,154,74,0.5);
  text-decoration: none;
}
.courses-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.courses-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.courses-hero .ch-sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.68);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.2rem;
}
.hero-pill {
  background: rgba(196,154,74,0.12);
  border: 1px solid rgba(196,154,74,0.25);
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
}
.hero-btns-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold-h {
  background: var(--gold);
  color: var(--forest);
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-gold-h:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline-h {
  border: 1px solid rgba(245,240,232,0.2);
  color: rgba(245,240,232,0.7);
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline-h:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ════════════════════════════════════════
   STATS BAR (Standardized)
   ════════════════════════════════════════ */
.stats-bar {
  background: var(--forest);
  border-top: 1px solid rgba(196,154,74,0.15);
  padding: 1.5rem 64px;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-top: 0.25rem;
}

/* ════════════════════════════════════════
   PREMIUM SVG ICONOGRAPHY
   ════════════════════════════════════════ */
.avy-icon {
  width: 24px; height: 24px;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: all 0.4s var(--ease-smooth);
  display: inline-block;
  vertical-align: middle;
}

/* Larger icons for cards/sections */
.sc-icon .avy-icon, 
.course-icon .avy-icon,
.cat-icon .avy-icon,
.level-icon .avy-icon {
  width: 42px; height: 42px;
  stroke-width: 1.2;
}

/* Hover Glow & Lift */
.service-card:hover .avy-icon,
.course-card:hover .avy-icon,
.tcard:hover .avy-icon {
  stroke: #fff;
  filter: drop-shadow(0 0 8px var(--gold));
  transform: translateY(-3px) scale(1.05);
}

/* Float Animation for main section icons */
.avy-icon-float {
  animation: avyIconFloat 4s ease-in-out infinite;
}

@keyframes avyIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Color variations */
.avy-icon-violet { stroke: #C8B6FF; }
.avy-icon-ivory { stroke: #F5EBDD; }
.avy-icon-gold { stroke: #D4AF37; }

/* ════════════════════════════════════════
   SACRED GEOMETRY HOVER (Glow)
   ════════════════════════════════════════ */
.avy-glow-box {
  position: relative;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.avy-glow-box::after {
  content: '';
  position: absolute; inset: -10px;
  background: radial-gradient(circle, rgba(196,154,74,0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover .avy-glow-box::after,
.course-card:hover .avy-glow-box::after {
  opacity: 1;
}
#nav {
  background: rgba(248,249,250,0.88) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(196,154,74,0.12);
  transition: background 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(248,249,250,0.97) !important;
  box-shadow: 0 4px 40px rgba(0,33,71,0.10);
}

/* Desktop dropdown — opacity/pointer-events approach (no layout shift) */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  /* Override style.css display:none with opacity approach */
  display: block !important;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: rgba(253,250,245,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,33,71,0.15);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
  z-index: 300;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--charcoal) !important;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s !important;
  text-decoration: none;
}
.nav-dropdown li a:hover {
  background: rgba(196,154,74,0.08);
  color: var(--gold) !important;
}
.nav-dropdown li a::after { display: none !important; }
@media (max-width: 900px) {
  .nav-dropdown { display: none !important; }
}

/* ════════════════════════════════════════
   HAMBURGER — open state transforms
   ════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  border: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  z-index: 210;
  border-radius: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  display: block;
  transition: transform 0.35s var(--ease-smooth), opacity 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   MOBILE MENU — slide-in panel
   FIX: Was using display:flex !important which fought
   style.css display:none on the base rule, causing iPhone to
   partially show the menu before JS loaded.
   Fix: always rendered in DOM, off-screen via translateX(100%).
   .open class slides it into view. No display toggling needed.
   ════════════════════════════════════════ */
.mobile-menu {
  /* Override style.css display:none */
  display: flex !important;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 100vw);
  background: var(--forest);
  z-index: 205;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 48px 96px; /* 96px bottom = space for mobile CTA bar */
  gap: 0;
  /* Off-screen by default; JS adds .open to slide in */
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-smooth);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Prevent interaction while off-screen */
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}

/* Backdrop */
.mobile-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(6,8,15,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 204;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu-backdrop.open {
  opacity: 1; pointer-events: all;
}

/* Menu links */
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  display: block;
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid rgba(196,154,74,0.12);
  transition: color 0.25s, padding-left 0.25s;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); padding-left: 8px; }
.mobile-menu a.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold); color: #fff;
  padding: 15px 32px; border: none;
  margin-top: 24px; text-align: center;
  display: block; width: fit-content;
  border-radius: 0;
}
.mobile-menu a.btn-primary:hover {
  background: #d4a855; padding-left: 32px;
}

/* Close button (injected by JS) */
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(196,154,74,0.1);
  border: 1px solid rgba(196,154,74,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gold); font-size: 1.2rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(196,154,74,0.2); }

/* ════════════════════════════════════════
   STICKY MOBILE CTA BAR
   ════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 198;
  background: var(--forest);
  border-top: 1px solid rgba(196,154,74,0.2);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -8px 32px rgba(6,8,15,0.25);
}
.mobile-cta-bar a {
  flex: 1; text-align: center;
  padding: 12px 8px; font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px; font-family: 'DM Sans', sans-serif;
  font-weight: 500; text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: opacity 0.2s;
}
.mobile-cta-bar a:active { opacity: 0.75; }
.mob-cta-book {
  background: var(--gold); color: #fff;
}
.mob-cta-wa {
  background: rgba(37,211,102,0.15);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.3);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ════════════════════════════════════════
   SCROLL PROGRESS BAR
   FIX: Was also defined in style.css (simple, no shimmer).
   Removed from style.css. Single shimmer definition here.
   ════════════════════════════════════════ */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2.5px; width: 0%;
  background: linear-gradient(90deg, var(--gold), rgba(139,92,246,0.9), var(--gold));
  background-size: 200% 100%;
  animation: progressShimmer 3s linear infinite;
  z-index: 9997; pointer-events: none;
  transition: width 0.05s linear;
}
@keyframes progressShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ════════════════════════════════════════
   SECTION SEPARATORS
   ════════════════════════════════════════ */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), rgba(139,92,246,0.5), var(--gold), transparent);
  opacity: 0.4;
}
.section-sep-dark {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,74,0.6), rgba(139,92,246,0.4), rgba(196,154,74,0.6), transparent);
}

/* ════════════════════════════════════════
   HERO EYEBROW — glassmorphism upgrade
   ════════════════════════════════════════ */
.hero-eyebrow {
  background: rgba(196,154,74,0.08) !important;
  border: 1px solid rgba(196,154,74,0.25) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s, background 0.3s;
}
.hero-eyebrow:hover {
  background: rgba(196,154,74,0.14) !important;
  box-shadow: 0 0 20px rgba(196,154,74,0.18);
}

/* ════════════════════════════════════════
   FLOATING PRANA PARTICLES — @keyframes
   FIX: pranaFloat was defined in premium.css; floatDrift was
   defined in style.css; both were assigned to .avy-particle
   in different declarations. Unified: pranaFloat only here.
   style.css .avy-particle { animation: pranaFloat } references this.
   ════════════════════════════════════════ */
@keyframes pranaFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 0.6; }
  100% { transform: translateY(-80vh) scale(0.4); opacity: 0; }
}

/* ════════════════════════════════════════
   SERVICE CARD UPGRADES
   ════════════════════════════════════════ */
.service-card {
  transition: background 0.4s, color 0.4s,
              transform 0.35s var(--ease-smooth),
              box-shadow 0.35s !important;
}
.service-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(0,33,71,0.15) !important;
}

/* ════════════════════════════════════════
   BUTTON UPGRADES
   ════════════════════════════════════════ */
.btn-primary {
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s !important;
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0,33,71,0.3) !important;
}
.btn-gold {
  transition: all 0.3s !important;
}
.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(196,154,74,0.35) !important;
  transform: translateY(-1px);
}
.btn-outline:hover {
  box-shadow: 0 4px 20px rgba(196,154,74,0.15) !important;
}

/* ════════════════════════════════════════
   CTA BAND — static glow (no animation)
   FIX: Was using ctaPulse animation on ::before with
   transform:scale(1.08) — this triggered continuous layout
   paint on every animation frame. Replaced with static glow.
   ════════════════════════════════════════ */
.cta-band {
  background: var(--forest) !important;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,154,74,0.1) 0%, transparent 70%);
  pointer-events: none;
  /* No animation — static glow is enough and avoids paint thrashing */
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ════════════════════════════════════════
   WHATSAPP FLOAT
   ════════════════════════════════════════ */
#wa-float {
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s, opacity 0.5s !important;
}
#wa-float:hover {
  transform: scale(1.1) translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5) !important;
}

/* ════════════════════════════════════════
   ★  COURSES SECTION — Dark Cosmic
   ════════════════════════════════════════ */
.courses-section {
  background: var(--cosmic-dark);
  padding: 110px 64px 120px;
  position: relative; overflow: hidden;
}
.courses-section::before {
  content: '';
  position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(196,154,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.courses-section::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.courses-section .label { color: var(--gold-light); justify-content: center; }
.courses-section .label::before { background: var(--gold-light); }
.courses-title    { color: #fff !important; text-align: center; }
.courses-subtitle {
  text-align: center; font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-top: 14px; line-height: 1.7; letter-spacing: 0.02em;
}

/* COURSES GRID — desktop 3-col, mobile horizontal scroll */
.courses-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 56px;
  position: relative; z-index: 2;
}

/* COURSE CARD */
.course-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(196,154,74,0.15);
  border-radius: 4px;
  padding: 36px 28px 32px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s, background 0.4s,
              transform 0.35s var(--ease-smooth), box-shadow 0.4s;
  -webkit-tap-highlight-color: transparent;
  display: flex; flex-direction: column;
}
.course-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,154,74,0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.course-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(139,92,246,0.7));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-smooth);
}
.course-card:hover {
  border-color: rgba(196,154,74,0.4);
  background: rgba(255,255,255,0.06);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4),
              0 0 0 1px rgba(196,154,74,0.2),
              inset 0 1px 0 rgba(255,255,255,0.06);
}
.course-card:hover::before  { opacity: 1; }
.course-card:hover::after   { transform: scaleX(1); }
.course-card:hover .course-icon { transform: scale(1.1) rotate(-5deg); }
.course-card:hover .course-enroll { color: var(--gold); }
.course-card:hover .course-enroll svg { transform: translateX(4px); }

.course-num {
  position: absolute; top: 14px; right: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; color: rgba(196,154,74,0.07);
  font-weight: 700; line-height: 1; user-select: none;
}
.course-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(196,154,74,0.1);
  border: 1px solid rgba(196,154,74,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  transition: transform 0.4s var(--ease-smooth);
  flex-shrink: 0;
}
.course-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: #fff; margin-bottom: 10px; line-height: 1.25;
}
.course-tagline {
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; opacity: 0.8;
}
.course-desc {
  font-size: 0.83rem; font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,0.45);
  margin-bottom: 24px; flex: 1;
}
.course-enroll {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  -webkit-tap-highlight-color: transparent;
  margin-top: auto;
}
.course-enroll svg { transition: transform 0.3s; }

/* ════════════════════════════════════════
   COURSES PAGE — Hero & Dedicated Layout
   ════════════════════════════════════════ */
.courses-page-hero {
  background: var(--cosmic-dark);
  padding: 160px 64px 100px;
  position: relative; overflow: hidden;
  min-height: 60vh; display: flex; align-items: center;
}
.courses-page-hero .page-hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,rgba(196,154,74,.025) 0,rgba(196,154,74,.025) 1px,transparent 1px,transparent 50px);
}
.courses-page-hero-glow-1 {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,154,74,.1) 0%, transparent 70%);
  pointer-events: none;
}
.courses-page-hero-glow-2 {
  position: absolute; bottom: -100px; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,.08) 0%, transparent 70%);
  pointer-events: none;
}
.courses-page-hero-content {
  position: relative; z-index: 2; max-width: 720px;
}
.courses-page-hero h1 {
  font-size: clamp(3rem,5vw,5.5rem);
  color: #fff; line-height: 1.05; margin: 16px 0 24px;
}
.courses-page-hero h1 em { color: var(--gold); font-style: italic; }
.courses-page-hero p {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.85; max-width: 600px;
}
.courses-page-hero .hero-btns { margin-top: 40px; }
.courses-page-hero .breadcrumb { color: rgba(255,255,255,0.35); }
.courses-page-hero .breadcrumb a { color: var(--gold-light); }

/* Courses full page section */
.courses-full-section {
  background: var(--cosmic-dark);
  padding: 80px 64px 100px;
  position: relative;
}
.courses-full-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(139,92,246,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(196,154,74,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.courses-full-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; position: relative; z-index: 2;
}

/* Featured card */
.course-card-featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, rgba(196,154,74,0.08), rgba(139,92,246,0.05));
  border: 1px solid rgba(196,154,74,0.25);
  border-radius: 4px; overflow: hidden; padding: 0; min-height: 280px;
}
.course-card-featured .course-card-featured-text {
  padding: 48px 44px; display: flex; flex-direction: column; justify-content: center;
}
.course-card-featured .course-card-featured-visual {
  background: linear-gradient(135deg, rgba(196,154,74,0.06), rgba(0,33,71,0.5));
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; opacity: 0.7;
  position: relative; overflow: hidden;
}
.course-card-featured .course-card-featured-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,154,74,0.12) 0%, transparent 70%);
}
.course-card-featured .course-name { font-size: 1.8rem; margin-bottom: 12px; }
.course-card-featured .course-desc { font-size: 0.9rem; max-width: 440px; }

/* Why learn */
.courses-why { background: var(--warm); padding: 80px 64px; }
.courses-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.courses-why-card {
  padding: 32px 24px; background: #fff;
  border: 1px solid var(--border); text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.courses-why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,33,71,0.1); }
.courses-why-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.courses-why-card h4 { font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; color: var(--forest); margin-bottom: 10px; }
.courses-why-card p  { font-size: 0.8rem; font-weight: 300; line-height: 1.8; color: var(--muted); }

/* ════════════════════════════════════════
   CHAKRA ALIGNMENT ANIMATION
   ════════════════════════════════════════ */
.chakra-container {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 20px;
}
.chakra-dot {
  width: 14px; height: 14px; border-radius: 50%;
  animation: chakraPulse 3s infinite ease-in-out;
}
@keyframes chakraPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; filter: blur(2px); }
  50% { transform: scale(1.4); opacity: 1; filter: blur(0px); }
}
.chakra-1 { background: #EF4444; box-shadow: 0 0 15px #EF4444; animation-delay: 0.0s; }
.chakra-2 { background: #F97316; box-shadow: 0 0 15px #F97316; animation-delay: 0.2s; }
.chakra-3 { background: #EAB308; box-shadow: 0 0 15px #EAB308; animation-delay: 0.4s; }
.chakra-4 { background: #22C55E; box-shadow: 0 0 15px #22C55E; animation-delay: 0.6s; }
.chakra-5 { background: #06B6D4; box-shadow: 0 0 15px #06B6D4; animation-delay: 0.8s; }
.chakra-6 { background: #6366F1; box-shadow: 0 0 15px #6366F1; animation-delay: 1.0s; }
.chakra-7 { background: #A855F7; box-shadow: 0 0 15px #A855F7; animation-delay: 1.2s; }

/* ════════════════════════════════════════
   UTILITY CLASSES
   ════════════════════════════════════════ */
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }

/* ════════════════════════════════════════
   MOBILE OVERRIDES
   ════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .mobile-cta-bar { display: flex; }

  /* Pad body so content doesn't hide behind sticky CTA bar */
  body { padding-bottom: 64px; }

  /* WhatsApp float hidden on mobile — bottom bar has WhatsApp tab */
  #wa-float { display: none !important; }

  /* Courses grid → vertical single column */
  .courses-section { padding: 72px 24px 80px; }
  .courses-section .section-head { padding: 0; }
  .courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px; margin-top: 40px;
  }
  .course-card { min-height: unset; }
  .courses-grid-cta {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .courses-grid-cta a { margin-right: 0 !important; width: 100%; max-width: 320px; text-align: center; }

  /* Full courses page */
  .courses-full-section { padding: 60px 24px 80px; }
  .courses-full-grid { grid-template-columns: 1fr; }
  .course-card-featured { grid-template-columns: 1fr; }
  .course-card-featured .course-card-featured-visual { display: none; }
  .courses-page-hero { padding: 120px 24px 80px; }
  .courses-why { padding: 60px 24px; }
  .courses-why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .courses-why-grid { grid-template-columns: 1fr; }
  .course-card-featured .course-card-featured-text { padding: 32px 24px; }
}

/* ════════════════════════════════════════
   HEALING VISUAL BOX — replaces empty image placeholders
   ════════════════════════════════════════ */
.healing-visual-box {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0d0818 0%, #1a0f2e 60%, #0a0620 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.healing-visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(124,58,237,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(196,154,74,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.healing-visual-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(196,154,74,0.025) 0, rgba(196,154,74,0.025) 1px,
    transparent 1px, transparent 40px
  );
  pointer-events: none;
}
.healing-visual-box .chakra-container { position: relative; z-index: 2; }

/* ════════════════════════════════════════
   ADVANTAGE CARDS — "Why Choose" section
   ════════════════════════════════════════ */
.advantage-card {
  background: var(--warm);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(124,58,237,0.1), 0 0 0 1px rgba(196,154,74,0.2);
}
.advantage-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s;
}
.advantage-card:hover .advantage-icon { transform: scale(1.1) rotate(-5deg); }
.advantage-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.advantage-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* ════════════════════════════════════════
   GALLERY SECTION — Cosmic healing tiles
   ════════════════════════════════════════ */
.gallery-section {
  padding: 60px 64px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,74,0.4), rgba(124,58,237,0.3), rgba(196,154,74,0.4), transparent);
}

.gallery-head { margin-bottom: 40px; }
.gallery-label { justify-content: center; color: var(--gold-light); }
.gallery-label::before { background: var(--gold-light); }
.gallery-title { color: #fff; text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-tile:hover { z-index: 2; }
.gallery-tile:hover .gallery-tile-bg { transform: scale(1.05); }
.gallery-tile:hover .gallery-tile-inner { opacity: 1; }

/* Animated background layer */
.gallery-tile-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-smooth);
}

/* Hover overlay */
.gallery-tile-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s;
  background: rgba(13,8,24,0.55);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.gallery-tile-icon { font-size: 2.5rem; line-height: 1; }
.gallery-tile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Tile 1 — Sacred Geometry: deep purple + gold */
.gallery-tile-1 .gallery-tile-bg {
  background:
    radial-gradient(ellipse at 25% 75%, rgba(124,58,237,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(196,154,74,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(79,70,229,0.2) 0%, transparent 70%),
    linear-gradient(135deg, #0d0818 0%, #1a0f2e 100%);
}
.gallery-tile-1 .gallery-tile-bg::before {
  content: '';
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(196,154,74,0.2);
  border-radius: 50%;
  animation: tileRotate 20s linear infinite;
}
.gallery-tile-1 .gallery-tile-bg::after {
  content: '';
  position: absolute;
  inset: 35%;
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50%;
  animation: tileRotate 12s linear infinite reverse;
}

/* Tile 2 — Energy Flow: indigo waves */
.gallery-tile-2 .gallery-tile-bg {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(79,70,229,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(124,58,237,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(196,154,74,0.2) 0%, transparent 40%),
    linear-gradient(160deg, #0a0620 0%, #0d0818 100%);
}
.gallery-tile-2 .gallery-tile-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(79,70,229,0.06) 0, rgba(79,70,229,0.06) 1px,
    transparent 1px, transparent 28px
  );
}

/* Tile 3 — Crystal Light: gold-tinted cosmic */
.gallery-tile-3 .gallery-tile-bg {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(196,154,74,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(147,51,234,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 50%, rgba(79,70,229,0.35) 0%, transparent 50%),
    linear-gradient(135deg, #0d0818 0%, #120a24 100%);
}
.gallery-tile-3 .gallery-tile-bg::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 60%; height: 60%;
  border: 1px solid rgba(196,154,74,0.15);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  animation: tileRotate 16s linear infinite;
}

/* Tile 4 — Star Medicine: deep cosmic */
.gallery-tile-4 .gallery-tile-bg {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(79,70,229,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 25%, rgba(196,154,74,0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 20%, rgba(124,58,237,0.4) 0%, transparent 50%),
    linear-gradient(135deg, #120a24 0%, #0d0818 100%);
}
.gallery-tile-4 .gallery-tile-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(circle, rgba(196,154,74,0.3) 1px, transparent 1px);
  background-size: 40px 40px, 25px 25px;
  background-position: 0 0, 12px 12px;
  opacity: 0.4;
}

@keyframes tileRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Gallery mobile */
@media (max-width: 900px) {
  .gallery-section { padding: 48px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
}

/* ────── Gallery: Animated portal scenes ────── */
.gt-scene {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gt-scene svg { width: 80%; height: 80%; }
.gallery-tile:hover .gt-scene svg {
  filter: drop-shadow(0 0 14px rgba(196,154,74,0.28));
}

/* Always-on label at bottom */
.gt-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 14px 16px;
  background: linear-gradient(to top, rgba(6,4,15,0.92) 0%, rgba(6,4,15,0.4) 55%, transparent 100%);
  z-index: 4; text-align: center;
  display: flex; flex-direction: column; gap: 5px;
  transition: padding 0.3s;
}
.gallery-tile:hover .gt-label { padding-bottom: 20px; }
.gt-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: .82rem; font-weight: 500;
  color: var(--gold-light); letter-spacing: .22em; text-transform: uppercase;
}
.gt-sub {
  font-size: .62rem; color: rgba(255,255,255,0.36); letter-spacing: .07em;
  transition: opacity 0.3s;
}

/* Tile 1 — Moon ambient glow */
.gt1-glow {
  position: absolute; top: 24%; left: 50%; transform: translateX(-50%);
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,185,245,0.38) 0%, rgba(124,58,237,0.1) 55%, transparent 72%);
  filter: blur(18px); pointer-events: none;
  animation: gtGlow 4s ease-in-out infinite alternate;
}
/* Tile 2 — Alchemy base glow */
.gt2-base {
  position: absolute; bottom: 28%; left: 50%; transform: translateX(-50%);
  width: 70px; height: 70px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,74,0.55) 0%, rgba(124,58,237,0.18) 55%, transparent 72%);
  filter: blur(16px); pointer-events: none;
  animation: gtGlow 3s ease-in-out infinite alternate;
}
@keyframes gtGlow {
  from { opacity:.5; transform:translateX(-50%) scale(.88); }
  to   { opacity:1;  transform:translateX(-50%) scale(1.2); }
}

/* ════════════════════════════════════════
   SERVICE CARD — purple accent on hover
   ════════════════════════════════════════ */
.service-card:hover {
  box-shadow: 0 24px 60px rgba(124,58,237,0.15),
              0 0 0 1px rgba(196,154,74,0.25) !important;
}

/* ════════════════════════════════════════
   TESTIMONIAL CARD — purple accent
   ════════════════════════════════════════ */
.tcard:hover {
  box-shadow: 0 24px 60px rgba(124,58,237,0.1),
              0 0 0 1px rgba(196,154,74,0.12) !important;
}

/* ════════════════════════════════════════
   NAV BOOK button — purple bg, gold hover
   ════════════════════════════════════════ */
.nav-book {
  background: var(--forest) !important;
  position: relative;
  overflow: hidden;
}
.nav-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(79,70,229,0.1));
  pointer-events: none;
}
.nav-book:hover { background: var(--gold) !important; }

/* ════════════════════════════════════════
   BTN-PRIMARY — purple depth
   ════════════════════════════════════════ */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), transparent);
  pointer-events: none;
}

/* ════════════════════════════════════════
   BG UTILITY CLASSES
   ════════════════════════════════════════ */
.bg-warm  { background: var(--warm);  }
.bg-cream { background: var(--cream); }
.bg-cosmic { background: var(--forest); }

/* ════════════════════════════════════════
   HERO RIGHT — Cosmic Energy Orb
   Transparent wrap lets the JS-injected
   sacred geometry canvas show through.
   ════════════════════════════════════════ */
.hero-energy-visual-wrap {
  width: 100%; height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-energy-visual {
  position: relative;
  width: 300px; height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Expanding aura pulses */
.hev-pulse {
  position: absolute;
  border-radius: 50%;
  animation: hevPulse 4s ease-out infinite;
}
.hev-pulse-1 {
  width: 180px; height: 180px;
  border: 1px solid rgba(196,154,74,0.5);
}
.hev-pulse-2 {
  width: 240px; height: 240px;
  border: 1px solid rgba(124,58,237,0.35);
  animation-delay: 1.3s;
}
.hev-pulse-3 {
  width: 310px; height: 310px;
  border: 1px solid rgba(79,70,229,0.2);
  animation-delay: 2.6s;
}

/* Luminous central orb */
.hev-orb {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    #edd98a 0%,
    #C49A4A 38%,
    rgba(124,58,237,0.65) 68%,
    rgba(13,8,24,0.15) 100%);
  box-shadow:
    0 0 30px rgba(196,154,74,0.6),
    0 0 70px rgba(196,154,74,0.25),
    0 0 110px rgba(124,58,237,0.15),
    inset 0 1px 2px rgba(255,255,255,0.35);
  position: relative;
  z-index: 3;
  animation: hevFloat 5s ease-in-out infinite;
}

/* Spinning orbital tracks */
.hev-ring {
  position: absolute;
  border-radius: 50%;
  animation: hevSpin linear infinite;
}
.hev-ring-1 {
  width: 140px; height: 140px;
  border: 1px solid transparent;
  border-top-color: rgba(196,154,74,0.7);
  border-right-color: rgba(196,154,74,0.2);
  animation-duration: 7s;
}
.hev-ring-2 {
  width: 208px; height: 208px;
  border: 1px solid transparent;
  border-top-color: rgba(124,58,237,0.55);
  border-left-color: rgba(124,58,237,0.2);
  animation-duration: 13s;
  animation-direction: reverse;
}
.hev-ring-3 {
  width: 270px; height: 270px;
  border: 1px dashed rgba(196,154,74,0.12);
  animation-duration: 22s;
}

@keyframes hevPulse {
  0%   { transform: scale(0.82); opacity: 0.85; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes hevSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes hevFloat {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 30px rgba(196,154,74,0.6),  0 0 70px rgba(196,154,74,0.25),  0 0 110px rgba(124,58,237,0.15); }
  50%       { transform: scale(1.08); box-shadow: 0 0 50px rgba(196,154,74,0.75), 0 0 90px rgba(196,154,74,0.35), 0 0 140px rgba(124,58,237,0.2); }
}

/* ════════════════════════════════════════
   INTRO SPLIT — Sacred Mandala
   Concentric rings + diamond geometry + ✦
   ════════════════════════════════════════ */
.sacred-mandala {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sm-ring {
  position: absolute;
  border-radius: 50%;
  animation: smSpin linear infinite;
}
.sm-ring-outer {
  width: 82%; height: 82%;
  border: 1px solid transparent;
  border-top-color: rgba(196,154,74,0.5);
  border-bottom-color: rgba(196,154,74,0.15);
  animation-duration: 36s;
}
.sm-ring-mid {
  width: 62%; height: 62%;
  border: 1px solid transparent;
  border-left-color: rgba(124,58,237,0.5);
  border-right-color: rgba(124,58,237,0.15);
  animation-duration: 22s;
  animation-direction: reverse;
}
.sm-ring-inner {
  width: 44%; height: 44%;
  border: 1px dashed rgba(196,154,74,0.3);
  animation-duration: 14s;
}

/* Rotating diamond (square at 45°) */
.sm-diamond {
  position: absolute;
  width: 30%; height: 30%;
  border: 1px solid rgba(196,154,74,0.4);
  animation: smDiamondSpin 20s linear infinite;
}
.sm-diamond-2 {
  width: 50%; height: 50%;
  border-color: rgba(124,58,237,0.22);
  animation-duration: 32s;
  animation-direction: reverse;
}

/* Soft ambient glow behind center */
.sm-glow {
  position: absolute;
  width: 40%; height: 40%;
  background: radial-gradient(circle, rgba(196,154,74,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: smGlow 4s ease-in-out infinite alternate;
}

/* Central star glyph */
.sm-center {
  position: relative;
  z-index: 2;
  font-size: 2.4rem;
  color: var(--gold);
  text-shadow:
    0 0 16px rgba(196,154,74,0.8),
    0 0 36px rgba(196,154,74,0.35),
    0 0 60px rgba(124,58,237,0.2);
  animation: smGlow 3.5s ease-in-out infinite alternate;
  user-select: none;
  line-height: 1;
}

@keyframes smSpin        { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes smDiamondSpin { from { transform: rotate(45deg);  } to { transform: rotate(405deg);  } }
@keyframes smGlow {
  from { opacity: 0.55; transform: scale(0.97); }
  to   { opacity: 1;    transform: scale(1.06); }
}

/* ════════════════════════════════════════
   AKASHIC RECORDS — Crystal Ball Portal
   ════════════════════════════════════════ */
.akashic-section {
  background: #06040f;
  padding: 100px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.akashic-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(124,58,237,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(196,154,74,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* — Text side — */
.akashic-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-light);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.akashic-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold-light);
}
.akashic-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  color: #fff; line-height: 1.08; margin-bottom: 24px;
}
.akashic-title em { color: var(--gold); font-style: italic; }
.akashic-desc {
  font-size: 0.93rem; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,0.42); margin-bottom: 14px; max-width: 480px;
}
.akashic-pillars {
  display: flex; flex-direction: column; gap: 13px;
  margin: 26px 0 34px;
}
.akashic-pillar {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.84rem; font-weight: 300;
  color: rgba(255,255,255,0.52); line-height: 1.65;
}
.akashic-pillar-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 7px;
  box-shadow: 0 0 8px rgba(196,154,74,0.7);
}

/* — Visual side — */
.akashic-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 60px 20px;
}
.crystal-ball-wrap {
  position: relative; width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* The sphere */
.crystal-ball {
  width: 220px; height: 220px; border-radius: 50%;
  position: relative; overflow: hidden; z-index: 2;
  background: radial-gradient(circle at 38% 34%,
    rgba(190,170,240,0.55) 0%,
    rgba(79,70,229,0.72)   18%,
    rgba(49,22,120,0.88)   44%,
    rgba(13,8,24,0.96)     68%,
    #06040f                100%);
  box-shadow:
    0 0 55px rgba(124,58,237,0.55),
    0 0 110px rgba(124,58,237,0.2),
    0 0 180px rgba(79,70,229,0.1),
    inset 0 0 55px rgba(124,58,237,0.28),
    inset 0 28px 55px rgba(255,255,255,0.05);
}

/* Swirling inner mist — conic + radial gradients rotating */
.cb-mist {
  position: absolute; border-radius: 50%;
  filter: blur(16px); mix-blend-mode: screen;
  animation: cbMistSpin linear infinite;
}
.cb-mist-1 {
  width: 120%; height: 120%; top: -10%; left: -10%; opacity: 0.55;
  background: conic-gradient(from 0deg,
    rgba(196,154,74,0.3) 0deg, transparent 55deg,
    rgba(124,58,237,0.35) 115deg, transparent 175deg,
    rgba(196,154,74,0.22) 235deg, transparent 295deg,
    rgba(124,58,237,0.28) 355deg);
  animation-duration: 18s;
}
.cb-mist-2 {
  width: 100%; height: 100%; opacity: 0.4;
  background: conic-gradient(from 180deg,
    rgba(79,70,229,0.35) 0deg, transparent 80deg,
    rgba(196,154,74,0.18) 160deg, transparent 240deg,
    rgba(79,70,229,0.25) 320deg);
  animation-duration: 11s; animation-direction: reverse;
}
.cb-mist-3 {
  width: 80%; height: 80%; top: 10%; left: 10%; opacity: 0.65;
  background:
    radial-gradient(ellipse at 35% 38%, rgba(196,154,74,0.32) 0%, transparent 58%),
    radial-gradient(ellipse at 68% 65%, rgba(124,58,237,0.22) 0%, transparent 50%);
  animation-duration: 7s;
}

/* Stars via box-shadow (single element = 8 stars) */
.cb-stars {
  position: absolute; top: 50%; left: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow:
    28px -22px 0 0px rgba(255,255,255,0.8),
   -38px  28px 0 1px rgba(255,255,255,0.5),
    58px  18px 0 0px rgba(255,255,255,0.65),
   -18px -42px 0 1px rgba(196,154,74,0.9),
    48px -48px 0 0px rgba(255,255,255,0.45),
   -58px  10px 0 1px rgba(196,154,74,0.6),
     8px  58px 0 0px rgba(255,255,255,0.5),
   -30px -10px 0 1px rgba(196,154,74,0.4);
  animation: cbStarsTwinkle 3.5s ease-in-out infinite alternate;
}

/* Central glow inside ball */
.cb-inner-glow {
  position: absolute;
  width: 58%; height: 58%; top: 21%; left: 21%; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,74,0.22) 0%, transparent 70%);
  animation: cbGlow 4s ease-in-out infinite alternate;
}

/* Mystical symbol text */
.cb-symbol {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: rgba(196,154,74,0.55);
  letter-spacing: 0.2em;
  text-shadow: 0 0 18px rgba(196,154,74,0.9);
  animation: cbSymbol 6s ease-in-out infinite; z-index: 1;
  filter: blur(0.3px);
}

/* Top-left glass highlight */
.cb-highlight {
  position: absolute; top: 13%; left: 17%;
  width: 32%; height: 17%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.17) 0%, transparent 70%);
  border-radius: 50%; transform: rotate(-28deg);
  z-index: 3; pointer-events: none;
}

/* Orbiting rings (outside the ball) */
.cb-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  animation: cbRingSpin linear infinite;
}
.cb-ring-1 {
  width: 260px; height: 260px; margin: -130px 0 0 -130px;
  border: 1px solid transparent;
  border-top-color: rgba(196,154,74,0.55);
  border-bottom-color: rgba(196,154,74,0.12);
  animation-duration: 9s;
}
.cb-ring-2 {
  width: 316px; height: 316px; margin: -158px 0 0 -158px;
  border: 1px solid transparent;
  border-left-color: rgba(124,58,237,0.45);
  border-right-color: rgba(124,58,237,0.1);
  animation-duration: 15s; animation-direction: reverse;
}
.cb-ring-3 {
  width: 370px; height: 370px; margin: -185px 0 0 -185px;
  border: 1px dashed rgba(196,154,74,0.09);
  animation-duration: 26s;
}

/* Pedestal glow + floor reflection */
.cb-base {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 14px;
  background: linear-gradient(135deg, rgba(196,154,74,0.35), rgba(124,58,237,0.2));
  border-radius: 50%; filter: blur(7px); z-index: 1;
}
.cb-reflection {
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  width: 170px; height: 40px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.28) 0%, transparent 70%);
  filter: blur(14px);
}

/* — Keyframes — */
@keyframes cbMistSpin   { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes cbRingSpin   { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes cbStarsTwinkle { from { opacity: 0.25; } to { opacity: 1; } }
@keyframes cbGlow       { from { opacity: 0.35; transform: scale(0.94); } to { opacity: 0.85; transform: scale(1.12); } }
@keyframes cbSymbol     { 0%,100% { opacity: 0.25; transform: scale(0.94); } 50% { opacity: 0.7; transform: scale(1.06); } }

/* — Responsive — */
@media (max-width: 900px) {
  .akashic-section {
    grid-template-columns: 1fr; padding: 64px 24px; gap: 48px;
  }
  .akashic-visual { order: -1; padding: 40px 20px 0; }
  .crystal-ball { width: 170px; height: 170px; }
  .crystal-ball-wrap { width: 200px; height: 200px; }
  .cb-ring-1 { width: 200px; height: 200px; margin: -100px 0 0 -100px; }
  .cb-ring-2 { width: 244px; height: 244px; margin: -122px 0 0 -122px; }
  .cb-ring-3 { width: 288px; height: 288px; margin: -144px 0 0 -144px; }
}

/* ════════════════════════════════════════
   AKASHIC PORTAL — Sacred Geometry Portal
   Hexagram + Bindu + starfield + orbital rings
   ════════════════════════════════════════ */
.akashic-portal {
  position: relative;
  width: 320px; height: 320px;
  margin: 0 auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  animation: apRingSpin linear infinite;
}
.ap-ring-1 {
  width: 264px; height: 264px; margin: -132px 0 0 -132px;
  border: 1px solid transparent;
  border-top-color: rgba(196,154,74,0.62);
  border-right-color: rgba(196,154,74,0.18);
  animation-duration: 10s;
}
.ap-ring-2 {
  width: 300px; height: 300px; margin: -150px 0 0 -150px;
  border: 1px solid transparent;
  border-left-color: rgba(124,58,237,0.55);
  border-bottom-color: rgba(124,58,237,0.12);
  animation-duration: 18s; animation-direction: reverse;
}
.ap-ring-3 {
  width: 338px; height: 338px; margin: -169px 0 0 -169px;
  border: 1px dashed rgba(196,154,74,0.1);
  animation-duration: 32s;
}

.ap-vortex {
  position: relative;
  width: 224px; height: 224px; border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(124,58,237,0.38) 0%,
    rgba(79,70,229,0.22)  32%,
    rgba(13,8,24,0.88)    66%,
    #06040f               100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(124,58,237,0.45),
    0 0 120px rgba(124,58,237,0.18),
    inset 0 0 55px rgba(124,58,237,0.22);
  animation: apVortexGlow 5s ease-in-out infinite alternate;
}

/* Sacred hexagram + circles rotate slowly */
.ap-geometry {
  position: absolute;
  width: 84%; height: 84%;
  animation: apGeometrySpin 48s linear infinite;
}

.ap-center-glow {
  position: absolute;
  width: 88px; height: 88px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,74,0.5) 0%, rgba(124,58,237,0.18) 45%, transparent 70%);
  animation: apCenterGlow 3.5s ease-in-out infinite alternate;
}

.ap-symbol {
  position: relative; z-index: 3;
  font-size: 2.4rem;
  color: var(--gold);
  text-shadow:
    0 0 18px rgba(196,154,74,0.95),
    0 0 38px rgba(196,154,74,0.55),
    0 0 72px rgba(124,58,237,0.28);
  animation: apSymbolPulse 4.5s ease-in-out infinite;
  user-select: none; line-height: 1;
}

/* Star-field (box-shadow trick) */
.ap-stars {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  pointer-events: none;
  box-shadow:
     42px  -68px 0 0   rgba(255,255,255,0.65),
    -72px   52px 0 1px rgba(196,154,74,0.75),
     98px   42px 0 0   rgba(255,255,255,0.5),
    -52px  -95px 0 1px rgba(255,255,255,0.55),
     78px  -95px 0 0   rgba(196,154,74,0.6),
   -108px  -28px 0 1px rgba(255,255,255,0.4),
     22px  108px 0 0   rgba(255,255,255,0.5),
    -82px   95px 0 1px rgba(196,154,74,0.45),
    115px   18px 0 0   rgba(255,255,255,0.35),
    -38px -118px 0 0   rgba(196,154,74,0.55);
  animation: apStarsTwinkle 4.5s ease-in-out infinite alternate;
}

/* Floating particles */
.ap-particle {
  position: absolute; border-radius: 50%;
  pointer-events: none;
  animation: asParticleFloat linear infinite;
}
.ap-p1 { width:4px;height:4px;left:12%;top:55%;background:radial-gradient(circle,rgba(196,154,74,0.9)0%,transparent 70%);animation-duration:5s; }
.ap-p2 { width:3px;height:3px;left:82%;top:62%;background:radial-gradient(circle,rgba(196,154,74,0.7)0%,transparent 70%);animation-duration:7s;animation-delay:1.2s; }
.ap-p3 { width:5px;height:5px;left:38%;top:78%;background:radial-gradient(circle,rgba(124,58,237,0.8)0%,transparent 70%);animation-duration:4.5s;animation-delay:0.6s; }
.ap-p4 { width:3px;height:3px;left:72%;top:50%;background:radial-gradient(circle,rgba(196,154,74,0.6)0%,transparent 70%);animation-duration:6.5s;animation-delay:1.8s; }
.ap-p5 { width:4px;height:4px;left:50%;top:82%;background:radial-gradient(circle,rgba(124,58,237,0.7)0%,transparent 70%);animation-duration:8s;animation-delay:0.3s; }

.ap-base-glow {
  position: absolute;
  bottom: -18px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 65px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.35) 0%, transparent 70%);
  filter: blur(18px); pointer-events: none;
}

@keyframes apRingSpin    { from{transform:rotate(0deg)}   to{transform:rotate(360deg)} }
@keyframes apGeometrySpin { from{transform:rotate(0deg)}  to{transform:rotate(360deg)} }
@keyframes apVortexGlow {
  from { box-shadow: 0 0 60px rgba(124,58,237,0.45), 0 0 120px rgba(124,58,237,0.18), inset 0 0 55px rgba(124,58,237,0.22); }
  to   { box-shadow: 0 0 85px rgba(124,58,237,0.6),  0 0 160px rgba(196,154,74,0.1),  inset 0 0 80px rgba(124,58,237,0.32); }
}
@keyframes apCenterGlow {
  from { opacity:0.5; transform:scale(0.86); }
  to   { opacity:1;   transform:scale(1.22); }
}
@keyframes apSymbolPulse {
  0%,100% { opacity:0.72; transform:scale(0.94); }
  50%     { opacity:1;    transform:scale(1.1);  }
}
@keyframes apStarsTwinkle { from{opacity:0.25} to{opacity:1} }
@keyframes asParticleFloat {
  0%   { transform:translateY(0);      opacity:0; }
  12%  { opacity:1; }
  88%  { opacity:0.7; }
  100% { transform:translateY(-130px); opacity:0; }
}

@media (max-width: 900px) {
  .akashic-portal { width:240px; height:240px; }
  .ap-vortex { width:170px; height:170px; }
  .ap-ring-1 { width:200px;height:200px;margin:-100px 0 0 -100px; }
  .ap-ring-2 { width:228px;height:228px;margin:-114px 0 0 -114px; }
  .ap-ring-3 { width:256px;height:256px;margin:-128px 0 0 -128px; }
  .ap-symbol { font-size:1.8rem; }
  .ap-center-glow { width:68px;height:68px; }
}

/* ════════════════════════════════════════
   TAROT CARD SPREAD — 3-card reading visual (index.html intro)
   ════════════════════════════════════════ */
.tarot-visual {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}

.tv-glow {
  position: absolute;
  width: 75%; height: 75%; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, rgba(196,154,74,0.06) 50%, transparent 70%);
  animation: tvGlow 5s ease-in-out infinite alternate;
}

/* Base card shape */
.tv-card {
  position: absolute;
  width: 92px; height: 152px;
  border-radius: 7px;
  background: linear-gradient(155deg, #1f0d4a 0%, #0e0520 45%, #170840 100%);
  border: 1px solid rgba(196,154,74,0.45);
}
.tv-card::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 0.5px solid rgba(196,154,74,0.2);
  border-radius: 4px;
  pointer-events: none;
}
.tv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(196,154,74,0.06) 0%, transparent 60%);
  border-radius: 7px;
  pointer-events: none;
}

.tv-card-inner {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 12px 8px; gap: 4px;
}

.tv-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.55rem; letter-spacing: 0.22em;
  color: rgba(196,154,74,0.5);
  text-transform: uppercase;
}
.tv-card-symbol {
  font-size: 2.5rem; line-height: 1;
  filter: drop-shadow(0 0 10px currentColor);
}
.tv-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.47rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,154,74,0.65);
}

/* Corner glyphs */
.tv-corner {
  position: absolute;
  font-size: 0.5rem;
  color: rgba(196,154,74,0.4);
  line-height: 1; user-select: none;
}
.tv-corner-tl { top:7px; left:8px; }
.tv-corner-tr { top:7px; right:8px; }
.tv-corner-bl { bottom:7px; left:8px; }
.tv-corner-br { bottom:7px; right:8px; }

/* Card positions and individual animations */
.tv-card-left {
  transform: rotate(-16deg) translate(-82px, 14px);
  z-index: 1;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55), 0 0 16px rgba(124,58,237,0.12);
  animation: tvCardLeft 6.5s ease-in-out infinite;
}
.tv-card-left .tv-card-symbol { color: rgba(196,170,250,0.88); }

.tv-card-center {
  z-index: 3;
  box-shadow:
    0 14px 52px rgba(0,0,0,0.7),
    0 0 36px rgba(196,154,74,0.2),
    0 0 70px rgba(124,58,237,0.12);
  border-color: rgba(196,154,74,0.65);
  animation: tvCardCenter 5s ease-in-out infinite;
}
.tv-card-center .tv-card-symbol { color: rgba(224,192,122,0.95); }

.tv-card-right {
  transform: rotate(16deg) translate(82px, 14px);
  z-index: 2;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55), 0 0 16px rgba(196,154,74,0.1);
  animation: tvCardRight 7.5s ease-in-out infinite;
}
.tv-card-right .tv-card-symbol { color: rgba(196,154,74,0.88); }

/* Floating star glyphs */
.tv-star {
  position: absolute;
  color: rgba(196,154,74,0.6);
  font-size: 0.75rem;
  pointer-events: none;
  animation: tvStarFloat ease-in-out infinite;
  user-select: none;
}
.tv-s1 { top:14%; left:10%;  font-size:.9rem;  animation-duration:4s;   animation-delay:0s; }
.tv-s2 { top:18%; right:12%; font-size:.65rem; animation-duration:5.5s; animation-delay:1s;   color:rgba(124,58,237,0.55); }
.tv-s3 { bottom:16%; left:16%; font-size:.8rem; animation-duration:6s;  animation-delay:.5s; }
.tv-s4 { bottom:20%; right:13%; font-size:.6rem; animation-duration:4.5s; animation-delay:1.5s; color:rgba(124,58,237,0.5); }

@keyframes tvGlow {
  from { opacity:.5; transform:scale(.92); }
  to   { opacity:1;  transform:scale(1.08); }
}
@keyframes tvCardLeft {
  0%,100% { transform:rotate(-16deg) translate(-82px, 14px); }
  50%     { transform:rotate(-13deg) translate(-80px,  5px); }
}
@keyframes tvCardCenter {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-11px); }
}
@keyframes tvCardRight {
  0%,100% { transform:rotate(16deg) translate(82px, 14px); }
  50%     { transform:rotate(13deg) translate(80px,  4px); }
}
@keyframes tvStarFloat {
  0%,100% { transform:translateY(0) scale(1);   opacity:.55; }
  50%     { transform:translateY(-9px) scale(1.2); opacity:1;   }
}

/* ════════════════════════════════════════
   MEDITATION VISUAL — Lotus Pose + 7 Chakras (about.html)
   ════════════════════════════════════════ */
.meditation-visual {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.mv-figure {
  position: relative; z-index: 2;
  width: 200px;
  filter: drop-shadow(0 0 18px rgba(124,58,237,0.22));
  animation: mvFloat 7s ease-in-out infinite;
}
.mv-aura {
  position: absolute; border-radius: 50%;
  animation: mvAuraPulse ease-in-out infinite;
}
.mv-aura-1 { width:220px;height:280px;border:1px solid rgba(196,154,74,0.2);animation-duration:4s; }
.mv-aura-2 { width:290px;height:370px;border:1px solid rgba(124,58,237,0.14);animation-duration:6s;animation-delay:.7s; }
.mv-aura-3 { width:360px;height:460px;border:1px dashed rgba(196,154,74,0.07);animation-duration:8s;animation-delay:1.4s; }
.mv-lotus-glow {
  position: absolute;
  bottom: 8%; left: 50%; transform: translateX(-50%);
  width: 160px; height: 50px;
  background: radial-gradient(ellipse, rgba(196,154,74,0.22) 0%, transparent 70%);
  filter: blur(10px);
  animation: mvLotusGlow 3.5s ease-in-out infinite alternate;
}
@keyframes mvFloat  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes mvAuraPulse { 0%,100%{opacity:.35;transform:scale(.97)} 50%{opacity:1;transform:scale(1.04)} }
@keyframes mvLotusGlow { from{opacity:.4} to{opacity:1} }











/* ════════════════════════════════════════
   PREMIUM MOBILE MENU
   ════════════════════════════════════════ */
.premium-mobile-menu { position: fixed; inset: 0; z-index: 9999; pointer-events: none; visibility: hidden; }
.premium-mobile-menu.is-active { pointer-events: all; visibility: visible; }
.pmm-backdrop { position: absolute; inset: 0; background: rgba(6, 4, 15, 0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); opacity: 0; }
.pmm-drawer { position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 85vw); background: linear-gradient(180deg, rgba(10, 6, 25, 0.95) 0%, rgba(6, 4, 15, 0.98) 100%); border-left: 1px solid rgba(196, 154, 74, 0.15); box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; transform: translateX(100%); }
.pmm-drawer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(196, 154, 74, 0.15) 0%, transparent 50%), radial-gradient(circle at 0% 100%, rgba(124, 58, 237, 0.1) 0%, transparent 50%); pointer-events: none; }
.pmm-close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; color: var(--gold); display: flex; align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer; z-index: 2; transition: background 0.3s, transform 0.3s; }
.pmm-close:hover { background: rgba(196, 154, 74, 0.1); }
.pmm-close:active { transform: scale(0.9); }
.pmm-content { position: relative; z-index: 1; padding: 60px 40px; display: flex; flex-direction: column; height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.pmm-content::-webkit-scrollbar { display: none; }
.pmm-brand { margin-bottom: 40px; }
.pmm-brand-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: #fff; letter-spacing: 0.1em; line-height: 1.1; }
.pmm-brand-sub { display: block; font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.pmm-links { display: flex; flex-direction: column; gap: 4px; }
.pmm-links a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: rgba(245, 240, 232, 0.7); text-decoration: none; padding: 8px 0; display: block; border-bottom: 1px solid rgba(196, 154, 74, 0.1); transition: color 0.3s, transform 0.3s; }
.pmm-links a:last-child { border-bottom: none; }
.pmm-links a:hover, .pmm-links a:active { color: var(--gold); transform: translateX(8px); }
.pmm-group { margin: 18px 0 10px; }
.pmm-group span { display: block; color: var(--gold); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 8px; }
.pmm-group a { font-size: 1.34rem; padding: 6px 0; }
.pmm-footer { margin-top: auto; padding-top: 40px; }
.pmm-btn { display: block; width: 100%; text-align: center; background: var(--gold); color: #fff; padding: 16px 24px; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: background 0.3s, transform 0.2s; border-radius: 2px; }
.pmm-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
@media (max-width: 480px) { .pmm-drawer { width: 100vw; } .pmm-content { padding: 60px 24px; } .pmm-close { right: 12px; } }
