/*
Theme Name: Opera
Author: Sudais
Version: 1.0
Description: A grand luxury WordPress theme inspired by the Paris Opera House, classical performances, and 1875 theatrical grandeur. Features elegant serif typography, ornate gold decorations, and vintage opera house aesthetic.
Text Domain: opera
Tags: luxury, elegant, editorial, performing-arts, custom-menu
*/

/* ==========================================================================
   CSS Variables & Base
   ========================================================================== */
:root {
  --opera-cream: #FFFFF0;
  --opera-warm-cream: #FAF3E0;
  --opera-gold: #D4AF37;
  --opera-gold-antique: #C9A961;
  --opera-burgundy: #641220;
  --opera-wine: #7B2D26;
  --opera-text: #2C2416;
  --opera-warm-gray: #6B5D4F;
  --opera-champagne: #F7E7CE;
  --opera-champagne-cream: #F5F1E8;
  --opera-charcoal: #2C2416;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'EB Garamond', serif;
  --font-accent: 'Cinzel', serif;
  --font-calligraphy: 'Great Vibes', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--opera-cream);
  color: var(--opera-text);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--opera-gold);
  color: var(--opera-burgundy);
}

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

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

button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography utilities */
.font-serif-display { font-family: var(--font-display); }
.font-serif-body { font-family: var(--font-body); }
.font-accent { font-family: var(--font-accent); letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.65rem; font-weight: 600; }
.font-calligraphy { font-family: var(--font-calligraphy); }
.font-mono { font-family: ui-monospace, monospace; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; }

.text-gold-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #F7E7CE 50%, #C9A961 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-burgundy { color: var(--opera-burgundy); }
.text-gold { color: var(--opera-gold); }
.champagne { color: var(--opera-champagne-cream); }
.italic { font-style: italic; }
.light { font-weight: 300; }
.bold { font-weight: 800; }
.gold { color: var(--opera-gold); }

/* ==========================================================================
   Gilded Frames
   ========================================================================== */
