:root {
  /* HAIR Iconic Colors - Yellow, Red, Green, Peace & Love */
  --bg: #2d1810;
  --panel: #3a2218;
  --panel-strong: #4a2a1a;
  --ink: #fff8e7;
  --muted: #d4c4a8;
  
  /* Primary HAIR palette */
  --yellow: #ffd700;
  --yellow-warm: #ffb800;
  --red: #e63946;
  --red-deep: #c1121f;
  --green: #2d9f5d;
  --green-bright: #40c463;
  --orange: #ff8c42;
  
  /* Legacy mappings */
  --accent: var(--red);
  --accent-2: var(--yellow);
  --accent-3: var(--green);
  
  --border: rgba(255, 215, 0, 0.2);
  --glass: rgba(255, 215, 0, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  
  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-family: var(--font-body);
}

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

body {
  margin: 0;
  background: 
    linear-gradient(135deg, 
      #8b2a18 0%, 
      #8a3522 20%,
      #8a4528 40%,
      #8a5030 60%,
      #7a4825 80%,
      #5a3820 100%
    );
  background-attachment: fixed;
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Peace Sign Background */
body::before {
  content: "☮";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60vw;
  color: rgba(255, 215, 0, 0.03);
  pointer-events: none;
  z-index: 0;
}

/* ===== MARQUEE BANNER ===== */
.marquee-banner {
  background: linear-gradient(90deg, var(--red), var(--red-deep), var(--red));
  color: var(--ink);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.marquee-content {
  display: inline-flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

p {
  margin: 0;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 72px;
}

.top-bar {
  position: relative;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  background: rgba(26, 10, 10, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  letter-spacing: 0.08em;
}

.top-bar .brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

.brand-logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

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

.nav-left {
  flex: 1;
}

.nav a {
  padding: 8px 10px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
  background: var(--glass);
}

.top-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.quote-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  background: rgba(26, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.quote-marquee--mid {
  margin-top: 0;
  padding: 24px 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.04), rgba(26, 10, 10, 0.9));
}

.quote-marquee-track {
  display: inline-flex;
  gap: 0;
  animation: scroll-quotes 80s linear infinite;
}

.quote-marquee-track:hover {
  animation-play-state: paused;
}

.quote-marquee-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 4px 48px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 215, 0, 0.15);
}

.quote-marquee-item .qm-stars {
  color: var(--yellow);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  flex-shrink: 0;
}

.quote-marquee-item .qm-text {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  white-space: nowrap;
}

.quote-marquee-item .qm-source {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes scroll-quotes {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-direction: column;
}

.menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease;
}

.cta,
.ghost {
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.cta-primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-warm));
  color: #1a0a0a;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.cta-secondary {
  background: transparent;
  border-color: var(--yellow);
  color: var(--yellow);
}

.cta-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.cta-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.cta-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.cta-book {
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: #fff;
  box-shadow: 0 4px 20px rgba(45, 159, 93, 0.4);
}

.cta-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(45, 159, 93, 0.5);
}

.cta-icon {
  font-size: 1.1em;
}

.cta {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #1a0e0b;
  box-shadow: var(--shadow);
}

.cta:hover {
  transform: translateY(-2px);
}

.ghost {
  border-color: var(--border);
  background: var(--glass);
  color: var(--ink);
}

.ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  margin: 0 auto 42px;
}

.hero-visual {
  position: relative;
  height: 100%;
  aspect-ratio: 16 / 9;
  min-height: 460px;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.6s ease;
  opacity: 1;
  z-index: 1;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: hero-soft-zoom 5.6s ease-out forwards;
}

@keyframes hero-soft-zoom {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.07);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transform: none;
    transition: opacity 0.4s ease;
  }

  .hero-slide.active {
    animation: none;
    transform: none;
  }
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 10, 10, 0.3) 0%, rgba(26, 10, 10, 0) 30%, rgba(26, 10, 10, 0.6) 70%, rgba(26, 10, 10, 1) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Spotlight theatrical effect */
.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 30% 30%, rgba(255, 215, 0, 0.15), transparent 60%),
    radial-gradient(ellipse 40% 60% at 70% 50%, rgba(230, 57, 70, 0.1), transparent 50%);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Hero Title Overlay */
.hero-title-overlay {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  width: min(1000px, 90%);
}

.hero-logo {
  height: 104px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.hero-tagline {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-awards {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.award-badge {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-copy {
  margin-top: 0;
  padding: 12px 12px 8px;
}

.hero-copy.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 20px;
}

.hero-copy.centered .lede {
  margin: 0 auto;
}

.hero-copy.centered .hero-actions {
  justify-content: center;
}

.hero-copy.centered .stats {
  justify-content: center;
  max-width: 600px;
  margin: 24px auto 0;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  font-weight: 700;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 8px;
}

.stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 24px;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  display: block;
  color: var(--yellow);
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.1);
  padding: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 20% 10%, rgba(255, 127, 80, 0.18), transparent);
  pointer-events: none;
}

