/* ============================================================
   SINISTER CULT — v2
   Inspired by In Flames: cinematic video hero, centered logo nav,
   sparse uppercase Raleway typography, dark editorial sections
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #000000;
  --dark:       #0a0a0a;
  --dark2:      #111111;
  --dark3:      #181818;
  --border:     rgba(255,255,255,0.08);
  --border2:    rgba(255,255,255,0.14);

  --white:      #ffffff;
  --off:        #c8c5c0;
  --muted:      #666660;
  --faint:      #333330;

  --teal:       #c8894e;
  --teal2:      #8a5a2a;
  --teal-glow:  rgba(200,137,78,0.12);

  --nav-h:      86px;

  --f-sans:  'Raleway', sans-serif;
  --f-serif: 'Cinzel', serif;
  --f-body:  'EB Garamond', serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--teal2); }
::selection { background: var(--teal-glow); color: var(--teal); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  gap: 0;
}

/* Nav links — shared */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-left  { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-links a {
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 1px;
  background: var(--teal);
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { left: 0; right: 0; }

/* Center logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  text-decoration: none;
}
.nav-tagline {
  font-family: var(--f-sans);
  font-size: 7.5px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  transition: color 0.3s;
}
.nav-logo:hover .nav-tagline {
  color: rgba(255,255,255,0.5);
}
.nav-logo img {
  height: 56px;
  width: auto;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
  opacity: 0.92;
}
.nav-logo:hover img { opacity: 1; filter: drop-shadow(0 0 12px rgba(78,201,192,0.4)); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  grid-column: 3;
  justify-self: end;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Mobile dropdown */
.nav-mobile {
  display: none;
  background: rgba(0,0,0,0.96);
  border-top: 1px solid var(--border);
  padding: 24px 40px 32px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.nav-mobile a {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--white); }

/* ============================================================
   HERO — VIDEO BACKGROUND
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video layer */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 ratio */
  pointer-events: none;
}

/* Gradient overlay — heavier at top and bottom, lighter in center */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.15) 30%,
      rgba(0,0,0,0.15) 60%,
      rgba(0,0,0,0.75) 100%
    );
}

/* When no video file is present, show a dark fallback */
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 80% at 50% 40%,
    rgba(20,35,35,1) 0%,
    rgba(0,0,0,1) 100%
  );
  z-index: -1;
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  width: 100%;
  animation: fadeUp 1.2s var(--ease) 0.3s both;
}

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

.hero-eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(42px, 8vw, 90px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: none;
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-cta {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: 1px solid var(--teal);
  padding: 14px 36px;
  margin-top: 8px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.hero-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--black);
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.4s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-label {
  font-family: var(--f-sans);
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.sc-section {
  padding: 100px 40px;
}

.sc-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sc-heading {
  font-family: var(--f-sans);
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.sc-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--teal), transparent);
  margin-bottom: 56px;
}
.sc-rule.left {
  width: 48px;
  background: var(--teal2);
  margin-bottom: 32px;
}

/* ============================================================
   TOUR
   ============================================================ */
.tour-section { background: var(--dark); }

.tour-list { display: flex; flex-direction: column; }

.tour-row {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}
.tour-row:first-child { border-top: 1px solid var(--border); }
.tour-row:hover { background: rgba(255,255,255,0.02); }
.tour-row.faded { opacity: 0.4; }

.tour-date {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--off);
}

.tour-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tour-name {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
}

.tour-venue {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--muted);
}

.tour-status {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--faint);
  padding: 4px 10px;
}
.tour-status.on { color: var(--teal); border-color: var(--teal2); }

.tour-ticket {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.tour-ticket:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--black);
}
.tour-ticket.off {
  color: var(--faint);
  border-color: var(--faint);
  pointer-events: none;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-family: var(--f-body);
  font-size: 19px;
  color: var(--off);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-text em { color: var(--white); font-style: italic; }

.outline-btn {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 28px;
  margin-top: 12px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.outline-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.about-aside blockquote {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 20px;
  line-height: 2;
  color: rgba(255,255,255,0.5);
  border-left: 2px solid var(--teal2);
  padding-left: 24px;
  margin-bottom: 14px;
}

.about-aside cite {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  padding-left: 26px;
}

/* ============================================================
   MUSIC
   ============================================================ */
.music-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.albums-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.album-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.album-card:hover { border-color: var(--border2); }

.album-art {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.album-art.cotm {
  background: linear-gradient(135deg, #0e1c1c 0%, #060e0e 100%);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.album-art.cotm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.album-art.cotm::after { display: none; }
.album-art.tqb {
  background: linear-gradient(135deg, #0a0a10 0%, #050508 100%);
  border-bottom: 1px solid var(--border);
}
.album-art::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(78,201,192,0.1);
}

.album-numeral {
  font-family: var(--f-sans);
  font-size: 80px;
  font-weight: 100;
  color: rgba(78,201,192,0.15);
  letter-spacing: -0.02em;
  user-select: none;
}

.album-info {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.album-meta {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
}

.album-title {
  font-family: var(--f-sans);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
}

.tracklist {
  list-style: none;
  margin: 6px 0;
  border-top: 1px solid var(--border);
}
.tracklist li {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--off);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  counter-increment: track;
  transition: color 0.2s, padding-left 0.2s;
}
.tracklist li::before {
  content: counter(track, decimal-leading-zero);
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--teal2);
  min-width: 20px;
}
.tracklist { counter-reset: track; }
.tracklist li:hover { color: var(--white); padding-left: 4px; }

.stream-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.pill {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--off);
  border: 1px solid var(--border2);
  padding: 6px 14px;
  transition: color 0.2s, border-color 0.2s;
}
.pill:hover { color: var(--teal); border-color: var(--teal2); }

.album-upcoming { opacity: 0.75; }
.album-upcoming:hover { opacity: 1; }

.album-tracks {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--muted);
  line-height: 2;
  border-left: 2px solid var(--teal2);
  padding-left: 14px;
  margin: 4px 0;
}

.coming-soon {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal2);
  border: 1px solid var(--teal2);
  padding: 5px 12px;
  margin-top: 6px;
}

/* ============================================================
   VIDEOS
   ============================================================ */
.videos-section {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 auto 40px;
  max-width: 900px;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--dark3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
  text-decoration: none;
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.video-card:hover .video-thumb img { opacity: 0.5; }
.video-card:hover .video-thumb { border-color: var(--teal); }

.vplay {
  font-size: 22px;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s, transform 0.3s;
}
.video-card:hover .vplay { color: var(--teal); transform: scale(1.2); }

.video-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.2s;
}
.video-card:hover .video-title { color: var(--white); }

.center-link { text-align: center; margin-top: 16px; }

/* ============================================================
   FOLLOW
   ============================================================ */
.follow-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.social-links a {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--white); }
.social-links span { color: var(--faint); font-size: 10px; }

