@charset "utf-8";
/* CSS Document */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --blood: #8B0000; --blood-light: #C0392B;
    --gold: #C9A84C; --gold-dim: #7A6030;
    --bone: #E8DFC8; --ash: #1A1614; --void: #0D0A09;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--void); color: var(--bone); font-family: 'IM Fell English', serif; overflow-x: hidden; max-width: 100vw; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 3rem;
    background: linear-gradient(to bottom, rgba(13,10,9,0.95), transparent);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    width: 100%; max-width: 100vw; overflow: visible;
  }
  .nav-logo { font-family: 'Cinzel Decorative', serif; font-size: 1.1rem; letter-spacing: 0.3em; color: var(--gold); text-shadow: 0 0 20px rgba(201,168,76,0.4); flex-shrink: 0; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
  .nav-links a { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(232,223,200,0.6); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold); }

  .burger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    background: none; border: none; cursor: pointer;
    padding: 6px; flex-shrink: 0; width: 40px; height: 40px;
    position: relative; z-index: 9999;
  }
  .burger span {
    display: block; width: 22px; height: 2px;
    background: var(--gold); border-radius: 2px;
    transition: transform 0.3s, opacity 0.2s, width 0.2s;
    transform-origin: center;
  }
  .burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; width: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  @media (max-width: 768px) {
    nav { padding: 0.85rem 1.2rem !important; }
    .burger { display: flex !important; }
    .nav-links {
      position: fixed !important;
      top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
      width: 100vw !important; height: 100vh !important;
      z-index: 9000 !important; display: flex !important;
      flex-direction: column !important; align-items: center !important; justify-content: center !important;
      gap: 0 !important; list-style: none !important; margin: 0 !important; padding: 0 !important;
      background: rgba(9,7,6,0.97) !important; backdrop-filter: blur(10px);
      opacity: 0 !important; pointer-events: none !important;
      transform: translateY(-8px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .nav-links.open { opacity: 1 !important; pointer-events: all !important; transform: translateY(0); }
    .nav-links li { width: 100% !important; text-align: center !important; border-bottom: 1px solid rgba(201,168,76,0.08) !important; }
    .nav-links li:first-child { border-top: 1px solid rgba(201,168,76,0.08) !important; }
    .nav-links a { display: block !important; padding: 1.1rem 2rem !important; font-size: 0.9rem !important; letter-spacing: 0.3em !important; color: rgba(232,223,200,0.8) !important; }
    .nav-links a:hover { color: var(--gold) !important; }
  }
  @media (min-width: 769px) {
    .burger { display: none !important; }
    .nav-links { position: static !important; width: auto !important; height: auto !important; display: flex !important; flex-direction: row !important; opacity: 1 !important; pointer-events: all !important; transform: none !important; background: transparent !important; backdrop-filter: none !important; gap: 2.5rem !important; }
  }

  .hero { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 5rem 2rem 4rem; overflow: hidden; }
  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(139,0,0,0.25) 0%, transparent 70%); pointer-events: none; }
  .sigil-container { position: relative; width: 220px; height: 220px; margin-bottom: 3rem; animation: rotateSlow 40s linear infinite; }
  @keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
  .sigil-inner { position: absolute; inset: 20px; animation: rotateSlow 25s linear infinite reverse; }
  .band-logo-img { max-width: clamp(280px, 55vw, 620px); height: auto; display: block; margin: 0 auto 0.5rem; filter: drop-shadow(0 0 40px rgba(139,0,0,0.7)) drop-shadow(0 0 80px rgba(139,0,0,0.35)); animation: flicker 6s ease-in-out infinite; }
  .band-name-fallback { font-family: 'Cinzel Decorative', serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; letter-spacing: 0.15em; color: var(--bone); line-height: 1; text-shadow: 0 0 40px rgba(139,0,0,0.8), 0 0 80px rgba(139,0,0,0.4); margin-bottom: 0.5rem; animation: flicker 6s ease-in-out infinite; display: none; }
  @keyframes flicker { 0%,95%,100%{opacity:1} 96%{opacity:.85} 97%{opacity:1} 98%{opacity:.9} }
  .band-genre { font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.5em; color: var(--gold); text-transform: uppercase; margin-bottom: 3rem; opacity: 0.85; }
  .hero-divider { width: 200px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 0 auto 3rem; }
  .hero-quote { font-style: italic; font-size: 1.05rem; color: rgba(232,223,200,0.5); max-width: 500px; line-height: 1.8; margin-bottom: 3rem; }
  .cta-group { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .btn { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; padding: 0.9rem 2.5rem; border: 1px solid; cursor: pointer; text-decoration: none; transition: all 0.3s; position: relative; overflow: hidden; display: inline-block; }
  .btn::before { content: ''; position: absolute; inset: 0; transform: translateX(-100%); transition: transform 0.3s; }
  .btn:hover::before { transform: translateX(0); }
  .btn-primary { background: transparent; color: var(--bone); border-color: var(--blood); }
  .btn-primary::before { background: rgba(139,0,0,0.3); }
  .btn-primary:hover { box-shadow: 0 0 20px rgba(139,0,0,0.5); color: var(--bone); }
  .btn-secondary { background: transparent; color: var(--gold); border-color: rgba(201,168,76,0.4); }
  .btn-secondary::before { background: rgba(201,168,76,0.08); }
  .btn-secondary:hover { border-color: var(--gold); box-shadow: 0 0 20px rgba(201,168,76,0.2); }

  section { position: relative; z-index: 1; padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-eyebrow { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.5em; color: var(--blood-light); text-transform: uppercase; display: block; margin-bottom: 1rem; }
  .section-title { font-family: 'Cinzel Decorative', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--bone); font-weight: 700; text-shadow: 0 0 30px rgba(139,0,0,0.3); }
  .section-rule { width: 120px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-dim), transparent); margin: 1.5rem auto 0; }

  .albums-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
  .album-card { border: 1px solid rgba(201,168,76,0.15); background: rgba(26,22,20,0.8); position: relative; overflow: hidden; transition: transform 0.3s, border-color 0.3s; cursor: pointer; }
  .album-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.4); }
  .album-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--blood), var(--gold-dim)); opacity: 0; transition: opacity 0.3s; }
  .album-card:hover::before { opacity: 1; }
  .album-art { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: var(--ash); border-bottom: 1px solid rgba(201,168,76,0.1); overflow: hidden; }
  .album-art img { width: 100%; height: 100%; object-fit: cover; }
  .album-info { padding: 1.5rem; }
  .album-year { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.4em; color: var(--blood-light); text-transform: uppercase; margin-bottom: 0.4rem; display: block; }
  .album-title { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600; color: var(--bone); margin-bottom: 0.5rem; }
  .album-desc { font-style: italic; font-size: 0.85rem; color: rgba(232,223,200,0.45); line-height: 1.6; }

  .members-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; text-align: center; }
  .member-portrait { width: 130px; height: 130px; margin: 0 auto 1.5rem; border-radius: 50%; border: 1px solid rgba(201,168,76,0.3); overflow: hidden; background: var(--ash); display: flex; align-items: center; justify-content: center; position: relative; }
  .member-portrait img { width: 100%; height: 100%; object-fit: cover; }
  .member-portrait::after { content: ''; position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 20px rgba(139,0,0,0.3); }
  .member-name { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 600; color: var(--bone); margin-bottom: 0.3rem; }
  .member-role { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.35em; color: var(--gold-dim); text-transform: uppercase; }

  .shows-list { display: flex; flex-direction: column; }
  .show-row { display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(201,168,76,0.1); transition: background 0.2s; }
  .show-row:hover { background: rgba(201,168,76,0.03); }
  .show-date { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--blood-light); text-transform: uppercase; }
  .show-venue { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--bone); margin-bottom: 0.25rem; }
  .show-city { font-style: italic; font-size: 0.8rem; color: rgba(232,223,200,0.45); }
  .show-tickets { font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; padding: 0.5rem 1.2rem; border: 1px solid rgba(201,168,76,0.3); color: var(--gold); transition: all 0.2s; text-decoration: none; }
  .show-tickets:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

  #player-section { max-width: 1100px; }
  .player-wrapper { border: 1px solid rgba(201,168,76,0.2); background: rgba(13,10,9,0.9); overflow: hidden; }
  .player-main { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: 2rem 2.5rem; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .player-info { min-width: 0; }
  .player-track-name { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600; color: var(--bone); margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .player-album-name { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.3em; color: var(--gold-dim); text-transform: uppercase; }
  .player-controls { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }
  .ctrl-btn { background: none; border: none; cursor: pointer; color: rgba(232,223,200,0.5); transition: color 0.2s, transform 0.15s; padding: 0.3rem; line-height: 0; }
  .ctrl-btn:hover { color: var(--gold); transform: scale(1.1); }
  .ctrl-btn.play-pause { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(139,0,0,0.6); background: rgba(139,0,0,0.15); color: var(--bone); display: flex; align-items: center; justify-content: center; transition: all 0.25s; }
  .ctrl-btn.play-pause:hover { background: rgba(139,0,0,0.4); border-color: var(--blood-light); box-shadow: 0 0 16px rgba(139,0,0,0.5); transform: scale(1); }
  .player-progress-area { padding: 1rem 2.5rem; border-bottom: 1px solid rgba(201,168,76,0.08); }
  .progress-bar-track { width: 100%; height: 3px; background: rgba(201,168,76,0.1); cursor: pointer; position: relative; border-radius: 2px; }
  .progress-bar-fill { height: 100%; width: 0%; background: linear-gradient(to right, var(--blood), var(--gold-dim)); border-radius: 2px; pointer-events: none; transition: width 0.1s linear; }
  .progress-times { display: flex; justify-content: space-between; margin-top: 0.5rem; font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 0.2em; color: rgba(232,223,200,0.3); }
  .volume-row { padding: 0.8rem 2.5rem; display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(201,168,76,0.08); }
  .vol-label { font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 0.3em; color: rgba(232,223,200,0.3); text-transform: uppercase; }
  .vol-slider { -webkit-appearance: none; appearance: none; width: 100px; height: 2px; background: rgba(201,168,76,0.15); outline: none; cursor: pointer; border-radius: 2px; }
  .vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 10px; height: 10px; border-radius: 50%; background: var(--gold-dim); cursor: pointer; border: none; }
  .vol-slider::-moz-range-thumb { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-dim); cursor: pointer; border: none; }
  .tracklist { max-height: 260px; overflow-y: auto; }
  .tracklist::-webkit-scrollbar { width: 4px; }
  .tracklist::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 2px; }
  .track-item { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 1rem; padding: 0.9rem 2.5rem; cursor: pointer; border-bottom: 1px solid rgba(201,168,76,0.05); transition: background 0.2s; }
  .track-item:hover { background: rgba(201,168,76,0.04); }
  .track-item.active { background: rgba(139,0,0,0.12); }
  .track-num { font-family: 'Cinzel', serif; font-size: 0.6rem; color: rgba(232,223,200,0.25); text-align: center; }
  .track-item.active .track-num { color: var(--blood-light); }
  .track-title { font-family: 'Cinzel', serif; font-size: 0.8rem; color: rgba(232,223,200,0.65); }
  .track-item.active .track-title { color: var(--bone); }
  .track-dur { font-family: 'Cinzel', serif; font-size: 0.6rem; color: rgba(232,223,200,0.25); letter-spacing: 0.1em; }
  .playing-bars { display: none; align-items: flex-end; gap: 2px; height: 14px; }
  .track-item.active.playing .playing-bars { display: flex; }
  .track-item.active.playing .track-num { display: none; }
  .playing-bars span { display: block; width: 3px; background: var(--blood-light); border-radius: 1px; animation: bar 0.8s ease-in-out infinite alternate; }
  .playing-bars span:nth-child(2) { animation-delay: 0.2s; }
  .playing-bars span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes bar { from{height:4px;opacity:.5} to{height:14px;opacity:1} }

  .video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
  .video-card { border: 1px solid rgba(201,168,76,0.15); background: rgba(26,22,20,0.8); overflow: hidden; transition: border-color 0.3s, transform 0.3s; position: relative; }
  .video-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); }
  .video-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--blood), var(--gold-dim)); opacity: 0; transition: opacity 0.3s; }
  .video-card:hover::before { opacity: 1; }
  .video-frame-wrap { position: relative; width: 100%; padding-bottom: 56.25%; background: #0a0808; }
  .video-frame-wrap iframe, .video-frame-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
  .video-card-info { padding: 1.2rem 1.5rem; }
  .video-card-title { font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 600; color: var(--bone); margin-bottom: 0.3rem; }
  .video-card-desc { font-style: italic; font-size: 0.78rem; color: rgba(232,223,200,0.4); line-height: 1.5; }

  footer { position: relative; z-index: 1; text-align: center; padding: 4rem 2rem; border-top: 1px solid rgba(201,168,76,0.1); }
  .footer-name { font-family: 'Cinzel Decorative', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 0.2em; opacity: 0.7; }
  .social-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; list-style: none; }
  .social-links a { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.35em; color: rgba(232,223,200,0.4); text-decoration: none; text-transform: uppercase; transition: color 0.3s; }
  .social-links a:hover { color: var(--gold); }
  .footer-copy { font-size: 0.75rem; color: rgba(232,223,200,0.2); font-style: italic; }

  .ritual-divider { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 1rem 0 3rem; opacity: 0.35; }
  .ritual-divider-line { flex: 1; height: 1px; max-width: 200px; background: linear-gradient(to right, transparent, var(--gold-dim)); }
  .ritual-divider-line:last-child { background: linear-gradient(to left, transparent, var(--gold-dim)); }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1{transition-delay:.1s} .reveal-delay-2{transition-delay:.2s}
  .reveal-delay-3{transition-delay:.3s} .reveal-delay-4{transition-delay:.4s}
  .reveal-delay-5{transition-delay:.5s} .reveal-delay-6{transition-delay:.6s}

