/* ===== ACCESSIBILITY HARDENING (audit 2026-05-25) ===== */

/* Skip-to-content link — invisible by default, visible on keyboard focus.
   First focusable element on the page so screen reader + keyboard users
   can bypass the long nav. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  background: #c9a84c;
  color: #080808;
  padding: 0.85rem 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 0 0 6px 0;
  transition: top 0.15s ease-out;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: -3px;
}

/* Honor user preference for reduced motion (WCAG 2.1 SC 2.3.3).
   Drastically reduces animation duration without breaking layout. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Universal keyboard focus indicator (WCAG 2.4.7 — focus visible).
   The site has several `outline: none` rules on form inputs + details
   summary that remove the default focus ring. This :focus-visible rule
   restores a CLEAR gold focus indicator for keyboard-focus ONLY (mouse
   focus is unaffected, so this doesn't bother sighted/mouse users).
   `:focus-visible` is the modern accessibility-safe approach. */
:focus-visible {
  outline: 2px solid #c9a84c !important;
  outline-offset: 2px !important;
  border-radius: 2px;
}
/* Don't double-up the outline on the skip-link (it has its own custom focus style) */
.skip-link:focus-visible {
  outline-offset: -3px !important;
}

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #8b6914;
  --black: #080808;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --grey: #888;
  --light-grey: #ccc;
  --white: #f5f5f5;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-desc { color: var(--grey); max-width: 540px; font-size: 1rem; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  font-family: var(--font-body);
}

.btn-primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.85rem; }
.btn-full { width: 100%; text-align: center; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
}

#navbar.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(14px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-img { max-height: 45px; width: auto; display: block; }
.logo-done { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.08em; color: var(--gold); }
.logo-digital { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.28em; color: var(--white); opacity: 0.6; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.05rem;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links > li { position: relative; flex: 0 0 auto; }

/* Invisible hover bridge so the dropdown stays open as the mouse moves down */
.nav-links > li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.6rem;
}

.nav-links > li > a {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.72);
  padding: 0.55rem 0.42rem;
  display: inline-block;
  position: relative;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

/* Underline indicator on hover (anchored to the link, doesn't shift layout) */
.nav-links > li > a::before {
  content: '';
  position: absolute;
  left: 0.42rem;
  right: 0.42rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links > li > a:hover { color: var(--gold); }
.nav-links > li > a:hover::before { transform: scaleX(1); }

/* Dropdown caret rendered via CSS instead of a stray ▾ character in markup */
.nav-links > li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0.34em;
  height: 0.34em;
  margin-left: 0.4em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.15em) rotate(45deg);
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.nav-links > li.has-dropdown:hover > a::after {
  transform: translateY(0) rotate(225deg);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  background: rgba(14,14,14,0.98);
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  list-style: none;
  padding: 0.75rem 0 0.5rem 0;
  backdrop-filter: blur(12px);
  z-index: 100;
  pointer-events: none;
}

.has-dropdown:hover .dropdown {
  display: block;
  pointer-events: auto;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  color: var(--grey);
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.04em;
}

.dropdown li a:hover { color: var(--gold); background: rgba(201,168,76,0.05); }

.dropdown-header {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.75rem 1.25rem 0.3rem;
  opacity: 0.8;
}

/* CTA buttons in the nav (Internships, Book a Call) — solid gold pill */
.nav-links > li > a.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.55rem 0.62rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-links > li > a.nav-cta:hover {
  background: var(--gold-light);
  color: var(--black);
}
/* Don't underline the CTA on hover — the solid fill is the affordance */
.nav-links > li > a.nav-cta::before { display: none; }

/* Separator gap appears before the first CTA only, grouping the CTAs visually */
.nav-links > li:has(> a.nav-cta) + li:not(:has(> a.nav-cta)),
.nav-links > li:not(:has(> a.nav-cta)) + li:has(> a.nav-cta) {
  margin-left: 0.4rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.28s; }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.slides-wrap { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.07) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.6) 100%);
}

/* grid texture */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px);
  pointer-events: none;
}

.slide-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 2rem;
  animation: none;
}

.slide.active .slide-content > * {
  animation: slideUp 0.7s ease forwards;
}
.slide.active .slide-content > *:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
.slide.active .slide-content > *:nth-child(2) { animation-delay: 0.25s; opacity: 0; }
.slide.active .slide-content > *:nth-child(3) { animation-delay: 0.4s; opacity: 0; }
.slide.active .slide-content > *:nth-child(4) { animation-delay: 0.55s; opacity: 0; }

.slide-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.35rem 1rem;
}

.slide-content h1,
.slide-content h2 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.slide-content h1 span,
.slide-content h2 span { color: var(--gold); }

.slide-content p {
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.55);
  margin-bottom: 2.5rem;
}

.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 5;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.dot.active { background: var(--gold); transform: scale(1.3); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8,8,8,0.5);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  font-size: 2rem;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
  line-height: 1;
}

.slider-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.prev { left: 2rem; }
.next { right: 2rem; }

/* ===== SERVICES ===== */
.services { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}

.service-card {
  background: var(--dark);
  padding: 2.25rem 1.75rem;
  transition: background 0.25s;
  cursor: default;
  scroll-margin-top: 110px;
}

.service-card:target {
  background: var(--dark-2);
  box-shadow: inset 3px 0 0 var(--gold);
  animation: serviceFlash 1.6s ease-out;
}
@keyframes serviceFlash {
  0% { box-shadow: inset 3px 0 0 var(--gold), 0 0 0 4px rgba(201, 168, 76, 0.35); }
  100% { box-shadow: inset 3px 0 0 var(--gold), 0 0 0 0 rgba(201, 168, 76, 0); }
}

