/* Jessie Lightburn — Personal Brand Hub
   Colour Palette:
   --deep-indigo: #1A1B3A
   --midnight-plum: #2D1B4E
   --forest-emerald: #1B4332
   --antique-gold: #C9A84C
   --soft-cream: #F5F0E1
   --dusty-rose: #B76E79
   Background: Milky Way over lake and mountains — mystical nightscape
*/

:root {
  --deep-indigo: #1A1B3A;
  --midnight-plum: #2D1B4E;
  --forest-emerald: #1B4332;
  --antique-gold: #C9A84C;
  --soft-cream: #F5F0E1;
  --dusty-rose: #B76E79;
  --text-light: #F5F0E1;
  --text-muted: rgba(245, 240, 225, 0.75);
  --text-dark: #1A1B3A;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --sparkle-color: rgba(255, 215, 0, 0.4);
  --sparkle-bright: rgba(255, 223, 0, 1);
  --sparkle-gold: rgba(201, 168, 76, 0.75);
  --bg-overlay: rgba(10, 8, 20, 0.55);
  --bg-overlay-light: rgba(10, 8, 20, 0.35);
  --bg-overlay-strong: rgba(10, 8, 20, 0.75);
}

/* Sparkle overlay for starry sky effect — 33 golden sparkles */
.sparkle-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 3% 12%, var(--sparkle-bright) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 8% 45%, var(--sparkle-gold) 0%, transparent 2px),
    radial-gradient(2px 2px at 15% 25%, var(--sparkle-bright) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 22% 68%, var(--sparkle-gold) 0%, transparent 2px),
    radial-gradient(2px 2px at 30% 50%, var(--sparkle-bright) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 18% 88%, var(--sparkle-gold) 0%, transparent 2px),
    radial-gradient(2px 2px at 37% 15%, var(--sparkle-bright) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 42% 82%, var(--sparkle-gold) 0%, transparent 2px),
    radial-gradient(2px 2px at 50% 35%, var(--sparkle-bright) 0%, transparent 3px),
    radial-gradient(3px 3px at 48% 92%, var(--sparkle-gold) 0%, transparent 4px),
    radial-gradient(1.5px 1.5px at 55% 60%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 62% 8%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 68% 40%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 75% 72%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 82% 22%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 88% 55%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 93% 85%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 97% 30%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 5% 75%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 12% 5%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 25% 40%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 35% 75%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 45% 55%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 52% 20%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 58% 95%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 65% 50%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 72% 12%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 78% 65%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 85% 38%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 91% 78%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 95% 15%, var(--sparkle-bright) 0%, transparent 2px),
    radial-gradient(2px 2px at 40% 28%, var(--sparkle-gold) 0%, transparent 3px),
    radial-gradient(1.5px 1.5px at 20% 55%, var(--sparkle-bright) 0%, transparent 2px);
  background-size: 200% 200%;
  animation: sparkle-drift 15s linear infinite, sparkle-twinkle 3s ease-in-out infinite alternate;
  opacity: 0.9;
  z-index: 9999;
}

@keyframes sparkle-drift {
  0% { background-position: 0% 0%; }
  50% { background-position: 50% 50%; }
  100% { background-position: 100% 100%; }
}

/* Spiral layer — sparkles that orbit in a cosmic spiral 🌀 */
.sparkle-overlay.sparkle-spiral {
  animation: sparkle-spiral 20s linear infinite, sparkle-twinkle 2.5s ease-in-out infinite alternate;
  opacity: 0.6;
  mix-blend-mode: screen;
  background-size: 150% 150%;
}

@keyframes sparkle-spiral {
  0% {
    transform: rotate(0deg) scale(1);
    background-position: 0% 0%;
  }
  25% {
    transform: rotate(90deg) scale(1.1);
    background-position: 25% 35%;
  }
  50% {
    transform: rotate(180deg) scale(0.95);
    background-position: 60% 60%;
  }
  75% {
    transform: rotate(270deg) scale(1.05);
    background-position: 80% 30%;
  }
  100% {
    transform: rotate(360deg) scale(1);
    background-position: 0% 0%;
  }
}

