/* ===== CSS VARIABLES ===== */
:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --rose-gold: #E2B4BD;
  /* Updated to lavender-rose palette throughout */
  --pearl: #EDE0F0;          /* was warm beige, now lavender-pearl */
  --pearl-dark: #E0CEEA;     /* slightly richer lavender */
  --lilac: #C9BBD8;
  --lilac-dark: #A89BC0;
  --anthracite: #2D2926;
  --bronze: #A67C52;
  --wine: #B54F6F;
  --wine-light: #D47090;
  --bg: #EDE0F0;             /* soft mauve-lavender base */
  --glass-bg: rgba(255,255,255,0.38);
  --glass-border: rgba(255,255,255,0.65);
  --glass-border-gold: rgba(212,175,55,0.25);
  --shadow-gold: 0 8px 40px rgba(212,175,55,0.28);
  --shadow-soft: 0 20px 60px rgba(160,100,160,0.14);  /* lavender shadow */
  --shadow-rose: 0 16px 50px rgba(180,100,160,0.18);
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-script: 'Great Vibes', 'Dancing Script', cursive;
  --font-sans: 'DM Sans', 'Helvetica Neue', sans-serif;
  --radius: 20px;
  --radius-lg: 30px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--pearl);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.ldr-logo {
  width: 110px; height: 110px; border-radius: 50%; object-fit: contain;
  animation: ldr-pop 0.7s cubic-bezier(.34,1.56,.64,1) both;
  box-shadow: 0 8px 40px rgba(160,80,200,0.2);
}
@keyframes ldr-pop { from { opacity:0; transform:scale(0.6); } to { opacity:1; transform:scale(1); } }
.ldr-name {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.35em; color: var(--anthracite); opacity: 0.6;
  animation: fadeIn 0.5s 0.3s both;
}
.ldr-bar {
  width: 160px; height: 1px; background: rgba(45,41,38,0.12); overflow: hidden;
}
.ldr-fill {
  height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--wine));
  transform: scaleX(0); transform-origin: left;
  animation: ldr-fill 1.4s 0.2s cubic-bezier(.77,0,.175,1) forwards;
}
@keyframes ldr-fill { to { transform: scaleX(1); } }

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--anthracite);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--rose-gold); color: var(--anthracite); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pearl); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; }

/* ===== PARTICLES CANVAS — bokeh bleščice po celotni strani ===== */
#particles-canvas {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none; z-index: 2; opacity: 1;
  /* No blend mode — particles use baked alpha in radial gradients, work on light & dark bg */
}

/* ===== COUNTDOWN BAR — subtilna glass različica, ne agresivna sales pressure ===== */
.countdown-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(45,30,69,0.65); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  color: rgba(248,244,240,0.85);
  padding: 4px 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 400; letter-spacing: 0.8px;
  height: 28px;
}
.countdown-label { opacity: 0.85; font-weight: 500; }
.countdown-units { display: flex; gap: 8px; align-items: center; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 0px; }
.countdown-num {
  font-size: 13px; font-weight: 600; font-family: var(--font-serif);
  color: var(--gold-light); min-width: 20px; text-align: center;
  line-height: 1.1;
}
.countdown-label-sm { font-size: 7px; letter-spacing: 1.2px; opacity: 0.55; text-transform: uppercase; }
.countdown-sep { font-size: 13px; color: var(--gold); opacity: 0.35; margin-top: -3px; }

/* ===== DROPDOWN NAV ===== */
.nav-dropdown-wrap { position: relative; }

/* Invisible bridge above dropdown — fills gap so hover is never lost */
.nav-dropdown::before {
  content: ''; position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(252,248,255,0.97); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212,175,55,0.22); border-radius: 14px;
  padding: 8px 0; min-width: 210px;
  opacity: 0; pointer-events: none;
  /* show: fast in, hide: delayed so mouse can reach dropdown */
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 20px 50px rgba(160,100,180,0.18), 0 4px 16px rgba(45,41,38,0.08);
  z-index: 200;
}
/* JS-controlled open state (more reliable than pure CSS hover) */
.nav-dropdown-wrap.open .nav-dropdown,
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 10px 20px; font-size: 12px; letter-spacing: 1px;
  color: var(--anthracite) !important; transition: all 0.2s ease;
  white-space: nowrap; text-decoration: none;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover {
  background: rgba(212,175,55,0.10); color: var(--gold) !important;
  padding-left: 26px;
}
nav a.active { color: var(--gold) !important; }
nav a.active::after { transform: scaleX(1) !important; }

