/* ─────────────────────────────────────────────
   PATE MUSIC — Adele-Inspired Design System
   Pure black · Ultra-light tracked type · Photo-driven
   ───────────────────────────────────────────── */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; }
a { text-decoration: none; }

/* ─── DESIGN TOKENS — Houston SWAT: warm gold on deep brown/black ─── */
:root {
  --black:       #0a0804;
  --brown:       #140f08;
  --brown-mid:   #1c150c;
  --white:       #ffffff;
  --gold:        #E5A830;
  --amber:       #FF9F1C;
  --gold-dim:    rgba(229, 168, 48, 0.28);

  /* Typography */
  --font-display: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'Satoshi', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Letter spacing — the Adele signature */
  --track-wide:  0.18em;
  --track-med:   0.12em;
  --track-tight: 0.05em;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   180ms;
  --t-mid:    300ms;
}

/* ─── BASE ─── */
body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(229, 168, 48, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--brown) 0%, var(--black) 40%, #060504 100%);
  color: var(--white);
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── STREAMING TICKER ─── */
.ticker-bar {
  position: relative;
  z-index: 200;
  background: var(--gold);
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-items {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0 2rem;
}
.ticker-items a,
.ticker-items span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--black);
}
.ticker-items a { opacity: 0.85; }
.ticker-items a:hover { opacity: 1; }
.t-sep { opacity: 0.4; }

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

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 34px; /* below ticker */
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1.4rem 2.5rem;
  transition: background var(--t-mid) var(--ease-out), padding var(--t-mid) var(--ease-out);
}
.site-nav.scrolled {
  background: rgba(10, 8, 4, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(0.9rem, 0.8rem + 0.4vw, 1.1rem);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--white);
  transition: opacity var(--t-fast) var(--ease-out);
}
.nav-logo:hover { opacity: 0.7; }

/* Left nav */
.nav-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-left a,
.nav-right-links a {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--t-fast) var(--ease-out);
}
.nav-left a:hover,
.nav-right-links a:hover { color: var(--gold); }

/* Right nav */
.nav-right-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: flex-end;
}
.nav-stream-btn {
  border: 1px solid rgba(255,255,255,0.5) !important;
  padding: 0.4rem 1.1rem !important;
  color: var(--white) !important;
  font-size: 0.65rem !important;
  letter-spacing: var(--track-wide) !important;
  transition: border-color var(--t-fast), background var(--t-fast) !important;
}
.nav-stream-btn:hover {
  border-color: var(--white) !important;
  background: rgba(255,255,255,0.06) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: 1rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform var(--t-fast) var(--ease-out), opacity var(--t-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid) var(--ease-out);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.4rem, 5vw, 2rem);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--white);
  transition: opacity var(--t-fast);
}
.mobile-menu nav a:hover { opacity: 0.6; }
.mob-stream-btn {
  margin-top: 1rem;
  border: 1px solid rgba(255,255,255,0.5) !important;
  padding: 0.6rem 2rem !important;
  font-size: 0.75rem !important;
}

/* ─── HERO — pure photo, no copy ─── */
.hero {
  position: relative;
  height: 100svh;
  width: 100%;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    transparent 30%,
    transparent 60%,
    rgba(0,0,0,0.6) 100%
  );
}

