/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080808;
  --bg-mid:   #111111;
  --accent:   #c0392b;       /* deep crimson — worship + rock */
  --accent-2: #e74c3c;
  --gold:     #d4a853;
  --text:     #f0f0f0;
  --muted:    #888;
  --border:   rgba(255,255,255,0.08);
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-links .nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 1.1rem;
  border-radius: 3px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .nav-links { gap: 1rem; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.65) saturate(0.8);
  transition: transform 8s ease;
}

.hero:hover .hero-img { transform: scale(1.03); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.1) 0%,
    rgba(8,8,8,0.2) 40%,
    rgba(8,8,8,0.85) 80%,
    rgba(8,8,8,1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem 5rem;
  max-width: 700px;
}

.hero-sub {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-location {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.5rem;
  color: var(--muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.35);
  margin-left: 1rem;
}
.btn-ghost:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.hero-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 1.5rem; }
.section-dark { background: var(--bg); }
.section-mid  { background: var(--bg-mid); }

.container { max-width: 960px; margin: 0 auto; }
.center { text-align: center; }

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.section-title.left { text-align: left; }

.section-sub {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 300;
  margin-bottom: 3rem;
}

/* ── New Single Drop ─────────────────────────────────────── */
.section-drop {
  background: linear-gradient(160deg, #0a0005 0%, #1a0010 40%, #0d000a 100%);
  border-top: 1px solid rgba(192, 57, 43, 0.3);
  border-bottom: 1px solid rgba(192, 57, 43, 0.3);
  position: relative;
  overflow: hidden;
}

.drop-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  z-index: 0;
}

.drop-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,0,5,0.55) 0%, rgba(26,0,16,0.45) 50%, rgba(13,0,10,0.60) 100%);
  z-index: 1;
}

.section-drop .container { position: relative; z-index: 2; }

.section-drop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(192,57,43,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.drop-eyebrow {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.5rem;
}

.drop-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 30%, rgba(212,168,83,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.9));
}

.drop-eyebrow, .drop-date {
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.drop-date {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.cd-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  min-width: 90px;
  text-align: center;
  transition: color 0.3s;
}

.cd-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

.cd-sep {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  padding-bottom: 1.5rem;
  align-self: center;
}

/* ── Spotify ─────────────────────────────────────────────── */
.spotify-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.stream-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.stream-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.stream-btn.spotify  { background: #1DB954; color: #000; }
.stream-btn.youtube  { background: #FF0000; color: #fff; }
.stream-btn:hover    { transform: translateY(-2px); filter: brightness(1.15); }

/* ── Bio ─────────────────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 680px) {
  .bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.bio-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}

.bio-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85);
  transition: filter 0.3s;
}
.bio-img-wrap:hover .bio-img { filter: saturate(1); }

.bio-text p {
  color: rgba(240,240,240,0.8);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ── Social Grid ─────────────────────────────────────────── */
.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 130px;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.social-card svg { width: 28px; height: 28px; }
.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

.social-card.instagram:hover { border-color: #E1306C; color: #E1306C; }
.social-card.facebook:hover  { border-color: #1877F2; color: #1877F2; }
.social-card.youtube:hover   { border-color: #FF0000; color: #FF0000; }
.social-card.linktree:hover  { border-color: #43e55e; color: #43e55e; }
.social-card.applemusic:hover { border-color: #fc3c44; color: #fc3c44; }

/* ── Single Artwork ──────────────────────────────────────── */
.single-artwork-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.single-artwork {
  width: clamp(180px, 40vw, 300px);
  height: clamp(180px, 40vw, 300px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 8px 40px rgba(0,0,0,0.7),
    0 0 60px rgba(192,57,43,0.25);
  transition: box-shadow 0.4s ease;
}

.single-artwork:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 12px 60px rgba(0,0,0,0.8),
    0 0 100px rgba(212,168,83,0.35);
}

/* ── Out Now Section ─────────────────────────────────────── */
.out-now-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 20%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(212,168,83,0.5));
  margin-bottom: 1rem;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(212,168,83,0.4)); }
  50%       { filter: drop-shadow(0 0 50px rgba(212,168,83,0.8)); }
}

.out-now-sub {
  font-family: var(--font-head);
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.out-now-streams {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.out-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.out-now-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.out-now-btn:hover { transform: translateY(-3px); filter: brightness(1.15); }
.out-now-btn.spotify { background: #1DB954; color: #000; }
.out-now-btn.apple   { background: #fc3c44; color: #fff; }
.out-now-btn.amazon  { background: #FF9900; color: #000; }
.out-now-btn.yt      { background: #FF0000; color: #fff; }

/* ── Instagram Feed ──────────────────────────────────────── */
.ig-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 720px;
  margin: 0 auto;
}

.ig-tile {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: brightness(0.85) saturate(0.75);
}

.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0.0);
  transition: background 0.25s ease;
}

.ig-tile:hover {
  transform: scale(1.02);
  filter: brightness(1) saturate(1);
}

.ig-tile:hover::after {
  background: rgba(192,57,43,0.12);
}

/* Tile backgrounds — 6 distinct shots */
.ig-tile-1 { background-image: url('assets/clay-hero.jpg'); background-position: center 30%; }
.ig-tile-2 { background-image: url('assets/ig-IMG_0741.jpg'); background-position: center top; }
.ig-tile-3 { background-image: url('assets/ig-IMG_0806.jpg'); background-position: center center; }
.ig-tile-4 { background-image: url('assets/ig-IMG_0718.jpg'); background-position: center center; }
.ig-tile-5 { background-image: url('assets/airdrop-1.jpg'); background-position: center top; }
.ig-tile-6 { background-image: url('assets/ig-IMG_0721.jpg'); background-position: center 30%; }

@media (max-width: 520px) {
  .ig-feed-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
}

/* ── Teaser Audio Player ─────────────────────────────────── */
.teaser-player {
  margin: 2.5rem auto 0;
  max-width: 480px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.teaser-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.teaser-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.teaser-btn {
  background: var(--accent);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  color: #fff;
}
.teaser-btn:hover { background: var(--accent-2); transform: scale(1.08); }
.teaser-btn svg { width: 22px; height: 22px; }

.teaser-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.teaser-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s linear;
}

.teaser-time {
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
  min-width: 70px;
  text-align: right;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── Fade-in animations ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
