/* Theme 1 - Beige & Blue (brand default) */
:root {
  --bg: #f3ecdd;
  --bg-alt: #ece2cc;
  --surface: #fffdf7;
  --text: #102542;
  --muted: #4a5a72;
  --primary: #2f5e8f;
  --primary-contrast: #ffffff;
  --accent: #0b1f3a;
  --border: #d8ccae;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(16, 37, 66, 0.12);
  --font-head: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 16px; padding: 14px 0; }
.brand { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--accent); }
.nav { display: flex; gap: 18px; margin-left: auto; }
.nav a { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.nav a:hover { color: var(--primary); }

.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%); padding: 72px 0; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.8rem; color: var(--primary); font-weight: 700; margin: 0 0 10px; }
.hero-title { font-family: var(--font-head); font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.02; margin: 0 0 14px; color: var(--accent); }
.hero-tagline { font-size: 1.2rem; color: var(--muted); max-width: 30ch; margin: 0 0 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius); border: 1px solid var(--border);
  overflow: hidden; box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }

/* drifting stage-light orbs */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(54px); opacity: 0.45; will-change: transform; }
.hero-orb-a { width: 440px; height: 440px; top: -150px; left: -110px; background: color-mix(in srgb, var(--primary) 55%, transparent); animation: hero-drift-a 18s ease-in-out infinite; }
.hero-orb-b { width: 360px; height: 360px; right: -90px; top: 4%; background: color-mix(in srgb, var(--accent) 45%, transparent); animation: hero-drift-b 23s ease-in-out infinite; }
.hero-orb-c { width: 300px; height: 300px; left: 32%; bottom: -110px; background: color-mix(in srgb, var(--primary) 30%, var(--bg-alt)); animation: hero-drift-c 16s ease-in-out infinite; }

/* spinning vinyl with sound rings radiating out of it */
.hero-vinyl {
  position: absolute; right: 7%; top: 14%; width: 190px; height: 190px; border-radius: 50%; opacity: 0.45;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 70%, transparent) 0 14%, transparent 15%),
    repeating-radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--primary) 30%, transparent) 0 1px, transparent 1px 8px);
  animation: hero-spin 16s linear infinite;
}
.hero-ring { position: absolute; right: 7%; top: 14%; width: 190px; height: 190px; border-radius: 50%; border: 2px solid color-mix(in srgb, var(--primary) 32%, transparent); opacity: 0; }
.hero-ring-a { animation: hero-pulse 6s ease-out infinite; }
.hero-ring-b { animation: hero-pulse 6s ease-out infinite 2s; border-color: color-mix(in srgb, var(--accent) 28%, transparent); }
.hero-ring-c { animation: hero-pulse 6s ease-out infinite 4s; }

/* scrolling sound waves along the bottom */
.hero-waves { position: absolute; left: 0; right: 0; bottom: 0; height: 46%; }
.hero-wave { position: absolute; left: 0; bottom: 0; width: 200%; height: 100%; will-change: transform; }
.hero-wave-1 { animation: hero-wave-scroll 19s linear infinite; }
.hero-wave-1 path { fill: color-mix(in srgb, var(--primary) 15%, transparent); }
.hero-wave-2 { animation: hero-wave-scroll 27s linear infinite reverse; height: 82%; }
.hero-wave-2 path { fill: color-mix(in srgb, var(--accent) 13%, transparent); }
.hero-wave-3 { animation: hero-wave-scroll 36s linear infinite; height: 64%; }
.hero-wave-3 path { fill: color-mix(in srgb, var(--primary) 9%, transparent); }