/* ===== HEADER / NAV ===== */
header {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 999;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
header.scrolled {
  background: rgba(248,244,240,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 4px 30px rgba(45,41,38,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo-img { height: 42px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-serif); font-size: 16px; font-weight: 600;
  color: var(--anthracite); letter-spacing: 3px; line-height: 1;
}
.nav-logo-sub {
  font-size: 9px; letter-spacing: 3px; color: var(--bronze); text-transform: uppercase;
}
nav {
  display: flex; align-items: center; gap: 32px;
}
nav a {
  font-size: 11px; letter-spacing: 2px; font-weight: 600;
  color: var(--anthracite); text-decoration: none; position: relative;
  transition: var(--transition); padding: 4px 0;
}
nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: var(--transition);
}
nav a:hover { color: var(--gold); }
nav a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-switcher {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  border: 1px solid rgba(212,175,55,0.4); border-radius: 20px;
  padding: 6px 12px; background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.lang-opt {
  cursor: pointer; transition: var(--transition); color: var(--bronze); padding: 2px 4px;
  border-radius: 10px;
}
.lang-opt.active { color: var(--gold); font-weight: 700; }
.lang-opt:hover { color: var(--gold); }
.lang-sep { color: rgba(212,175,55,0.4); font-size: 10px; }

.nav-cta {
  /* Rose-gold amber — exact color from reference "LET'S CREATE" button */
  background: linear-gradient(135deg, rgba(196,148,98,0.92) 0%, rgba(180,130,88,0.95) 100%);
  color: white !important; padding: 10px 22px !important; border-radius: 30px;
  font-size: 11px !important; letter-spacing: 2px !important;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(190,140,90,0.35);
  backdrop-filter: blur(8px);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(190,140,90,0.5);
  background: linear-gradient(135deg, rgba(212,165,108,0.95) 0%, rgba(196,148,98,0.98) 100%);
  color: white !important;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh; position: relative; z-index: 1;
  display: flex; align-items: center; overflow: hidden;
  padding-top: 130px; padding-bottom: 20px;
  /*
   * REFERENCE MATCH — lavender-pink + warm gold atmosphere
   * Soft pastel base z toplo zlatim glow za mačko
   */
  background:
    /* Topel zlat glow okoli mačke (desno) */
    radial-gradient(ellipse 48% 70% at 70% 50%,
      rgba(248,200,140,0.45) 0%,
      rgba(240,180,160,0.25) 35%,
      transparent 65%
    ),
    /* Soft lavender depth na desnem robu */
    radial-gradient(ellipse 55% 100% at 95% 50%,
      rgba(180,140,210,0.30) 0%,
      rgba(200,160,220,0.15) 50%,
      transparent 75%
    ),
    /* Base: pearl pink-lavender (light, dreamy) */
    linear-gradient(108deg,
      #F4ECF6 0%,
      #ECDDEE 22%,
      #E5D0E8 45%,
      #DCC4E2 65%,
      #D4B8DC 85%,
      #C9A8D2 100%
    );
}

/* ===== HERO SVG SWIRL LINES ===== */
.hero-swirls {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1; overflow: visible;
}

/* ===== HERO PIXEL CLUSTER — odstranjeno (digital squares se niso ujemale s violet/gold paleto) ===== */
.hero-pixels-cluster { display: none; }
.hpx {
  position: absolute; border-radius: 2px;
  animation: pixel-float 4s ease-in-out infinite;
}

/* ===== GOLDEN PLATFORM RINGS ===== */
.hero-cat-platform {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 70px; pointer-events: none; z-index: 1;
}
.hero-cat-platform svg { width: 100%; height: 100%; overflow: visible; }

/* Samo en subtilen violet glow — gradient v #hero že daje atmosfero */
.hero-glow-1 {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(ellipse,
    rgba(160,120,240,0.38) 0%,
    rgba(130,90,220,0.18) 35%,
    transparent 70%
  );
  top: 50%; right: -10%; transform: translateY(-50%);
  pointer-events: none; animation: glow-pulse 6s ease-in-out infinite;
}
/* Glow 2 in 3 odstranjena — preveč plasti, gradient zadostuje */
.hero-glow-2, .hero-glow-3 { display: none; }
.hero-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr; align-items: center; gap: 40px;
  width: 100%; position: relative; z-index: 3;
}
.hero-left { display: flex; flex-direction: column; align-items: flex-start; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(120,80,180,0.55); border-radius: 30px;
  padding: 7px 20px; font-size: 10px; letter-spacing: 3px; font-weight: 700;
  color: #4A2080; background: rgba(255,255,255,0.55); margin-bottom: 28px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: fade-in-up 0.8s ease both;
}
.hero-title {
  font-family: var(--font-serif); color: #2D1B45;
  font-size: clamp(36px, 4.5vw, 66px); font-weight: 500; line-height: 1.05; margin-bottom: 0;
  animation: fade-in-up 0.8s 0.2s ease both;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255,255,255,0.85),
    0 2px 30px rgba(255,255,255,0.55);
  position: relative;
  display: inline-block;
}
/* Shimmer OVERLAY — base text vedno viden, gold žarek samo poligrafičen nad njim */
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 38%,
    rgba(201,168,91,0.85) 48%,
    rgba(252,210,120,0.98) 50%,
    rgba(201,168,91,0.85) 52%,
    transparent 62%,
    transparent 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.5px; text-transform: uppercase;
  font-family: var(--font-serif); font-weight: 500;
  pointer-events: none;
  animation: title-shimmer 7s 2s ease-in-out infinite;
}
@keyframes title-shimmer {
  0%, 70%, 100% { background-position: 200% 0; }
  85% { background-position: -50% 0; }
}
.hero-title-script {
  font-family: var(--font-script); color: #8A1F4A;
  font-size: clamp(42px, 5.2vw, 72px); font-weight: 400; display: block;
  margin-top: -10px; margin-bottom: 20px;
  animation: fade-in-up 0.8s 0.35s ease both;
  text-shadow:
    0 0 14px rgba(255,255,255,0.85),
    0 2px 24px rgba(255,255,255,0.6);
}
.hero-subtitle {
  font-size: 17px; color: #4A3060; line-height: 1.65; margin-bottom: 36px;
  max-width: 400px; animation: fade-in-up 0.8s 0.5s ease both;
  text-shadow:
    0 0 12px rgba(255,255,255,0.85),
    0 1px 16px rgba(255,255,255,0.65);
}
.hero-subtitle strong { color: #2D1B45; font-weight: 700; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  /* Glass outlined pill — exact reference style */
  background: rgba(255,255,255,0.55); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #2D2520; border: 1.5px solid rgba(180,140,110,0.45);
  padding: 15px 34px; border-radius: 50px; text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(180,130,100,0.15);
  animation: fade-in-up 0.8s 0.65s ease both;
  position: relative; overflow: hidden;
}
/* Periodic gold gleam sweep across button */
.hero-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(252,210,120,0.55) 48%,
    rgba(255,235,180,0.85) 50%,
    rgba(252,210,120,0.55) 52%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: cta-gleam 5s 1.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cta-gleam {
  0%, 80%, 100% { transform: translateX(-120%); }
  90% { transform: translateX(120%); }
}
.hero-cta:hover {
  background: rgba(190,148,100,0.85);
  color: white;
  border-color: transparent;
  transform: translateY(-3px); box-shadow: 0 12px 40px rgba(190,140,90,0.3);
}

/* ===== CAT VIDEO AS HERO BACKGROUND (fully blended) ===== */
.hero-cat-runway {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  /* Sits BELOW the gradient overlay; gradient blends video into atmosphere */
}
.hero-cat-walker {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Multiply blend → svetlo ozadje videa se zlije z lavender hero gradientom */
  mix-blend-mode: multiply;
  opacity: 0.95;
}
/* Tekst overlay — levi del močnejša pearl tančica, da je tekst berljiv čez celoten video */
.hero-cat-runway::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* Strong protective wash na levi za tekst (do 50% širine) */
    linear-gradient(90deg,
      rgba(244,236,246,0.90) 0%,
      rgba(240,228,242,0.78) 15%,
      rgba(236,220,238,0.55) 30%,
      rgba(232,212,236,0.28) 45%,
      rgba(232,212,236,0.08) 60%,
      transparent 75%
    ),
    /* Mehko vinjetiranje na zgornjem/spodnjem robu */
    linear-gradient(180deg,
      rgba(244,236,246,0.45) 0%,
      transparent 12%,
      transparent 88%,
      rgba(220,195,228,0.40) 100%
    );
}