/* Twinkle pulse on the overlay */
.sparkle-overlay {
  animation: sparkle-drift 15s linear infinite, sparkle-twinkle 3s ease-in-out infinite alternate;
}

@keyframes sparkle-twinkle {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Cosmic swirls — 9 golden spirals */
.cosmic-swirl {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.35;
}

.cosmic-swirl svg {
  width: 100%;
  height: 100%;
}

.cosmic-swirl path {
  stroke: var(--antique-gold);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.6;
}

.cosmic-swirl.swirl-glow path {
  stroke: var(--sparkle-bright);
  opacity: 0.4;
  stroke-width: 1;
}

@keyframes swirl-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cosmic-swirl svg {
  animation: swirl-rotate 40s linear infinite;
}

#swirl1 { top: 5%; left: 8%; width: 120px; height: 120px; }
#swirl2 { top: 15%; right: 12%; width: 80px; height: 80px; }
#swirl3 { top: 45%; left: 3%; width: 100px; height: 100px; }
#swirl4 { top: 55%; right: 5%; width: 140px; height: 140px; }
#swirl5 { bottom: 8%; left: 15%; width: 90px; height: 90px; }
#swirl6 { bottom: 20%; right: 20%; width: 110px; height: 110px; }
#swirl7 { top: 35%; left: 45%; width: 70px; height: 70px; }
#swirl8 { bottom: 35%; left: 50%; width: 100px; height: 100px; }
#swirl9 { top: 75%; right: 40%; width: 85px; height: 85px; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--deep-indigo) url('/static/img/bg-milky-way-lake.jpg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

a {
  color: var(--antique-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--soft-cream);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 8, 20, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

nav .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--antique-gold);
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

nav ul li a:hover {
  color: var(--antique-gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--antique-gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Section base */
section {
  padding: 6rem 2rem;
  position: relative;
}

section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255,215,0,0.25), transparent),
    radial-gradient(1.5px 1.5px at 80% 60%, rgba(255,215,0,0.2), transparent),
    radial-gradient(2px 2px at 50% 30%, rgba(201,168,76,0.2), transparent),
    radial-gradient(1.5px 1.5px at 30% 80%, rgba(255,215,0,0.2), transparent),
    radial-gradient(2px 2px at 70% 90%, rgba(201,168,76,0.15), transparent),
    radial-gradient(1px 1px at 90% 10%, rgba(255,215,0,0.2), transparent),
    radial-gradient(1.5px 1.5px at 15% 55%, rgba(201,168,76,0.15), transparent);
  background-size: 120% 120%;
  pointer-events: none;
  z-index: 0;
  animation: sparkle-drift 25s linear infinite;
}

section > * {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--antique-gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* Twinkle lights — fairy string lights behind hero heading */
.twinkle-lights {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(3px 3px at 5% 25%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 12% 45%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 8% 65%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 15% 80%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 20% 15%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 25% 35%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 30% 55%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 18% 90%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 35% 20%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 40% 50%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 45% 75%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 50% 30%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 55% 85%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 60% 25%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 65% 55%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 70% 40%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 75% 70%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 80% 20%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 85% 50%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 90% 80%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 95% 35%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 92% 60%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 48% 10%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px),
    radial-gradient(2.5px 2.5px at 10% 10%, rgba(255,220,150,0.8) 0%, rgba(255,220,150,0.15) 2px, transparent 3px),
    radial-gradient(3px 3px at 88% 90%, rgba(255,240,180,0.9) 0%, rgba(255,240,180,0.2) 2px, transparent 4px);\n  background-size: 100% 100%;
  background-repeat: no-repeat;
  animation: twinkle-fade 4s ease-in-out infinite alternate;
}

@keyframes twinkle-fade {
  0% { opacity: 0.4; }
  25% { opacity: 0.8; }
  50% { opacity: 0.5; }
  75% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* Second twinkle layer with different timing for depth */
.twinkle-lights::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 3% 35%, rgba(255,255,200,0.7) 0%, transparent 3px),
    radial-gradient(2px 2px at 22% 60%, rgba(255,255,200,0.6) 0%, transparent 3px),
    radial-gradient(2px 2px at 38% 15%, rgba(255,255,200,0.7) 0%, transparent 3px),
    radial-gradient(2px 2px at 52% 65%, rgba(255,255,200,0.6) 0%, transparent 3px),
    radial-gradient(2px 2px at 67% 30%, rgba(255,255,200,0.7) 0%, transparent 3px),
    radial-gradient(2px 2px at 78% 55%, rgba(255,255,200,0.6) 0%, transparent 3px),
    radial-gradient(2px 2px at 15% 70%, rgba(255,255,200,0.7) 0%, transparent 3px),
    radial-gradient(2px 2px at 82% 85%, rgba(255,255,200,0.6) 0%, transparent 3px);\n  background-size: 100% 100%;
  background-repeat: no-repeat;
  animation: twinkle-fade 2.5s ease-in-out infinite alternate-reverse;
}