/* Scroll cue — bottom right */
.scroll-cue {
  position: absolute;
  bottom: 3rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.scroll-cue span {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-arrow {
  animation: bounce-down 2s ease-in-out infinite;
  display: block;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─── PHOTO STRIP — horizontal scroll ─── */
.photo-strip {
  position: relative;
  background: var(--black);
  padding: 3rem 0;
  overflow: hidden;
}
.strip-label {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0 2.5rem 1rem;
}
.strip-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.strip-track::-webkit-scrollbar { display: none; }
.strip-track:active { cursor: grabbing; }
.strip-item {
  flex: 0 0 auto;
  width: clamp(240px, 32vw, 420px);
  height: clamp(300px, 40vw, 520px);
  overflow: hidden;
  background: #111;
}
.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.strip-item:hover img { transform: scale(1.04); }

.strip-item-dark {
  background: var(--brown-mid);
  border: 1px solid rgba(229, 168, 48, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
}
.strip-text-card { text-align: left; }
.strip-quote {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  letter-spacing: var(--track-tight);
  line-height: 1.3;
  color: var(--white);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.strip-origin {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── SHARED PANEL STYLES ─── */
.panel-eyebrow {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.8rem;
}
.panel-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.4rem;
}
.panel-sub {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
}

/* ─── OUTLINE WHITE BUTTONS (Adele style) ─── */
.btn-outline-white {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.7rem 1.8rem;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
  background: transparent;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ─── ALBUM PANEL ─── */
.album-panel {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.album-panel-bg {
  position: absolute;
  inset: 0;
}
.album-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35) saturate(0.5);
}
.album-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.album-panel-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 6vw, 8rem);
  max-width: 700px;
}

/* ─── VIDEO PANEL ─── */
.video-panel {
  position: relative;
  background: var(--brown);
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 6vw, 8rem);
}
.video-panel-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.video-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.12) saturate(0.2);
}
.video-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.video-panel-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ─── GALLERY — editorial split panels ─── */
.gallery-section { background: var(--black); }

.gallery-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  overflow: hidden;
}
.gallery-panel-b .gp-text { order: 1; }
.gallery-panel-b .gp-image { order: 2; }

.gp-image {
  overflow: hidden;
  background: #080808;
}
.gp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-out);
}
.gallery-panel:hover .gp-image img { transform: scale(1.03); }

.gp-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 8rem);
  background: var(--brown-mid);
}
.gp-text-left { text-align: right; align-items: flex-end; }

.gp-label {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.gp-caption {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 36ch;
  font-style: italic;
}

/* ─── ABOUT ─── */
.about-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
}
.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.2) saturate(0.4);
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.7) 60%,
    rgba(0,0,0,0.2) 100%
  );
}
.about-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 10rem) clamp(2rem, 6vw, 8rem);
  max-width: 640px;
}
.about-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.about-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.2rem;
  max-width: 60ch;
}
.about-copy em { color: rgba(255,255,255,0.85); font-style: italic; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 2.5rem;
}
.about-tags span {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 0.35rem 0.9rem;
}
.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ─── VENUE CAROUSEL ─── */
.venue-carousel {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  background: #000;
  margin-bottom: 5rem;
}
.vc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.vc-slide.vc-active {
  opacity: 1;
  z-index: 2;
}
.vc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vc-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.15) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
}
.vc-text {
  max-width: 600px;
  margin-bottom: 1.5rem;
}
.vc-location {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  min-height: 1em;
  transition: opacity 0.4s;
}
.vc-name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
  min-height: 1.2em;
  transition: opacity 0.4s;
}
.vc-desc {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 55ch;
  min-height: 3em;
  transition: opacity 0.4s;
}
.vc-label {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  min-height: 1.5em;
  transition: opacity 0.4s;
}
.vc-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.vc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.vc-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
.vc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.vc-arrow:hover { background: rgba(212,175,55,0.25); border-color: var(--gold); }
.vc-prev { left: 1.5rem; }
.vc-next { right: 1.5rem; }

/* ─── BRAND PARTNERS ─── */
.inspire-section-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 4rem;
}
.inspire-inner-flip {
  flex-direction: row-reverse;
}
.brand-divider {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 3rem auto;
  height: 1px;
  background: rgba(212,175,55,0.2);
}
.inspire-brand-name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

/* ─── INSPIRE BY J MICHAELS ─── */
.inspire-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 6vw, 8rem);
}
.inspire-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.inspire-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.inspire-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.82) 100%
  );
}
.inspire-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.inspire-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin-bottom: 1.5rem;
  filter: invert(1);
}
.inspire-tagline {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.inspire-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 52ch;
}
.inspire-cta {
  display: inline-block;
}
.inspire-lookbook {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}
.inspire-lookbook img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.inspire-lookbook:hover img { transform: scale(1.03); }

@media (max-width: 800px) {
  .inspire-inner { grid-template-columns: 1fr; gap: 3rem; }
  .inspire-logo { max-width: 280px; }
}

