:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --text: #f5f5f5;
  --text-dim: #999999;
  --red: #d1273f;
  --border: rgba(255,255,255,0.1);
  --font: 'Heebo', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: var(--red); color: var(--text); }

.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 640px; }
.container.center { text-align: center; }
.center { text-align: center; }

/* Top nav */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 20px 24px;
}

.topnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 800;
  font-size: 1.4375rem;
  letter-spacing: 0.02em;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.menu-btn span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Full-screen menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.menu-overlay.is-open { opacity: 1; visibility: visible; }

.menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.menu-link {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s ease;
}

.menu-link:hover { color: var(--red); }

.menu-socials {
  display: flex;
  gap: 28px;
}

.menu-socials a { color: var(--text); opacity: 0.8; transition: opacity 0.2s ease; }
.menu-socials a:hover { opacity: 1; color: var(--red); }
.menu-socials svg { width: 24px; height: 24px; }

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating clip row — small, on top of the hero video, desktop only */
.clip-row {
  display: none;
}

.float-clip {
  display: none;
}

@media (min-width: 900px) {
  .clip-row {
    display: flex;
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    gap: 20px;
    z-index: 1;
  }

  .float-clip {
    display: block;
    position: relative;
    width: min(26vw, 320px);
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .float-clip:hover {
    transform: scale(1.03);
    border-color: var(--red);
  }
}

.float-clip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.25);
  transition: background 0.25s ease;
}

.float-clip:hover::after {
  background: rgba(10,10,10,0.4);
}

.float-clip iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260%;
  height: 260%;
  transform: translate(-50%, -50%);
  filter: grayscale(0.1) brightness(0.9);
  pointer-events: none;
}

.clip-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.clip-play svg {
  width: 34px;
  height: 34px;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.float-clip:hover .clip-play { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 30%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 12vh;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text);
  opacity: 0.75;
  animation: cueBounce 2s ease-in-out infinite;
}

.scroll-cue svg { width: 22px; height: 22px; }

@keyframes cueBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* Buttons */
.btn-solid {
  display: inline-block;
  padding: 14px 24px;
  background: var(--text);
  color: #0a0a0a;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease;
}

@media (min-width: 640px) {
  .btn-solid { padding: 16px 40px; font-size: 0.95rem; }
}

.btn-solid:hover { background: var(--red); color: var(--text); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: #0a0a0a;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-pill .ic { width: 18px; height: 18px; flex-shrink: 0; }

.btn-pill:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  background: var(--red);
  color: var(--text);
}

@media (min-width: 640px) {
  .btn-pill { padding: 15px 32px; font-size: 0.95rem; }
  .btn-pill .ic { width: 20px; height: 20px; }
}

/* Sections */
.section { padding: 110px 0; }
.section.alt { background: var(--bg-alt); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.bio-text {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.9;
}

.music-sub {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 36px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
}

@media (min-width: 560px) {
  .subscribe-form { flex-direction: row; max-width: none; }
}

.subscribe-input {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 2px;
}

.subscribe-input::placeholder { color: var(--text-dim); }
.subscribe-input:focus { outline: none; border-color: var(--red); }

.subscribe-form .btn-solid {
  border: none;
  white-space: nowrap;
}

.platform-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Instagram grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 36px 0 28px;
}

@media (min-width: 640px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

.ig-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  display: block;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ig-tile:hover img { transform: scale(1.06); }

.ig-play {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 0.8rem;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

.ig-follow {
  display: block;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.ig-follow:hover { color: var(--red); }

/* Contact */
#contact .btn-solid { margin-bottom: 40px; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.social-row a { color: var(--text); opacity: 0.8; transition: opacity 0.2s ease, color 0.2s ease; }
.social-row a:hover { opacity: 1; color: var(--red); }
.social-row svg { width: 24px; height: 24px; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  color: var(--text-dim);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .menu-overlay, .menu-btn span, .btn-solid, .btn-pill, .social-row a, .menu-link, .float-clip, .float-clip::after, .clip-play { transition: none; }
  .scroll-cue { animation: none; }
}