.gilded-frame {
  border: 12px solid;
  border-image: linear-gradient(135deg, #CD7F32, #D4AF37, #FAF3E0, #C9A961, #CD7F32) 12;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 0 20px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}
.gilded-frame-thin {
  border: 6px solid;
  border-image: linear-gradient(135deg, #C9A961, #FAF3E0, #D4AF37, #C9A961) 6;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}

/* ==========================================================================
   Velvet Curtain
   ========================================================================== */
.velvet-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 1.2s ease;
}
.velvet-curtain.curtain-opening .velvet-valance { transform: translateY(-100%); }
.velvet-curtain.curtain-opening .curtain-left { transform: translateX(-100%); }
.velvet-curtain.curtain-opening .curtain-right { transform: translateX(100%); }
.velvet-curtain.curtain-hidden { opacity: 0; visibility: hidden; }

.velvet-valance {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6rem;
  background: linear-gradient(to right, #3B0A11, #641220 50%, #3B0A11);
  border-bottom: 4px solid var(--opera-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  pointer-events: auto;
  transition: transform 1.8s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.valance-fringe {
  position: absolute;
  bottom: 0.25rem;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  color: var(--opera-gold);
  opacity: 0.6;
  font-size: 0.65rem;
}
.valance-crest { text-align: center; }
.valance-title { color: var(--opera-gold); font-size: 0.75rem; letter-spacing: 0.3em; }
.valance-sub { color: var(--opera-champagne); font-size: 0.75rem; }

.velvet-curtain-panel {
  position: relative;
  width: 50%;
  height: 100%;
  pointer-events: auto;
  transition: transform 2.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.curtain-left {
  background: linear-gradient(to right, #1a0205 0%, #3B0A11 15%, #641220 35%, #2a0509 55%, #641220 75%, #4A0E17 90%, #220306 100%);
  border-right: 1px solid rgba(201,169,97,0.3);
  box-shadow: 10px 0 30px rgba(0,0,0,0.8);
}
.curtain-right {
  background: linear-gradient(to left, #1a0205 0%, #3B0A11 15%, #641220 35%, #2a0509 55%, #641220 75%, #4A0E17 90%, #220306 100%);
  border-left: 1px solid rgba(201,169,97,0.3);
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}
.curtain-folds {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 40px 100%;
  opacity: 0.1;
  pointer-events: none;
}
.curtain-folds-right { background-image: linear-gradient(to left, #000 1px, transparent 1px); }
.curtain-corner-text { padding: 2rem; color: rgba(201,169,97,0.4); font-size: 1.5rem; }
.curtain-corner-script { padding: 2rem; color: rgba(201,169,97,0.2); font-size: 1.1rem; }
.curtain-right .curtain-corner-text,
.curtain-right .curtain-corner-script { text-align: right; }

.curtain-welcome {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  text-align: center;
  padding: 1.5rem;
  transition: opacity 0.5s;
}
.curtain-welcome-overline { color: var(--opera-gold); font-size: 0.65rem; letter-spacing: 0.4em; margin-bottom: 1rem; }
.curtain-welcome-title { font-size: clamp(3rem, 8vw, 5rem); font-weight: 700; }
.curtain-divider { width: 8rem; height: 1px; background: var(--opera-gold); margin: 1rem auto; }
.curtain-welcome-script { color: var(--opera-champagne); font-size: 1.75rem; }
.btn-curtain-enter {
  margin-top: 1.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(212,175,55,0.2);
  color: var(--opera-gold);
  border: 1px solid var(--opera-gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  border-radius: 2px;
  pointer-events: auto;
  transition: background 0.3s;
}
.btn-curtain-enter:hover { background: rgba(212,175,55,0.35); }

/* ==========================================================================
   Floating Notes
   ========================================================================== */
.floating-notes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}
.floating-note {
  position: absolute;
  color: rgba(201,169,97,0.2);
  animation: float-notes 15s infinite linear;
}
.note-1 { left: 10%; top: 20%; animation-delay: 0s; }
.note-2 { right: 15%; top: 35%; animation-delay: 3s; }
.note-3 { left: 25%; top: 55%; animation-delay: 6s; }
.note-4 { right: 8%; top: 75%; animation-delay: 9s; }
.note-5 { left: 12%; top: 88%; animation-delay: 12s; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.opera-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 0 0;
  transition: all 0.5s;
  background: transparent;
}
.opera-navbar.scrolled {
  background: rgba(250,243,224,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(201,169,97,0.3);
  padding-top: 0.75rem;
}
.navbar-gold-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg, #C9A961, #F7E7CE, #D4AF37, #CD7F32);
}
.navbar-inner {
  max-width: 80rem;
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navbar-logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  transition: opacity 0.3s;
}
.navbar-logo:hover { opacity: 0.9; }
.navbar-tagline {
  font-size: 0.85rem;
  color: rgba(123,45,38,0.8);
  font-style: italic;
  transform: rotate(-1deg);
}
.opera-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.opera-nav-link {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--opera-text);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.opera-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: var(--opera-gold);
  transition: width 0.3s;
}
.opera-nav-link:hover { color: var(--opera-burgundy); }
.opera-nav-link:hover::after { width: 100%; }

.btn-nav-cta {
  padding: 0.6rem 1.25rem;
  background: var(--opera-burgundy);
  color: var(--opera-champagne);
  border: 1px solid var(--opera-gold);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s;
}
.btn-nav-cta:hover {
  background: var(--opera-wine);
  color: #fff;
  transform: scale(1.05);
}
.navbar-hairline {
  width: 100%;
  height: 0.5px;
  background: rgba(201,169,97,0.2);
  margin-top: 0.75rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 9rem 1.5rem 6rem;
  background: linear-gradient(to bottom, var(--opera-warm-cream), var(--opera-cream));
  overflow: hidden;
}
.hero-spotlight {
  position: absolute;
  border-radius: 50%;
  background: rgba(212,175,55,0.05);
  filter: blur(120px);
  pointer-events: none;
}
.hero-spotlight-left { top: 25%; left: 25%; width: 500px; height: 500px; transform: translate(-50%, -50%); }
.hero-spotlight-right { top: 33%; right: 25%; width: 400px; height: 400px; transform: translate(50%, -50%); filter: blur(100px); }

.corner-flourish { position: absolute; opacity: 0.35; z-index: 5; }
.corner-tl { top: 6rem; left: 1.5rem; }
.corner-tr { top: 6rem; right: 1.5rem; transform: rotate(90deg); }

.chandelier-wrap {
  position: absolute;
  top: 4rem; left: 50%;
  transform: translateX(-50%);
  width: 12rem; height: 12rem;
  z-index: 20;
  pointer-events: none;
}
.chandelier {
  width: 100%; height: 100%;
  animation: chandelier-sway 12s infinite ease-in-out;
  transform-origin: top center;
}

.hero-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
  padding-top: 4rem;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 55% 45%; }
}

.hero-overline { font-size: 1.5rem; color: var(--opera-burgundy); display: block; }
.hero-season { font-size: 0.6rem; color: var(--opera-gold); letter-spacing: 0.35em; font-weight: 800; display: block; margin-top: 0.25rem; }

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 1rem 0;
}
.hero-description {
  font-size: 1.05rem;
  color: var(--opera-warm-gray);
  line-height: 1.7;
  max-width: 36rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--opera-burgundy);
  color: var(--opera-champagne);
  border: 1px solid var(--opera-gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: all 0.3s;
}
.btn-primary:hover { background: #4A0E17; color: #fff; transform: scale(1.05); }
.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--opera-gold);
  border: 1px solid var(--opera-gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(212,175,55,0.05); }

.hero-stats {
  font-size: 0.6rem;
  color: var(--opera-gold);
  letter-spacing: 0.15em;
  margin-top: 2rem;
}
.hero-director {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.hero-director-line { width: 2.5rem; height: 1px; background: rgba(201,169,97,0.3); }
.director-sub { font-size: 0.45rem; color: var(--opera-warm-gray); display: block; }

.hero-frame-wrap { display: flex; justify-content: center; }
.hero-frame-card {
  padding: 0.75rem;
  background: var(--opera-warm-cream);
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 1px solid rgba(201,169,97,0.15);
  transition: transform 0.5s;
}
.hero-frame-card:hover { transform: translateY(-4px); }
.hero-image-frame { width: 20rem; height: 26rem; }
.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transition: transform 0.7s ease-out;
}
.hero-frame-card:hover .hero-image { transform: scale(1.05); }

.hero-plaque, .atelier-plaque {
  margin-top: 1.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--opera-gold-antique);
  background: linear-gradient(to bottom, #FAF3E0, #E6C687);
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.4);
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
}
.plaque-label { font-size: 0.5rem; color: #5C4010; letter-spacing: 0.25em; font-weight: 700; display: block; }
.plaque-title { font-size: 0.9rem; font-weight: 700; margin-top: 0.25rem; }
.plaque-sub { font-size: 0.5rem; color: var(--opera-burgundy); letter-spacing: 0.1em; font-weight: 600; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 6rem 0; position: relative; }
.section-cream { background: rgba(250,243,224,0.7); }
.section-warm { background: var(--opera-warm-cream); }
.section-dark { background: #140b09; color: #fff; }
.section-charcoal { background: var(--opera-charcoal); color: #fff; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header.light .section-title { color: #fff; }
.section-overline { font-size: 0.7rem; color: var(--opera-gold); letter-spacing: 0.3em; font-weight: 700; display: block; margin-bottom: 0.5rem; }
.section-title { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; }
.section-title.large { font-size: clamp(2.25rem, 4.5vw, 3rem); }
.section-subtitle { font-size: 1.5rem; color: var(--opera-gold); font-style: italic; margin-top: 0.25rem; }
.section-line { width: 4rem; height: 1.5px; background: var(--opera-gold); margin: 0.5rem auto 0; }
.section-line.left { margin-left: 0; }
.section-line.wide { width: 6rem; }

.baroque-divider { display: flex; justify-content: center; padding: 2.5rem 0; }

/* ==========================================================================
   Performance Cards
   ========================================================================== */
.performances-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .performances-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .performances-grid { grid-template-columns: repeat(3, 1fr); } }

.playbill-card {
  position: relative;
  background: rgba(250,243,224,0.9);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(201,169,97,0.3);
  box-shadow: 0 10px 30px -15px rgba(44,36,22,0.15);
  transition: all 0.5s;
  overflow: hidden;
}
.playbill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(44,36,22,0.2);
}
.playbill-inner-border {
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(201,169,97,0.2);
  pointer-events: none;
  transition: border-color 0.5s;
}
.playbill-card:hover .playbill-inner-border { border-color: rgba(212,175,55,0.4); }

.playbill-header { text-align: center; margin-bottom: 1rem; }
.playbill-badge {
  display: inline-block;
  font-size: 0.55rem;
  color: var(--opera-gold);
  background: rgba(100,18,32,0.05);
  padding: 0.15rem 0.6rem;
  border: 1px solid rgba(201,169,97,0.1);
  border-radius: 2px;
  letter-spacing: 0.25em;
}
.playbill-dates { display: block; font-size: 0.6rem; color: var(--opera-warm-gray); margin-top: 0.5rem; letter-spacing: 0.05em; }

.playbill-image-wrap { height: 12rem; margin-bottom: 1rem; }
.playbill-image {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.8;
  transition: all 0.7s ease-out;
}
.playbill-card:hover .playbill-image {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.playbill-body { text-align: center; }
.playbill-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; transition: color 0.3s; }
.playbill-card:hover .playbill-title { color: var(--opera-burgundy); }
.playbill-composer { font-size: 0.65rem; color: rgba(212,175,55,0.9); letter-spacing: 0.15em; font-weight: 600; margin-bottom: 0.75rem; }
.playbill-divider { width: 3rem; height: 1px; background: rgba(201,169,97,0.3); margin: 0 auto 0.75rem; }
.playbill-desc { font-size: 0.875rem; color: var(--opera-warm-gray); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.playbill-footer { text-align: center; margin-top: 1.5rem; }
.btn-book {
  padding: 0.6rem 1.5rem;
  background: var(--opera-burgundy);
  color: var(--opera-champagne);
  border: 1px solid var(--opera-gold);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s;
}
.btn-book:hover { background: var(--opera-wine); color: #fff; transform: scale(1.05); }
.playbill-tagline { display: block; font-size: 1rem; color: var(--opera-gold); margin-top: 0.5rem; opacity: 0.6; transition: opacity 0.3s; }
.playbill-card:hover .playbill-tagline { opacity: 1; }

/* ==========================================================================
   Quote Interlude
   ========================================================================== */
.quote-section {
  padding: 7rem 0;
  background: #3B0A11;
  color: #fff;
  overflow: hidden;
}
.quote-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(100,18,32,0.9) 0%, transparent 70%), #1a0205;
  opacity: 0.9;
}
.quote-content { position: relative; z-index: 10; text-align: center; max-width: 56rem; }
.quote-ornament { color: var(--opera-gold); font-size: 2rem; margin-bottom: 1.5rem; }
.quote-text { font-size: clamp(1.75rem, 4vw, 3rem); color: var(--opera-champagne-cream); line-height: 1.3; }
.quote-author { display: block; margin-top: 1.5rem; font-size: 0.65rem; color: var(--opera-gold); letter-spacing: 0.3em; font-style: normal; }
.quote-line { width: 5rem; height: 0.5px; background: rgba(201,169,97,0.3); margin: 1.5rem auto; }
.quote-translation { font-size: 1.5rem; color: var(--opera-champagne); font-style: italic; }

/* ==========================================================================
   Artists
   ========================================================================== */
.artists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .artists-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .artists-grid { grid-template-columns: repeat(3, 1fr); } }

.artist-card {
  background: #1e1411;
  color: var(--opera-champagne-cream);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(201,169,97,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  background-image: radial-gradient(circle at 50% 30%, #30201c 0%, #1e1411 80%);
  transition: box-shadow 0.5s;
  display: flex;
  flex-direction: column;
}
.artist-card:hover { box-shadow: 0 0 30px rgba(212,175,55,0.15); }

.artist-frame { width: 14rem; height: 18rem; margin: 0 auto 1.5rem; }
.artist-image {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(1) brightness(0.9) contrast(1.1);
  transition: all 0.7s ease-out;
}
.artist-card:hover .artist-image {
  transform: scale(1.05);
  filter: sepia(0.5) brightness(1);
}

.artist-info { text-align: center; flex-grow: 1; }
.artist-role { font-size: 0.55rem; color: var(--opera-gold); letter-spacing: 0.3em; font-weight: 700; }
.artist-name { font-size: 1.5rem; font-weight: 600; margin: 0.25rem 0; transition: color 0.3s; }
.artist-card:hover .artist-name { color: var(--opera-gold); }
.artist-years { font-size: 0.5rem; color: var(--opera-warm-gray); display: block; margin-bottom: 1rem; }
.artist-star-divider { display: flex; align-items: center; gap: 0.75rem; width: 8rem; margin: 0 auto 1rem; }
.artist-star-divider::before, .artist-star-divider::after { content: ''; flex: 1; height: 0.5px; background: rgba(201,169,97,0.2); }
.artist-star-divider span { color: var(--opera-gold-antique); font-size: 0.5rem; }
.artist-desc { font-size: 0.875rem; font-style: italic; color: rgba(245,241,232,0.8); line-height: 1.6; }

.artist-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,169,97,0.1);
  text-align: right;
}
.artist-signature { font-size: 1.5rem; color: var(--opera-gold); transform: rotate(-2deg); display: block; }
.signature-label { font-size: 0.45rem; color: var(--opera-warm-gray); letter-spacing: 0.15em; }

/* ==========================================================================
   L'Atelier
   ========================================================================== */
.atelier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .atelier-grid { grid-template-columns: 1fr 1fr; } }

.drop-cap {
  float: left;
  font-size: 4rem;
  font-weight: 800;
  color: var(--opera-gold);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  padding: 0.25rem 1rem;
  border: 2px solid var(--opera-gold-antique);
  background: var(--opera-burgundy);
  color: #fff;
  border-radius: 2px;
  line-height: 1;
}
.atelier-text { font-size: 1.05rem; color: rgba(44,36,22,0.8); line-height: 1.7; }
.atelier-text p + p { margin-top: 1.5rem; }
.atelier-quote {
  border-left: 2px solid rgba(212,175,55,0.3);
  padding-left: 1.5rem;
  margin-top: 2rem;
}
.atelier-quote cite { font-size: 0.55rem; color: var(--opera-warm-gray); letter-spacing: 0.15em; display: block; margin-top: 0.25rem; }

.atelier-image-col { text-align: center; }
.atelier-frame { max-width: 28rem; aspect-ratio: 4/3; margin: 0 auto; }
.atelier-image {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transition: all 0.7s ease-out;
}
.atelier-frame:hover .atelier-image { transform: scale(1.05); filter: brightness(1); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-carousel { max-width: 42rem; margin: 0 auto; }
.testimonial-slides { position: relative; min-height: 380px; }
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: rotate(-2deg) translateY(15px);
  transition: all 0.6s ease-in-out;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: rotate(1deg) translateY(0);
  pointer-events: auto;
}

.testimonial-postcard {
  background: var(--opera-champagne-cream);
  color: var(--opera-text);
  padding: 2rem;
  border-radius: 2px;
  border: 4px double rgba(201,169,97,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .testimonial-postcard { grid-template-columns: 3fr 2fr; } }

.postcard-left { border-bottom: 1px dashed rgba(107,93,79,0.3); padding-bottom: 1.5rem; }
@media (min-width: 640px) { .postcard-left { border-bottom: none; border-right: 1px dashed rgba(107,93,79,0.3); padding-bottom: 0; padding-right: 1.5rem; } }
.postcard-letterhead h4 { font-size: 0.55rem; color: var(--opera-gold); letter-spacing: 0.25em; }
.postcard-letterhead p { font-size: 0.5rem; color: var(--opera-warm-gray); margin-top: 0.25rem; }
.postcard-stars { color: var(--opera-gold); font-size: 0.75rem; margin: 1rem 0; }
.postcard-quote { font-size: 1.5rem; color: var(--opera-burgundy); font-style: italic; line-height: 1.3; }
.postcard-signature { text-align: right; margin-top: 1rem; }
.postcard-signature p { font-size: 0.875rem; font-weight: 600; }
.postcard-signature .font-mono { font-size: 0.5rem; color: var(--opera-warm-gray); }

.postcard-right { display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding-top: 1rem; }
.postage-stamp {
  width: 4rem; height: 5rem;
  border: 2px dashed var(--opera-gold);
  padding: 0.25rem;
  background: rgba(100,18,32,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 0.45rem;
}
.postmark {
  width: 3.5rem; height: 3.5rem;
  border: 1px dashed rgba(100,18,32,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(12deg);
  opacity: 0.65;
  font-size: 0.4rem;
  color: var(--opera-burgundy);
  margin-top: 1.5rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,0.3);
  color: var(--opera-gold-antique);
  font-size: 0.875rem;
  transition: all 0.3s;
}
.testimonial-btn:hover { border-color: var(--opera-gold); color: var(--opera-gold); background: rgba(212,175,55,0.1); }
.testimonial-dots { display: flex; gap: 0.6rem; }
.testimonial-dot {
  width: 0.6rem; height: 0.6rem;
  border-radius: 50%;
  border: 1px solid var(--opera-gold-antique);
  background: transparent;
  transition: all 0.5s;
}
.testimonial-dot.active {
  background: var(--opera-gold);
  transform: scale(1.25);
  box-shadow: 0 0 8px #D4AF37;
}

/* ==========================================================================
   Timeline
   ========================================================================== */
.legacy-section { background: var(--opera-warm-cream); }
.timeline { position: relative; }
.timeline-line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--opera-gold), var(--opera-gold-antique), #CD7F32);
  display: none;
}
@media (min-width: 768px) { .timeline-line { display: block; } }

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}
@media (min-width: 768px) {
  .timeline-item { flex-direction: row; justify-content: space-between; }
  .timeline-left .timeline-content { order: 1; text-align: right; }
  .timeline-left .timeline-spacer { order: 2; }
  .timeline-right .timeline-content { order: 2; text-align: left; }
  .timeline-right .timeline-spacer { order: 1; }
}

.timeline-content { width: 100%; }
@media (min-width: 768px) { .timeline-content { width: 46%; } }

.timeline-year { font-size: 0.8rem; color: var(--opera-gold); letter-spacing: 0.2em; font-weight: 800; display: block; margin-bottom: 0.5rem; }
.timeline-title { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; margin-bottom: 1rem; transition: color 0.3s; }
.timeline-item:hover .timeline-title { color: var(--opera-burgundy); }
.timeline-image-wrap { height: 14rem; margin: 1rem 0; }
.timeline-image {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.3) brightness(0.9);
  transition: all 0.7s ease-out;
}
.timeline-item:hover .timeline-image { filter: sepia(0) brightness(1); transform: scale(1.05); }
.timeline-desc { font-size: 1rem; color: var(--opera-warm-gray); line-height: 1.7; }

.timeline-marker {
  position: absolute;
  left: 50%; top: 0;
  transform: translate(-50%, -1rem);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--opera-gold);
  background: var(--opera-burgundy);
  color: var(--opera-gold);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 20;
  transition: transform 0.3s;
}
@media (min-width: 768px) { .timeline-marker { display: flex; } }
.timeline-item:hover .timeline-marker { transform: translate(-50%, -1rem) scale(1.1); border-color: #fff; }
.timeline-spacer { display: none; }
@media (min-width: 768px) { .timeline-spacer { display: block; width: 46%; } }

/* ==========================================================================
   Tickets
   ========================================================================== */
.tickets-section {
  background: var(--opera-burgundy);
  color: var(--opera-champagne);
  position: relative;
  overflow: hidden;
}
.tickets-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, #4A0E17, var(--opera-burgundy), #30050B);
  background-size: 400% 400%;
  animation: velvet-sheen 8s infinite alternate ease-in-out;
  opacity: 0.95;
}

.ticket-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) { .ticket-tiers { grid-template-columns: repeat(3, 1fr); } }

.ticket-tier {
  position: relative;
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(201,169,97,0.2);
  background: rgba(37,3,8,0.9);
  color: var(--opera-champagne-cream);
  transition: transform 0.5s;
  overflow: hidden;
}
.ticket-tier:hover { transform: translateY(-8px); }
.ticket-tier.featured {
  background: var(--opera-warm-cream);
  color: var(--opera-text);
  border: 4px double var(--opera-gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.tier-badge {
  position: absolute;
  right: -3rem; top: 1.5rem;
  transform: rotate(45deg);
  padding: 0.25rem 3rem;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-align: center;
  background: var(--opera-gold);
  color: var(--opera-burgundy);
}
.ticket-tier.featured .tier-badge {
  background: var(--opera-burgundy);
  color: #fff;
  border-top: 1px solid var(--opera-gold);
  border-bottom: 1px solid var(--opera-gold);
}

.tier-perks { font-size: 0.55rem; letter-spacing: 0.15em; color: var(--opera-gold-antique); display: block; }
.ticket-tier.featured .tier-perks { color: var(--opera-burgundy); }
.tier-title { font-size: 1.5rem; font-weight: 700; margin: 0.5rem 0 1rem; }
.tier-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(201,169,97,0.2);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.tier-price { font-size: 2.25rem; font-weight: 800; color: var(--opera-gold); }
.tier-price-label { font-size: 0.55rem; color: var(--opera-warm-gray); }
.tier-benefits { list-style: none; margin-bottom: 1.5rem; }
.tier-benefits li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.tier-benefits li span { color: var(--opera-gold); flex-shrink: 0; }

.btn-tier {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  border: 1px solid var(--opera-gold);
  border-radius: 2px;
  transition: all 0.3s;
  background: rgba(212,175,55,0.1);
  color: var(--opera-gold);
}
.btn-tier:hover { background: var(--opera-gold); color: var(--opera-burgundy); }
.ticket-tier.featured .btn-tier {
  background: var(--opera-burgundy);
  color: #fff;
}
.ticket-tier.featured .btn-tier:hover { background: var(--opera-wine); }

.seating-chart {
  position: relative;
  z-index: 10;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(201,169,97,0.2);
  padding: 2rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1280px) { .seating-chart { grid-template-columns: 7fr 5fr; padding: 3rem; } }

.seating-map { text-align: center; }
.stage-wrap { margin-bottom: 3rem; }
.stage-bar {
  max-width: 28rem;
  margin: 0 auto;
  height: 2rem;
  border-bottom: 2px solid var(--opera-gold);
  border-radius: 0 0 50% 50%;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--opera-gold);
  letter-spacing: 0.4em;
  font-weight: 700;
  animation: pulse 2s infinite;
}
.stage-performance { font-size: 0.875rem; color: rgba(247,231,206,0.6); margin-top: 0.5rem; }

.seat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}
.seat-legend span { display: flex; align-items: center; gap: 0.4rem; }
.legend-dot {
  display: inline-block;
  width: 0.875rem; height: 0.875rem;
  border-radius: 50%;
  border: 1px solid var(--opera-gold);
}
.legend-dot.balcony { background: rgba(100,18,32,0.1); }
.legend-dot.orchestra { background: rgba(212,175,55,0.1); }
.legend-dot.box { border-radius: 2px; background: var(--opera-gold); }
.legend-dot.taken { background: #525252; opacity: 0.4; }

.seat-boxes { display: flex; justify-content: space-between; margin-bottom: 1.5rem; padding: 0 1rem; }
.seat-box-group { text-align: center; }
.seat-label { font-size: 0.5rem; color: var(--opera-warm-gray); letter-spacing: 0.15em; display: block; margin-bottom: 0.5rem; }
.seat-box-row { display: flex; gap: 0.5rem; }
.seat-section { margin-bottom: 1rem; }
.seat-section-label { font-size: 0.55rem; color: var(--opera-gold-antique); letter-spacing: 0.15em; display: block; margin-bottom: 0.5rem; }
.seat-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.seat-row-label { width: 1rem; font-size: 0.6rem; color: var(--opera-warm-gray); }
.seat-row-group { display: flex; gap: 0.35rem; }

.seat-btn {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.6);
  background: rgba(212,175,55,0.1);
  color: var(--opera-gold);
  font-size: 0.5rem;
  font-family: ui-monospace, monospace;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.seat-btn.balcony { background: rgba(100,18,32,0.2); border-color: rgba(201,169,97,0.4); color: var(--opera-champagne); }
.seat-btn.box-seat { width: 2.5rem; height: 2.5rem; border-radius: 2px; flex-direction: column; font-size: 0.45rem; }
.seat-btn:hover:not(.taken):not(.selected) { background: rgba(212,175,55,0.4); }
.seat-btn.selected { background: #fff; border-color: #fff; color: var(--opera-burgundy); font-weight: 700; box-shadow: 0 0 10px #fff; transform: scale(1.1); }
.seat-btn.taken { background: #262626; border-color: #525252; color: #737373; opacity: 0.25; cursor: not-allowed; }

.ticket-checkout {
  border-top: 1px solid rgba(201,169,97,0.2);
  padding-top: 2rem;
}
@media (min-width: 1280px) {
  .ticket-checkout { border-top: none; border-left: 1px solid rgba(201,169,97,0.2); padding-top: 0; padding-left: 2.5rem; }
}
.checkout-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }

.ticket-summary-empty, .ticket-summary-filled {
  padding: 2rem;
  border: 1px dashed rgba(201,169,97,0.2);
  border-radius: 2px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.ticket-summary-empty .gold { font-size: 1.25rem; display: block; margin-bottom: 0.5rem; }
.ticket-summary-empty p { font-size: 0.875rem; color: rgba(247,231,206,0.8); }
.ticket-summary-list { text-align: left; max-height: 10rem; overflow-y: auto; margin-bottom: 1rem; }
.ticket-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  padding: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,97,0.1);
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.ticket-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(201,169,97,0.2);
  padding-top: 1rem;
}

.ticket-form label { display: block; font-size: 0.55rem; color: var(--opera-gold); letter-spacing: 0.15em; font-weight: 700; margin-bottom: 0.4rem; margin-top: 1rem; }
.ticket-form input {
  width: 100%;
  background: #3B0A11;
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 2px;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--font-body);
}
.ticket-form input:focus { outline: none; border-color: var(--opera-gold); }
.btn-checkout {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.85rem;
  background: var(--opera-gold);
  color: var(--opera-burgundy);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-checkout:hover:not(:disabled) { background: rgba(212,175,55,0.9); }
.btn-checkout:disabled { opacity: 0.3; cursor: not-allowed; }
.checkout-footer { text-align: center; margin-top: 1.5rem; font-size: 0.5rem; color: var(--opera-warm-gray); letter-spacing: 0.15em; }

/* Receipt Modal */
.receipt-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
}
.receipt-modal[hidden] { display: none; }
.receipt-card {
  background: var(--opera-warm-cream);
  color: var(--opera-text);
  max-width: 28rem;
  width: 100%;
  padding: 2rem;
  border-radius: 2px;
  border: 4px double var(--opera-gold);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.receipt-header { text-align: center; margin-bottom: 1.5rem; }
.receipt-header span { font-size: 0.55rem; color: var(--opera-gold); letter-spacing: 0.3em; }
.receipt-header h4 { font-size: 1.5rem; font-weight: 700; margin-top: 0.5rem; }
.receipt-details { background: rgba(255,255,255,0.4); border: 1px solid rgba(201,169,97,0.2); padding: 1rem; border-radius: 2px; margin-bottom: 1rem; }
.receipt-details p { margin-bottom: 0.75rem; }
.receipt-details .font-mono { font-size: 0.5rem; color: var(--opera-warm-gray); display: block; }
.receipt-seat { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 0.25rem; }
.receipt-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(212,175,55,0.3); padding-top: 0.75rem; margin-top: 0.75rem; }
.receipt-card .btn-primary { width: 100%; text-align: center; margin-top: 1rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.opera-footer {
  background: var(--opera-charcoal);
  color: var(--opera-champagne-cream);
  padding: 5rem 0 2.5rem;
  border-top: 2px solid var(--opera-gold);
  position: relative;
  overflow: hidden;
}
.footer-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent, #110e0a);
  opacity: 0.85;
}

.candle {
  position: absolute;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}
.candle-left { left: 1.5rem; }
.candle-right { right: 1.5rem; }
.candle-stick {
  width: 1rem; height: 5rem;
  background: linear-gradient(to top, var(--opera-charcoal), #451a03, rgba(251,191,36,0.3));
  border-radius: 2px 2px 0 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.candle-flame {
  position: absolute;
  top: -0.75rem; left: 50%;
  transform: translateX(-50%);
  width: 0.6rem; height: 1rem;
  background: linear-gradient(to bottom, #fff, #fbbf24, transparent);
  border-radius: 50%;
  animation: candle-flicker 3s infinite ease-in-out;
}
.candle-label { font-size: 0.5rem; color: var(--opera-warm-gray); letter-spacing: 0.15em; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(201,169,97,0.1);
  padding-bottom: 4rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 0.15em; }
.footer-tagline { font-size: 1.1rem; font-style: italic; display: block; margin: 0.25rem 0 1rem; }
.footer-desc { font-size: 0.75rem; color: var(--opera-warm-gray); line-height: 1.6; }
.footer-heading { font-size: 0.65rem; letter-spacing: 0.15em; color: #fff; margin-bottom: 1rem; }
.footer-list { list-style: none; }
.footer-list li { font-size: 0.75rem; color: var(--opera-warm-gray); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem; }
.icon-gold { color: var(--opera-gold); }

.newsletter-form { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 10rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(201,169,97,0.3);
  padding: 0.4rem 0.75rem;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 2px;
}
.newsletter-form input:focus { outline: none; border-color: var(--opera-gold); }
.newsletter-form button {
  padding: 0.4rem 0.75rem;
  background: var(--opera-gold);
  color: var(--opera-burgundy);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: rgba(212,175,55,0.9); }

/* Form feedback messages */
.opera-form-message {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 0.65rem 0.75rem;
  border-radius: 2px;
  border: 1px solid transparent;
}
.opera-form-message.is-success {
  color: var(--opera-champagne-cream);
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.35);
}
.opera-form-message.is-error {
  color: #ffd6d6;
  background: rgba(100,18,32,0.35);
  border-color: rgba(212,175,55,0.25);
}
.ticket-checkout .opera-form-message.is-success {
  color: var(--opera-champagne);
}
.ticket-checkout .opera-form-message.is-error {
  color: #ffd6d6;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--opera-warm-gray);
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-links { display: flex; gap: 1rem; align-items: center; font-size: 0.55rem; letter-spacing: 0.15em; }
.footer-links button { color: var(--opera-warm-gray); transition: color 0.3s; }
.footer-links button:hover { color: var(--opera-gold); }
.footer-closing { font-size: 1.1rem; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes candle-flicker {
  0%, 100% { transform: translateX(-50%) scale(1) rotate(-1deg); opacity: 0.85; filter: drop-shadow(0 0 4px rgba(212,175,55,0.5)); }
  20% { transform: translateX(-50%) scale(1.05) rotate(1deg); opacity: 0.95; }
  40% { transform: translateX(-50%) scale(0.95) rotate(-2deg); opacity: 0.8; }
  60% { transform: translateX(-50%) scale(1.08); opacity: 1; filter: drop-shadow(0 0 10px rgba(212,175,55,0.8)); }
  80% { transform: translateX(-50%) scale(0.92) rotate(2deg); opacity: 0.75; }
}
@keyframes velvet-sheen {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes chandelier-sway {
  0%, 100% { transform: rotate(-0.8deg); }
  50% { transform: rotate(0.8deg); }
}
@keyframes float-notes {
  0% { transform: translateY(100px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-200px) translateX(50px) rotate(360deg); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1e120f; }
::-webkit-scrollbar-thumb { background: var(--opera-gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--opera-champagne); }

/* WordPress admin bar offset */
.admin-bar .opera-navbar { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .opera-navbar { top: 46px; } }