/* Service preview cards — single container matching reference exactly */
.hero-cards-row {
  grid-column: 1 / -1;
  display: flex; gap: 6px; overflow: hidden;
  background: rgba(255,255,255,0.28); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 22px;
  padding: 8px;
  box-shadow: 0 8px 40px rgba(180,120,110,0.14), inset 0 1px 0 rgba(255,255,255,0.5);
  animation: fade-in-up 0.8s 0.9s ease both;
  margin-bottom: 8px;
}
.hero-card-preview {
  flex: 1; height: 130px;
  border-radius: 14px;
  padding: 0; cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden; text-decoration: none;
}

/* Video/image background fills card */
.hero-card-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.hero-card-preview:hover .hero-card-bg-video { transform: scale(1.06); }

/* Dark gradient overlay at bottom for text readability */
.hcp-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(15,10,18,0.72) 0%, rgba(15,10,18,0.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 12px 12px 10px;
}
.hcp-white, .hcp-white * { color: white !important; }

/* Card-specific background themes matching reference */
/* Real Estate: warm building tones */
.hcp-re { background: linear-gradient(145deg, #C8A870 0%, #E8C890 100%); }
/* Branding: warm cream/rose desk tones */
.hcp-brand { background: linear-gradient(145deg, #D8C0B0 0%, #E8D8C8 70%, #F0E0D0 100%); }
/* Websites: dark charcoal screen */
.hcp-web { background: linear-gradient(145deg, #252030 0%, #302840 60%, #3A2F4A 100%); }
/* Creative: dark marble gold */
.hcp-creative { background: linear-gradient(145deg, #1A1520 0%, #281E2C 60%, #2A1E28 100%); }
/* Luxora Cards: warm lavender-pink */
.hcp-cards { background: linear-gradient(145deg, #C8A8B8 0%, #D8B8C0 60%, #E0C4C8 100%); }

.hero-card-inner {
  position: relative; z-index: 2;
  padding: 10px 10px 28px; height: 100%; display: flex; flex-direction: column;
}
.hero-card-preview:hover { transform: scale(1.04); z-index: 5; box-shadow: 0 16px 50px rgba(45,30,20,0.28); border-radius: 14px; }
.hero-card-name {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; line-height: 1.4;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
.hero-card-arrow {
  position: absolute; bottom: 8px; left: 10px;
  font-size: 14px; font-weight: 700; opacity: 0.9;
  transition: var(--transition); text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
/* Branding card light overlay so text reads on light bg */
.hcp-brand .hcp-overlay {
  background: linear-gradient(to top, rgba(80,50,25,0.65) 0%, rgba(80,50,25,0.05) 60%, transparent 100%) !important;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: #4A2080; font-size: 10px; letter-spacing: 2px; opacity: 0.85;
  font-weight: 600; text-shadow: 0 1px 12px rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
  z-index: 4;
}
.scroll-indicator svg { width: 20px; height: 20px; }

/* ===== SECTIONS SHARED ===== */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 10px; letter-spacing: 4px; font-weight: 700; color: var(--bronze);
  text-transform: uppercase; margin-bottom: 16px; display: block;
  opacity: 0; transform: translateY(20px); transition: var(--transition);
}
.section-label.visible { opacity: 1; transform: translateY(0); }
.section-title {
  font-family: var(--font-serif); font-size: clamp(28px, 4vw, 50px);
  color: var(--anthracite); line-height: 1.15;
  opacity: 0; transform: translateY(30px); transition: var(--transition) 0.1s;
}
.section-title.visible { opacity: 1; transform: translateY(0); }
.section-subtitle {
  font-size: 17px; color: var(--bronze); line-height: 1.6; margin-top: 12px; max-width: 560px;
  opacity: 0; transform: translateY(20px); transition: var(--transition) 0.2s;
}
.section-subtitle.visible { opacity: 1; transform: translateY(0); }
.gold-accent { color: var(--gold); }
.wine-accent { color: var(--wine); font-family: var(--font-script); }

/* ===== SERVICES SECTION ===== */
#services {
  padding: 120px 0;
  background: linear-gradient(180deg,
    #EDE0F0 0%,
    #E6D4EC 40%,
    #DECCEB 70%,
    #E6D4EC 100%
  );
}
.services-header { margin-bottom: 60px; }
.services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: var(--radius-lg);
  padding: 32px 24px; cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(40px);
  text-decoration: none; color: var(--anthracite);
  display: flex; flex-direction: column;
  box-shadow: 0 8px 32px rgba(160,100,180,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(180,120,200,0.22), 0 0 0 1px rgba(212,175,55,0.35);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  opacity: 0; transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card-img {
  width: 100%; height: 120px; object-fit: cover; border-radius: 12px; margin-bottom: 18px;
  filter: saturate(0.8) brightness(0.95);
  transition: var(--transition);
}
.service-card:hover .service-card-img { filter: saturate(1.1) brightness(1.05); }
.service-card-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 10px; line-height: 1.4; }
.service-card-desc { font-size: 13px; color: var(--bronze); line-height: 1.5; flex: 1; }
.service-card-arrow {
  margin-top: 18px; font-size: 18px; color: var(--gold); opacity: 0.6;
  transition: var(--transition); align-self: flex-start;
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(4px); }

/* ===== PORTFOLIO SECTION ===== */
#portfolio {
  padding: 120px 0;
  background: linear-gradient(160deg,
    #E8D5EC 0%,
    #DEC8E8 35%,
    #D8BEE4 65%,
    #E0CEEA 100%
  );
}
.portfolio-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
  margin-top: 60px;
}
.portfolio-left .section-title { font-size: clamp(32px, 4vw, 56px); }
.portfolio-title-line { display: block; }
.portfolio-title-line.gold { color: var(--gold); }
.portfolio-cta {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--anthracite); border-radius: 40px;
  padding: 14px 30px; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-decoration: none; color: var(--anthracite); transition: var(--transition); margin-top: 36px;
}
.portfolio-cta:hover { background: var(--anthracite); color: var(--gold); transform: translateY(-2px); }
.portfolio-right { display: flex; flex-direction: column; gap: 16px; }

/* Home video thumbnail grid */
.home-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.home-video-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: var(--anthracite);
}
.home-video-item video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.home-video-item:hover video { transform: scale(1.04); }
.home-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,20,0.75) 0%, transparent 55%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 12px 14px;
  transition: opacity 0.3s;
}
.home-video-label {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
}
.home-video-play {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: white; padding-left: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: opacity 0.3s, transform 0.3s;
}
.home-video-item:hover .home-video-play {
  opacity: 0; transform: scale(1.3);
}


.portfolio-img-wrap {
  border-radius: var(--radius); overflow: hidden; position: relative;
  opacity: 0; transform: scale(0.95); transition: var(--transition);
}
.portfolio-img-wrap.visible { opacity: 1; transform: scale(1); }
.portfolio-img-wrap:nth-child(1) { grid-column: 1 / -1; height: 240px; }
.portfolio-img-wrap:nth-child(2), .portfolio-img-wrap:nth-child(3) { height: 180px; }
.portfolio-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-img-wrap:hover img { transform: scale(1.05); }
.portfolio-draw-card {
  grid-column: 1 / -1;
  /* Glass with subtle dark gradient — luxurious contrast element */
  background: linear-gradient(135deg,
    rgba(45,41,38,0.82) 0%,
    rgba(65,42,55,0.85) 50%,
    rgba(45,41,38,0.82) 100%
  );
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  opacity: 0; transform: translateY(20px); transition: var(--transition) 0.3s;
  box-shadow: 0 16px 50px rgba(45,25,45,0.30);
}
.portfolio-draw-card.visible { opacity: 1; transform: translateY(0); }
.portfolio-draw-card:hover { box-shadow: 0 20px 60px rgba(45,25,45,0.40), 0 0 0 1px rgba(212,175,55,0.3); }
.portfolio-draw-title {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 500; color: var(--gold-light);
  max-width: 300px; line-height: 1.5; letter-spacing: 0.5px;
}
.portfolio-draw-cta {
  background: linear-gradient(135deg, rgba(212,175,55,0.92) 0%, rgba(190,140,80,0.95) 100%);
  color: var(--anthracite); border: none; border-radius: 30px;
  padding: 14px 32px; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
  box-shadow: 0 8px 25px rgba(212,175,55,0.40);
  text-decoration: none; display: inline-block;
}
.portfolio-draw-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 35px rgba(212,175,55,0.55); }

/* ===== TAROT SECTION ===== */
#tarot {
  padding: 120px 0;
  background: linear-gradient(180deg,
    #DEC8E8 0%,
    #D4BCE4 30%,
    #CCAEDC 60%,
    #D4BCE4 100%
  );
}
.tarot-header { text-align: center; margin-bottom: 60px; }
.tarot-header .section-subtitle { max-width: 500px; margin: 0 auto; margin-top: 12px; }
.tarot-pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px;
}
.tarot-price-card {
  background: rgba(255,255,255,0.48);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; position: relative; transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(160,100,180,0.12), inset 0 1px 0 rgba(255,255,255,0.85);
  opacity: 0; transform: translateY(30px);
}
.tarot-price-card.visible { opacity: 1; transform: translateY(0); }
.tarot-price-card.highlight {
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(226,180,189,0.15) 100%);
  border-color: var(--gold); border-width: 2px;
}
.tarot-price-card.highlight::before {
  content: '★ POPULAR ★'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--anthracite);
  font-size: 9px; font-weight: 700; letter-spacing: 2px; padding: 4px 14px; border-radius: 20px;
}
.tarot-price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.tarot-price-num {
  font-family: var(--font-serif); font-size: 52px; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.tarot-price-title { font-size: 14px; font-weight: 700; letter-spacing: 1px; margin-bottom: 6px; }
.tarot-price-desc { font-size: 13px; color: var(--bronze); margin-bottom: 4px; }
.tarot-price-sub { font-size: 11px; color: var(--lilac-dark); margin-bottom: 24px; }
.tarot-price-btn {
  display: inline-block; background: var(--anthracite); color: var(--gold);
  border: none; border-radius: 30px; padding: 12px 28px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; cursor: pointer;
  transition: var(--transition); width: 100%;
}
.tarot-price-btn:hover { background: var(--gold); color: var(--anthracite); }
.tarot-price-card.highlight .tarot-price-btn { background: var(--gold); color: var(--anthracite); }
.tarot-price-card.highlight .tarot-price-btn:hover { background: var(--anthracite); color: var(--gold); }

/* Wheel area */
.tarot-interaction {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  margin-bottom: 60px;
}
.tarot-wheel-area { text-align: center; }
.wheel-title { font-size: 14px; font-weight: 700; letter-spacing: 2px; margin-bottom: 6px; color: var(--anthracite); }
.wheel-sub { font-size: 13px; color: var(--bronze); margin-bottom: 28px; }
.wheel-container { position: relative; width: 240px; height: 240px; margin: 0 auto 24px; }
.wheel-canvas { width: 240px; height: 240px; border-radius: 50%; cursor: pointer; transition: transform 0.3s ease; }
.wheel-container:hover .wheel-canvas { transform: scale(1.03); }
.wheel-pointer {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 10px solid transparent;
  border-right: 10px solid transparent; border-top: 20px solid var(--gold);
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.6));
}
.wheel-spin-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  color: white; border: none; border-radius: 30px; padding: 14px 36px;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; cursor: pointer;
  transition: var(--transition); box-shadow: 0 8px 25px rgba(212,175,55,0.35);
}
.wheel-spin-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(212,175,55,0.5); }
.wheel-spin-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Email capture */
.tarot-email-area {
  background: rgba(255,255,255,0.5); backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius-lg); padding: 36px;
}
.tarot-email-title { font-family: var(--font-serif); font-size: 24px; margin-bottom: 10px; }
.tarot-email-sub { font-size: 14px; color: var(--bronze); margin-bottom: 24px; line-height: 1.6; }
.tarot-email-form { display: flex; flex-direction: column; gap: 12px; }
.tarot-email-input {
  border: 1.5px solid rgba(212,175,55,0.3); border-radius: 12px; padding: 14px 18px;
  font-size: 14px; background: rgba(255,255,255,0.7); outline: none; transition: var(--transition);
  font-family: var(--font-sans); color: var(--anthracite);
}
.tarot-email-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.tarot-email-btn {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-light) 100%);
  color: white; border: none; border-radius: 12px; padding: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; cursor: pointer;
  transition: var(--transition); box-shadow: 0 8px 25px rgba(181,79,111,0.3);
}
.tarot-email-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(181,79,111,0.45); }