/* ─── CONNECT ─── */
.connect-section {
  background: var(--black);
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 6vw, 8rem);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.connect-inner {
  max-width: 900px;
  margin: 0 auto;
}
.connect-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3.5rem;
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 4rem;
}
.connect-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: background var(--t-fast);
}
.connect-link:hover { background: rgba(255,255,255,0.06); }
.cl-platform {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--white);
  min-width: 90px;
}
.cl-handle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.cl-arrow {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast), transform var(--t-fast);
}
.connect-link:hover .cl-arrow {
  color: var(--gold);
  transform: translateX(4px);
}
.stream-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem clamp(2rem, 6vw, 8rem);
  text-align: center;
}
.footer-inner { max-width: 700px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.footer-tag {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-links a {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.63rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--white); }
.footer-legal {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .fade-up {
    opacity: 0;
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
}
@keyframes fade-in-up {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .nav-left,
  .nav-right-links {
    display: none;
  }
  .site-nav {
    grid-template-columns: 1fr auto;
  }
  .hamburger { display: flex; }

  .gallery-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .gallery-panel-b .gp-text { order: 2; }
  .gallery-panel-b .gp-image { order: 1; }
  .gp-image { min-height: 55vw; }
  .gp-text { padding: 2.5rem 1.5rem; }
  .gp-text-left { text-align: left; align-items: flex-start; }

  .album-panel { min-height: 70svh; }
  .album-panel-content { padding: 3rem 1.5rem; }
  .panel-title { font-size: clamp(1.8rem, 8vw, 3rem); }

  .about-content { padding: 4rem 1.5rem; }
  .about-title { font-size: clamp(1.8rem, 8vw, 3rem); }
  .about-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
  }

  .connect-grid { grid-template-columns: 1fr; }
  .connect-link { border-right: none; }

  .strip-item {
    width: clamp(200px, 70vw, 300px);
    height: clamp(250px, 60vw, 380px);
  }

  .video-panel { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .scroll-cue { bottom: 2rem; right: 1.5rem; }
  .panel-actions { flex-direction: column; align-items: flex-start; }
  .about-ctas { flex-direction: column; align-items: flex-start; }
  .stream-cta { flex-direction: column; }
  .footer-links { flex-direction: column; align-items: center; gap: 1rem; }
}

/* ─── COLOR DEFINITION ENHANCEMENTS ─── */
:root {
  --neon-gold:  #FFD700;
  --neon-amber: #FF9500;
  --blue-cool:  #1a3a5c;
  --teal-hint:  rgba(0, 180, 160, 0.15);
}

/* Subtle gold glow on section dividers */
.album-panel,
.neon-panel,
.about-section {
  box-shadow: inset 0 1px 0 rgba(212,175,55,0.12);
}

/* Gold line accent on ticker */
.ticker-bar {
  border-bottom: 1px solid rgba(212,175,55,0.4);
}

/* Colored accent on photo strip quote card */
.strip-text-card {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}

/* ─── HERO DUAL IMAGE — cross-fade ─── */
.hero-img-alt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  animation: hero-crossfade 12s ease-in-out 4s infinite;
  opacity: 0;
}
@keyframes hero-crossfade {
  0%, 100% { opacity: 0; }
  20%, 80%  { opacity: 1; }
}

/* ─── GLOBAL CLOUDY DRIFT VIDEO BACKGROUND ─── */
.global-cloudy-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.global-cloudy-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

/* ─── CLOUDY DRIFT INTERLUDE ─── */
.cloudy-interlude {
  position: relative;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.cloudy-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cloudy-text span {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  animation: text-drift 6s ease-in-out infinite;
}
.cloudy-text span:nth-child(3) { animation-delay: 0.3s; }
.cloudy-text span:nth-child(5) { animation-delay: 0.6s; }
.cloudy-sep {
  color: var(--gold) !important;
  animation: none !important;
  opacity: 0.6;
}
@keyframes text-drift {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(-3px); }
}

/* ─── CLUBS, SALOONS & DANCE HALLS ─── */
.venues-section {
  background: var(--brown);
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 6vw, 8rem);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.venues-intro {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}
.venues-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.venues-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 65ch;
  margin: 0 auto;
}