.service-card:hover { background: var(--dark-2); }
.service-card:hover .service-icon { transform: scale(1.15); }

.service-icon {
  font-size: 1.9rem;
  margin-bottom: 0.9rem;
  display: block;
  transition: transform 0.25s;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-card p { font-size: 0.85rem; color: var(--grey); line-height: 1.65; }

/* ===== ABOUT ===== */
.about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border: 2px solid rgba(201,168,76,0.25);
  overflow: hidden;
  position: relative;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.about-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #181818 0%, #242424 50%, #181818 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem;
  gap: 0.35rem;
}

.img-label { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.12em; color: var(--gold); }
.img-sub { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); }

.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 96px; height: 96px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.badge-year { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; color: var(--black); }
.badge-num { font-family: var(--font-display); font-size: 1.75rem; line-height: 1; color: var(--black); }

.about-text p { color: #aaa; margin-bottom: 1.2rem; font-size: 0.97rem; }
.about-text strong { color: var(--white); }
.about-text em { color: var(--gold); font-style: normal; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.stat-num { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat-label { display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-top: 0.25rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); }

.testimonial-slider { position: relative; overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 3rem 4rem;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-slide p {
  font-size: 1.05rem;
  color: var(--light-grey);
  font-style: italic;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.attr-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.attr-title { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.t-arrow {
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 1.5rem;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.t-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.t-dots { display: flex; gap: 0.5rem; }

.t-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

.t-dot.active { background: var(--gold); }

/* ===== STUDIO FEATURE BANNERS ===== */
.studio-feature {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}
.studio-feature-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.studio-feature:hover .studio-feature-img { transform: scale(1); }
.studio-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 4rem;
}

/* ===== ARTISTS ===== */
.artists { background: var(--dark); }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.artist-card-link {
  display: block;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.artist-card-link:hover {
  transform: translateY(-12px);
}

.artist-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.artist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.artist-card-link:hover .artist-card {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.15), 0 0 30px rgba(201, 168, 76, 0.1);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(33, 33, 33, 0.95) 100%);
}

.artist-card-link:hover .artist-card::before {
  opacity: 1;
}

.artist-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.artist-card-link:hover .artist-img {
  transform: scale(1.08);
}

.artist-img-inner {
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.artist-name-overlay {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: rgba(201,168,76,0.7);
}

.artist-info { padding: 1.5rem; }

.artist-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.artist-role {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.artist-info p { font-size: 0.88rem; color: var(--grey); line-height: 1.65; margin-bottom: 1rem; }

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.artist-tags span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.2rem 0.6rem;
  color: var(--grey);
}

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--black); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.portfolio-item:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); }

.portfolio-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.portfolio-year {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.18);
  color: var(--gold);
  padding: 0.25rem 0.65rem;
}

.portfolio-icon { font-size: 2.5rem; opacity: 0.6; }

.portfolio-info { padding: 1.25rem; }

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.portfolio-info p { font-size: 0.78rem; color: var(--grey); margin-bottom: 0.75rem; }

.portfolio-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.2s;
}

.portfolio-link:hover { letter-spacing: 0.18em; }

/* ===== PRODUCTION SHOWCASE ===== */
.production-showcase { background: var(--black); }

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

@media (max-width: 768px) {
  .productions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.production-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark-2);
  transition: all 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  display: flex;
  flex-direction: column;
}

.production-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}

.production-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--dark-3);
  overflow: hidden;
  position: relative;
}

.production-cover-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
}

.production-info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.production-info h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

.production-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.production-tag {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 3px;
}

.production-credit {
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
  margin-top: auto;
}

.production-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: letter-spacing 0.3s;
}

.production-link:hover { letter-spacing: 0.18em; }

/* ===== PRESS CTA ===== */
.press-cta {
  position: relative;
  background: linear-gradient(135deg, #0d0900 0%, #1a1200 40%, #0d0900 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.press-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,168,76,0.04) 60px, rgba(201,168,76,0.04) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.04) 60px, rgba(201,168,76,0.04) 61px);
}

.press-cta-overlay {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.press-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.press-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.press-cta-text p { color: var(--grey); font-size: 0.95rem; max-width: 540px; }

/* ===== BLOG ===== */
.blog { background: var(--dark); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.blog-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }

.blog-img { height: 200px; }

.blog-content { padding: 1.75rem; }

.blog-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.65rem;
}

.blog-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.blog-content p { font-size: 0.85rem; color: var(--grey); line-height: 1.65; margin-bottom: 1.25rem; }

.read-more {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.2s;
}
.read-more:hover { letter-spacing: 0.2em; }

/* ===== SOCIAL FEEDS ===== */
.social-feeds { background: var(--black); }

.feeds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.feed-container {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.feed-container:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.1);
  transform: translateY(-4px);
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feed-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.feed-icon {
  font-size: 1.4rem;
  opacity: 0.8;
}

.feed-content {
  padding: 0.75rem;
  background: rgba(17, 17, 17, 0.5);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feed-content iframe {
  border-radius: 2px;
}

.feed-cta {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
}

.feed-cta .btn {
  transition: all 0.3s ease;
}

.feed-cta .btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
}

/* ===== CONTACT ===== */
.contact { background: var(--black); }

.contact-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold);
  padding: 1.25rem 2rem;
  margin-bottom: 5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-cta-bar p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--black);
}

.cta-phone {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
  background: var(--black);
  color: var(--gold);
  padding: 0.5rem 1.5rem;
  transition: background 0.2s;
}