/* Card deck */
.tarot-deck-area { margin-bottom: 60px; }
.tarot-deck-title { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--bronze); margin-bottom: 28px; text-align: center; }
.tarot-cards-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding: 20px 0;
  scrollbar-width: thin; scrollbar-color: var(--gold) var(--pearl);
}
.tarot-cards-scroll::-webkit-scrollbar { height: 4px; }
.tarot-cards-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.tarot-card-mini {
  flex-shrink: 0; width: 100px; height: 160px;
  background: linear-gradient(135deg, var(--anthracite) 0%, #3D3330 100%);
  border: 1px solid rgba(212,175,55,0.4); border-radius: 12px; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 8px;
}
.tarot-card-mini:hover { transform: translateY(-10px) scale(1.05); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.tarot-card-mini-symbol { font-size: 24px; margin-bottom: 8px; }
.tarot-card-mini-name { font-size: 8px; font-weight: 700; letter-spacing: 0.5px; color: var(--gold-light); text-align: center; line-height: 1.3; }
.tarot-card-mini-suit { font-size: 7px; color: rgba(212,175,55,0.6); text-align: center; margin-top: 4px; }
.tarot-card-mini::before {
  content: ''; position: absolute; inset: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(212,175,55,0.1) 90deg, transparent 180deg);
  opacity: 0; transition: var(--transition);
}
.tarot-card-mini:hover::before { opacity: 1; animation: card-shimmer 1.5s linear infinite; }

/* Order deck */
.tarot-order-area {
  background: linear-gradient(135deg, var(--anthracite) 0%, #3D3330 100%);
  border-radius: var(--radius-lg); padding: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.tarot-order-left { flex: 1; }
.tarot-order-title { font-family: var(--font-serif); font-size: 26px; color: var(--gold-light); margin-bottom: 8px; }
.tarot-order-desc { font-size: 14px; color: rgba(248,244,240,0.7); line-height: 1.6; }
.tarot-order-right { text-align: center; }
.tarot-order-price { font-family: var(--font-serif); font-size: 36px; color: var(--gold); font-weight: 600; }
.tarot-order-price-sub { font-size: 11px; color: rgba(212,175,55,0.7); letter-spacing: 1px; margin-bottom: 16px; }
.tarot-order-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  color: var(--anthracite); border: none; border-radius: 30px;
  padding: 14px 32px; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.tarot-order-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

/* ===== HUMAN DESIGN SECTION ===== */
#human-design {
  padding: 120px 0;
  background: linear-gradient(160deg,
    #E6D4EC 0%,
    #DCC4E8 45%,
    #D4B8E2 100%
  );
}
.hd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: start; }
.hd-left h3 {
  font-family: var(--font-serif); font-size: 22px; color: var(--anthracite);
  margin-bottom: 24px; line-height: 1.3;
}
.hd-types-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.hd-type-pill {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.5); backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.2); border-radius: 50px;
  padding: 10px 18px; font-size: 12px;
}
.hd-type-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
.hd-type-name { font-weight: 700; letter-spacing: 0.5px; flex: 1; }
.hd-type-pct { font-size: 11px; color: var(--bronze); }