/* Visual row: truck + two dance floors */
.venues-visual-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 4rem;
}
.venues-img-block {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.venues-img-wide {
  aspect-ratio: 16/9;
  grid-row: span 1;
}
.venues-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.venues-img-block:hover img { transform: scale(1.04); }
.venues-img-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.55);
  padding: 0.25rem 0.6rem;
}

/* Venue cards grid */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.venue-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 2px solid rgba(212,175,55,0.4);
  overflow: hidden;
  transition: border-color var(--t-fast), transform var(--t-med);
}
.venue-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
}
.venue-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.venue-card:hover .venue-card-img img { transform: scale(1.05); }
.venue-card-body {
  padding: 1.5rem;
}
.venue-tag {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.venue-name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.venue-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.venue-card-text .venue-card-body {
  padding: 2rem 1.5rem;
}

/* Rockets championship moment */
.rockets-moment {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.rockets-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.rockets-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
  max-width: 55ch;
}
.rockets-moment-imgs {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0.5rem;
}
.rockets-img-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.rockets-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.rockets-img-main:hover img { transform: scale(1.04); }
.rockets-img-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rockets-img-sm {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.rockets-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.rockets-img-sm:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .venues-visual-row { grid-template-columns: 1fr 1fr; }
  .venues-img-wide { grid-column: span 2; }
  .venues-grid { grid-template-columns: repeat(2, 1fr); }
  .rockets-moment { grid-template-columns: 1fr; gap: 2.5rem; }
  .rockets-moment-imgs { grid-template-columns: 1.5fr 1fr; }
}
@media (max-width: 600px) {
  .venues-visual-row { grid-template-columns: 1fr; }
  .venues-img-wide { grid-column: span 1; }
  .venues-grid { grid-template-columns: 1fr; }
  .rockets-moment-imgs { grid-template-columns: 1fr; }
  .rockets-img-stack { flex-direction: row; }
}

/* ─── SWAT NATION NEON PANEL ─── */
.neon-panel {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.neon-panel-bg {
  position: absolute;
  inset: 0;
}
.neon-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s var(--ease-out);
}
.neon-panel:hover .neon-panel-bg img {
  transform: scale(1.04);
}
.neon-panel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.neon-panel-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    0 0 40px rgba(255, 160, 50, 0.6),
    0 0 80px rgba(255, 100, 0, 0.3);
  margin-bottom: 0.3rem;
  animation: neon-pulse 3s ease-in-out infinite;
}
.neon-panel-sub {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-gold);
  text-shadow: 0 0 12px rgba(255,215,0,0.5);
}
@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 30px rgba(255,160,50,0.5), 0 0 60px rgba(255,100,0,0.25); }
  50%       { text-shadow: 0 0 50px rgba(255,180,60,0.8), 0 0 100px rgba(255,120,0,0.4); }
}

/* ─── MOTION — scroll-reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ─── CONNECT LINK GOLD HOVER ─── */
.connect-link:hover .cl-platform {
  color: var(--gold);
}

