:root {
  --black: #030D0A;
  --forest: #0B3D2E;
  --mid: #0F5C42;
  --teal: #1AFFA0;
  --teal-dim: #0DB870;
  --amber: #E8A94A;
  --amber-dim: #C4872A;
  --white: #EDF5F0;
  --muted: #7AB99A;

  --display: 'Fraunces', serif;
  --body: 'Space Grotesk', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--teal);
  color: var(--black);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

img {
  max-width: 100%;
  display: block;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(15, 92, 66, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 35% at 90% 10%, rgba(26, 255, 160, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(3, 13, 10, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(122, 185, 154, 0.12);
  transition: background .3s ease, border-color .3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 10px rgba(26, 255, 160, 0.25));
}

.footer-logo-img {
  width: 46px;
  height: 46px;
}

.logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

.logo-text span {
  color: var(--teal);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 9px 16px;
  border-radius: 100px;
  transition: color .25s ease, background .25s ease;
}

nav a:hover {
  color: var(--white);
  background: rgba(122, 185, 154, 0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(122, 185, 154, 0.3);
  border-radius: 10px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .25s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.open span {
  background: transparent;
}

.nav-toggle.open span::before {
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle.open span::after {
  top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ---------- Section base ---------- */
section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(26, 255, 160, 0.35);
  background: rgba(26, 255, 160, 0.05);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-top: 18px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.section-desc {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0 80px;
  position: relative;
}

.hero .eyebrow {
  margin-bottom: 26px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 980px;
  background: linear-gradient(180deg, var(--white) 35%, var(--muted) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
  -webkit-text-fill-color: var(--teal);
}

.hero-desc {
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 600px;
}

.waveform {
  width: 100%;
  max-width: 920px;
  height: 120px;
  margin: 56px auto 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 20px;
}

.waveform .bar {
  flex: 1;
  max-width: 6px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--teal), var(--teal-dim));
  animation: bounce 1.4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(26, 255, 160, 0.25);
}

@keyframes bounce {

  0%,
  100% {
    transform: scaleY(0.25);
    opacity: .55;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal);
  color: var(--black);
  box-shadow: 0 8px 26px rgba(26, 255, 160, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(26, 255, 160, 0.34);
  background: #3dffb2;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(237, 245, 240, 0.3);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  animation: bobble 2.2s ease-in-out infinite;
}

@keyframes bobble {

  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, 8px);
    opacity: 1;
  }
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
}

/* ---------- STATS ---------- */
.stats {
  padding: 64px 0;
  border-top: 1px solid rgba(122, 185, 154, 0.12);
  border-bottom: 1px solid rgba(122, 185, 154, 0.12);
  background: linear-gradient(180deg, rgba(15, 92, 66, 0.08), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats-grid .stat:not(:last-child) {
  border-right: 1px solid rgba(122, 185, 154, 0.15);
}

.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--teal);
}

.stat-label {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.about-img-wrap {
  position: sticky;
  top: 120px;
}

.about-img {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(122, 185, 154, 0.2);
  background: linear-gradient(160deg, var(--forest), var(--black));
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img .placeholder-icon {
  width: 64px;
  height: 64px;
  opacity: 0.25;
}

.img-caption {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.img-caption .handle {
  display: block;
  color: var(--teal-dim);
  margin-top: 2px;
}

.about-body p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.about-body p strong {
  color: var(--white);
  font-weight: 600;
}

.about-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin: 18px 0 26px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amber);
  border: 1px solid rgba(232, 169, 74, 0.35);
  background: rgba(232, 169, 74, 0.06);
  padding: 7px 16px;
  border-radius: 100px;
}

/* ---------- MUSIC ---------- */
.music-section {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(15, 92, 66, 0.25), transparent 70%);
}

.music-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--white);
  border-left: 3px solid var(--teal);
  padding-left: 22px;
  max-width: 640px;
  margin-bottom: 54px;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.song-card {
  background: linear-gradient(165deg, rgba(15, 92, 66, 0.25), rgba(3, 13, 10, 0.4));
  border: 1px solid rgba(122, 185, 154, 0.16);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease;
}

.song-card:hover {
  border-color: rgba(26, 255, 160, 0.4);
  transform: translateY(-4px);
}

.song-genre {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.song-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 10px;
  color: var(--white);
}

.song-desc {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  flex-grow: 1;
}

.player {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.play-btn {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  position: relative;
}

.play-btn:hover {
  transform: scale(1.06);
  background: #3dffb2;
}

.play-btn svg {
  width: 16px;
  height: 16px;
}

.play-icon-play {
  margin-left: 2px;
}

.play-btn.playing .play-icon-play {
  display: none;
}

.play-btn:not(.playing) .play-icon-pause {
  display: none;
}

.player-track {
  flex-grow: 1;
}

.player-bar {
  position: relative;
  height: 5px;
  border-radius: 4px;
  background: rgba(122, 185, 154, 0.2);
  overflow: hidden;
  cursor: pointer;
}

.player-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-dim), var(--teal));
  border-radius: 4px;
}

.player-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}