.hero-card .pill {
  margin-bottom: 12px;
}

.hero-card h3 {
  margin: 8px 0 12px;
}

.hero-card p {
  color: var(--muted);
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.card-label {
  color: var(--muted);
  margin: 0;
}

.card-value {
  margin: 2px 0 0;
  font-weight: 600;
}

.link {
  color: var(--green);
  font-weight: 600;
  transition: color 0.2s ease;
}

.link:hover {
  color: var(--green-bright);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 215, 0, 0.2), rgba(45, 159, 93, 0.15));
  color: var(--ink);
  font-weight: 600;
  border: 1px solid var(--border);
}

.pill.soft {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  margin: 72px 0;
}

.section-head h2,
.section-title {
  font-family: var(--font-display);
  margin: 4px 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 700;
}

.section-title em {
  font-style: italic;
  color: var(--yellow);
}

.section-head {
  max-width: 820px;
}

.section-head.centered {
  text-align: center;
  margin: 0 auto;
}

.section-head.centered .lede {
  margin: 0 auto;
}

.tour-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.tour-card {
  padding: 0;
  border: 2px solid var(--yellow);
  border-radius: calc(var(--radius) * 1.5);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(230, 57, 70, 0.03));
  overflow: hidden;
}

.tour-card.featured {
  box-shadow: 0 8px 40px rgba(255, 215, 0, 0.15);
  max-width: 500px;
  width: 100%;
}

.tour-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  color: #1a0a0a;
  font-weight: 700;
}

.season-badge {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.selling-fast {
  font-size: 0.8rem;
  background: var(--red);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.tour-card-body {
  padding: 20px;
}

.tour-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 6px;
}

.tour-card.gradient {
  background: linear-gradient(120deg, rgba(255, 127, 80, 0.1), rgba(140, 242, 231, 0.12));
}

.date {
  color: var(--yellow);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.body {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-range {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.price-range strong {
  font-size: 1.2rem;
  color: var(--ink);
}

.price-range .premium {
  color: var(--yellow);
}

.tour-actions {
  display: flex;
  gap: 12px;
  padding: 0 20px 20px;
  flex-wrap: wrap;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

/* Centered Story Content */
.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-content .eyebrow {
  margin-bottom: 16px;
}

.story-content .section-title {
  margin-bottom: 32px;
}

.story-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
  text-align: left;
}

.story-tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--yellow);
  margin-top: 32px;
  text-align: center;
}

/* Credits Section */
.credits-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.credits-presents {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.credits-logo {
  height: 100px;
  width: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.credits-tagline {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 48px;
  font-weight: 600;
}

.credits .section-title {
  font-family: var(--font-display);
  margin-bottom: 48px;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.credit-item {
  text-align: center;
}

.credit-name {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.credit-role {
  font-size: 0.95rem;
  color: var(--yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.credits-original {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 40px;
  font-style: italic;
}

@media (max-width: 768px) {
  .credits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .credit-name {
    font-size: 1.25rem;
  }
}

/* Video Section */
.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) * 1.5);
}

.video-thumbnail {
  display: block;
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.02);
}

.video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--bg);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.video-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 10, 10, 0.9);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  border: 1px solid var(--border);
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--panel-strong), var(--panel));
  border: 2px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.video-placeholder:hover {
  border-color: var(--yellow);
  transform: scale(1.01);
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--bg);
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.video-placeholder p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0;
}

/* Quotes section styles moved to .quote-marquee */

.story-block {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.story-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-top: 0;
  color: var(--yellow);
}

.story-block ul {
  margin: 12px 0;
  color: var(--muted);
  padding-left: 18px;
}

.quote {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  line-height: 1.4;
}

.quote span {
  display: block;
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.cast-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(18, 16, 32, 0.75);
}

.cast-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.8), rgba(255, 216, 53, 0.7));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #1c0f0a;
  letter-spacing: 0.03em;
}

.avatar.hot {
  background: linear-gradient(135deg, rgba(140, 242, 231, 0.8), rgba(255, 127, 80, 0.8));
}

.role {
  margin: 2px 0 0;
  color: var(--muted);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.music-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
}