/* ─── MUSIC PLAYER ─── */
.music-player {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  transition: opacity var(--t-mid), transform var(--t-mid);
  max-width: 280px;
}
.music-player.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.mp-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.mp-btn:hover {
  background: rgba(212,175,55,0.15);
  border-color: var(--gold);
}
.mp-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.mp-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-artist {
  display: block;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.mp-vol input[type="range"] {
  width: 52px;
  accent-color: var(--gold);
  cursor: pointer;
}
.mp-close {
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  padding: 0 0.2rem;
  transition: color var(--t-fast);
}
.mp-close:hover { color: var(--white); }

@media (max-width: 480px) {
  .music-player { bottom: 1rem; left: 1rem; max-width: calc(100vw - 2rem); }
  .cloudy-interlude { height: 180px; }
  .neon-panel { height: 45vh; min-height: 280px; }
}


/* ─── NOW PLAYING — Spotify link in music player ─── */
.mp-spotify-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1DB954;
  margin-top: 0.15rem;
  opacity: 0.85;
  transition: opacity var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-spotify-link:hover { opacity: 1; color: #1ed760; }

/* ─── RADIO SECTION ─── */
.radio-section {
  background: var(--black);
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 8rem);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.radio-inner {
  max-width: 900px;
  margin: 0 auto;
}
.radio-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.radio-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 60ch;
  margin-bottom: 3rem;
}
.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}
.radio-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 2rem 1.75rem;
  background: #0a0a0a;
  border: none;
  transition: background var(--t-fast);
  position: relative;
}
.radio-card:hover {
  background: rgba(212,175,55,0.07);
}
.radio-card:hover .radio-freq { color: var(--gold); }
.radio-card:hover .radio-arrow { opacity: 1; color: var(--gold); }
.radio-freq {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
  transition: color var(--t-fast);
}
.radio-name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--white);
}
.radio-market {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
}
.radio-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.25);
  transition: opacity var(--t-fast), color var(--t-fast);
}
.radio-note {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: var(--track-med);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ─── BRAND A&R QUOTE ─── */
.brand-ar-quote {
  border-left: 2px solid rgba(212,175,55,0.5);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0 2rem;
  background: rgba(212,175,55,0.04);
}
.brand-ar-quote p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 0.6rem;
}
.brand-ar-quote cite {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── EMAIL SIGNUP ─── */
.email-signup {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 560px;
}
.email-signup-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
}
.email-signup-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.2);
}
.email-signup-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white);
  min-width: 0;
}
.email-signup-input::placeholder { color: rgba(255,255,255,0.3); }
.email-signup-btn {
  background: rgba(212,175,55,0.12);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.email-signup-btn:hover { background: rgba(212,175,55,0.22); color: var(--white); }
.email-signup-confirm {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.75rem 0;
}

/* ─── FOOTER STREAMING LINKS ─── */
.footer-stream-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-stream-links a {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color var(--t-fast);
}
.footer-stream-links a:hover { color: var(--gold); }

@media (max-width: 600px) {
  .radio-grid { grid-template-columns: 1fr 1fr; }
  .email-signup-form { flex-direction: column; }
  .email-signup-btn { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); }
}
@media (max-width: 400px) {
  .radio-grid { grid-template-columns: 1fr; }
}


/* ─── NEON SPIKE CLOUD ANIMATED BACKDROP ─── */
/* Full-page canvas of slow-drifting neon energy spikes, layered behind content */
.neon-spikes-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.neon-spikes-bg::before,
.neon-spikes-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: spike-drift 18s ease-in-out infinite;
}
/* Amber/gold spike — top left drift */
.neon-spikes-bg::before {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.18) 0%, rgba(255,140,0,0.08) 50%, transparent 75%);
  top: -100px;
  left: -100px;
  animation-duration: 22s;
  animation-delay: 0s;
}
/* Warm amber spike — bottom right drift */
.neon-spikes-bg::after {
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(255, 159, 28, 0.14) 0%, rgba(229, 168, 48, 0.06) 50%, transparent 75%);
  bottom: -80px;
  right: -80px;
  animation-duration: 28s;
  animation-delay: -8s;
}

@keyframes spike-drift {
  0%   { opacity: 0;    transform: translate(0, 0) scale(1); }
  15%  { opacity: 1; }
  50%  { opacity: 0.7;  transform: translate(80px, 60px) scale(1.2); }
  85%  { opacity: 1; }
  100% { opacity: 0;    transform: translate(0, 0) scale(1); }
}

/* Third spike — centre pulse, warm orange */
.neon-spikes-mid {
  position: fixed;
  z-index: -2;
  pointer-events: none;
  width: 800px;
  height: 500px;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,100,30,0.06) 0%, transparent 65%);
  filter: blur(60px);
  animation: spike-centre 34s ease-in-out infinite;
  animation-delay: -12s;
  mix-blend-mode: screen;
  border-radius: 50%;
}
@keyframes spike-centre {
  0%, 100% { opacity: 0;   transform: translate(-50%,-50%) scale(0.8); }
  30%       { opacity: 0.6; transform: translate(-50%,-50%) scale(1.1); }
  60%       { opacity: 0.3; transform: translate(-50%,-50%) scale(1.3); }
}