.hd-form-wrap {
  background: rgba(255,255,255,0.5); backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius-lg);
  padding: 40px; position: relative;
}
.hd-form { display: flex; flex-direction: column; gap: 16px; }
.hd-input-group { display: flex; flex-direction: column; gap: 6px; }
.hd-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--bronze); text-transform: uppercase; }
.hd-input {
  border: 1.5px solid rgba(212,175,55,0.3); border-radius: 12px; padding: 14px 18px;
  font-size: 14px; background: rgba(255,255,255,0.7); outline: none; transition: var(--transition);
  font-family: var(--font-sans); color: var(--anthracite); width: 100%;
}
.hd-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.hd-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hd-time-note { font-size: 11px; color: var(--lilac-dark); font-style: italic; }
.hd-submit {
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  color: white; border: none; border-radius: 14px; padding: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; cursor: pointer;
  transition: var(--transition); margin-top: 8px;
  box-shadow: 0 8px 25px rgba(212,175,55,0.35);
}
.hd-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(212,175,55,0.5); }

/* HD Result */
.hd-result {
  display: none; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(45,41,38,0.97) 0%, rgba(61,51,48,0.97) 100%);
  padding: 40px; flex-direction: column; align-items: center; text-align: center;
  backdrop-filter: blur(20px); overflow-y: auto;
}
.hd-result.show { display: flex; animation: fade-in 0.6s ease; }
.hd-result-loading { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.hd-result-loading .loading-dots span { animation: dot-pulse 1.4s ease-in-out infinite; display: inline-block; }
.hd-result-loading .loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.hd-result-loading .loading-dots span:nth-child(3) { animation-delay: 0.4s; }
.hd-type-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  color: white; border-radius: 30px; padding: 8px 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 16px;
}
.hd-type-name-big {
  font-family: var(--font-serif); font-size: 36px; color: var(--gold-light); margin-bottom: 12px; line-height: 1.1;
}
.hd-type-desc { font-size: 14px; color: rgba(248,244,240,0.8); line-height: 1.7; margin-bottom: 24px; }
.hd-stats { display: flex; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; justify-content: center; }
.hd-stat {
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px; padding: 12px 18px; text-align: center; flex: 1; min-width: 120px;
}
.hd-stat-label { font-size: 9px; letter-spacing: 2px; color: var(--gold); opacity: 0.7; text-transform: uppercase; }
.hd-stat-val { font-size: 16px; font-weight: 700; color: var(--gold-light); margin-top: 4px; }
.hd-keywords { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.hd-keyword {
  background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px; padding: 6px 14px; font-size: 11px; color: var(--gold-light); font-weight: 600;
}
/* Paywall */
.hd-paywall {
  width: 100%; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.hd-paywall-title {
  font-family: var(--font-serif); font-size: 22px; color: var(--gold-light); margin-bottom: 4px;
}
.hd-paywall-price { font-size: 38px; font-weight: 700; color: var(--gold); font-family: var(--font-serif); }
.hd-paywall-desc { font-size: 13px; color: rgba(248,244,240,0.7); margin-bottom: 16px; line-height: 1.5; }
.hd-features { list-style: none; text-align: left; margin-bottom: 20px; }
.hd-features li {
  font-size: 12px; color: rgba(248,244,240,0.8); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.hd-features li::before { content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0; }
.hd-paywall-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  color: white; border: none; border-radius: 30px;
  padding: 14px 32px; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  cursor: pointer; transition: var(--transition); width: 100%;
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}
.hd-paywall-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(212,175,55,0.6); }
.hd-back-btn {
  background: none; border: 1px solid rgba(212,175,55,0.3); border-radius: 30px;
  padding: 10px 24px; color: rgba(212,175,55,0.7); font-size: 11px; letter-spacing: 1.5px;
  cursor: pointer; transition: var(--transition); margin-top: 12px;
}
.hd-back-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ===== ABOUT SECTION ===== */
#about {
  padding: 120px 0;
  background: var(--anthracite);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-left .section-label { color: var(--gold); opacity: 0; }
.about-left .section-label.visible { opacity: 1; }
.about-title { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 46px); color: var(--pearl); line-height: 1.2; margin-bottom: 24px; }
.about-text { font-size: 16px; line-height: 1.8; color: rgba(248,244,240,0.75); margin-bottom: 16px; }
.about-cta {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  border: 1.5px solid rgba(212,175,55,0.5); border-radius: 40px;
  padding: 14px 30px; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-decoration: none; color: var(--gold-light); transition: var(--transition);
}
.about-cta:hover { background: var(--gold); color: var(--anthracite); border-color: var(--gold); transform: translateY(-2px); }
.about-stats { display: flex; gap: 40px; margin-top: 36px; }
.about-stat { text-align: center; }
.about-stat-num { font-family: var(--font-serif); font-size: 38px; color: var(--gold); font-weight: 600; line-height: 1; }
.about-stat-label { font-size: 11px; color: rgba(248,244,240,0.5); letter-spacing: 1.5px; margin-top: 4px; text-transform: uppercase; }
.about-right { position: relative; }
.about-img-main {
  width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 480px;
  filter: sepia(0.2) saturate(0.9); border: 1px solid rgba(212,175,55,0.2);
}
.about-img-overlay {
  position: absolute; bottom: -24px; left: -24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  border-radius: var(--radius); padding: 24px; width: 180px;
  box-shadow: 0 20px 50px rgba(45,41,38,0.4);
}
.about-overlay-num { font-family: var(--font-serif); font-size: 36px; color: white; font-weight: 600; }
.about-overlay-text { font-size: 11px; color: rgba(255,255,255,0.8); letter-spacing: 1.5px; line-height: 1.5; margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 120px 0;
  background: linear-gradient(180deg,
    #EDE0F0 0%,
    #E4D2EE 50%,
    #EDE0F0 100%
  );
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition); opacity: 0; transform: translateY(30px);
  box-shadow: 0 8px 32px rgba(160,100,180,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(180,120,200,0.20), var(--shadow-gold);
  border-color: rgba(212,175,55,0.35);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
}
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--anthracite); font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 11px; color: var(--bronze); letter-spacing: 1px; }