/* equalizer bars pulsing behind the waves */
.hero-eq { position: absolute; left: 0; right: 0; bottom: 0; height: 96px; display: flex; align-items: flex-end; justify-content: center; gap: 6px; padding: 0 5%; opacity: 0.26; }
.hero-eq-bar { flex: 1; max-width: 10px; height: 16%; background: var(--primary); border-radius: 99px 99px 0 0; animation: hero-eq 1.35s ease-in-out infinite; }
.hero-eq-bar:nth-child(odd) { background: var(--accent); }
.hero-eq-bar:nth-child(3n) { animation-duration: 1.05s; }
.hero-eq-bar:nth-child(4n) { animation-duration: 1.75s; }
.hero-eq-bar:nth-child(5n) { animation-duration: 0.9s; }
.hero-eq-bar:nth-child(1) { animation-delay: -0.10s; }
.hero-eq-bar:nth-child(2) { animation-delay: -0.35s; }
.hero-eq-bar:nth-child(3) { animation-delay: -0.55s; }
.hero-eq-bar:nth-child(4) { animation-delay: -0.20s; }
.hero-eq-bar:nth-child(5) { animation-delay: -0.80s; }
.hero-eq-bar:nth-child(6) { animation-delay: -0.45s; }
.hero-eq-bar:nth-child(7) { animation-delay: -0.15s; }
.hero-eq-bar:nth-child(8) { animation-delay: -0.70s; }
.hero-eq-bar:nth-child(9) { animation-delay: -0.25s; }
.hero-eq-bar:nth-child(10) { animation-delay: -0.95s; }
.hero-eq-bar:nth-child(11) { animation-delay: -0.40s; }
.hero-eq-bar:nth-child(12) { animation-delay: -0.60s; }
.hero-eq-bar:nth-child(13) { animation-delay: -0.05s; }
.hero-eq-bar:nth-child(14) { animation-delay: -0.85s; }
.hero-eq-bar:nth-child(15) { animation-delay: -0.30s; }
.hero-eq-bar:nth-child(16) { animation-delay: -0.50s; }
.hero-eq-bar:nth-child(17) { animation-delay: -0.75s; }
.hero-eq-bar:nth-child(18) { animation-delay: -0.18s; }
.hero-eq-bar:nth-child(19) { animation-delay: -0.65s; }
.hero-eq-bar:nth-child(20) { animation-delay: -0.28s; }
.hero-eq-bar:nth-child(21) { animation-delay: -0.90s; }
.hero-eq-bar:nth-child(22) { animation-delay: -0.42s; }

/* music notes drifting up through the scene */
.hero-notes { position: absolute; inset: 0; }
.hero-note { position: absolute; bottom: -8%; font-size: 1.7rem; line-height: 1; color: color-mix(in srgb, var(--primary) 60%, transparent); opacity: 0; animation: hero-note-float 14s linear infinite; }
.hero-note:nth-child(even) { color: color-mix(in srgb, var(--accent) 60%, transparent); font-size: 1.3rem; }
.hero-note:nth-child(1) { left: 8%; animation-delay: 0s; }
.hero-note:nth-child(2) { left: 22%; animation-delay: -3.5s; animation-duration: 17s; }
.hero-note:nth-child(3) { left: 37%; animation-delay: -7s; animation-duration: 12s; }
.hero-note:nth-child(4) { left: 54%; animation-delay: -10s; animation-duration: 16s; }
.hero-note:nth-child(5) { left: 71%; animation-delay: -5s; animation-duration: 13s; }
.hero-note:nth-child(6) { left: 88%; animation-delay: -12s; animation-duration: 18s; }