/* ─── NEON PANEL text improvements ─── */
/* Ensure "The Sound. The Place." is fully visible */
.neon-panel .panel-eyebrow {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.22em !important;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* ─── GLOBAL eyebrow & subtitle readability ─── */
/* Radio section */
.radio-section .panel-eyebrow { color: rgba(255,255,255,0.8) !important; }
/* Video section */
.video-panel .panel-eyebrow  { color: rgba(255,255,255,0.8) !important; }
.video-panel .panel-sub       { color: rgba(255,255,255,0.75) !important; }
/* Album panel */
.album-panel .panel-eyebrow  { color: rgba(255,255,255,0.8) !important; }
.album-panel .panel-sub       { color: rgba(255,255,255,0.75) !important; }
/* Venues */
.venues-section .panel-eyebrow { color: rgba(255,255,255,0.8) !important; }
/* About */
.about-section .panel-eyebrow { color: rgba(255,255,255,0.8) !important; }
/* Brand partners */
.inspire-section .panel-eyebrow { color: rgba(255,255,255,0.8) !important; }
/* Connect */
.connect-section .panel-eyebrow { color: rgba(255,255,255,0.8) !important; }
/* Rockets */
.rockets-moment .panel-eyebrow { color: rgba(255,255,255,0.8) !important; }


/* ─── NEON PANEL — revised text (no title, location + tagline only) ─── */
.neon-panel-location {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FFD700;
  text-shadow:
    0 0 8px rgba(255,215,0,0.9),
    0 0 20px rgba(255,200,0,0.6),
    0 0 40px rgba(255,180,0,0.3);
  margin-bottom: 1rem;
  animation: neon-text-flicker 4s ease-in-out infinite;
}
.neon-panel-tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.1rem, 2.8vw, 2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0 12px rgba(255,255,255,0.8),
    0 0 30px rgba(255,220,100,0.4);
  line-height: 1.25;
  max-width: 18ch;
  margin: 0 auto;
}
@keyframes neon-text-flicker {
  0%, 95%, 100% { opacity: 1; }
  96%            { opacity: 0.85; }
  97%            { opacity: 1; }
  98%            { opacity: 0.7; }
  99%            { opacity: 1; }
}

/* Darken the neon panel overlay slightly so text pops against the image */
.neon-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  pointer-events: none;
}
.neon-panel-content {
  z-index: 2;
}

/* ─── INSPIRE GALLERY STRIP ─── */
.inspire-gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0;
  overflow: hidden;
  border-radius: 2px;
}
.inspire-gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.inspire-gallery-item.inspire-gallery-feature {
  aspect-ratio: 3/2;
}
.inspire-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.88);
}
.inspire-gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.inspire-gallery-item:first-child { border-right: 2px solid rgba(212,175,55,0.2); }
.inspire-gallery-item:last-child  { border-left:  2px solid rgba(212,175,55,0.2); }

@media (max-width: 640px) {
  .inspire-gallery-strip {
    grid-template-columns: 1fr;
  }
  .inspire-gallery-item,
  .inspire-gallery-item.inspire-gallery-feature {
    aspect-ratio: 16/9;
  }
  .inspire-gallery-item:first-child { border-right: none; border-bottom: 2px solid rgba(212,175,55,0.2); }
  .inspire-gallery-item:last-child  { border-left:  none; border-top:    2px solid rgba(212,175,55,0.2); }
}

/* ─── BRUSO / BRAND NAME heading ─── */
.inspire-brand-name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

/* ─── DESIGNS BY MYK FOOTER CREDIT ─── */
.footer-myk {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 0.5rem;
}
.footer-myk-link {
  color: rgba(212,175,55,0.55);
  transition: color var(--t-fast);
}
.footer-myk-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   BRAND PARTNER — DISTINCT COLOR SCHEMES
   ══════════════════════════════════════════ */

