
    :root {
      --ink: #0c0c0c;
      --paper: #f0e8de;
      --gold: #D8C4AC;
      --gold-light: #ecdfd0;
      --gold-muted: #9e8b76;
      --cinnabar: #a0412a;
      --jade: #2e6b50;
      --deep: #0e0c0a;
      --cream: #e8d8c4;
      --smoke: rgba(216,196,172,0.08);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--ink);
      color: var(--cream);
      font-family: 'Cormorant Garamond', serif;
      overflow-x: hidden;
      cursor: default;
    }

    /* === CANVAS BACKGROUND === */
    #canvas-bg {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* === GRAIN OVERLAY === */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      z-index: 1;
      pointer-events: none;
      opacity: 0.5;
    }

    /* ============================================================
       HEADER
    ============================================================ */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 3rem;
      background: linear-gradient(to bottom, rgba(13,13,13,0.95) 0%, transparent 100%);
      border-bottom: 1px solid rgba(216,196,172,0.15);
      transition: background 0.4s ease;
    }

    header.scrolled {
      background: rgba(10,8,5,0.97);
      box-shadow: 0 4px 40px rgba(0,0,0,0.6);
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .logo-wrap img {
      height: 56px;
      width: auto;
      border-radius: 50%;
      border: 1px solid rgba(216,196,172,0.4);
      box-shadow: 0 0 20px rgba(216,196,172,0.2);
    }

    .logo-text .logo-title {
      display: block;
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.6rem;
      color: var(--gold);
      letter-spacing: 4px;
      text-shadow: 0 0 30px rgba(216,196,172,0.5);
    }

    .logo-text span {
      font-size: 0.7rem;
      letter-spacing: 3px;
      color: rgba(216,196,172,0.6);
      text-transform: uppercase;
    }

    /* === HEADER RIGHT CONTROLS === */
    .header-controls {
      display: flex;
      align-items: center;
      gap: 1.4rem;
    }

   
    /* ============================================================
       HAMBURGER
    ============================================================ */
    .menu-btn {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      z-index: 200;
      position: relative;
    }

    .menu-btn span {
      display: block;
      width: 28px;
      height: 1px;
      background: var(--gold);
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      transform-origin: center;
    }

    .menu-btn span:nth-child(2) { width: 20px; margin-left: 8px; }

    .menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 28px; margin-left: 0; }

    /* ============================================================
       DRAWER
    ============================================================ */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      z-index: 150;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      backdrop-filter: blur(4px);
    }

    .drawer-overlay.open { opacity: 1; pointer-events: all; }

    .drawer {
      position: fixed;
      top: 0; right: 0;
      height: 100%;
      width: 380px;
      max-width: 90vw;
      background: var(--deep);
      z-index: 160;
      transform: translateX(100%);
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      border-left: 1px solid rgba(216,196,172,0.2);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .drawer.open { transform: translateX(0); }

    .drawer-header {
      padding: 2rem;
      border-bottom: 1px solid rgba(216,196,172,0.15);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .drawer-header .d-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: 0.9rem;
      color: var(--gold);
      letter-spacing: 3px;
    }

    .drawer-close {
      cursor: pointer;
      color: var(--gold-muted);
      font-size: 1.4rem;
      transition: color 0.3s;
      background: none;
      border: none;
      line-height: 1;
    }
    .drawer-close:hover { color: var(--gold); }

    .drawer-nav { padding: 2rem; flex: 1; }

    .drawer-nav a {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 1rem 0;
      text-decoration: none;
      color: var(--cream);
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 2px;
      border-bottom: 1px solid rgba(216,196,172,0.08);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .drawer-nav a::before {
      content: '';
      position: absolute;
      left: -100%; top: 0;
      width: 100%; height: 100%;
      background: linear-gradient(to right, transparent, rgba(216,196,172,0.05));
      transition: left 0.4s ease;
    }

    .drawer-nav a:hover::before { left: 0; }
    .drawer-nav a:hover { color: var(--gold); padding-left: 0.5rem; }

    .drawer-nav a .nav-num {
      font-size: 0.65rem;
      color: var(--gold-muted);
      letter-spacing: 1px;
      min-width: 20px;
    }

    .drawer-socials {
      padding: 2rem;
      border-top: 1px solid rgba(216,196,172,0.15);
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .drawer-socials a {
      text-decoration: none;
      color: rgba(216,196,172,0.7);
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.4rem 0.9rem;
      border: 1px solid rgba(216,196,172,0.2);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .drawer-socials a:hover { color: var(--gold); border-color: var(--gold); background: rgba(216,196,172,0.08); }

    /* ============================================================
       MAIN
    ============================================================ */
    main { position: relative; z-index: 2; }

    /* ============================================================
       HERO  — background image + parallax
    ============================================================ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 6rem 2rem 4rem;
      position: relative;
      overflow: hidden;
    }

    /* Background image layer */
    .hero-bg {
      position: absolute;
      inset: -10%;          /* extra space for parallax movement */
      background-image: url('pictures/hero-bg.webp');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      filter: brightness(0.35) saturate(0.7);
      transform: translateY(0);
      will-change: transform;
      transition: filter 1.2s ease;
    }

    /* Layered gradient overlays for atmosphere */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(13,13,13,0.7) 100%),
        linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, transparent 30%, transparent 60%, rgba(13,13,13,0.95) 100%);
    }

    /* Vignette tinted with gold */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(10,6,2,0.5) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-ornament {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: min(700px, 90vw);
      height: min(700px, 90vw);
      border-radius: 50%;
      border: 1px solid rgba(216,196,172,0.07);
      pointer-events: none;
      z-index: 2;
    }

    .hero-ornament::before {
      content: '';
      position: absolute;
      inset: 30px;
      border-radius: 50%;
      border: 1px solid rgba(216,196,172,0.05);
    }

    .hero-ornament::after {
      content: '';
      position: absolute;
      inset: 70px;
      border-radius: 50%;
      border: 1px solid rgba(216,196,172,0.03);
    }

    .hero-content {
      max-width: 800px;
      position: relative;
      z-index: 3;
      animation: heroReveal 2s ease-out both;
    }

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

    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 5px;
      color: var(--gold-muted);
      text-transform: uppercase;
      margin-bottom: 2rem;
      animation: heroReveal 2s 0.2s ease-out both;
    }

    .hero-eyebrow::before, .hero-eyebrow::after { content: '—'; margin: 0 0.8rem; opacity: 0.5; }

    .hero-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(3rem, 10vw, 7rem);
      color: var(--gold);
      line-height: 1;
      letter-spacing: 6px;
      text-shadow: 0 0 60px rgba(216,196,172,0.4), 0 0 120px rgba(216,196,172,0.15);
      margin-bottom: 1.5rem;
      animation: heroReveal 2s 0.4s ease-out both;
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.4rem);
      color: rgba(240,230,211,0.75);
      font-style: italic;
      font-weight: 300;
      letter-spacing: 2px;
      margin-bottom: 3rem;
      animation: heroReveal 2s 0.6s ease-out both;
    }

    .hero-description {
      font-size: 1rem;
      line-height: 1.9;
      color: rgba(240,230,211,0.62);
      max-width: 600px;
      margin: 0 auto 3rem;
      animation: heroReveal 2s 0.8s ease-out both;
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: heroReveal 2s 1s ease-out both;
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0.4;
      animation: heroReveal 2s 1.5s ease-out both;
    }

    .hero-scroll span {
      font-size: 0.55rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold-muted);
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 0.8; transform: scaleY(0.6) translateY(8px); }
    }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2.2rem;
      background: var(--gold);
      color: var(--ink);
      text-decoration: none;
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      transition: all 0.3s;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(216,196,172,0.3);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2.2rem;
      border: 1px solid rgba(216,196,172,0.4);
      color: var(--gold);
      text-decoration: none;
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      transition: all 0.3s;
    }
    .btn-outline:hover {
      border-color: var(--gold);
      background: rgba(216,196,172,0.08);
      transform: translateY(-2px);
    }

    /* ============================================================
       SEPARATOR
    ============================================================ */
    .sep {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin: 1rem auto 5rem;
      max-width: 500px;
      padding: 0 2rem;
    }
    .sep::before, .sep::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(216,196,172,0.3));
    }
    .sep::after { background: linear-gradient(to left, transparent, rgba(216,196,172,0.3)); }
    .sep-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); opacity: 0.6; }

    /* ============================================================
       SECTIONS
    ============================================================ */
    .section {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.65rem;
      letter-spacing: 5px;
      color: var(--gold-muted);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      color: var(--gold);
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -8px; left: 0;
      width: 60%; height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
    }

    /* ============================================================
       ABOUT
    ============================================================ */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: center;
    }

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

    .about-image-wrap img {
      width: 100%;
      display: block;
      filter: sepia(20%) contrast(1.05);
    }

    .about-image-wrap::before {
      content: '';
      position: absolute;
      inset: -12px;
      border: 1px solid rgba(216,196,172,0.2);
      pointer-events: none;
    }

    .about-image-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 60%, rgba(216,196,172,0.1));
      pointer-events: none;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.9;
      color: rgba(240,230,211,0.75);
      margin-bottom: 1.5rem;
      font-weight: 300;
    }

    .about-highlight {
      font-size: 1.4rem !important;
      color: rgba(240,230,211,0.9) !important;
      font-style: italic;
      border-left: 2px solid var(--gold);
      padding-left: 1.5rem;
      margin: 2rem 0 !important;
    }

    /* ============================================================
       RELEASE GRID
    ============================================================ */
    .release-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .release-card {
      background: rgba(216,196,172,0.03);
      border: 1px solid rgba(216,196,172,0.12);
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .release-card:hover {
      border-color: rgba(216,196,172,0.35);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(216,196,172,0.1);
    }

    .release-card-img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      display: block;
      filter: sepia(15%) contrast(1.05);
      transition: transform 0.6s ease, filter 0.4s ease;
    }

    .release-card:hover .release-card-img {
      transform: scale(1.04);
      filter: sepia(0%) contrast(1.1);
    }

    .release-card-body { padding: 1.4rem; }

    .release-tag {
      font-size: 0.98rem;
      letter-spacing: 3px;
      color: var(--gold-muted);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .release-card h4 {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1rem;
      color: var(--gold-light);
      margin-bottom: 0.4rem;
    }

    .release-card-desc {
      font-size: 0.85rem;
      font-style: italic;
      color: rgba(240,230,211,0.5);
      margin-bottom: 1rem;
    }

    .tracklist { margin-bottom: 1.2rem; }

    .tracklist li {
      list-style: none;
      font-size: 0.78rem;
      color: rgba(240,230,211,0.58);
      padding: 0.25rem 0;
      border-bottom: 1px solid rgba(216,196,172,0.05);
      display: flex;
      gap: 0.6rem;
    }

    .tracklist li span:first-child {
      color: var(--gold-muted);
      font-style: italic;
      min-width: 16px;
    }

    .listen-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      text-decoration: none;
      color: var(--gold);
      font-size: 0.72rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1rem;
      border: 1px solid rgba(216,196,172,0.25);
      transition: all 0.3s;
    }
    .listen-btn:hover { background: rgba(216,196,172,0.1); border-color: var(--gold); }

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

    .video-card {
      background: rgba(216,196,172,0.03);
      border: 1px solid rgba(216,196,172,0.12);
      overflow: hidden;
      transition: all 0.4s;
    }

    .video-card:hover {
      border-color: rgba(216,196,172,0.3);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }

    .video-card iframe { width: 100%; height: 220px; display: block; }

    .video-card-body { padding: 1.2rem; }

    .video-card h4 {
      font-family: 'Cinzel Decorative', serif;
      font-size: 0.9rem;
      color: var(--gold);
      margin-bottom: 0.4rem;
    }

    .video-card p { font-size: 0.85rem; font-style: italic; color: rgba(240,230,211,0.58); }

    /* ============================================================
       CONTACT STRIP
    ============================================================ */
    .contact-strip {
      border-top: 1px solid rgba(216,196,172,0.15);
      border-bottom: 1px solid rgba(216,196,172,0.15);
      padding: 3rem 2rem;
      text-align: center;
      background: rgba(216,196,172,0.02);
    }

    .contact-strip h3 {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.4rem;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

    .contact-strip p { color: rgba(240,230,211,0.5); font-style: italic; margin-bottom: 1.5rem; }

    /* ============================================================
       CONTACT DRAWER
    ============================================================ */
    .contact-drawer {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      height: 90vh;
      background: var(--deep);
      z-index: 160;
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      border-top: 1px solid rgba(216,196,172,0.2);
      overflow-y: auto;
    }

    .contact-drawer.open { transform: translateY(0); }

    .contact-drawer-inner {
      max-width: 680px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .contact-drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 3rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(216,196,172,0.15);
    }

    .contact-drawer-header h3 {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.4rem;
      color: var(--gold);
    }

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

    .form-group label {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 3px;
      color: var(--gold-muted);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .form-group input, .form-group textarea {
      width: 100%;
      background: rgba(216,196,172,0.04);
      border: 1px solid rgba(216,196,172,0.15);
      color: var(--cream);
      padding: 0.8rem 1rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.3s;
    }

    .form-group input:focus, .form-group textarea:focus {
      border-color: rgba(216,196,172,0.5);
      background: rgba(216,196,172,0.06);
    }

    .form-group textarea { min-height: 140px; resize: vertical; }

    .form-submit {
      width: 100%;
      padding: 1rem;
      background: var(--gold);
      color: var(--ink);
      border: none;
      font-family: 'Cinzel Decorative', serif;
      font-size: 0.85rem;
      letter-spacing: 3px;
      cursor: pointer;
      transition: all 0.3s;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    }
    .form-submit:hover { background: var(--gold-light); box-shadow: 0 6px 30px rgba(216,196,172,0.3); }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      position: relative;
      z-index: 2;
      padding: 3rem 2rem;
      border-top: 1px solid rgba(216,196,172,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-brand {
      font-family: 'Cinzel Decorative', serif;
      font-size: 0.9rem;
      color: var(--gold-muted);
      letter-spacing: 3px;
    }

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

    .footer-links a {
      text-decoration: none;
      color: rgba(240,230,211,0.60);
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }

    .footer-copy { font-size: 0.72rem; color: rgba(240,230,211,0.5); letter-spacing: 1px; }

    /* ============================================================
       SCROLL REVEAL
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ============================================================
       MISC
    ============================================================ */
    .spotify-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.2rem;
      border: 1px solid rgba(216,196,172,0.2);
      color: rgba(240,230,211,0.5);
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
    }
    .spotify-badge:hover { border-color: rgba(216,196,172,0.5); color: var(--gold); }

    .ornament {
      text-align: center;
      color: var(--gold-muted);
      font-size: 1.2rem;
      opacity: 0.4;
      margin: 2rem 0;
      letter-spacing: 8px;
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 768px) {
      header { padding: 1rem 1.5rem; }
      .logo-wrap img { height: 44px; }
      .logo-text h1 { font-size: 1.2rem; }
      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; text-align: center; }
      .section { padding: 3rem 1.5rem; }
      .music-player__label { display: none; }
      .volume-slider { width: 44px; }
    }

    @media (max-width: 480px) {
      .music-player { padding: 0.4rem 0.6rem; gap: 0.4rem; }
      .music-player__vol { display: none; }
    }

    /* ============================================================
       BACK TO TOP
    ============================================================ */
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 90;
      width: 46px;
      height: 46px;
      background: rgba(14,12,10,0.88);
      border: 1px solid rgba(216,196,172,0.3);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.4s, transform 0.4s, visibility 0.4s, border-color 0.3s, box-shadow 0.3s;
      backdrop-filter: blur(10px);
      text-decoration: none;
    }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { border-color: rgba(216,196,172,0.7); box-shadow: 0 0 20px rgba(216,196,172,0.12); }
    .back-to-top svg { width: 18px; height: 18px; fill: var(--gold); transition: transform 0.3s; }
    .back-to-top:hover svg { transform: translateY(-3px); }

    /* ============================================================
       YOUTUBE LITE
    ============================================================ */
    .yt-lite {
      position: relative;
      display: block;
      width: 100%;
      padding-bottom: 56.25%;
      cursor: pointer;
      overflow: hidden;
      background: #000;
    }
    .yt-lite__thumb {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease, filter 0.4s ease;
      filter: brightness(0.82);
    }
    .yt-lite:hover .yt-lite__thumb { transform: scale(1.04); filter: brightness(0.65); }
    .yt-lite__play {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 64px; height: 64px;
      background: rgba(0,0,0,0.6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, transform 0.3s, border-color 0.3s;
      pointer-events: none;
      border: 2px solid rgba(216,196,172,0.45);
    }
    .yt-lite:hover .yt-lite__play {
      background: rgba(216,196,172,0.18);
      transform: translate(-50%, -50%) scale(1.1);
      border-color: rgba(216,196,172,0.85);
    }
    .yt-lite__play svg { width: 24px; height: 24px; fill: #fff; margin-left: 4px; }
    .yt-lite iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
    .yt-lite.loaded .yt-lite__thumb,
    .yt-lite.loaded .yt-lite__play { display: none; }


    /* ============================================================
       STREAMING BADGES
    ============================================================ */
    .streaming-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.35rem 0.75rem;
      border-radius: 3px;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-decoration: none;
      text-transform: uppercase;
      transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
      white-space: nowrap;
    }

    .badge:hover {
      transform: translateY(-2px);
      opacity: 0.9;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }

    .badge svg {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
      fill: currentColor;
    }

    .badge-spotify  { background: #1DB954; color: #000; }
    .badge-youtube  { background: #FF0000; color: #fff; }
    .badge-deezer   { background: #A238FF; color: #fff; }
    .badge-audiomack { background: #FF6600; color: #fff; }
