    /* ─── 01 · HERO ────────────────────────────────────────────── */
    #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 700px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-align: center;
    }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

 #hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.85) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 35%, transparent 55%, rgba(0,0,0,0.98) 100%),
    linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}
    .hero-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

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

.hero-tag {
      font-size: 0.62rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid rgba(74,143,170,0.35);
      padding: 0.35rem 1rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
      animation: heroFadeUp 1.2s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
 
    .hero-name {
      font-family: var(--font-display);
      font-size: clamp(5rem, 14vw, 11rem);
      line-height: 0.88;
      letter-spacing: 0.06em;
      color: var(--white);
      animation: heroFadeUp 1.2s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }
 
    .hero-firstname,
    .hero-surname {
      display: block;
      line-height: 0.88;
    }
 
    .stage-name {
      position: absolute;
      top: 48%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: clamp(8rem, 102vw, 45rem);
      height: auto;
      object-fit: contain;
      z-index: 2;
      pointer-events: none;
    }
 
    .hero-divider {
      width: 40px;
      height: 1px;
      background: var(--border);
      margin: 1.8rem 0;
      animation: heroFadeUp 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    /* ── Countdown ── */
    .countdown {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
      animation: heroFadeUp 1.2s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .countdown-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
    }

    .countdown-num {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      letter-spacing: 0.06em;
      line-height: 1;
      color: var(--white);
      min-width: 2ch;
      text-align: center;
    }

    .countdown-sep {
      font-family: var(--font-display);
      font-size: 2.4rem;
      color: var(--border);
      line-height: 1;
      padding-bottom: 1.4rem;
      align-self: flex-end;
    }

    .countdown-label {
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ── Ticket CTA ── */
    .btn-primary {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--black);
      background: var(--white);
      padding: 1rem 2.8rem;
      border-radius: 2px;
      text-decoration: none;
      transition: background 0.25s, color 0.25s, transform 0.2s;
      animation: heroFadeUp 1.2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .btn-primary:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* ── Credential strip at bottom of hero ── */
    .hero-creds {
      position: absolute;
      bottom: 2.5rem;
      left: 0; right: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      animation: heroFadeUp 1.2s 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .hero-cred-item {
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .hero-cred-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      right: 2.5rem;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      animation: heroFadeUp 1.2s 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .scroll-hint span {
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      writing-mode: vertical-rl;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,0.12);
      position: relative;
      overflow: hidden;
    }

    .scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--accent);
      animation: scrollDrop 1.8s ease-in-out infinite;
    }

    @keyframes scrollDrop {
      from { top: -100%; }
      to   { top: 200%; }
    }

    /* ── Media for scroll ── */
      @media (max-width: 768px) {
      /* nav { padding: 1rem 1.25rem; } */
      /* .nav-links { display: none; } */
 
      .hero-creds { flex-wrap: wrap; gap: 0.5rem; padding: 0 1.25rem; }
      .scroll-hint { display: none; }
      }


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/images/hero-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

@media (max-width: 480px) {
  .hero-bg {
    background-image: url('../assets/images/hero-bg-mobile.png');
    background-position: center top;
  }
}
   
    
    
