:root {
      --bg: #050505;
      --bg-soft: #0d0d0d;
      --panel: rgba(255,255,255,0.06);
      --panel-strong: rgba(255,255,255,0.1);
      --border: rgba(255,255,255,0.1);
      --text: #ffffff;
      --muted: #b3b3b3;
      --blue: #2563eb;
      --green: #22c55e;
      --red: #ef4444;
      --shadow: 0 20px 60px rgba(0,0,0,0.35);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --max-width: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(37,99,235,0.22), transparent 30%),
        radial-gradient(circle at top right, rgba(34,197,94,0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(239,68,68,0.12), transparent 25%),
        linear-gradient(to bottom, #050505, #0a0a0a, #050505);
      color: var(--text);
    }

    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }

    .container {
      width: min(var(--max-width), calc(100% - 32px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: rgba(5,5,5,0.72);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 18px 0;
    }

    .brand {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.32em;
    }

    .nav {
      display: flex;
      gap: 28px;
      color: var(--muted);
      font-size: 14px;
    }

    .nav a:hover,
    .footer-links a:hover { color: #fff; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 13px 22px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: #fff;
      color: #000;
      font-weight: 600;
    }

    .btn-secondary {
      background: rgba(255,255,255,0.05);
      color: #fff;
      border-color: rgba(255,255,255,0.12);
    }

    .hero {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
      padding: 70px 0 90px;
    }

    .eyebrow {
      margin: 0 0 18px;
      color: #4ade80;
      text-transform: uppercase;
      letter-spacing: 0.35em;
      font-size: 12px;
      font-weight: 700;
    }

    h1 {
      font-size: clamp(52px, 9vw, 94px);
      line-height: 0.95;
      margin: 0;
      letter-spacing: -0.04em;
    }

    .lead {
      max-width: 620px;
      font-size: 19px;
      line-height: 1.8;
      color: var(--muted);
      margin: 22px 0 0;
    }

    .hero-actions,
    .booking-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-actions { margin-top: 32px; }

    .social-label {
      margin: 46px 0 14px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
    }

    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      max-width: 560px;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.02);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.7);
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .social-link:hover {
      color: #fff;
      border-color: rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.05);
      transform: translateY(-1px);
    }

    .hero-visual-wrap {
      position: relative;
    }

    .hero-glow {
      position: absolute;
      inset: -18px;
      border-radius: 40px;
      background: linear-gradient(135deg, rgba(37,99,235,0.22), rgba(34,197,94,0.12), rgba(239,68,68,0.14));
      filter: blur(26px);
      opacity: 0.9;
    }

    .hero-visual {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      background: #111;
      box-shadow: var(--shadow);
      min-height: 640px;
    }

    .section {
      padding: 30px 0 36px;
    }

    .section-grid {
      display: grid;
      gap: 24px;
    }

    .grid-music { grid-template-columns: 0.8fr 1.2fr; }
    .grid-video { grid-template-columns: 1.1fr 0.9fr; }
    .grid-shows { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
    .grid-gallery { grid-template-columns: 0.8fr 1.2fr; align-items: start; }

    .section-title {
      max-width: 760px;
    }

    .section-title h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 48px);
      letter-spacing: -0.03em;
    }

    .section-title p {
      color: var(--muted);
      line-height: 1.9;
      margin-top: 16px;
      font-size: 16px;
    }

    .card,
    .embed-shell,
    .show-item,
    .booking-banner,
    .gallery-card,
    .gallery-tile {
      border: 1px solid var(--border);
      background: var(--panel);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .card {
      padding: 34px;
    }

    .embed-shell {
      padding: 14px;
      overflow: hidden;
    }

    .embed-shell iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 22px;
    }

    .spotify-desktop {
      min-height: 380px;
    }

    .spotify-mobile {
      display: none;
    }

    .video-frame {
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 22px;
      min-height: 360px;
      background: #000;
    }

    .show-list {
      display: grid;
      gap: 14px;
    }

.shows-right {
  display: grid;
  gap: 20px;
}