/* Hero */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-overlay-light);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(245,240,225,0.4), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(245,240,225,0.3), transparent),
    radial-gradient(1.5px 1.5px at 80% 20%, rgba(201,168,76,0.4), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(245,240,225,0.2), transparent),
    radial-gradient(2px 2px at 90% 50%, rgba(201,168,76,0.3), transparent),
    radial-gradient(1px 1px at 15% 60%, rgba(255,215,0,0.3), transparent),
    radial-gradient(1.5px 1.5px at 70% 40%, rgba(201,168,76,0.25), transparent),
    radial-gradient(1px 1px at 35% 15%, rgba(245,240,225,0.2), transparent),
    radial-gradient(2px 2px at 55% 55%, rgba(255,215,0,0.2), transparent),
    radial-gradient(1px 1px at 85% 75%, rgba(201,168,76,0.2), transparent);
  background-size: 200% 200%;
  animation: drift 60s linear infinite;
}

@keyframes drift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  margin-top: -4rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--soft-cream);
  line-height: 1.1;
}

.hero-content .tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-style: italic;
}

.hero-portrait {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--antique-gold);
  box-shadow: 0 0 40px var(--gold-glow);
}

.hero-portrait .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cta {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--antique-gold);
  color: var(--antique-gold);
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  transition: all 0.4s ease;
  margin: 0.5rem;
}

.hero-cta:hover {
  background: var(--antique-gold);
  color: var(--deep-indigo);
  box-shadow: 0 0 30px var(--gold-glow);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* About */
#about {
  background: var(--bg-overlay);
  padding: 7rem 2rem;
}

#about .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-overlay-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--antique-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-text .name {
  color: var(--antique-gold);
  font-weight: 600;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-credentials span {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--antique-gold);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* Portals */
#portals {
  background: var(--bg-overlay);
  text-align: center;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portal-card {
  background: rgba(10, 8, 20, 0.45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  cursor: pointer;
}

.portal-card:hover {
  border-color: var(--antique-gold);
  background: rgba(10, 8, 20, 0.65);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.portal-card .arcana {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dusty-rose);
  margin-bottom: 1rem;
}

.portal-card h3 {
  font-size: 1.5rem;
  color: var(--soft-cream);
  margin-bottom: 0.75rem;
}

.portal-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.portal-card .arrow {
  color: var(--antique-gold);
  margin-top: 1rem;
  font-size: 1.2rem;
}

/* Consulting */
#consulting {
  background: var(--bg-overlay);
}

.tier-backdrop {
  background: rgba(0, 0, 0, 0.82);
  border-radius: 8px;
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tier-card {
  background: rgba(10, 8, 20, 0.45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
}

.tier-card.featured {
  border-color: var(--antique-gold);
  background: rgba(10, 8, 20, 0.65);
}

.tier-card .tier-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dusty-rose);
  margin-bottom: 0.5rem;
}

.tier-card h3 {
  font-size: 1.6rem;
  color: var(--soft-cream);
  margin-bottom: 1rem;
}

.tier-butterfly {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  display: block;
  opacity: 0.9;
  animation: butterfly-glow 4s ease-in-out infinite alternate;
}

.section-butterfly {
  width: 80px;
  height: 80px;
  margin: 0.5rem auto 1.5rem;
  display: block;
  opacity: 0.85;
  animation: butterfly-glow 4s ease-in-out infinite alternate;
}