.spotify-embed {
  margin-top: 22px;
  border-radius: 12px;
  overflow: hidden;
}

.spotify-embed iframe {
  display: block;
  border-radius: 12px;
}

.song-card.collection {
  background: linear-gradient(165deg, rgba(26, 255, 160, 0.1), rgba(15, 92, 66, 0.18));
  border: 1px solid rgba(26, 255, 160, 0.3);
  justify-content: center;
}

.song-card.collection .eyebrow {
  margin-bottom: 14px;
  align-self: flex-start;
}

.song-card.collection h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
}

.song-card.collection p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.collection-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 0.85rem;
}

/* ---------- MISSION ---------- */
.mission-section {
  border-top: 1px solid rgba(122, 185, 154, 0.12);
}

.mission-section .section-head h2 .accent {
  color: var(--amber);
}

.mission-quote {
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-align: center;
  color: var(--teal);
  max-width: 780px;
  margin: 60px auto;
  padding: 40px 30px;
  border-top: 1px solid rgba(26, 255, 160, 0.25);
  border-bottom: 1px solid rgba(26, 255, 160, 0.25);
}

.recognition-head {
  text-align: center;
  margin-bottom: 34px;
}

.recognition-head h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.recognition-card {
  border: 1px solid rgba(122, 185, 154, 0.18);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  background: rgba(15, 92, 66, 0.08);
}

.recognition-card .ricon {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  color: var(--amber);
}

.recognition-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.recognition-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ---------- PRESS PLAY (callout) ---------- */
.press-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--mid) 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.press-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(26, 255, 160, 0.18), transparent 60%);
  pointer-events: none;
}

.press-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(26, 255, 160, 0.12), 0 10px 30px rgba(26, 255, 160, 0.3);
  position: relative;
  z-index: 1;
}

.press-icon svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  color: var(--black);
}

.press-section h2 {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  letter-spacing: -0.01em;
  max-width: 760px;
  margin: 0 auto;
}

.press-section p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.85;
}

.press-section .btn {
  position: relative;
  z-index: 1;
  margin-top: 36px;
}

/* ---------- CONNECT / SOCIALS ---------- */
.connect-section {
  text-align: center;
}

.connect-section .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.connect-section .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
  margin-top: 10px;
}

.social-card {
  background: linear-gradient(165deg, rgba(15, 92, 66, 0.25), rgba(3, 13, 10, 0.4));
  border: 1px solid rgba(122, 185, 154, 0.16);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease;
}

.social-card:hover {
  border-color: rgba(26, 255, 160, 0.4);
  transform: translateY(-4px);
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(237, 245, 240, 0.06);
  margin-bottom: 20px;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--white);
}

.social-card p {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  flex-grow: 1;
}

.social-card .btn {
  margin-top: 22px;
  align-self: flex-start;
  padding: 11px 22px;
  font-size: 0.85rem;
}

.social-card.mission-card {
  background: linear-gradient(165deg, rgba(232, 169, 74, 0.12), rgba(15, 92, 66, 0.18));
  border: 1px solid rgba(232, 169, 74, 0.3);
}

.social-card.mission-card h3 {
  font-size: 1.18rem;
}

.social-card.mission-card .btn-primary {
  background: var(--amber);
  color: var(--black);
  box-shadow: 0 8px 26px rgba(232, 169, 74, 0.25);
}

.social-card.mission-card .btn-primary:hover {
  background: #f4bb63;
}