/* ===== FOOTER ===== */
footer {
  background: var(--anthracite); border-top: 1px solid rgba(212,175,55,0.15);
  padding: 60px 0 30px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: flex; gap: 60px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand { flex: 1.5; min-width: 220px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 36px; width: auto; }
.footer-logo-name { font-family: var(--font-serif); font-size: 14px; letter-spacing: 3px; color: var(--pearl); }
.footer-tagline { font-size: 13px; color: rgba(248,244,240,0.5); line-height: 1.6; max-width: 240px; }
.footer-links { flex: 1; min-width: 140px; }
.footer-links h4 { font-size: 10px; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; text-transform: uppercase; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; color: rgba(248,244,240,0.6); text-decoration: none; transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-categories { flex: 1; min-width: 200px; }
.footer-categories h4 { font-size: 10px; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; text-transform: uppercase; }
.footer-cat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-cat-pill {
  border: 1px solid rgba(212,175,55,0.2); border-radius: 20px;
  padding: 6px 14px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  color: rgba(248,244,240,0.5); transition: var(--transition); cursor: pointer;
}
.footer-cat-pill:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(248,244,240,0.4); }
.footer-made { font-size: 12px; color: rgba(248,244,240,0.4); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.2); display: flex; align-items: center; justify-content: center;
  color: rgba(248,244,240,0.6); font-size: 14px; transition: var(--transition); text-decoration: none;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(45,41,38,0.85); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: linear-gradient(135deg, #F8F4F0 0%, #EDD5D8 30%, #EEE8F5 100%);
  border-radius: var(--radius-lg); max-width: 560px; width: 100%;
  padding: 48px; position: relative; max-height: 90vh; overflow-y: auto;
  transform: scale(0.9); transition: transform 0.3s ease;
  border: 1px solid rgba(212,175,55,0.3);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close {
  position: absolute; top: 20px; right: 20px; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--bronze); transition: var(--transition);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--anthracite); transform: rotate(90deg); }
.modal-label {
  font-size: 10px; letter-spacing: 3px; color: var(--bronze); font-weight: 700; margin-bottom: 8px; display: block;
}
.modal-title { font-family: var(--font-serif); font-size: 28px; color: var(--anthracite); margin-bottom: 28px; line-height: 1.25; }

/* Reading modal */
.reading-card-visual {
  width: 140px; height: 220px; margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--anthracite) 0%, #3D3330 100%);
  border: 2px solid var(--gold); border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px; gap: 8px;
}
.reading-card-symbol { font-size: 48px; }
.reading-card-number { font-size: 11px; color: var(--gold); letter-spacing: 2px; font-weight: 700; }
.reading-card-name { font-family: var(--font-serif); font-size: 16px; color: var(--gold-light); text-align: center; line-height: 1.3; }
.reading-keywords { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.reading-keyword {
  background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px; padding: 5px 12px; font-size: 11px; color: var(--bronze); font-weight: 600;
}
.reading-text { font-size: 15px; line-height: 1.8; color: var(--anthracite); font-style: italic; margin-bottom: 20px; }
.reading-section { margin-bottom: 16px; }
.reading-section-label { font-size: 10px; letter-spacing: 2px; font-weight: 700; color: var(--gold); margin-bottom: 8px; display: block; }
.reading-section-text { font-size: 14px; line-height: 1.6; color: var(--bronze); }
.reading-close-btn {
  display: block; width: 100%; background: var(--anthracite); color: var(--gold);
  border: none; border-radius: 30px; padding: 14px; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; cursor: pointer; transition: var(--transition); margin-top: 24px;
}
.reading-close-btn:hover { background: var(--gold); color: var(--anthracite); }

/* Three card spread */
.three-card-spread { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.spread-card {
  background: linear-gradient(135deg, var(--anthracite) 0%, #3D3330 100%);
  border: 1.5px solid rgba(212,175,55,0.3); border-radius: 12px;
  padding: 20px 12px; text-align: center;
}
.spread-card-pos { font-size: 9px; letter-spacing: 2px; color: var(--gold); opacity: 0.7; margin-bottom: 8px; }
.spread-card-symbol { font-size: 28px; margin-bottom: 8px; display: block; }
.spread-card-name { font-family: var(--font-serif); font-size: 13px; color: var(--gold-light); line-height: 1.3; margin-bottom: 8px; }
.spread-card-text { font-size: 11px; color: rgba(248,244,240,0.7); line-height: 1.5; }

/* Payment modal */
.payment-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.payment-option {
  display: flex; align-items: center; gap: 16px;
  border: 1.5px solid rgba(212,175,55,0.2); border-radius: 14px; padding: 16px 20px;
  cursor: pointer; transition: var(--transition); background: rgba(255,255,255,0.6);
}
.payment-option:hover { border-color: var(--gold); background: rgba(212,175,55,0.05); }
.payment-option input[type="radio"] { accent-color: var(--gold); }
.payment-option-label { flex: 1; }
.payment-option-name { font-size: 14px; font-weight: 700; }
.payment-option-sub { font-size: 12px; color: var(--bronze); }
.payment-option-price { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--gold); }
.payment-submit {
  width: 100%; background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  color: white; border: none; border-radius: 14px; padding: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; cursor: pointer;
  transition: var(--transition); box-shadow: 0 8px 25px rgba(212,175,55,0.35);
}
.payment-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(212,175,55,0.5); }

/* ===== MOBILE MENU ===== */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--anthracite); border-radius: 2px; transition: var(--transition);
}
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(248,244,240,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; animation: fade-in 0.3s ease; }
.mobile-nav a {
  font-size: 22px; font-family: var(--font-serif); color: var(--anthracite);
  text-decoration: none; transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

/* Cat patrol — walks left/right, floats up, leans at each end */
@keyframes cat-patrol {
  0%   { transform: translateX(0px)   translateY(0px)   rotate(0deg); }
  10%  { transform: translateX(12px)  translateY(-8px)  rotate(1.2deg); }
  20%  { transform: translateX(24px)  translateY(-4px)  rotate(1.8deg); }
  30%  { transform: translateX(28px)  translateY(-12px) rotate(2deg); }
  40%  { transform: translateX(16px)  translateY(-6px)  rotate(0.8deg); }
  50%  { transform: translateX(0px)   translateY(-10px) rotate(0deg); }
  60%  { transform: translateX(-16px) translateY(-6px)  rotate(-0.8deg); }
  70%  { transform: translateX(-28px) translateY(-12px) rotate(-2deg); }
  80%  { transform: translateX(-24px) translateY(-4px)  rotate(-1.8deg); }
  90%  { transform: translateX(-12px) translateY(-8px)  rotate(-1.2deg); }
  100% { transform: translateX(0px)   translateY(0px)   rotate(0deg); }
}

/* Subtle breathing/scale for cat image */
@keyframes cat-breathe {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.02); }
  70% { transform: scale(0.99); }
}