/* ── SHARED: brand badge chip ── */
.brand-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.75rem;
  border-radius: 2px;
}

/* ─────────────────────────────────────────
   LTI BY J MICHAEL — INSPIRE
   Warm navy + celestial gold + sky blue
   Vibe: motivational, community, elevated
   ───────────────────────────────────────── */
.brand-lti {
  background: linear-gradient(160deg, rgba(10,20,50,0.85) 0%, rgba(5,12,35,0.9) 100%);
  border-top: 1px solid rgba(100,160,255,0.15);
  padding: 3rem 2rem;
  margin: 0 -2rem;
}
.brand-badge-lti {
  background: rgba(100,160,255,0.1);
  border: 1px solid rgba(100,160,255,0.35);
  color: #6AA0FF;
}
.brand-lti .lti-tagline {
  color: #6AA0FF;
  text-shadow: 0 0 18px rgba(100,160,255,0.4);
}
.brand-lti .inspire-copy {
  color: rgba(220,230,255,0.72);
}
.brand-lti .brand-ar-quote {
  border-left-color: rgba(100,160,255,0.4);
  background: rgba(100,160,255,0.05);
}
.brand-lti .brand-ar-quote p  { color: rgba(220,230,255,0.75); }
.brand-lti .brand-ar-quote cite { color: #6AA0FF; }
.brand-lti .inspire-cta {
  border-color: rgba(100,160,255,0.5) !important;
  color: #6AA0FF !important;
}
.brand-lti .inspire-cta:hover {
  background: rgba(100,160,255,0.12) !important;
  color: #fff !important;
}

/* ─────────────────────────────────────────
   DESIGNS BY MYK LLC
   Electric blue + silver chrome + near-black
   Vibe: tech, precision, digital, sleek
   ───────────────────────────────────────── */
.brand-myk {
  background: linear-gradient(160deg, rgba(0,8,20,0.92) 0%, rgba(0,15,35,0.95) 100%);
  border-top: 1px solid rgba(0,200,255,0.12);
  padding: 3rem 2rem;
  margin: 0 -2rem;
}
.brand-badge-myk {
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.3);
  color: #00C8FF;
}
.brand-myk .myk-name {
  background: linear-gradient(90deg, #fff 0%, #00C8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-myk .myk-tagline {
  color: #00C8FF;
  text-shadow: 0 0 16px rgba(0,200,255,0.35);
}
.brand-myk .inspire-copy {
  color: rgba(200,230,245,0.7);
}
.brand-myk .brand-ar-quote {
  border-left-color: rgba(0,200,255,0.4);
  background: rgba(0,200,255,0.04);
}
.brand-myk .brand-ar-quote p    { color: rgba(200,230,245,0.75); }
.brand-myk .brand-ar-quote cite { color: #00C8FF; }
.brand-myk .inspire-cta {
  border-color: rgba(0,200,255,0.45) !important;
  color: #00C8FF !important;
}
.brand-myk .inspire-cta:hover {
  background: rgba(0,200,255,0.1) !important;
  color: #fff !important;
}

/* ─────────────────────────────────────────
   BRUSO DIGITAL MEDIA LLC
   Deep teal + amber pulse + dark slate
   Vibe: digital hustle, content, reach
   ───────────────────────────────────────── */
.brand-bruso {
  background: linear-gradient(160deg, rgba(0,25,25,0.92) 0%, rgba(0,15,20,0.95) 100%);
  border-top: 1px solid rgba(0,210,180,0.12);
  padding: 3rem 2rem;
  margin: 0 -2rem;
}
.brand-badge-bruso {
  background: rgba(0,210,180,0.08);
  border: 1px solid rgba(0,210,180,0.3);
  color: #00D2B4;
}
.brand-bruso .bruso-tagline {
  color: #00D2B4;
  text-shadow: 0 0 16px rgba(0,210,180,0.35);
}
.brand-bruso .bruso-name {
  color: #fff;
  text-shadow: 0 0 20px rgba(0,210,180,0.2);
}
.brand-bruso .inspire-copy {
  color: rgba(200,240,235,0.7);
}
.brand-bruso .brand-ar-quote {
  border-left-color: rgba(0,210,180,0.4);
  background: rgba(0,210,180,0.04);
}
.brand-bruso .brand-ar-quote p    { color: rgba(200,240,235,0.75); }
.brand-bruso .brand-ar-quote cite { color: #00D2B4; }
.brand-bruso .inspire-cta {
  border-color: rgba(0,210,180,0.45) !important;
  color: #00D2B4 !important;
}
.brand-bruso .inspire-cta:hover {
  background: rgba(0,210,180,0.1) !important;
  color: #fff !important;
}

/* Section-level negative margin fix on mobile */
@media (max-width: 768px) {
  .brand-lti, .brand-myk, .brand-bruso {
    margin: 0 -1.5rem;
    padding: 2.5rem 1.5rem;
  }
}

/* ── INSPIRE wings logo — invert white on dark bg ── */
.inspire-wings-logo {
  filter: invert(1);
  max-width: 260px;
  margin-bottom: 0.5rem;
}

/* ── MYK logo — already dark bg, just size it ── */
.myk-logo {
  max-width: 220px;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

/* ── OVERRIDE Inspire/LTI color scheme to match graffiti/streetwear brand ──
   Inspire = urban, bold, black + white + electric red/orange energy ── */
.brand-lti {
  background: linear-gradient(160deg, rgba(8,8,8,0.97) 0%, rgba(15,10,10,0.98) 100%) !important;
  border-top: 1px solid rgba(255,80,30,0.2) !important;
}
.brand-badge-lti {
  background: rgba(255,80,30,0.1) !important;
  border: 1px solid rgba(255,80,30,0.35) !important;
  color: #FF6030 !important;
}
.brand-lti .lti-tagline {
  color: #FF6030 !important;
  text-shadow: 0 0 18px rgba(255,96,48,0.4) !important;
}
.brand-lti .inspire-copy { color: rgba(240,230,225,0.72) !important; }
.brand-lti .brand-ar-quote {
  border-left-color: rgba(255,80,30,0.45) !important;
  background: rgba(255,80,30,0.05) !important;
}
.brand-lti .brand-ar-quote p    { color: rgba(240,230,225,0.75) !important; }
.brand-lti .brand-ar-quote cite { color: #FF6030 !important; }
.brand-lti .inspire-cta {
  border-color: rgba(255,80,30,0.5) !important;
  color: #FF6030 !important;
}
.brand-lti .inspire-cta:hover {
  background: rgba(255,80,30,0.1) !important;
  color: #fff !important;
}

/* ── OVERRIDE MYK to match silver/chrome serif luxury aesthetic ──
   MYK = luxury, editorial, silver chrome, black ── */
.brand-myk {
  background: linear-gradient(160deg, rgba(5,5,8,0.97) 0%, rgba(12,12,18,0.98) 100%) !important;
  border-top: 1px solid rgba(200,200,220,0.15) !important;
}
.brand-badge-myk {
  background: rgba(200,200,220,0.07) !important;
  border: 1px solid rgba(200,200,220,0.25) !important;
  color: #C8C8DC !important;
}
.brand-myk .myk-name {
  background: linear-gradient(90deg, #ffffff 0%, #C0C0D0 50%, #ffffff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.brand-myk .myk-tagline {
  color: #C8C8DC !important;
  text-shadow: 0 0 16px rgba(200,200,220,0.25) !important;
}
.brand-myk .inspire-copy { color: rgba(210,210,225,0.7) !important; }
.brand-myk .brand-ar-quote {
  border-left-color: rgba(200,200,220,0.3) !important;
  background: rgba(200,200,220,0.04) !important;
}
.brand-myk .brand-ar-quote p    { color: rgba(210,210,225,0.75) !important; }
.brand-myk .brand-ar-quote cite { color: #C8C8DC !important; }
.brand-myk .inspire-cta {
  border-color: rgba(200,200,220,0.35) !important;
  color: #C8C8DC !important;
}
.brand-myk .inspire-cta:hover {
  background: rgba(200,200,220,0.08) !important;
  color: #fff !important;
}