.instagram-wrap {
  display: flex;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.instagram-media {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 540px !important;
  min-width: 0 !important;
  background: transparent !important;
}

.instagram-media iframe {
  min-height: 720px !important;
  width: 100% !important;
  border-radius: 24px !important;
}

@media (max-width: 640px) {
  .instagram-media iframe {
    min-height: 660px !important;
  }
}

    .show-item {
      padding: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .show-item:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.08);
      box-shadow: 0 24px 60px rgba(0,0,0,0.38);
    }

    .show-link {
      display: block;
      padding: 20px;
      width: 100%;
      height: 100%;
    }

    .show-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .show-index {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      font-size: 14px;
      font-weight: 700;
    }

    .show-name {
      font-size: 17px;
      font-weight: 600;
    }

    .show-arrow {
      margin-left: auto;
      color: rgba(255,255,255,0.42);
      font-size: 18px;
      line-height: 1;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .show-item:hover .show-arrow {
      color: #fff;
      transform: translateX(3px);
    }

    .gallery-card {
      padding: 34px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .gallery-tile {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.08);
      aspect-ratio: 1 / 1;
      background: rgba(255,255,255,0.03);
    }

    .gallery-tile img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .gallery-tile:hover img {
      transform: scale(1.05);
    }

    .booking-banner {
      margin-top: 12px;
      padding: 36px;
      background: linear-gradient(to right, rgba(255,255,255,0.08), rgba(255,255,255,0.05), rgba(255,255,255,0.08));
    }

    .booking-banner-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 24px;
    }

    .booking-banner h3 {
      margin: 10px 0 0;
      font-size: clamp(30px, 4vw, 46px);
      letter-spacing: -0.03em;
    }

    .booking-banner p {
      color: var(--muted);
      margin-top: 16px;
      line-height: 1.8;
      max-width: 720px;
    }

    .booking-actions {
      justify-content: center;
      align-items: center;
    }

    .booking-cta {
      font-size: 20px;
      font-weight: 800;
      padding: 20px 38px;
      min-width: 240px;
      letter-spacing: 0.02em;
      box-shadow: 0 14px 40px rgba(255,255,255,0.14);
    }

    .booking-cta:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 20px 50px rgba(255,255,255,0.2);
    }

    .site-footer {
      border-top: 1px solid var(--border);
      margin-top: 24px;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 26px 0 34px;
      color: #a3a3a3;
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .floating-orb {
      position: fixed;
      border-radius: 999px;
      filter: blur(48px);
      pointer-events: none;
      z-index: -1;
      animation: drift 10s ease-in-out infinite;
    }

    .orb-left {
      top: 100px;
      left: -20px;
      width: 170px;
      height: 170px;
      background: rgba(37,99,235,0.14);
    }

    .orb-right {
      right: 10px;
      bottom: 60px;
      width: 190px;
      height: 190px;
      background: rgba(34,197,94,0.12);
      animation-duration: 11s;
    }

    @keyframes drift {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(12px, -14px); }
    }

    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
      z-index: 100;
    }

    .modal.open { display: flex; }

    .modal-panel {
      width: min(100%, 700px);
      border-radius: 28px;
      border: 1px solid var(--border);
      background: #0b0b0b;
      box-shadow: var(--shadow);
      padding: 26px;
    }

    .modal-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }

    .modal-top h4 {
      margin: 0;
      font-size: 26px;
    }

    .close-btn {
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.05);
      color: #fff;
      border-radius: 999px;
      width: 42px;
      height: 42px;
      cursor: pointer;
    }

    .form-grid {
      display: grid;
      gap: 14px;
    }

    .form-grid.two {
      grid-template-columns: 1fr 1fr;
    }

    .field {
      width: 100%;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.05);
      color: #fff;
      padding: 14px 16px;
      outline: none;
    }

    .field::placeholder { color: #888; }
    textarea.field { min-height: 150px; resize: vertical; }

    .form-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 8px;
    }

    .tiny {
      color: #a3a3a3;
      font-size: 12px;
      line-height: 1.6;
    }

    .icon {
      width: 16px;
      height: 16px;
      display: inline-block;
      flex: 0 0 16px;
    }

    @media (max-width: 980px) {
      .hero,
      .grid-music,
      .grid-video,
      .grid-shows,
      .grid-gallery,
      .booking-banner-inner {
        grid-template-columns: 1fr;
        display: grid;
      }

      .hero-visual { min-height: 520px; }
      .nav { display: none; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 640px) {
      .container { width: min(var(--max-width), calc(100% - 22px)); }
      .hero { padding-top: 42px; gap: 28px; }
      .card, .booking-banner, .modal-panel, .gallery-card { padding: 22px; }
      .form-grid.two { grid-template-columns: 1fr; }
      .form-bottom { flex-direction: column; align-items: flex-start; }
      .btn { width: 100%; }
      .hero-actions .btn,
      .booking-actions .btn { width: 100%; }
      .hero-actions,
      .booking-actions { flex-direction: column; align-items: stretch; }
      .booking-cta {
        min-width: 0;
        font-size: 18px;
        padding: 18px 28px;
      }
      .social-links {
        max-width: 100%;
        gap: 8px;
      }
      .social-link {
        padding: 8px 12px;
        font-size: 11px;
      }
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .embed-shell {
        padding: 8px;
        border-radius: 20px;
      }

      .embed-shell iframe {
        border-radius: 16px;
      }

      .spotify-desktop {
        display: none !important;
      }

      .spotify-mobile {
        display: block !important;
      }

      .spotify-mobile iframe {
        height: 232px !important;
      }

      .video-frame {
        min-height: auto;
        border-radius: 16px;
      }
    }

/* Former inline styles moved from index.html */

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-actions-spaced {
  margin-top: 28px;
}

.video-iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-credit {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-credit-line {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-credit-link {
  color: rgba(255,255,255,0.6);
}

/* =========================================================
   FUN OVER PLEASURE — RELEASE OVERLAY
   Paste this at the VERY BOTTOM of your existing style.css
   ========================================================= */

body.release-lock {
  overflow: hidden;
}

/* Full-screen dark background over the existing website */
.release-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 100vh;
  padding: 24px;

  overflow-y: auto;

  background: rgba(0, 0, 0, 0.86);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* HTML already has class="release-overlay open" */
.release-overlay.open {
  display: flex;
}

/* Main centered popup */
.release-panel {
  position: relative;

  width: min(1080px, 100%);

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 36px;

  padding: 42px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(37, 99, 235, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(239, 68, 68, 0.12),
      transparent 30%
    ),
    #090909;

  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(37, 99, 235, 0.08);
}

/* LEFT SIDE — RELEASE INFORMATION */

.release-copy {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.release-kicker {
  margin: 0 0 18px;

  color: #4ade80;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.release-copy h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.88;
  letter-spacing: -0.055em;

  text-align: center;
}

.release-byline {
  margin: 20px 0 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.32em;
}

.release-text {
  max-width: 420px;

  margin: 28px auto 0;

  color: #b3b3b3;

  font-size: 16px;
  line-height: 1.75;

  text-align: center;
}

.release-text strong {
  color: #ffffff;
}

.release-instagram-link {
  margin-top: 28px;
}

/* RIGHT SIDE — INSTAGRAM REEL */

.release-video {
  width: 100%;
  min-width: 0;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  overflow: hidden;

  border-radius: 24px;
}

.release-instagram {
  width: 100% !important;
  max-width: 500px !important;
  min-width: 0 !important;

  margin: 0 auto !important;

  background: transparent !important;
}

.release-instagram iframe {
  width: 100% !important;
  min-height: 650px !important;

  border-radius: 22px !important;
}

/* CLOSE BUTTON */

.release-close {
  position: absolute;

  top: 18px;
  right: 18px;

  z-index: 10;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.72);

  color: #ffffff;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.release-close:hover {
  transform: scale(1.08);

  background: rgba(255, 255, 255, 0.14);
}

/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 850px) {

  .release-overlay {
    align-items: flex-start;

    padding: 12px;
  }

  .release-panel {
    width: min(620px, 100%);

    grid-template-columns: 1fr;

    gap: 28px;

    padding: 68px 20px 24px;

    border-radius: 26px;
  }

  .release-copy h2 {
    font-size: clamp(46px, 13vw, 70px);
  }

  .release-instagram-link {
    width: min(100%, 360px);
  }

  .release-video {
    width: 100%;
  }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 520px) {

  .release-overlay {
    padding: 8px;
  }

  .release-panel {
    padding: 64px 12px 18px;

    border-radius: 22px;
  }

  .release-copy h2 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .release-text {
    font-size: 15px;
  }

  .release-instagram iframe {
    min-height: 610px !important;
  }
}