:root {
  --deep: #102314;
  --leaf: #1f6f50;
  --banana: #ffd84a;
  --flower: #ff7a4d;
  --mint: #8af7b5;
  --paper: #fff8df;
  --ink: #172016;
  --muted: #5f6558;
  --line: rgba(23, 32, 22, 0.16);
  --shadow: 0 24px 60px rgba(16, 35, 20, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(16, 35, 20, 0.72), rgba(16, 35, 20, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  width: clamp(62px, 7vw, 94px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.32));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--banana);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 64px;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 55% 12%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 35, 20, 0.86) 0%, rgba(16, 35, 20, 0.46) 43%, rgba(16, 35, 20, 0.08) 78%),
    linear-gradient(0deg, rgba(16, 35, 20, 0.64), rgba(16, 35, 20, 0.08) 48%);
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
  min-width: 0;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 14px;
  padding: 8px 13px;
  border: 1px solid rgba(16, 35, 20, 0.28);
  border-radius: 8px;
  background: var(--banana);
  color: var(--deep);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--banana);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 13vw, 10.5rem);
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(1.04rem, 1.8vw, 1.34rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--banana);
  color: var(--deep);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ticker {
  overflow: hidden;
  background: var(--deep);
  color: var(--mint);
}

.ticker-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ticker span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 78px;
}

.section-grid,
.bio-layout,
.press-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.section-grid.compact {
  align-items: center;
}

.section h2 {
  font-size: clamp(2.5rem, 7vw, 6.2rem);
  overflow-wrap: break-word;
}

#song-title {
  max-width: 8ch;
}

.lead {
  margin: 24px 0 0;
  max-width: 650px;
  color: #304130;
  font-size: clamp(1.08rem, 2.2vw, 1.52rem);
  font-weight: 720;
}

.song-band {
  background:
    linear-gradient(135deg, rgba(255, 216, 74, 0.82), rgba(255, 248, 223, 1) 42%),
    var(--paper);
}

.song-panel {
  border: 2px solid var(--deep);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 34px);
}

.song-panel blockquote {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.15;
}

.song-panel p:last-child {
  margin-bottom: 0;
}

.single-release-card {
  width: min(1180px, 100%);
  margin: clamp(30px, 5vw, 56px) auto 0;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  padding: clamp(16px, 2.6vw, 28px);
}

.single-release-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.single-release-card h3 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.single-release-card p:not(.panel-label) {
  max-width: 620px;
  margin: 0;
  color: #304130;
  font-size: 1.05rem;
  font-weight: 760;
}

.feature-grid {
  width: min(1180px, 100%);
  margin: clamp(36px, 6vw, 70px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
}

.feature-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--flower);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature h3,
.fact-list h3 {
  margin: 0 0 10px;
  line-height: 1.12;
  font-size: 1.25rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.spotify-band {
  background:
    linear-gradient(90deg, rgba(16, 35, 20, 0.96), rgba(31, 111, 80, 0.86)),
    var(--deep);
  color: #fff;
}

.spotify-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.spotify-layout .lead {
  color: rgba(255, 255, 255, 0.82);
}

.spotify-link {
  margin-top: 28px;
  background: #1ed760;
  color: var(--deep);
}

.spotify-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.spotify-frame iframe {
  display: block;
  border: 0;
}

.bio-band {
  background: var(--deep);
  color: #fff;
}

.bio-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.bio-side {
  display: grid;
  gap: 18px;
}

.bio-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(138, 247, 181, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.bio-photo img {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
  object-position: center 18%;
}

.bio-photo figcaption {
  padding: 10px 14px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-list {
  border: 1px solid rgba(138, 247, 181, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(20px, 3vw, 30px);
}

.fact-list h3 {
  color: var(--banana);
}

.fact-list dl {
  margin: 0;
}

.fact-list div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.fact-list dt {
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 4px 0 0;
}

.detail-band {
  background: #fff;
}

.special-list {
  display: grid;
  gap: 14px;
}

.special-list p {
  margin: 0;
  border-left: 6px solid var(--flower);
  background: var(--paper);
  padding: 18px 20px;
  font-weight: 800;
}

.press-band {
  background: var(--leaf);
  color: #fff;
}

.press-copy p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.quote {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(16, 35, 20, 0.28);
  color: #fff;
  font-size: clamp(1.18rem, 2vw, 1.52rem) !important;
  font-weight: 900;
  line-height: 1.25;
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hashtags span {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 216, 74, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
}

.press-kit {
  width: min(1180px, 100%);
  margin: clamp(40px, 6vw, 78px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.press-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(16, 35, 20, 0.38);
}

.press-card img {
  width: 100%;
  height: clamp(230px, 28vw, 330px);
  object-fit: cover;
  object-position: center 22%;
}

.press-card-copy {
  padding: clamp(18px, 2.5vw, 26px);
}

.press-card-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.press-card-copy p:not(.panel-label) {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
}

.press-download {
  width: 100%;
  background: var(--banana);
  color: var(--deep);
}

.imprint-band {
  background: var(--paper);
  color: var(--ink);
}

.imprint-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.imprint-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.imprint-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(18px, 2.4vw, 26px);
}

.imprint-block h3 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 1.1rem;
  line-height: 1.15;
}

.imprint-block p {
  margin: 0;
  color: var(--muted);
}

.imprint-block a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration: none;
}

.imprint-block a:hover {
  color: var(--flower);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--deep);
  color: #fff;
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 16px;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 84svh;
    padding-top: 110px;
  }

  .hero-image {
    object-position: 56% center;
  }

  .section-grid,
  .bio-layout,
  .press-layout,
  .spotify-layout,
  .imprint-layout {
    grid-template-columns: 1fr;
  }

  .imprint-content {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .single-release-card {
    grid-template-columns: 1fr;
  }

  .press-kit {
    grid-template-columns: 1fr;
  }

  .ticker-inner {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  .brand-logo {
    width: 64px;
  }

  .nav-links {
    width: auto;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 8px;
  }

  .hero {
    min-height: 82svh;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .hero-copy {
    max-width: 29ch;
  }

  .button {
    width: 100%;
  }

  .ticker-inner {
    grid-template-columns: 1fr;
  }

  .ticker span {
    min-height: 56px;
  }

  .section h2 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  #song-title {
    max-width: 7.4ch;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