.cta-phone:hover { background: #1a1a1a; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-left p { color: var(--grey); margin-bottom: 2rem; font-size: 0.97rem; }

.contact-details { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: #aaa; }
.contact-icon { font-size: 1rem; }

.social-links { display: flex; gap: 0.6rem; }

.social-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--grey);
  transition: all 0.2s;
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.07); }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option,
.form-group select optgroup { background: #1a1a1a; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,136,136,0.45); }

/* ===== PAYMENT MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  background: rgba(8, 8, 8, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  max-width: 420px;
  width: 100%;
  /* Cap height so tall modals (checkout form) can scroll instead of overflowing
     past the viewport. 3rem accounts for the 1.5rem top/bottom padding on .modal. */
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  /* iOS momentum scrolling */
  -webkit-overflow-scrolling: touch;
  padding: 2.5rem 2rem;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.1);
}

/* Anchor close button to the top-right of the scrollable modal content.
   position: absolute relative to .modal-content (which is position: relative).
   This means it scrolls with content; user can scroll back up to dismiss,
   or press Escape, or click the dimmed backdrop. */
.modal-content .modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
}

/* On narrow phones, shrink the modal-content padding so the form has more
   room and the submit button is reachable without horizontal squeeze. */
@media (max-width: 480px) {
  .modal { padding: 0.5rem; align-items: flex-start; }
  .modal-content { padding: 1.5rem 1.1rem; max-height: calc(100dvh - 1rem); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.2;
}

.modal-beat-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--gold);
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group-modal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-modal label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group-modal input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
  border-radius: 4px;
}

.form-group-modal input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
}

.form-group-modal input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Stripe Card Element Styling */
#card-element {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: all 0.2s;
}

#card-element.StripeElement--focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
}

.card-errors {
  color: #ff4444;
  font-size: 0.85rem;
  margin-top: -0.8rem;
  min-height: 1.2rem;
  font-weight: 500;
}

.price-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  margin: 0.5rem 0;
}

.price-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

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

.payment-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  margin-top: 0.5rem;
}