@media (max-width: 768px) {
  .hero { padding: 6rem 1.5rem 3.5rem; }
  .sigil-container { width: 150px; height: 150px; margin-bottom: 2rem; }
  .sigil-container > svg { width: 150px; height: 150px; }
  .sigil-inner svg { width: 110px; height: 110px; }
  .band-logo-img { max-width: min(250px, 75vw); }
  .band-genre { font-size: 0.6rem; margin-bottom: 2rem; }
  .hero-divider { margin-bottom: 2rem; }
  .hero-quote { font-size: 0.85rem; margin-bottom: 2rem; padding: 0 0.5rem; }
  .cta-group { gap: 0.75rem; }
  .btn { padding: 0.8rem 1.5rem; font-size: 0.6rem; }
  section { padding: 4rem 1.2rem; }
  .section-title { font-size: clamp(1.3rem, 7vw, 2rem); }
  .section-header { margin-bottom: 2.5rem; }
  .albums-grid { display: flex; flex-direction: column; align-items: center; }
  .albums-grid > div:empty { display: none; }
  .album-card { width: 100%; max-width: 320px; }
  .player-main { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.5rem 1.2rem; text-align: center; }
  .player-controls { justify-content: center; gap: 1.5rem; }
  .ctrl-btn { min-width: 44px; min-height: 44px; }
  .ctrl-btn.play-pause { width: 52px; height: 52px; }
  .player-progress-area { padding: 0.8rem 1.2rem; }
  .volume-row { padding: 0.8rem 1.2rem; }
  .vol-slider { flex: 1; width: auto; }
  .track-item { padding: 0.9rem 1.2rem; gap: 0.8rem; }
  .show-row { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 0.4rem 0.8rem; padding: 1.2rem 0; }
  .show-date { grid-column: 1 / -1; }
  .show-tickets { grid-row: 1 / 3; align-self: center; padding: 0.55rem 0.9rem; min-height: 44px; display: flex; align-items: center; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-name { font-size: clamp(1.3rem, 7vw, 2rem); margin-bottom: 1.5rem; }
  .social-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; max-width: 320px; margin: 0 auto 1.5rem; }
  .social-links li a { display: block; text-align: center; padding: 0.65rem 0.3rem; border: 1px solid rgba(201,168,76,0.12); font-size: 0.55rem; }
  .social-links li a:hover { border-color: rgba(201,168,76,0.4); color: var(--gold); }
  .footer-copy { font-size: 0.6rem; line-height: 1.7; }
  .ritual-divider { padding: 0.5rem 0 2rem; }
  #band .cta-group { margin-top: 2.5rem; justify-content: center; gap: 0.75rem; }
}
@media (max-width: 400px) { .cta-group { flex-direction: column; align-items: center; } .btn { width: 100%; max-width: 240px; text-align: center; } }
@media (max-width: 540px) { .video-grid { grid-template-columns: 1fr; } .members-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } .member-portrait { width: min(100px, 30vw); height: min(100px, 30vw); } .member-name { font-size: 0.8rem; } .member-role { font-size: 0.52rem; } }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } .members-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (max-width: 380px) { .social-links { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 769px) and (max-width: 1024px) { .members-grid { grid-template-columns: repeat(3, 1fr); } .video-grid { grid-template-columns: repeat(2, 1fr); } }