/* ─── RESET & BASE ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg:        #0a0a0c;
      --bg2:       #111116;
      --bg3:       #18181f;
      --accent:    #ff6b35;
      --accent2:   #ffab76;
      --text:      #e8e8ee;
      --muted:     #7a7a8e;
      --border:    rgba(255,255,255,0.07);
      --ff-display: 'Bebas Neue', sans-serif;
      --ff-body:    'Inter', sans-serif;
      --ff-mono:    'JetBrains Mono', monospace;
    }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--ff-body);
      overflow-x: clip;
      line-height: 1.6;
    }

    /* ─── NOISE TEXTURE ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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.035'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.6;
    }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .reveal-right {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, rgba(10,10,12,0.95), transparent);
      backdrop-filter: blur(0);
      transition: background 0.3s, backdrop-filter 0.3s;
    }
    nav.scrolled {
      background: rgba(10,10,12,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: var(--ff-display);
      font-size: 1.75rem;
      letter-spacing: 0.08em;
      color: var(--text);
      text-decoration: none;
    }
    .nav-logo span { color: var(--accent); }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--ff-mono);
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      transition: all 0.3s;
    }
    @media (max-width: 768px) {
      .nav-toggle { display: flex; }
      .nav-links {
        position: fixed;
        top: 0; right: 0;
        width: 260px;
        height: 100vh;
        background: var(--bg2);
        border-left: 1px solid var(--border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
      }
      .nav-links.open { transform: translateX(0); }
      .nav-links a { font-size: 0.85rem; }
    }

    /* ─── HERO (Cinematic) ─── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 4rem 3rem;
      overflow: hidden;
    }
    /* Scanline overlay */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        to bottom, transparent, transparent 3px,
        rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px
      );
      pointer-events: none;
      z-index: 1;
    }
    /* Background */
    .hero-bg {
      position: absolute;
      inset: -20px;
      z-index: 0;
    }
    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 30%;
      filter: grayscale(60%) brightness(0.18) blur(8px);
    }
    .hero-bg-img.bg-front { display: none; }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, var(--bg) 0%, rgba(10,10,12,0.5) 50%, rgba(10,10,12,0.7) 100%),
        linear-gradient(to right, rgba(10,10,12,0.5) 0%, transparent 60%);
    }
    /* Accent glow */
    .hero-bg::before {
      content: '';
      position: absolute;
      top: 30%; left: 20%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }
    .hero-eyebrow {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .hero-eyebrow::before {
      content: '';
      width: 40px; height: 2px;
      background: var(--accent);
    }
    h1.hero-title {
      font-family: var(--ff-display);
      font-size: clamp(5rem, 12vw, 10rem);
      line-height: 0.85;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    h1.hero-title .line-1 {
      color: var(--text);
      display: block;
    }
    h1.hero-title .line-2 {
      display: block;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-rule {
      width: 80px; height: 3px;
      background: var(--accent);
      margin-bottom: 1.25rem;
      border: none;
    }
    .hero-sub {
      font-size: 1.15rem;
      color: rgba(232,232,238,0.8);
      font-weight: 300;
      max-width: 500px;
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }
    .hero-cta {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
      position: relative;
      z-index: 2;
    }
    .btn {
      font-family: var(--ff-mono);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1em 2.2em;
      border-radius: 2px;
      transition: all 0.2s;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.6em;
    }
    .btn svg { width: 14px; height: 14px; fill: currentColor; }
    .btn-primary {
      background: var(--accent);
      color: #fff;
      border: 2px solid var(--accent);
    }
    .btn-primary:hover {
      background: transparent;
      color: var(--accent);
    }
    .btn-ghost {
      background: transparent;
      color: var(--text);
      border: 2px solid rgba(255,255,255,0.15);
    }
    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* Hero bottom album bar */
    .hero-bottom {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 2rem;
      align-items: center;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      margin-top: 1rem;
    }
    .album-mini {
      display: flex; align-items: center; gap: 0.75rem;
    }
    .album-mini img {
      width: 44px; height: 44px;
      border-radius: 6px;
      object-fit: cover;
      border: 1px solid var(--border);
    }
    .album-mini-text {
      font-size: 0.8rem;
      color: var(--text);
    }
    .album-mini-label {
      font-family: var(--ff-mono);
      font-size: 0.55rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.15rem;
    }

    /* Right side floating info */
    .hero-side {
      position: absolute;
      right: 3rem;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .side-line {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    }
    .side-text {
      font-family: var(--ff-mono);
      font-size: 0.55rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      writing-mode: vertical-rl;
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--ff-mono);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      color: var(--muted);
      text-transform: uppercase;
      z-index: 2;
      animation: bounce 2s ease-in-out infinite;
    }
    .hero-scroll::after {
      content: '';
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--muted), transparent);
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      overflow: hidden;
      background: var(--accent);
      padding: 0.75rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marquee 22s linear infinite;
    }
    .marquee-track span {
      font-family: var(--ff-display);
      font-size: 1.1rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--bg);
      padding: 0 2rem;
      flex-shrink: 0;
    }
    .marquee-track span.dot {
      color: rgba(0,0,0,0.35);
      padding: 0;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── SECTIONS COMMON ─── */
    section { padding: 6rem 1.5rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-family: var(--ff-mono);
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--ff-display);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    /* ─── ABOUT ─── */
    #about { background: var(--bg2); }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    @media (max-width: 768px) {
      .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    }
    .about-text p {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }
    .about-text p strong { color: var(--text); font-weight: 600; }
    .about-text p em { color: var(--accent2); font-style: normal; }
    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    .stat-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.5rem;
      transition: border-color 0.2s, transform 0.2s;
    }
    .stat-card:hover {
      border-color: rgba(255,107,53,0.3);
      transform: translateY(-2px);
    }
    .stat-num {
      font-family: var(--ff-display);
      font-size: 2.8rem;
      letter-spacing: 0.04em;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 0.25rem;
    }
    .stat-label {
      font-family: var(--ff-mono);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ─── MUSIC ─── */
    #music { background: var(--bg); }

    /* Album tabs */
    .album-tabs {
      display: flex;
      gap: 0.5rem;
      margin-top: 2rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }
    .album-tab {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.6em 1.2em;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.2s;
    }
    .album-tab:hover { border-color: var(--accent); color: var(--text); }
    .album-tab.active {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    /* Player chrome */
    .ac-player {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }

    /* Now-playing bar */
    .now-playing {
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      border-bottom: 1px solid var(--border);
      background: var(--bg3);
    }
    .np-controls {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-shrink: 0;
    }
    .np-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      background: transparent;
      color: var(--muted);
    }
    .np-btn:hover { color: var(--text); }
    .np-btn.play-btn {
      background: var(--accent);
      color: #fff;
      width: 48px;
      height: 48px;
    }
    .np-btn.play-btn:hover { background: var(--accent2); }
    .np-btn svg { width: 20px; height: 20px; fill: currentColor; }
    .np-info {
      flex: 1;
      min-width: 0;
    }
    .np-title {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      letter-spacing: 0.03em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .np-album {
      font-family: var(--ff-mono);
      font-size: 0.65rem;
      color: var(--accent);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .np-time {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      color: var(--muted);
      flex-shrink: 0;
    }

    /* Progress bar */
    .progress-wrap {
      padding: 0 1.5rem;
      background: var(--bg3);
      padding-bottom: 0.75rem;
    }
    .progress-bar {
      width: 100%;
      height: 4px;
      background: rgba(255,255,255,0.08);
      border-radius: 2px;
      cursor: pointer;
      position: relative;
    }
    .progress-bar:hover { height: 6px; }
    .progress-fill {
      height: 100%;
      background: var(--accent);
      border-radius: 2px;
      width: 0%;
      position: relative;
      transition: width 0.1s linear;
    }
    .progress-fill::after {
      content: '';
      position: absolute;
      right: -5px;
      top: 50%;
      transform: translateY(-50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0;
      transition: opacity 0.2s;
    }
    .progress-bar:hover .progress-fill::after { opacity: 1; }

    /* Volume */
    .np-volume {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      flex-shrink: 0;
    }
    .np-volume svg { width: 16px; height: 16px; fill: var(--muted); cursor: pointer; }
    .np-volume svg:hover { fill: var(--text); }
    .volume-slider {
      width: 60px;
      -webkit-appearance: none;
      appearance: none;
      height: 3px;
      background: rgba(255,255,255,0.1);
      border-radius: 2px;
      outline: none;
    }
    .volume-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
      cursor: pointer;
    }

    /* Track list */
    .track-list {
      list-style: none;
      max-height: 400px;
      overflow-y: auto;
    }
    .track-list::-webkit-scrollbar { width: 4px; }
    .track-list::-webkit-scrollbar-track { background: transparent; }
    .track-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
    .track-item {
      display: flex;
      align-items: center;
      padding: 0.7rem 1.5rem;
      gap: 1rem;
      cursor: pointer;
      transition: background 0.15s;
      border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    .track-item:hover { background: rgba(255,255,255,0.03); }
    .track-item:hover .track-name { color: var(--text); }
    .track-item.active { background: rgba(255,107,53,0.08); }
    .track-num {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      color: var(--muted);
      width: 1.5rem;
      text-align: center;
      flex-shrink: 0;
      position: relative;
    }
    .track-num .num-text { display: inline; }
    .track-num .num-play {
      display: none;
      width: 16px; height: 16px;
      fill: var(--text);
    }
    .track-item:hover .track-num .num-text { display: none; }
    .track-item:hover .track-num .num-play { display: inline-block; }
    .track-item.active .track-num { color: var(--accent); }
    .track-item.active .track-num .num-play { fill: var(--accent); }
    .track-name {
      flex: 1;
      font-size: 0.9rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .track-item.active .track-name { color: var(--accent); }
    .track-duration {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      color: var(--muted);
      flex-shrink: 0;
    }
    .track-album-tag {
      font-family: var(--ff-mono);
      font-size: 0.55rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      background: rgba(255,255,255,0.05);
      padding: 0.2em 0.5em;
      border-radius: 3px;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .now-playing { padding: 1rem; gap: 0.75rem; }
      .np-btn.play-btn { width: 42px; height: 42px; }
      .np-title { font-size: 1rem; }
      .np-volume { display: none; }
      .progress-wrap { padding: 0 1rem 0.5rem; }
      .track-item { padding: 0.65rem 1rem; }
      .track-album-tag { display: none; }
      .track-list { max-height: 350px; }
    }

    /* ─── BAND MEMBERS ─── */
    #members { background: var(--bg2); }
    .members-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    @media (max-width: 768px) {
      .members-grid { grid-template-columns: 1fr; }
    }
    .member-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: border-color 0.2s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }
    .member-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      opacity: 0;
      transition: opacity 0.2s;
    }
    .member-card:hover {
      border-color: rgba(255,107,53,0.3);
      transform: translateY(-4px);
    }
    .member-card:hover::before { opacity: 1; }
    .member-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid var(--border);
      margin: 0 auto 1.25rem;
      overflow: hidden;
    }
    .member-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .member-name {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      margin-bottom: 0.2rem;
    }
    .member-role {
      font-family: var(--ff-mono);
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
    }
    .member-bio {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ─── MARQUEE 2 ─── */
    .marquee-wrap.dark {
      background: var(--bg3);
      border-color: var(--border);
    }
    .marquee-wrap.dark .marquee-track span {
      color: var(--muted);
    }
    .marquee-wrap.dark .marquee-track span.dot {
      color: var(--border);
    }
    .marquee-wrap.dark .marquee-track span.hi {
      color: var(--accent);
    }

    /* ─── CONTACT ─── */
    #contact { background: var(--bg); }
    .contact-inner {
      max-width: 600px;
    }
    .contact-info p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 2rem;
    }
    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .contact-link-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
      color: var(--text);
      padding: 1rem 1.25rem;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 8px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .contact-link-item:hover {
      border-color: rgba(255,107,53,0.4);
      transform: translateX(4px);
      color: var(--accent);
    }
    .contact-link-icon {
      font-size: 1.2rem;
      width: 32px;
      text-align: center;
      flex-shrink: 0;
    }
    .contact-link-text {
      flex: 1;
    }
    .contact-link-label {
      font-family: var(--ff-mono);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.15rem;
    }
    .contact-link-value {
      font-size: 0.9rem;
      font-weight: 500;
    }
    .contact-form {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem;
    }
    .form-group {
      margin-bottom: 1.25rem;
    }
    .form-group label {
      display: block;
      font-family: var(--ff-mono);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 0.75rem 1rem;
      font-family: var(--ff-body);
      font-size: 0.9rem;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
      resize: vertical;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
    }
    .form-group textarea { min-height: 120px; }
    .form-submit {
      width: 100%;
      font-family: var(--ff-mono);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--accent);
      color: #fff;
      border: 2px solid var(--accent);
      padding: 0.85em 2em;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .form-submit:hover {
      background: transparent;
      color: var(--accent);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 3rem 1.5rem;
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-logo {
      font-family: var(--ff-display);
      font-size: 2rem;
      letter-spacing: 0.08em;
    }
    .footer-logo span { color: var(--accent); }
    .footer-tagline {
      font-family: var(--ff-mono);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .footer-divider {
      width: 60px;
      height: 1px;
      background: var(--border);
    }
    .footer-copy {
      font-size: 0.8rem;
      color: var(--muted);
    }
    .footer-copy a {
      color: var(--accent);
      text-decoration: none;
    }
    .footer-copy a:hover { text-decoration: underline; }

    /* ─── SCROLL TO TOP ─── */
    #back-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 44px;
      height: 44px;
      background: var(--accent);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s;
      z-index: 50;
    }
    #back-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    #back-top:hover { background: var(--accent2); }

    /* ─── MOBILE OPTIMIZATIONS ─── */
    @media (max-width: 768px) {
      /* Tighter section padding */
      section { padding: 3.5rem 1rem; }

      /* Hero: cinematic mobile */
      #hero { padding: 6rem 1.5rem 2rem; min-height: 100svh; }
      .hero-eyebrow { font-size: 0.6rem; }
      .hero-sub { font-size: 1rem; }
      .hero-side { display: none; }
      .hero-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
      .hero-cta { gap: 0.75rem; }
      .btn { padding: 0.75em 1.5em; font-size: 0.7rem; }

      /* About: tighter spacing */
      .about-text p { font-size: 0.95rem; line-height: 1.7; }
      .stat-num { font-size: 2.2rem; }

      /* Music: mobile player tweaks handled in player CSS above */

      /* Band members: bigger photos in single column */
      .member-avatar { width: 120px; height: 120px; }
      .member-card { padding: 1.5rem 1.25rem; }

      /* Contact */
      .contact-inner { max-width: 100%; }
      .contact-link-item { padding: 0.85rem 1rem; }

      /* Footer */
      footer { padding: 2rem 1rem; }
      .footer-logo { font-size: 1.6rem; }

      /* Back to top: larger touch target */
      #back-top { width: 48px; height: 48px; bottom: 1rem; right: 1rem; }
    }

    /* Small phones */
    @media (max-width: 380px) {
      .section-title { font-size: clamp(2rem, 8vw, 3rem); }
    }