.music-card.highlight {
  background: linear-gradient(140deg, rgba(255, 127, 80, 0.12), rgba(140, 242, 231, 0.18));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.tracklist {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  display: grid;
  gap: 10px;
}

.tracklist li {
  display: grid;
  grid-template-columns: 32px 1fr 60px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.tracklist .time {
  text-align: right;
  color: var(--muted);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.badges span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 160px;
  border: 1px solid var(--border);
}

.gallery-card.tall {
  min-height: 240px;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.bg-main {
  background: url("assets/gallary/1029.jpg");
  background-size: cover;
  background-position: center;
}

.gallery-card.bg-alt {
  background: url("assets/gallary/3374.jpg");
  background-size: cover;
  background-position: center;
}

.gallery-card.bg-third {
  background: url("assets/gallary/4693.jpg");
  background-size: cover;
  background-position: center;
}

.gallery-card.bg-fourth {
  background: url("assets/gallary/2839.jpg");
  background-size: cover;
  background-position: center;
}

.visit-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.details {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  color: var(--muted);
}

.details li {
  margin-bottom: 6px;
}

.visit-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-start;
}

.newsletter-card {
  border: 2px solid var(--green);
  border-radius: calc(var(--radius) * 1.5);
  padding: 32px;
  background: linear-gradient(135deg, rgba(45, 159, 93, 0.08), rgba(255, 215, 0, 0.05));
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 1fr;
}

.newsletter-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 4px 0 12px;
}

/* Gift Voucher Section */
.gift-vouchers {
  margin-top: 48px;
}

.gift-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-radius: calc(var(--radius) * 1.5);
  background: linear-gradient(135deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--border);
}

.gift-icon {
  font-size: 2.5rem;
}

.gift-content {
  flex: 1;
}

.gift-content h3 {
  font-family: var(--font-display);
  margin: 0 0 4px;
  font-size: 1.3rem;
}

.gift-content p {
  color: var(--muted);
  margin: 0;
}

/* Ticket Strip */
.ticket-strip {
  background: linear-gradient(90deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 20px 28px;
  margin-bottom: 24px;
}

.ticket-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ticket-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ticket-venue {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.ticket-dates {
  color: var(--yellow);
  font-weight: 600;
}

.ticket-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.quote-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(26, 10, 10, 0.9));
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.quote-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.quote-card p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}

.quote-card .stars {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 1.1rem;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.form input {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.16);
  color: var(--ink);
  font-size: 1rem;
}

.form input:focus {
  outline: 2px solid rgba(255, 215, 0, 0.6);
  border-color: transparent;
}

/* ===== SUBPAGE STYLES ===== */
.subpage {
  padding-top: 40px;
}

.page-hero {
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.1;
}

.page-title em {
  color: var(--yellow);
  font-style: italic;
}

.page-intro {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CTA Banner for subpages */
.cta-banner {
  margin-top: 60px;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 24px;
  text-align: center;
}

.cta-banner-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 12px;
}

.cta-banner-content p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 1.1rem;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact CTA for FAQ page */
.contact-cta {
  margin-top: 40px;
  padding: 40px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.contact-cta-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.contact-cta-content p {
  color: var(--muted);
  margin: 0 0 20px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* View Bio Button */
.view-bio {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 20px;
  transition: all 0.2s ease;
}

.person-card[role="button"] {
  cursor: pointer;
}

.person-card[role="button"]:hover .view-bio {
  background: var(--yellow);
  color: var(--bg);
}

/* Compact cards for Creatives and ASC */
.people-grid.compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.people-grid.compact:last-child {
  margin-bottom: 0;
}

.people-grid.compact .person-card {
  flex: 0 1 180px;
}

.creatives-section,
.asc-section {
  margin-top: 48px;
}

.person-card.compact-card {
  padding: 20px 16px;
  cursor: pointer;
}

.person-card.compact-card .person-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.person-card.compact-card .person-role {
  font-size: 0.85rem;
  margin: 0;
}

.person-card.compact-card:hover {
  border-color: var(--yellow);
}

/* Bio Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--ink);
}

.lightbox-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
}

.lightbox-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--yellow);
}

.lightbox-image .person-image {
  width: 150px;
  height: 150px;
  margin: 0;
}

.lightbox-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 8px;
  color: var(--ink);
}

.lightbox-role {
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 20px;
}

.lightbox-bio {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Featured video section */
.featured-video {
  margin-top: 60px;
}

.featured-video .video-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== CAST & CREATIVES SECTION ===== */
.cast-creatives {
  padding: 60px 0;
}

.subsection-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--yellow);
  margin: 40px 0 24px;
  text-align: center;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.person-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.billing-line {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  opacity: 0.85;
}

.cast-coming-soon {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.cast-coming-soon p {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.1);
}

.person-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--yellow);
}

.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.person-card:hover .person-image img {
  filter: grayscale(0%);
}

.person-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  font-size: 2.5rem;
}

.person-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 4px;
  color: var(--ink);
}

.person-role {
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.person-bio {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== SIGHTS & SOUNDS SECTION ===== */
.sights-sounds {
  padding: 60px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.video-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.1);
}

.video-card .video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
}