.inline-butterfly {
  width: 120px;
  height: 120px;
  vertical-align: middle;
  margin-left: 0.5rem;
  opacity: 1;
  animation: butterfly-glow-bright 4s ease-in-out infinite alternate;
}

@keyframes butterfly-glow-bright {
  from { opacity: 0.9; filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.4)); }
  to { opacity: 1; filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.7)); }
}

@keyframes butterfly-glow {
  from { opacity: 0.7; filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.2)); }
  to { opacity: 1; filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.5)); }
}

.tier-card .arcana-ref {
  font-size: 0.8rem;
  color: var(--antique-gold);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.tier-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.tier-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.tier-card ul li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(245, 240, 225, 0.05);
}

.tier-card ul li::before {
  content: '✦ ';
  color: var(--antique-gold);
}

.tier-card .tier-cta {
  display: inline-block;
  border: 1px solid var(--antique-gold);
  color: var(--antique-gold);
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.tier-card .tier-cta:hover {
  background: var(--antique-gold);
  color: var(--forest-emerald);
}

/* Productions */
#productions {
  background: var(--bg-overlay);
  text-align: center;
}

.productions-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.productions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.prod-card {
  background: rgba(10, 8, 20, 0.35);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.prod-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}

.prod-card .prod-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-overlay-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--antique-gold);
  font-size: 2rem;
}

.prod-card .prod-body {
  padding: 1.5rem;
  text-align: left;
}

.prod-card h4 {
  color: var(--soft-cream);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.prod-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Council */
#council {
  background: var(--bg-overlay);
  position: relative;
}

.council-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.council-text h2 {
  color: var(--soft-cream);
}

.council-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.council-text .platform-points {
  list-style: none;
  margin: 2rem 0;
}

.council-text .platform-points li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  color: var(--text-muted);
}

.council-text .platform-points li strong {
  color: var(--antique-gold);
}

.council-cta {
  display: inline-block;
  background: var(--antique-gold);
  color: var(--midnight-plum);
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.council-cta:hover {
  box-shadow: 0 0 30px var(--gold-glow);
  color: var(--deep-indigo);
}

.council-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-overlay-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--antique-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* Fool's Companion */
#fools-companion {
  background: var(--bg-overlay);
  text-align: center;
  position: relative;
}

#fools-companion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Free Guide CTA Box */
.guide-cta-box {
  text-align: center;
  background: rgba(10, 8, 20, 0.55);
  backdrop-filter: blur(6px);
  border: 2px solid var(--antique-gold);
  border-radius: 8px;
  padding: 4rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.15);
}

.guide-cta-box .section-label {
  color: var(--antique-gold);
}

.guide-cta-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 1rem auto 2rem;
  max-width: 500px;
}

.guide-cta-button {
  display: inline-block;
  background: var(--antique-gold);
  color: var(--deep-indigo);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.guide-cta-button:hover {
  background: var(--sparkle-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
}

/* Contact */
#contact {
  background: var(--bg-overlay);
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(10, 8, 20, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--soft-cream);
  padding: 0.9rem 1.2rem;
  border-radius: 2px;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--antique-gold);
}

.contact-form button {
  background: var(--antique-gold);
  color: var(--deep-indigo);
  border: none;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  box-shadow: 0 0 30px var(--gold-glow);
}

.contact-direct {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-direct a {
  color: var(--antique-gold);
}

/* Footer */
footer {
  background: var(--bg-overlay-strong);
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--antique-gold);
  margin-bottom: 0.5rem;
}

footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

footer .footer-nav a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer .copyright {
  color: rgba(245, 240, 225, 0.4);
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul { display: none; }
  .nav-toggle { display: block; }
/* Navigation mobile menu */
  nav ul.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10, 8, 20, 0.95); padding: 1rem 2rem; gap: 1rem; }

  #about .container { grid-template-columns: 1fr; }
  .council-content { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  section { padding: 4rem 1.5rem; }
  .az-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }

  /* Fix background image on mobile - remove fixed attachment which causes pixelation */
  body {
    background-attachment: scroll;
    background-size: 100% 100vh;
    background-position: center top;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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