/* Platform rings expanding outward */
@keyframes ring-expand {
  0%   { transform: translate(-50%, -50%) scaleX(0.7) scaleY(0.7); opacity: 0.7; }
  60%  { transform: translate(-50%, -50%) scaleX(1.1) scaleY(1.1); opacity: 0.2; }
  100% { transform: translate(-50%, -50%) scaleX(1.3) scaleY(1.3); opacity: 0; }
}

/* Pixel sparkles floating up */
@keyframes pixel-float {
  0%   { opacity: 0; transform: translateY(0px) rotate(0deg); }
  20%  { opacity: 0.9; }
  80%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-60px) rotate(180deg); }
}

/* Rainbow ear glow pulse */
@keyframes rainbow-ear {
  0%, 100% { opacity: 0; transform: translateX(-10%) scale(0.8); }
  40%, 60% { opacity: 0.55; transform: translateX(-10%) scale(1.1); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes rainbow-glow {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.5; }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes card-shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes dot-pulse {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes slide-in-right {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  header { padding: 12px 24px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-cards-row { grid-column: 1; }
  #hero { padding-top: 90px; }
  .hero-cat-walker { width: 100%; right: -5%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .tarot-pricing { grid-template-columns: repeat(2, 1fr); }
  .tarot-interaction { grid-template-columns: 1fr; }
  .hd-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .three-card-spread { grid-template-columns: 1fr; gap: 12px; }
  .tarot-order-area { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .section-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  #hero { padding-top: 80px; min-height: auto; }
  .hero-inner { gap: 16px; }
  .hero-cat-walker { width: 110%; right: -8%; opacity: 0.75; }
  /* Hero cards: horizontal scroll strip */
  .hero-cards-row { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .hero-cards-row::-webkit-scrollbar { display: none; }
  .hero-card-preview { min-width: 120px; flex: 0 0 120px; height: 110px; }
  /* Countdown: hide label text, show numbers only */
  .countdown-label { display: none; }
  .countdown-bar { gap: 8px; padding: 5px 12px; }
  /* Hide nav CTA on mobile — hamburger handles navigation */
  .nav-cta { display: none !important; }
  .services-grid { grid-template-columns: 1fr; }
  .tarot-pricing { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .modal { padding: 28px 20px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  /* Pricing grids (3-col) → 1 col on mobile */
  .pricing-grid-3col { grid-template-columns: 1fr !important; }
  /* Two-col story/about sections → stack */
  .two-col-stack { grid-template-columns: 1fr !important; gap: 40px !important; }
  /* Hero text refinements for mobile */
  .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
  .hero-badge { margin-bottom: 18px; }
  /* Subpage hero: reduce top padding on mobile */
  .page-hero { padding-top: 120px; padding-bottom: 50px; min-height: auto; }
  /* CTA section in subpages */
  .cta-section { padding: 40px 24px !important; border-radius: 20px !important; }
}
/* ===== VIDEO SECTION ===== */
#videos {
  padding: 80px 0;
  background: var(--anthracite);
  overflow: hidden;
}
.videos-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.video-wrap {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: #2D2926; aspect-ratio: 9/16;
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.video-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(45,41,38,0.8) 0%, transparent 60%);
  border-radius: var(--radius); pointer-events: none;
}
@media (max-width: 900px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .videos-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== SUBPAGE HERO — shared lavender-mauve palette ===== */
.page-hero {
  min-height: 60vh; display: flex; align-items: center;
  padding: 160px 0 80px; position: relative; overflow: hidden;
  /* Match homepage — lavender-pink z toplim zlatim glow */
  background:
    radial-gradient(ellipse 50% 80% at 75% 50%,
      rgba(248,200,140,0.30) 0%, transparent 62%
    ),
    radial-gradient(ellipse 55% 100% at 92% 50%,
      rgba(180,140,210,0.22) 0%, transparent 70%
    ),
    linear-gradient(135deg,
      #F4ECF6 0%, #ECDDEE 28%, #E0CEE6 55%, #D2BCDC 80%, #C5ADD0 100%
    );
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle 600px at -10% 120%, rgba(255,245,252,0.55) 0%, transparent 65%);
}
/* Subpage sections — all use lavender theme */
.page-section-light {
  background: linear-gradient(180deg, #EDE0F0 0%, #E6D4EC 50%, #EDE0F0 100%);
  padding: 100px 0;
}
.page-section-medium {
  background: linear-gradient(180deg, #E4CCE8 0%, #DBBFE4 50%, #E4CCE8 100%);
  padding: 100px 0;
}
.page-section-rich {
  background: linear-gradient(160deg, #E0CEEA 0%, #D4BCE4 50%, #CCB0DC 100%);
  padding: 100px 0;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.visible-anim {
  opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.visible-anim.visible { opacity: 1; transform: translateY(0); }

/* ============ PREMIUM MOTION LAYER ============ */

/* Marquee — drsna luksuzna vrstica med sekcijami */
.luxury-marquee {
  position: relative; overflow: hidden;
  padding: 28px 0; background: linear-gradient(90deg,
    transparent 0%,
    rgba(45,27,69,0.85) 8%,
    rgba(58,32,90,0.92) 50%,
    rgba(45,27,69,0.85) 92%,
    transparent 100%
  );
  border-top: 1px solid rgba(212,175,55,0.18);
  border-bottom: 1px solid rgba(212,175,55,0.18);
}
.luxury-marquee::before, .luxury-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.luxury-marquee::before { left: 0; background: linear-gradient(90deg, rgba(45,27,69,1) 0%, transparent 100%); }
.luxury-marquee::after { right: 0; background: linear-gradient(270deg, rgba(45,27,69,1) 0%, transparent 100%); }
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee-scroll 38s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-item {
  font-family: var(--font-serif); font-size: clamp(20px, 2.2vw, 32px);
  font-style: italic; font-weight: 400;
  color: rgba(248,235,200,0.92);
  display: inline-flex; align-items: center; gap: 60px;
  letter-spacing: 2px;
}
.marquee-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 12px rgba(252,210,120,0.7);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Counter — number-cycle anim hint (JS-driven) */
.stat-num[data-target] { display: inline-block; min-width: 1ch; }

/* Cards — subtle floating bob */
.service-card { will-change: transform; }
.service-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 60px rgba(160,100,180,0.18), 0 0 0 1px rgba(212,175,55,0.35);
}

/* Magnetic CTA hover — lift + golden glow */
.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 50px rgba(212,175,55,0.45), 0 0 0 2px rgba(255,225,140,0.55);
  background: rgba(255,250,235,0.85);
}

/* Subtle parallax floating on hero cat (very gentle, breath-like) */
.hero-cat-walker {
  animation: hero-cat-breath 8s ease-in-out infinite;
}
@keyframes hero-cat-breath {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.012); }
}

/* Section enter — fade + slide up reveal */
.reveal-on-scroll {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}
.reveal-on-scroll.is-visible {
  opacity: 1; transform: translateY(0);
}
.reveal-on-scroll.delay-1 { transition-delay: 0.12s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.24s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.36s; }

/* Wine accent — subtle pulse */
.wine-accent {
  animation: wine-pulse 4s ease-in-out infinite;
}
@keyframes wine-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(184,79,111,0)); }
  50% { filter: drop-shadow(0 0 20px rgba(184,79,111,0.35)); }
}

/* ============ WOW POLISH LAYER ============ */

/* prefers-reduced-motion — accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-cat-walker { animation: none !important; }
  .marquee-track { animation: none !important; }
  #particles-canvas { display: none !important; }
}

/* Smooth scroll z premium easing */
html { scroll-behavior: smooth; }

/* Custom cursor — gold dot follower (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .lux-cursor {
    position: fixed; top: 0; left: 0; width: 28px; height: 28px;
    border: 1.5px solid rgba(212,175,55,0.6);
    border-radius: 50%;
    pointer-events: none; z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s cubic-bezier(0.16,1,0.3,1),
                width 0.25s ease, height 0.25s ease,
                background 0.25s ease, border-color 0.25s ease;
    mix-blend-mode: difference;
    backdrop-filter: blur(2px);
  }
  .lux-cursor-dot {
    position: fixed; top: 0; left: 0; width: 6px; height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(252,210,120,0.8);
  }
  .lux-cursor.hover-link {
    width: 56px; height: 56px;
    background: rgba(212,175,55,0.15);
    border-color: rgba(252,210,120,0.85);
  }
  body.has-lux-cursor { cursor: none; }
  body.has-lux-cursor a, body.has-lux-cursor button { cursor: none; }
}

/* Headline char-stagger reveal — for any h2/h3 with .char-reveal */
.char-reveal .char {
  display: inline-block;
  opacity: 0; transform: translateY(40px) rotate(2deg);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.char-reveal.is-visible .char {
  opacity: 1; transform: translateY(0) rotate(0);
}

/* Premium section-title — gradient underline reveal */
.section-title { position: relative; display: inline-block; }
.section-title::after {
  content: ""; position: absolute; left: 0; bottom: -8px;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.9s 0.3s cubic-bezier(0.16,1,0.3,1);
}
.section-title.visible::after { transform: scaleX(1); }

/* Gradient text shimmer for wine-accent */
.wine-accent {
  background: linear-gradient(120deg, var(--wine) 0%, #D47090 50%, var(--wine) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wine-shimmer 6s ease-in-out infinite;
}
@keyframes wine-shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

/* Card 3D tilt on hover (subtle) */
.service-card, .hero-card-preview, .portfolio-img-wrap {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.5s cubic-bezier(0.16,1,0.3,1);
}

/* Animated gradient borders on premium cards */
.cta-section, .tarot-price-card.popular {
  position: relative;
}
.cta-section::before, .tarot-price-card.popular::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(120deg,
    rgba(212,175,55,0.6), rgba(252,210,120,0.9),
    rgba(212,175,55,0.6), rgba(212,175,55,0.3));
  background-size: 300% 100%;
  z-index: -1;
  animation: border-flow 4s linear infinite;
}
@keyframes border-flow {
  0% { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}

/* Scroll indicator polish */
.scroll-indicator {
  animation: bounce 2.2s ease-in-out infinite, fade-in 1s 1.5s both;
}
.scroll-indicator svg { animation: scroll-arrow-pulse 1.6s ease-in-out infinite; }
@keyframes scroll-arrow-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* Nav link hover — animated underline */
.nav-link, header nav a {
  position: relative;
  transition: color 0.3s;
}
.nav-link::after, header nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-link:hover::after, header nav a:hover::after {
  transform: scaleX(1); transform-origin: left;
}

/* Image zoom hover */
.portfolio-item img, .portfolio-item video,
.gallery-item img, .gallery-item video {
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1), filter 0.5s ease;
}
.portfolio-item:hover img, .portfolio-item:hover video,
.gallery-item:hover img, .gallery-item:hover video {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.1);
}

/* Glow pulse on accent buttons */
.contact-btn, .portfolio-cta {
  position: relative; overflow: hidden;
}
.contact-btn::before, .portfolio-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg,
    transparent 30%, rgba(252,210,120,0.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.contact-btn:hover::before, .portfolio-cta:hover::before {
  transform: translateX(120%);
}