.mailing-wrap {
  border: 1px solid var(--border);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 8px 40px;
  align-items: center;
  position: relative;
}
.mailing-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal2), transparent);
}

.mailing-wrap h3 {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
}
.mailing-wrap p {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--muted);
}

.mailing-form {
  display: flex;
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
}
.mailing-form input {
  background: var(--black);
  border: 1px solid var(--border2);
  border-right: none;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 14px;
  padding: 12px 20px;
  outline: none;
  width: 220px;
  transition: border-color 0.2s;
}
.mailing-form input:focus { border-color: var(--teal2); }
.mailing-form input::placeholder { color: var(--muted); }

.mailing-form button {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.mailing-form button:hover { background: var(--teal); border-color: var(--teal); color: var(--black); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  height: 54px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.footer-logo:hover { opacity: 0.85; }

.footer-tagline {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-copy {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--faint);
}

.footer-top {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}
.footer-top:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .albums-grid { grid-template-columns: 1fr; }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .mailing-wrap { grid-template-columns: 1fr; padding: 36px 28px; }
  .mailing-form { grid-row: auto; grid-column: auto; }
  .mailing-form input { flex: 1; width: auto; }
}

@media (max-width: 700px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 44px 1fr 44px; align-items: center; padding: 0 20px; }
  .nav-logo  { padding: 0; grid-column: 2; justify-self: center; }
  .nav-logo img { height: 48px; }
  .nav-toggle { display: flex; grid-column: 3; justify-self: end; }

  .sc-section { padding: 72px 24px; }
  .hero-title  { font-size: clamp(36px, 10vw, 60px); }

  .tour-row { grid-template-columns: 90px 1fr; grid-template-rows: auto auto; gap: 8px 16px; padding: 18px 0; }
  .tour-status { grid-column: 2; }
  .tour-ticket { grid-column: 1 / -1; width: fit-content; }

  .videos-grid { grid-template-columns: 1fr; }
  .social-links { gap: 14px; }
}

/* ============================================================
   BANDSINTOWN WIDGET
   ============================================================ */
.bit-widget-wrap {
  width: 100%;
}

/* Force transparent background on all widget internals */
.bit-widget-wrap .bit-widget,
.bit-widget-wrap .bit-widget * {
  font-family: var(--f-sans) !important;
}

.bit-widget-wrap .bit-widget .bit-top-track-wrapper,
.bit-widget-wrap .bit-widget .bit-event-list-item {
  border-color: var(--border) !important;
}

/* Lineup */
.lineup {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.lineup-label {
  font-family: var(--f-sans) !important;
  font-size: 11px !important;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal) !important;
  margin-bottom: 14px !important;
}
.lineup-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lineup-list li {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--off);
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 0;
}
.lineup-list li span {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off);
}

/* Single album layout */
.albums-grid.single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

/* Spotify embed */
.spotify-wrap {
  max-width: 760px;
  margin-bottom: 28px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border2);
  filter: brightness(0.95) contrast(1.02);
}
.spotify-wrap iframe {
  display: block;
  border-radius: 0;
}
.music-section .stream-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 760px;
}

/* Music two-column layout */
.music-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.music-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}
.album-year {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.music-side-desc {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--off);
  line-height: 1.8;
  border-left: 2px solid var(--teal);
  padding-left: 16px;
  margin: 8px 0;
}
.music-side .stream-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
@media (max-width: 760px) {
  .music-layout { grid-template-columns: 1fr; }
}

/* Social icon circles */
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}
.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  flex-shrink: 0;
}
.social-icon-btn svg {
  width: 16px;
  height: 16px;
}
.social-icon-btn:hover {
  background: var(--white);
  color: var(--black);
}

/* Bigger video thumbs + inline player */
.video-thumb {
  cursor: pointer;
}
.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 2;
}
.video-thumb.playing img,
.video-thumb.playing .vplay {
  display: none;
}
@media (max-width: 700px) {
  .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .about-text p {
    line-height: 1.6;
    font-size: 16px;
  }
  .music-layout { grid-template-columns: 1fr; }
  .social-icons { justify-content: center; }
  .mailing-wrap { padding: 28px 20px; }
  .mailing-form { flex-direction: column; }
  .mailing-form input { border-right: 1px solid var(--border2); border-bottom: none; width: 100%; }
  .mailing-form button { width: 100%; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 700px;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-label {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.contact-name {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
}
.contact-value {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--off);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-value:hover { color: var(--white); }
.contact-epk {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 4px;
}
.contact-epk:hover { opacity: 0.7; }
@media (max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