@keyframes hero-drift-a { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(70px, 40px) scale(1.12); } }
@keyframes hero-drift-b { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-55px, 34px) scale(1.18); } }
@keyframes hero-drift-c { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-34px, -28px) scale(1.08); } }
@keyframes hero-spin { to { transform: rotate(360deg); } }
@keyframes hero-pulse { 0% { transform: scale(0.8); opacity: 0.55; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes hero-wave-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes hero-eq { 0%, 100% { height: 16%; } 50% { height: 88%; } }
@keyframes hero-note-float {
  0% { transform: translate(0, 0) rotate(-8deg); opacity: 0; }
  12% { opacity: 0.85; }
  50% { transform: translate(26px, -50vh) rotate(10deg); }
  85% { opacity: 0.5; }
  100% { transform: translate(-14px, -105vh) rotate(-6deg); opacity: 0; }
}

@media (max-width: 800px) {
  .hero-vinyl, .hero-ring { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orb, .hero-vinyl, .hero-ring, .hero-eq-bar, .hero-wave, .hero-note { animation: none; }
  .hero-ring { opacity: 0.25; }
  .hero-eq-bar { height: 34%; }
  .hero-note { opacity: 0.5; }
}

.btn { display: inline-block; padding: 12px 22px; border-radius: var(--radius); font-weight: 700; border: 1px solid transparent; cursor: pointer; transition: transform 0.08s ease, opacity 0.15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: var(--primary-contrast); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }

.section { padding: 64px 0; }
.section:nth-of-type(even) { background: var(--bg-alt); }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 28px; color: var(--accent); }

.about-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; }
.about-text { font-size: 1.1rem; }
.about-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.about-facts li { display: flex; flex-direction: column; padding: 12px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.fact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.fact-value { font-weight: 700; }
.genres { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag { background: var(--surface); border: 1px solid var(--border); color: var(--primary); padding: 6px 14px; border-radius: 999px; font-size: 0.9rem; font-weight: 600; }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; }
.music-video { padding: 0; overflow: hidden; margin-bottom: 28px; }
.music-video-player { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; background: var(--bg-alt); vertical-align: middle; }
.embed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.embed-title { margin: 0 0 12px; font-family: var(--font-head); }
.embed-frame { position: relative; aspect-ratio: 16 / 9; border-radius: calc(var(--radius) - 4px); overflow: hidden; }
.embed-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.music-placeholder { color: var(--muted); }
code { background: var(--bg-alt); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }

.tour-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.tour-item { display: flex; align-items: center; gap: 20px; }
.tour-date { display: grid; place-items: center; min-width: 76px; padding: 8px; background: var(--accent); color: #fff; border-radius: var(--radius); line-height: 1.1; }
.tour-month { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.08em; }
.tour-day { font-size: 1.7rem; font-weight: 800; }
.tour-year { font-size: 0.75rem; opacity: 0.8; }
.tour-info { display: flex; flex-direction: column; }
.tour-venue { font-weight: 700; font-size: 1.1rem; }
.tour-venue-link { color: var(--primary); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color 0.2s; }
.tour-venue-link:hover { text-decoration-color: var(--primary); }
.tour-city { color: var(--accent); font-weight: 600; font-size: 0.95rem; margin-top: 2px; }
.tour-desc { color: var(--muted); font-size: 0.85rem; margin-top: 4px; max-width: 400px; line-height: 1.4; }
.tour-link { margin-left: auto; }
.tour-link-muted { color: var(--muted); font-weight: 600; }

.contact.section { text-align: center; }
/* Planetary Music booking colors stay on the card only: navy #1a2744, gold #d4a84b */
.contact-card {
  max-width: 550px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  background: #1a2744;
  color: #fff;
  border: 1px solid color-mix(in srgb, #d4a84b 25%, transparent);
}
.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: color-mix(in srgb, #fff 70%, transparent);
  font-weight: 700;
  margin: 0;
}
.contact-agent {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.contact-company {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4a84b;
  font-weight: 700;
  margin: 0 0 8px;
}
.contact-cta { margin-top: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.btn-booking {
  background: #d4a84b;
  color: #1a2744;
  border-radius: 999px;
  padding: 16px 32px;
  font-weight: 600;
  border-color: transparent;
}
.btn-booking:hover {
  background: #e5b95c;
  color: #1a2744;
}
.contact-external {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: color-mix(in srgb, #fff 65%, transparent);
}

.site-footer { border-top: 1px solid var(--border); padding: 28px 0; background: var(--bg-alt); }
.footer-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-brand { font-family: var(--font-head); font-weight: 700; color: var(--accent); }
.footer-note { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 800px) {
  .hero-inner, .about-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .tour-item { flex-wrap: wrap; }
  .tour-link { margin-left: 0; }
}