/* ---------- CONTACT FORM ---------- */
.contact-section {
  border-top: 1px solid rgba(122, 185, 154, 0.12);
  background: linear-gradient(180deg, rgba(15, 92, 66, 0.07), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-top: 18px;
  letter-spacing: -0.01em;
}

.contact-info p {
  margin-top: 18px;
  color: var(--muted);
  max-width: 420px;
}

.contact-info .contact-email {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-form {
  background: rgba(15, 92, 66, 0.1);
  border: 1px solid rgba(122, 185, 154, 0.18);
  border-radius: 22px;
  padding: 38px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  background: rgba(3, 13, 10, 0.5);
  border: 1px solid rgba(122, 185, 154, 0.25);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.95rem;
  transition: border-color .25s ease, background .25s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(122, 185, 154, 0.5);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  background: rgba(3, 13, 10, 0.75);
  outline: none;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  border: none;
  margin-top: 6px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.form-status {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
}

.form-status.success {
  background: rgba(26, 255, 160, 0.1);
  border: 1px solid rgba(26, 255, 160, 0.35);
  color: var(--teal);
}

.form-status.error {
  background: rgba(232, 169, 74, 0.1);
  border: 1px solid rgba(232, 169, 74, 0.35);
  color: var(--amber);
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid rgba(122, 185, 154, 0.12);
  padding: 60px 0 36px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  justify-content: center;
}

.footer-byline {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.85rem;
}

.footer-menu li {
  display: flex;
  align-items: center;
}

.footer-menu a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  transition: color .2s ease;
}

.footer-menu a:hover {
  color: var(--teal);
}

.footer-menu .dot {
  color: rgba(122, 185, 154, 0.35);
}

.footer-bottom {
  margin-top: 30px;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.8;
  line-height: 1.8;
}

.footer-visits {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid rgba(122, 185, 154, 0.2);
  background: rgba(122, 185, 154, 0.05);
  padding: 8px 18px;
  border-radius: 100px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  transition: border-color .3s ease;
}

.footer-visits:hover {
  border-color: rgba(26, 255, 160, 0.35);
  color: var(--white);
}

.footer-visits svg {
  color: var(--teal);
  flex-shrink: 0;
}


/* ---------- FLOATING SOCIAL ICONS ---------- */
.floating-socials {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
  padding-right: 0;
}

.float-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.float-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px 0 0 14px;
  background: rgba(3, 13, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(122, 185, 154, 0.2);
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .3s ease, background .3s ease, transform .3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.float-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.float-icon--spotify:hover {
  background: rgba(3, 13, 10, 0.95);
  box-shadow: -6px 0 24px rgba(26, 255, 160, 0.55), 0 0 16px rgba(26, 255, 160, 0.3);
  transform: translateX(-3px);
}

.float-icon--youtube:hover {
  background: rgba(3, 13, 10, 0.95);
  box-shadow: -6px 0 24px rgba(26, 255, 160, 0.55), 0 0 16px rgba(26, 255, 160, 0.3);
  transform: translateX(-3px);
}

/* Slide-out label */
.float-label {
  position: absolute;
  right: 52px;
  white-space: nowrap;
  background: rgba(3, 13, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 255, 160, 0.3);
  border-radius: 10px 0 0 10px;
  padding: 9px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 1;
}

.float-label a {
  color: var(--teal);
  text-decoration: none;
}

.float-label a:hover {
  color: var(--white);
}

.float-item:hover .float-label {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Hide on very small screens so they don't overlap content */
@media (max-width:480px) {
  .floating-socials {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   LATEST RELEASE SLIDER
═══════════════════════════════════════════════════════════════ */
.latest-release {
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(15, 92, 66, 0.32), transparent 65%),
    linear-gradient(180deg, transparent, rgba(3, 13, 10, 0.5) 100%);
  border-bottom: 1px solid rgba(122, 185, 154, 0.12);
}

/* ── Header ── */
.lr-header {
  text-align: center;
  margin-bottom: 36px;
}

.lr-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-top: 18px;
  background: linear-gradient(135deg, var(--white) 0%, var(--teal) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lr-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal) 0%, #3dffb2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lr-subtitle {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Wrapper & Glow orbs ── */
.lr-slider-wrapper {
  position: relative;
  padding: 64px 0 20px;
}

.lr-glow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

.lr-glow--left {
  left: -120px;
  background: radial-gradient(circle, rgba(26, 255, 160, 0.14) 0%, transparent 70%);
  animation: lrGlowPulse 4s ease-in-out infinite;
}

.lr-glow--right {
  right: -120px;
  background: radial-gradient(circle, rgba(232, 169, 74, 0.10) 0%, transparent 70%);
  animation: lrGlowPulse 4s ease-in-out infinite 2s;
}

@keyframes lrGlowPulse {

  0%,
  100% {
    opacity: .6;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.12);
  }
}

/* ── Track ── */
.lr-track-outer {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.lr-track {
  display: flex;
  gap: 20px;
  transition: transform .55s cubic-bezier(.42, 0, .18, 1);
  will-change: transform;
  padding: 4px 2px;
}

/* ── Slide — desktop: 3 per view ── */
.lr-slide {
  /* 3 per view: (100% - 2 gaps) / 3 */
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(122, 185, 154, 0.18);
  background: linear-gradient(160deg, rgba(15, 92, 66, 0.22) 0%, rgba(3, 13, 10, 0.55) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr;
  /* stacked: media top, info below */
  grid-template-rows: auto 1fr;
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.lr-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(26, 255, 160, 0.04) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity .35s ease;
  opacity: 0;
}

.lr-slide:hover::before {
  opacity: 1;
}

.lr-slide:hover {
  border-color: rgba(26, 255, 160, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(26, 255, 160, 0.08);
}

.lr-slide--amber:hover {
  border-color: rgba(232, 169, 74, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(232, 169, 74, 0.08);
}

/* ── Media side ── */
.lr-media-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

/* Video */
.lr-video-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
  background: #000;
}

.lr-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}

.lr-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  pointer-events: none;
  transition: background .3s ease;
}

.lr-media-link:hover .lr-video-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), transparent 60%);
}

.lr-play-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 255, 160, 0.18);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(26, 255, 160, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: background .3s ease, transform .3s ease;
}

.lr-media-link:hover .lr-play-badge {
  background: var(--teal);
  color: var(--black);
  transform: scale(1.08);
}

.lr-play-badge svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

/* Image */
.lr-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.lr-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.lr-img--logo {
  object-fit: contain;
  background: linear-gradient(135deg, rgba(15, 92, 66, 0.5), rgba(3, 13, 10, 0.8));
  padding: 40px;
}

.lr-media-link:hover .lr-img {
  transform: scale(1.04);
}

.lr-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 13, 10, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  pointer-events: none;
}