.payment-method-toggle {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.payment-method-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.payment-method-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

.payment-method-btn.active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.btn-pay {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  margin-top: 0.5rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-pay:hover:not(:disabled) {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.btn-pay:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-pay.loading {
  pointer-events: none;
}

.payment-success {
  text-align: center;
  padding: 2rem 1.5rem;
}

.payment-success-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: float 2s ease-in-out infinite;
}

.payment-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.payment-success p {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.payment-error {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff6b6b;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 0 3rem;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand p { font-size: 0.78rem; color: var(--grey); line-height: 1.9; margin-top: 0.85rem; }
.footer-brand .logo-img { max-height: 55px; width: auto; display: block; }

.footer-links { display: flex; gap: 4rem; }

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.83rem; color: #555; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom { padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.72rem; color: #3a3a3a; letter-spacing: 0.04em; }

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpGlow {
  from { opacity: 0; transform: translateY(20px); box-shadow: 0 0 20px rgba(201, 168, 76, 0); }
  to   { opacity: 1; transform: translateY(0); box-shadow: 0 0 20px rgba(201, 168, 76, 0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.3), 0 0 20px rgba(201, 168, 76, 0.1); }
  50% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.5), 0 0 30px rgba(201, 168, 76, 0.2); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== ENHANCED CINEMATIC ANIMATIONS ===== */
@keyframes revealFromLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes revealFromRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes revealFromTop {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pageTransition {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-left.visible { animation: revealFromLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-right.visible { animation: revealFromRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

/* ===== PRICING SECTION ===== */
.pricing-section { background: #0a0a0a; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* Social proof placed right at the pricing decision point */
.pricing-proof {
  max-width: 660px;
  margin: 2rem auto 0;
  padding: 1.5rem 1.75rem 1.5rem 2rem;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  text-align: center;
  position: relative;
}
.pricing-proof-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0;
  color: var(--gold);
  opacity: 0.45;
  display: block;
  height: 1.2rem;
}
.pricing-proof-text {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 0.85rem;
}
.pricing-proof-attr {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}
.pricing-proof-name { color: var(--gold); font-weight: 700; }

@media (max-width: 600px) {
  .pricing-proof { padding: 1.25rem 1.1rem; }
  .pricing-proof-text { font-size: 0.92rem; }
}
.pricing-card {
  background: linear-gradient(180deg, #181818 0%, #0e0e0e 100%);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: #e63946;
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.15);
}
.pricing-card-featured {
  background: linear-gradient(180deg, #1a0f10 0%, #120608 100%);
  border-color: #e63946;
  position: relative;
}
.pricing-card-featured::before {
  content: "Most Popular";
  position: absolute;
  top: -10px;
  right: 1.5rem;
  background: #e63946;
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 12px;
  text-transform: uppercase;
}
.pricing-tier {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e63946;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 1.5px;
  margin: 0 0 0.5rem 0;
  color: #fff;
}
.pricing-desc {
  color: #aaa;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  min-height: 2.5rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}
.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #1f1f1f;
  color: #ccc;
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.5rem;
}
.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #e63946;
  font-weight: 700;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin: 0.5rem 0 1.25rem 0;
}
.btn-full { width: 100%; text-align: center; }

/* ===== TESTIMONIALS STATIC GRID (duplicate testimonials block) ===== */
.testimonials-static-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: linear-gradient(180deg, #161616 0%, #0c0c0c 100%);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #e63946;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-card p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.testimonial-card .testimonial-attr {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #222;
  padding-top: 1rem;
}
.testimonial-card .attr-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-card .attr-title {
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* ===== FAQ SECTION ===== */
.faq-section { background: #0a0a0a; }
.faq-list {
  max-width: 820px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: linear-gradient(180deg, #161616 0%, #0e0e0e 100%);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: #333; }
.faq-item[open] { border-color: #e63946; }
.faq-item summary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #e63946;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  color: #ccc;
  line-height: 1.7;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.faq-item a { color: #e63946; }

/* ===== AUTH MODAL ===== */
/* Sign In / account chip — outlined to differentiate from solid CTAs.
   Padding subtracts 1px to compensate for the border so total height
   matches the CTAs and regular tabs. */
.nav-links > li > a.nav-account {
  color: #fff;
  padding: calc(0.55rem - 1px) 0.75rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-left: 0.35rem;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.nav-links > li > a.nav-account:hover {
  border-color: var(--gold);
  color: var(--gold);
}
/* No underline indicator on the account chip — the border is the frame */
.nav-links > li > a.nav-account::before { display: none; }

.nav-account[data-logged-in="1"] {
  background: rgba(230,57,70,0.15);
  border-color: #e63946 !important;
  color: #fff !important;
}
.auth-tabs { display: flex; gap: 0.5rem; }
.auth-tab {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid #222;
  border-radius: 8px;
  color: #aaa;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
}
.auth-tab.active {
  background: rgba(230,57,70,0.15);
  border-color: #e63946;
  color: #fff;
}
.auth-error {
  color: #e63946;
  font-size: 0.85rem;
  margin: 0.5rem 0;
  min-height: 1rem;
}
.auth-success {
  color: #86efac;
  font-size: 0.85rem;
  margin: 0.5rem 0;
  min-height: 1rem;
}

/* ===== ACCOUNT DASHBOARD MODAL ===== */
.account-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid #222;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
}
.account-tab {
  padding: 0.6rem 1rem;
  background: transparent;
  border: 1px solid transparent;
  color: #888;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.9rem;
  border-radius: 6px;
}
.account-tab:hover { color: #fff; }
.account-tab.active {
  background: rgba(230,57,70,0.15);
  border-color: rgba(230,57,70,0.4);
  color: #fff;
}
.account-tab-logout {
  margin-left: auto;
  color: #666;
}
.account-tab-logout:hover { color: #e63946; }

.account-panel { display: none; min-height: 200px; }
.account-panel.active { display: block; }
.account-loading { color: #888; text-align: center; padding: 2rem 0; }
.account-error { color: #e63946; text-align: center; padding: 1rem 0; }
.account-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #ccc;
}
.account-empty p:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.account-order {
  background: rgba(255,255,255,0.03);
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.account-order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.account-order-type {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e63946;
  font-weight: 700;
}
.account-order-status {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.status-pending { background: rgba(234,179,8,0.15); color: #fde047; }
.status-paid, .status-succeeded { background: rgba(34,197,94,0.15); color: #86efac; }
.status-submitted, .status-processing { background: rgba(99,102,241,0.15); color: #c7d2fe; }
.status-fulfilled, .status-shipped, .status-delivered { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.status-failed, .status-canceled, .status-refunded { background: rgba(230,57,70,0.15); color: #fca5a5; }
.account-order h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin: 0 0 0.5rem 0;
  color: #fff;
}
.account-order-meta {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}
.account-order-notes {
  color: #ccc;
  font-size: 0.85rem;
  margin: 0.5rem 0 0 0;
  font-style: italic;
}
.account-file {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.account-file-info { flex: 1; min-width: 0; }
.account-file-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  word-break: break-all;
  margin-bottom: 0.2rem;
}
.account-file-meta {
  color: #888;
  font-size: 0.8rem;
}
.account-file-cat {
  background: rgba(230,57,70,0.15);
  color: #fca5a5;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.account-file-desc {
  color: #ccc;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  font-style: italic;
}
.account-file-dl {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  white-space: nowrap;
}
.account-profile p {
  margin: 0.5rem 0;
  color: #ccc;
}
.account-profile h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .account-tabs { gap: 0.25rem; }
  .account-tab { font-size: 0.8rem; padding: 0.5rem 0.65rem; }
}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter-section { background: #050505; }
.newsletter-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a0f10 0%, #0e0608 100%);
  border: 1px solid #e63946;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(230, 57, 70, 0.18);
}
.newsletter-inner {}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #e63946;
  background: rgba(255,255,255,0.08);
}
.newsletter-form .btn {
  padding: 0.85rem 1.75rem;
  white-space: nowrap;
}
.newsletter-message {
  margin: 1.25rem 0 0 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.newsletter-message.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}
.newsletter-message.error {
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.4);
  color: #fca5a5;
}
.newsletter-tiny {
  color: #666;
  font-size: 0.75rem;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .newsletter-card { padding: 2rem 1.25rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
}

/* ===== TRUST BAR (under hero) ===== */
.trust-bar {
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 2.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  letter-spacing: 1px;
  color: #e63946;
  line-height: 1;
}
.trust-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 600;
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .trust-num { font-size: 2.25rem; }
  .trust-label { font-size: 0.7rem; }
}

/* ===== MERCH STOREFRONT ===== */
.merch-section { background: #0a0a0a; }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.merch-card {
  background: linear-gradient(180deg, #161616 0%, #0c0c0c 100%);
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.merch-card:hover {
  transform: translateY(-4px);
  border-color: #e63946;
}
.merch-card-img {
  aspect-ratio: 1;
  background: #1a1a1a;
}
.merch-card-info {
  padding: 1.25rem;
}
.merch-card-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin: 0 0 0.5rem 0;
  color: #fff;
}
.merch-card-meta {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== CART DRAWER ===== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #0a0a0a;
  border-left: 1px solid #222;
  z-index: 9999;
  transition: right 0.3s ease;
  box-shadow: -8px 0 32px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-inner { display: flex; flex-direction: column; height: 100%; }
.cart-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  color: #888;
  text-align: center;
  padding: 3rem 0;
}
.cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1f1f1f;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 64px;
  height: 64px;
  background: #1a1a1a;
  border-radius: 6px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  color: #fff;
  font-size: 0.9rem;
  margin: 0 0 0.25rem 0;
  font-weight: 500;
}
.cart-item-price {
  color: #e63946;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}
.cart-item-qty button {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
}
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #222;
  background: #080808;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}

@media (max-width: 768px) {
  .cart-drawer { max-width: 100%; }
}

/* ===== DIGITAL DOWNLOADS ===== */
.downloads-section { background: linear-gradient(180deg, #0a0a0a 0%, #0e0a0a 100%); }

/* ===== FROM THE VAULT CALLOUT =====
   Sits between the Music & Downloads section header and the grid.
   Establishes Done Deal Digital as a label with a real catalog of
   unreleased material — direct-to-fan launch hook. */
.vault-callout {
  margin: 2.5rem 0 0;
  padding: 0;
  position: relative;
}
.vault-callout-inner {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 50%, rgba(20,20,20,0.95) 100%);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 16px;
  padding: 2.25rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.vault-callout-inner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 220px; height: 220px;
  background: radial-gradient(circle at top right, rgba(201,168,76,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.vault-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.vault-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}
.vault-body {
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 75ch;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
.vault-body strong { color: #fff; font-weight: 600; }
.vault-flagship {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 1rem 0 0.6rem;
  padding: 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.vault-flagship-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  background: rgba(0,0,0,0.35);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.vault-flagship-list li {
  padding: 0.85rem 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  font-size: 0.95rem;
  font-style: italic;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.vault-flagship-list li:last-child { border-bottom: none; }
.vault-flagship-list li strong { color: var(--gold); font-style: normal; }
.vault-cta {
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  .vault-callout-inner { padding: 1.75rem 1.25rem 1.5rem; }
  .vault-title { font-size: 1.4rem; }
  .vault-body { font-size: 0.95rem; }
}

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

.download-card {
  background: linear-gradient(180deg, #181818 0%, #0e0e0e 100%);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.18);
}

.download-format-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.download-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.download-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}

.download-desc {
  color: #aaa;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.download-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.86rem;
  color: #bbb;
  line-height: 1.7;
}
.download-features li {
  padding: 0.15rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.download-features li:last-child { border-bottom: 0; }

.download-price-row {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.download-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.download-price-soon {
  font-size: 0.78rem;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-buy-btn {
  padding: 0.7rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.download-card-soon {
  opacity: 0.72;
}
.download-card-soon:hover {
  opacity: 0.95;
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: none;
}

.downloads-meta-note {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 2.5rem;
}
.downloads-meta-note a { color: var(--gold); }

/* Inline "Final sale" note under each buy button */
.download-final-sale {
  margin: 0.6rem 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  text-align: right;
}

/* Section-level policy block — explicit, visible point-of-sale notice */
.downloads-policy {
  max-width: 820px;
  margin: 1.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: rgba(230, 57, 70, 0.05);
  border: 1px solid rgba(230, 57, 70, 0.28);
  border-left: 3px solid #e63946;
  border-radius: 6px;
}
.downloads-policy-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e63946;
  margin-bottom: 0.4rem;
}
.downloads-policy p {
  margin: 0;
  color: #ccc;
  font-size: 0.88rem;
  line-height: 1.6;
}
.downloads-policy p strong { color: #fff; }
.downloads-policy a { color: var(--gold); }

@media (max-width: 768px) {
  .downloads-policy { padding: 1rem 1.1rem; margin-top: 1.25rem; }
  .downloads-policy p { font-size: 0.85rem; }
  .download-final-sale { font-size: 0.66rem; }
}

@media (max-width: 768px) {
  .downloads-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 1.75rem; }
  .download-card { padding: 1.5rem 1.25rem; }
  .download-name { font-size: 1.05rem; }
  .download-desc { font-size: 0.88rem; }
  .download-price { font-size: 1.4rem; }
}

/* ===== BEATSTARS STORE EMBED ===== */
.beats-section { background: #080808; }
.beatstars-embed-wrap {
  margin: 2.5rem auto 0;
  max-width: 1024px;
}
.beatstars-meta-link {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}
.beatstars-meta-link a { color: #e63946; }
@media (max-width: 768px) {
  .beats-section .container { padding-left: 0.5rem; padding-right: 0.5rem; }
}
.beatstars-cta {
  max-width: 720px;
  margin: 2.5rem auto 0;
}
.beatstars-cta-inner {
  background: linear-gradient(135deg, #1a0f10 0%, #120608 100%);
  border: 1px solid #e63946;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(230, 57, 70, 0.15);
}
.beatstars-cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.beatstars-cta-inner h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 0.75rem 0;
}
.beatstars-cta-inner p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.beatstars-cta-inner .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  display: inline-block;
}
.beatstars-meta {
  color: #888 !important;
  font-size: 0.8rem !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .beatstars-cta-inner { padding: 2rem 1.25rem; }
  .beatstars-cta-inner h3 { font-size: 1.5rem; }
  .beatstars-cta-inner .btn { width: 100%; }
}

/* ===== BOOKING SECTION ===== */
.booking-section { background: #080808; padding-bottom: 4rem; }
.booking-cta-card {
  max-width: 640px;
  margin: 2.5rem auto 1rem;
  background: linear-gradient(180deg, #1a0f10 0%, #120608 100%);
  border: 1px solid #e63946;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(230, 57, 70, 0.15);
}
.booking-cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.booking-cta-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 0.75rem 0;
}
.booking-cta-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  font-size: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.booking-cta-card .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  display: inline-block;
}
.booking-availability {
  color: #888 !important;
  font-size: 0.8rem !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
}
.booking-fallback {
  text-align: center;
  color: #888;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.booking-fallback a { color: #e63946; }

@media (max-width: 768px) {
  .booking-cta-card { padding: 2rem 1.25rem; }
  .booking-cta-card h3 { font-size: 1.5rem; }
  .booking-cta-card .btn { width: 100%; }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-card { padding: 1.5rem 1.25rem; }
  .testimonials-static-grid { grid-template-columns: 1fr; }
  .booking-embed .calendly-inline-widget { height: 600px !important; }

  /* Internship section — mobile */
  .internship-grid { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
  .internship-card { padding: 1.5rem 1.25rem; }
  .internship-card h3,
  .internship-card h4 { font-size: 1.15rem; margin: 0.6rem 0; }
  .internship-card p { font-size: 0.9rem; }
  .internship-icon { font-size: 2rem; }
  .internship-info { padding: 1.5rem 1.25rem; margin: 1.5rem 0; }
  .internship-info h3 { font-size: 1.2rem; margin-bottom: 1rem; }
  .internship-info li { font-size: 0.9rem; margin-bottom: 0.75rem; }
  .internship-cta { margin-top: 2rem; padding: 1rem 0; }
  .internship-cta p { font-size: 1rem; }
  .internship-form-wrapper { padding: 0 0.25rem; }
  .internship-form .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .internship-form .form-group input,
  .internship-form .form-group select,
  .internship-form .form-group textarea { font-size: 16px; padding: 0.8rem 0.9rem; } /* 16px prevents iOS auto-zoom */
}

.reveal-top { opacity: 0; transform: translateY(-40px); }
.reveal-top.visible { animation: revealFromTop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

/* Staggered animations for multiple elements */
.reveal-stagger { opacity: 0; transform: translateY(28px); }
.reveal-stagger.visible { animation: slideUp 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.reveal-stagger:nth-child(2).visible { animation-delay: 0.1s; }
.reveal-stagger:nth-child(3).visible { animation-delay: 0.2s; }
.reveal-stagger:nth-child(4).visible { animation-delay: 0.3s; }
.reveal-stagger:nth-child(5).visible { animation-delay: 0.4s; }
.reveal-stagger:nth-child(6).visible { animation-delay: 0.5s; }

/* Parallax effect for hero and sections */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Page transition animations for section entries */
section { animation: pageTransition 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Text reveal animation with character stagger (for titles) */
@keyframes textReveal {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.title-reveal { opacity: 0; }
.title-reveal.visible { animation: textReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

/* ===== INTERNSHIP SECTION ===== */
.internship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.internship-card {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(218, 165, 32, 0.05));
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.internship-card:hover {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(218, 165, 32, 0.1));
  border-color: rgba(218, 165, 32, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15);
}

.internship-card h3,
.internship-card h4 {
  color: #daa520;
  font-size: 1.3rem;
  margin: 1rem 0;
}

.internship-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

.internship-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.internship-info {
  background: rgba(218, 165, 32, 0.08);
  border-left: 4px solid #daa520;
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.internship-info h3 {
  color: #daa520;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.internship-info ul {
  list-style: none;
  padding: 0;
}

.internship-info li {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}

.internship-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
}

.internship-cta p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ===== INTERNSHIP APPLICATION FORM ===== */
.internship-apply-section {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.08), rgba(218, 165, 32, 0.03));
  border-top: 1px solid rgba(218, 165, 32, 0.2);
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.internship-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.internship-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.internship-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.internship-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.internship-form .form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

.internship-form .form-group input,
.internship-form .form-group select,
.internship-form .form-group textarea {
  background: var(--dark-2);
  border: 1px solid rgba(218, 165, 32, 0.3);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.internship-form .form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.internship-form .form-group select option,
.internship-form .form-group select optgroup {
  background: #1a1a1a;
}

.internship-form .form-group input:focus,
.internship-form .form-group select:focus,
.internship-form .form-group textarea:focus {
  border-color: #daa520;
}

.internship-form .form-group input::placeholder,
.internship-form .form-group textarea::placeholder {
  color: rgba(136, 136, 136, 0.45);
}

/* ===== CO-SIGNS / PLACEMENTS WALL ===== */
.cosign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.cosign-card {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cosign-card .cosign-cover {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.cosign-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
}

/* Mobile: match Company We Keep cards to Music & Downloads card size */
@media (max-width: 768px) {
  .cosign-grid { gap: 1rem; }
  .cosign-card { padding: 1.5rem 1.25rem; }
}

.cosign-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: #0c0c0c;
  background-size: cover;
  background-position: center;
}

.cosign-cover.is-placeholder {
  background: linear-gradient(135deg, #1a1100 0%, #2a1f00 50%, #1a1100 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(201,168,76,0.45);
}

.cosign-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.cosign-cert {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  z-index: 1;
  text-transform: uppercase;
}

.cosign-year {
  position: absolute; top: 0.85rem; right: 0.85rem;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  font-weight: 700;
  z-index: 1;
}

.cosign-body { padding: 1.15rem 1.35rem 1.4rem; }

.cosign-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.cosign-record {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  margin: 0 0 0.6rem;
  color: var(--white);
  line-height: 1.15;
}

.cosign-context {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 0.3rem;
  line-height: 1.4;
}

.cosign-role {
  color: #9b9b9b;
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.45;
}

/* ===== VIDEOS ===== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.video-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.video-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrap iframe,
.video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-info {
  padding: 0.85rem 1.05rem 1.05rem;
}

.video-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.video-info h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0.5rem 0 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .press-cta-inner { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .feeds-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { gap: 2.5rem; }
}

@media (max-width: 1240px) {
  /* Shrink-to-fit: tighten the 16-item nav further so it still fits on smaller laptops */
  .nav-inner { gap: 0.5rem; }
  .nav-links > li > a { font-size: 0.58rem; letter-spacing: 0.01em; padding: 0.55rem 0.24rem; }
  .nav-links > li > a::before { left: 0.24rem; right: 0.24rem; }
  .nav-links > li > a.nav-cta { padding: 0.55rem 0.4rem; }
}

@media (max-width: 768px) {
  /* ===== ENHANCED MOBILE NAVIGATION ===== */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,8,8,0.98) 0%, rgba(17,17,17,0.98) 100%);
    backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding-top: 60px;
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    animation: fadeInDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .nav-links > li {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .nav-links.open > li:nth-child(1) { animation-delay: 0.05s; }
  .nav-links.open > li:nth-child(2) { animation-delay: 0.1s; }
  .nav-links.open > li:nth-child(3) { animation-delay: 0.15s; }
  .nav-links.open > li:nth-child(4) { animation-delay: 0.2s; }
  .nav-links.open > li:nth-child(5) { animation-delay: 0.25s; }

  .nav-links > li > a {
    font-size: 1.05rem;
    min-height: 44px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-links > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .nav-links > li > a:hover {
    color: var(--gold);
  }

  .nav-links > li > a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }

  .dropdown { display: none !important; }

  .menu-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    transition: all 0.3s ease;
  }

  .menu-toggle:hover { transform: scale(1.05); }

  /* ===== MOBILE GRIDS ===== */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }

  /* ===== MOBILE ARTISTS SECTION ===== */
  .artist-img {
    min-height: 300px;
    background-position: center center !important;
  }
  .artist-info { padding: 1.25rem; }
  .artist-info h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
  .artist-role { font-size: 0.65rem; margin-bottom: 0.75rem; }
  .artist-info p { font-size: 0.85rem; line-height: 1.6; }
  .artist-name-overlay { font-size: 1.4rem; }

  /* ===== MOBILE LAYOUT ===== */
  .footer-top { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .feeds-grid { grid-template-columns: 1fr; }
  .feed-content { min-height: 300px; }
  .section { padding: 5rem 0; }
  .testimonial-slide { padding: 2.5rem 1.5rem; }
  .slider-arrow { display: none; }
  .contact-cta-bar { flex-direction: column; text-align: center; }

  /* ===== MOBILE BUTTONS ===== */
  .btn { min-height: 48px; }
}

@media (max-width: 480px) {
  /* ===== MOBILE BASE ===== */
  html { scroll-behavior: auto; }
  body { font-size: 15px; }
  .container { padding: 0 1.25rem; }

  /* ===== MOBILE NAVIGATION ===== */
  #navbar { padding: 1rem 0; }
  #navbar.scrolled { padding: 0.75rem 0; }
  .logo-img { width: 40px; height: 40px; }
  .menu-toggle { width: 32px; height: 32px; }
  .menu-toggle span { height: 3px; }

  /* ===== MOBILE BUTTONS ===== */
  .btn {
    padding: 0.95rem 1.75rem;
    font-size: 0.75rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-lg { padding: 1.1rem 2rem; min-height: 52px; }
  .btn-full { width: 100%; }

  /* ===== MOBILE TYPOGRAPHY ===== */
  .section-title { font-size: clamp(1.75rem, 5vw, 2.4rem); }
  .section-label { font-size: 0.65rem; }
  .section-desc { font-size: 0.9rem; line-height: 1.6; }

  /* ===== MOBILE SPACING ===== */
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* ===== MOBILE GRIDS ===== */
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
  .artists-grid { grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
  .footer-top { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }

  /* ===== MOBILE ARTISTS ===== */
  .artist-img { min-height: 280px; aspect-ratio: 4/3; }
  .artist-info { padding: 1.25rem; }
  .artist-info h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
  .artist-role { font-size: 0.6rem; margin-bottom: 0.65rem; }
  .artist-info p { font-size: 0.8rem; line-height: 1.55; margin-bottom: 0.75rem; }
  .artist-name-overlay { font-size: 1.2rem; }
  .artist-tags span { font-size: 0.55rem; padding: 0.35rem 0.6rem; }

  /* ===== MOBILE IMAGES ===== */
  img { max-width: 100%; height: auto; }
  .portfolio-img { min-height: 250px; }
  .hero-slider { height: 280px; }

  /* ===== MOBILE FORMS ===== */
  input, textarea, select {
    font-size: 16px !important;
    padding: 0.85rem 0.75rem;
    min-height: 44px;
  }
  input[type="submit"] { min-height: 48px; }

  /* ===== MOBILE LINKS & TOUCH ===== */
  a { padding: 0.25rem 0; }
  nav a { padding: 0.5rem 0; }
  .nav-links > li > a { padding: 0.75rem 0; font-size: 1rem; line-height: 1.5; }

  /* ===== MOBILE TESTIMONIALS ===== */
  .testimonial-slide { padding: 1.75rem 1.25rem; font-size: 0.95rem; }

  /* ===== MOBILE TEXT ===== */
  h1, h2, h3, h4 { word-spacing: 0.1em; }
  p { word-break: break-word; }

  /* ===== MOBILE HERO ===== */
  .hero-text h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .hero-text p { font-size: 0.9rem; }
}

/* ===== COOKIE CONSENT BANNER ===== */
#ddd-cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(8, 8, 8, 0.97);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(14px);
  padding: 1rem 1.25rem;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -12px 32px rgba(0,0,0,0.5);
}
#ddd-cookie-banner.ddd-cookie-banner--visible { transform: translateY(0); }

.ddd-cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ddd-cookie-banner__text {
  flex: 1 1 320px;
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.5;
}
.ddd-cookie-banner__text strong { color: var(--gold); margin-right: 0.3rem; }
.ddd-cookie-banner__text a { color: var(--gold); text-decoration: underline; }

.ddd-cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.ddd-cookie-btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.ddd-cookie-btn--decline {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: #ccc;
}
.ddd-cookie-btn--decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.ddd-cookie-btn--accept {
  background: var(--gold);
  color: var(--black);
}
.ddd-cookie-btn--accept:hover {
  background: var(--gold-light);
}

@media (max-width: 600px) {
  #ddd-cookie-banner { padding: 0.9rem 1rem; }
  .ddd-cookie-banner__inner { gap: 0.75rem; }
  .ddd-cookie-banner__text { font-size: 0.85rem; }
  .ddd-cookie-banner__actions { width: 100%; }
  .ddd-cookie-btn { flex: 1; padding: 0.7rem 0.5rem; font-size: 0.72rem; }
}

/* ===== WEEKLY ANNOUNCEMENTS ===== */
.weekly-live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #e63946;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: weekly-live-pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(230,57,70,0.85);
}
@keyframes weekly-live-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.35); }
}

.weekly-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 2.5rem;
  max-width: 980px;
  margin: 2.75rem auto 0;
  align-items: center;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.weekly-card-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}
.weekly-card-meta {
  color: #e63946;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.weekly-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin: 0 0 0.85rem;
  color: #fff;
}
.weekly-card-hosts {
  color: #ddd;
  font-size: 1rem;
  margin: 0 0 1.4rem;
}
.weekly-card-hosts strong { color: var(--gold); }
.weekly-guest-box {
  background: rgba(230,57,70,0.10);
  border: 1px solid rgba(230,57,70,0.35);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.5rem;
}
.weekly-guest-kicker {
  color: #aaa;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}
.weekly-guest-name {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  margin: 0;
}
.weekly-cta {
  display: inline-block;
  padding: 0.95rem 1.65rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.weekly-card-fineprint {
  margin: 0.95rem 0 0;
  font-size: 0.78rem;
  color: #888;
}

@media (max-width: 760px) {
  .weekly-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
    max-width: 480px;
  }
}

/* ===== DOWNLOAD CARD PREVIEW STATE ===== */
/* Cards already use display:flex / block layout — add position:relative so the
   ♪ playing badge can absolute-position inside without disrupting the card. */
.download-card[data-product-slug] { position: relative; }

.download-card.preview-playing {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.45), 0 8px 28px rgba(0,0,0,0.55);
}

.download-card.preview-playing::after {
  content: '♪';
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,8,0.78);
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  animation: preview-pulse 1.1s ease-in-out infinite;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

@keyframes preview-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.12); }
}

/* ===== DOWNLOAD CARD PLAY BUTTON ===== */
/* JS wraps every .download-cover in a .download-cover-wrap and inserts a
   .download-play-btn overlay. The button is the click target that satisfies
   the browser autoplay policy. */
.download-cover-wrap {
  position: relative;
  display: block;
  margin-bottom: 1rem;
  cursor: pointer;
}
.download-cover-wrap .download-cover {
  margin-bottom: 0; /* the wrap owns the spacing now */
}

.download-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(8,8,8,0.72);
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(4px);
  z-index: 4;
}
.download-cover-wrap:hover .download-play-btn,
.download-card.preview-playing .download-play-btn,
.download-play-btn:focus-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.download-play-btn:hover {
  background: rgba(201,168,76,0.92);
  border-color: var(--gold);
  color: #111;
}
.download-play-icon {
  font-size: 1.6rem;
  line-height: 1;
  /* Optical center: the ▶ glyph is heavier on the left, nudge right slightly. */
  margin-left: 3px;
}
.download-card.preview-playing .download-play-icon {
  margin-left: 0; /* ⏸ is already symmetric */
}
@media (max-width: 600px) {
  /* On touch, always show the button so the affordance is discoverable. */
  .download-play-btn { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
}

/* ===== DOWNLOAD CARD STREAMING ROW =====
   YouTube / Spotify / Apple Music links injected by initStreamingRows() in
   script.js. Sits between the artist description and the price/buy row. */
.download-streaming-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.75rem 0 1rem;
}
.download-stream-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.download-stream-link svg {
  flex-shrink: 0;
  display: block;
}
.download-stream-link:hover,
.download-stream-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}
/* Brand-tinted hover for each platform — subtle, not loud. */
.download-stream-youtube:hover,
.download-stream-youtube:focus-visible {
  border-color: rgba(255, 0, 0, 0.55);
  background: rgba(255, 0, 0, 0.10);
}
.download-stream-spotify:hover,
.download-stream-spotify:focus-visible {
  border-color: rgba(29, 185, 84, 0.55);
  background: rgba(29, 185, 84, 0.10);
}
.download-stream-apple:hover,
.download-stream-apple:focus-visible {
  border-color: rgba(250, 35, 59, 0.55);
  background: rgba(250, 35, 59, 0.10);
}
.download-stream-label {
  font-size: 0.72rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  /* On the narrowest phones, drop the text and show icon-only chips. */
  .download-stream-label { display: none; }
  .download-stream-link { padding: 0.4rem; border-radius: 50%; }
}