.video-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 215, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg);
  transition: transform 0.3s ease;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 16px 16px 8px;
  color: var(--ink);
}

.video-description {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 16px 16px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 0 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery Lightbox */
.gallery-lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  padding: 0;
  background: transparent;
  border: none;
}

.gallery-lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-strong) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.gallery-placeholder span {
  font-size: 3rem;
  margin-bottom: 8px;
}

/* ===== FAQs SECTION ===== */
.faqs {
  padding: 60px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  transition: background 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: var(--panel-strong);
}

.faq-icon {
  color: var(--yellow);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  border-bottom: 1px solid var(--border);
}

.faq-answer {
  padding: 20px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .person-card {
    padding: 16px;
  }
  
  .person-image {
    width: 80px;
    height: 80px;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    padding: 16px;
  }
  
  .faq-answer {
    padding: 16px;
  }
}

.smallprint {
  color: var(--muted);
  font-size: 0.85rem;
}

.form-message {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.form-message:empty {
  display: none;
}

.form-message.success {
  background: rgba(45, 159, 93, 0.2);
  border: 1px solid var(--green);
  color: #4ade80;
}

.form-message.error {
  background: rgba(230, 57, 70, 0.2);
  border: 1px solid var(--red);
  color: #f87171;
}

.footer {
  margin-top: 80px;
  padding: 32px 0;
  border-top: 2px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-tagline {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.footer-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-meta .photo-credit {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 8px;
}

.social {
  display: flex;
  gap: 16px;
}

.social a {
  transition: color 0.2s ease;
}

.social a:hover {
  color: var(--green);
}

.section.story {
  margin-top: 80px;
}

/* Songs Marquee */
.songs-marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red), var(--orange), var(--yellow));
  padding: 12px 0;
}

.songs-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-songs 60s linear infinite;
}

.songs-marquee-track span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@keyframes scroll-songs {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .marquee-banner {
    font-size: 0.75rem;
  }
  
  .top-bar {
    width: calc(100% - 24px);
    margin: 12px auto;
    padding: 10px 16px;
  }
  
  .top-bar .brand {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 0;
  }
  
  .brand-sub {
    display: none;
  }

  .nav {
    position: absolute;
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    background: rgba(26, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: none;
    z-index: 100;
    gap: 8px;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--ink);
    text-align: center;
    transition: background 0.2s ease;
  }
  
  .nav a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--yellow);
  }

  .nav.open {
    display: flex;
  }

  .menu {
    display: inline-flex;
  }
  
  .menu.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
  }
  
  .menu.active span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  
  .top-actions .ghost {
    display: none;
  }

  .hero {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 50vh;
    aspect-ratio: auto;
  }
  
  .hero-title-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 30px 20px 20px;
    background: var(--bg);
  }
  
  .hero-logo {
    height: 80px;
  }
  
  .hero-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }
  
  .hero-headline {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
    line-height: 1.1;
  }
  
  .hero-awards {
    display: none;
  }
  
  .quote-marquee {
    margin-top: 0;
    padding: 14px 0;
  }
  
  .quote-marquee-item .qm-text {
    font-size: 0.85rem;
  }
  
  .quote-marquee-item .qm-source {
    font-size: 0.75rem;
  }
  
  .video-thumbnail .play-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .video-label {
    font-size: 0.85rem;
    padding: 8px 16px;
    bottom: 12px;
  }

  .card-row {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .tour-card {
    grid-template-columns: 1fr;
  }

  .gallery-card.wide {
    grid-column: span 1;
  }

  .visit-card,
  .newsletter-card {
    grid-template-columns: 1fr;
  }
  
  .ticket-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .gift-card {
    flex-direction: column;
    text-align: center;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-meta {
    flex-direction: column;
    text-align: center;
  }
}

/* ── TOUR DATES / VENUES ── */
.tour-dates {
  padding: 60px 20px;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.venue-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.1);
}

.venue-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), var(--panel));
}

.venue-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--yellow);
  color: var(--bg);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.venue-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}

.venue-location {
  color: var(--muted);
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.venue-address {
  color: var(--muted);
  margin: 0 0 12px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.venue-dates {
  color: var(--yellow);
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.venue-price {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 0.9rem;
}

.venue-card .cta {
  display: inline-block;
  margin-top: 8px;
}

.tour-coming-soon {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}

.tour-coming-soon a {
  color: var(--yellow);
}

/* Progressive enhancement: reveal + lazy media fade-in */
.reveal-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

img.lazy-media {
  opacity: 0.001;
  transition: opacity 420ms ease;
}

img.lazy-media.is-loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  img.lazy-media {
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 640px) {
  .venues-grid {
    grid-template-columns: 1fr;
  }
  
  .venue-card {
    padding: 24px;
  }
}