.lr-img-overlay--amber {
  background: linear-gradient(to top, rgba(11, 29, 20, 0.7) 0%, transparent 50%);
}

.lr-spotify-badge,
.lr-apple-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(3, 13, 10, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 255, 160, 0.3);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.lr-apple-badge {
  border-color: rgba(232, 74, 160, 0.4);
  color: #e84aa0;
}

/* ── Info side ── */
.lr-slide-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lr-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 16px;
}

.lr-type-badge--video {
  background: rgba(232, 74, 74, 0.12);
  color: #e84a4a;
  border: 1px solid rgba(232, 74, 74, 0.3);
}

.lr-type-badge--spotify {
  background: rgba(26, 255, 160, 0.1);
  color: var(--teal);
  border: 1px solid rgba(26, 255, 160, 0.3);
}

.lr-type-badge--apple {
  background: rgba(232, 74, 160, 0.1);
  color: #e84aa0;
  border: 1px solid rgba(232, 74, 160, 0.3);
}

.lr-slide-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.lr-slide-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lr-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap .25s ease, color .25s ease;
}

.lr-cta-link:hover {
  gap: 12px;
  color: #3dffb2;
}

.lr-cta-link--amber {
  color: var(--amber);
}

.lr-cta-link--amber:hover {
  color: #f4bb63;
}

/* ── Navigation Arrows ── */
.lr-arrow {
  position: absolute;
  top: 0;
  transform: none;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(3, 13, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(122, 185, 154, 0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.lr-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--black);
  box-shadow: 0 0 24px rgba(26, 255, 160, 0.35);
  transform: scale(1.08);
}

.lr-arrow svg {
  width: 20px;
  height: 20px;
}

.lr-arrow--prev {
  right: 72px;
  left: auto;
}

.lr-arrow--next {
  right: 14px;
}

.lr-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Dots ── */
.lr-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  padding-bottom: 8px;
}

.lr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(122, 185, 154, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .35s cubic-bezier(.42, 0, .18, 1), background .3s ease, border-radius .35s ease;
}

.lr-dot--active {
  width: 28px;
  border-radius: 100px;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(26, 255, 160, 0.5);
}

.lr-dot:hover:not(.lr-dot--active) {
  background: rgba(122, 185, 154, 0.6);
}

/* ── Counter ── */
.lr-counter {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

#lrCurrent {
  color: var(--teal);
  font-size: 1rem;
}

.lr-counter-sep {
  margin: 0 6px;
  opacity: 0.4;
}

/* ── Responsive ── */
/* Tablet: 2 per view */
@media (max-width:980px) {
  .lr-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .lr-arrow--prev {
    right: 72px;
    left: auto;
  }

  .lr-arrow--next {
    right: 14px;
  }
}

/* Mobile: 1 per view */
@media (max-width:600px) {
  .lr-slide {
    flex: 0 0 100%;
  }

  .lr-slide-info {
    padding: 18px 18px 20px;
  }

  .lr-arrow {
    width: 38px;
    height: 38px;
  }

  .lr-arrow--prev {
    right: 58px;
    left: auto;
  }

  .lr-arrow--next {
    right: 10px;
  }

  .lr-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .lr-track {
    gap: 12px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width:980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    position: static;
    max-width: 380px;
    margin: 0 auto;
  }

  .song-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .stats-grid .stat:nth-child(2) {
    border-right: none;
  }

  .stats-grid .stat:nth-child(odd) {
    border-right: 1px solid rgba(122, 185, 154, 0.15);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:760px) {
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(3, 13, 10, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(122, 185, 154, 0.15);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }

  nav.open {
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    padding: 14px 28px 22px;
    gap: 2px;
  }

  nav a {
    display: block;
    padding: 14px 10px;
    border-radius: 10px;
  }

  .nav-toggle {
    display: block;
  }

  section {
    padding: 80px 0;
  }

  .song-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid .stat {
    border-right: none !important;
    padding: 10px 0;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}