* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --background: #080909;
  --surface: #101312;
  --surface-light: #151918;
  --text: #f1eee6;
  --muted: #a8aaa4;
  --gold: #d7ad58;
  --gold-light: #f0cb78;
  --line: rgba(255,255,255,0.10);
  --max-width: 1180px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}


/* =========================================
   NAVIGATION
========================================= */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.nav-inner {
  width: min(1180px, calc(100% - 50px));
  margin: auto;
  padding: 25px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}


/* =========================================
   HERO
========================================= */

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 120px 25px 100px;

  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(215,173,88,0.17),
      transparent 32%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(40,155,130,0.13),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #111714 0%,
      #080909 55%,
      #15120c 100%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent 49.8%,
      rgba(255,255,255,0.025) 50%,
      transparent 50.2%
    );

  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.87;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: #d9d7d0;
}

.hero-description {
  margin: 38px auto 35px;

  color: #bdbeb8;

  font-size: clamp(0.85rem, 2vw, 1.08rem);
  letter-spacing: 0.07em;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-block;

  padding: 14px 24px;

  border-radius: 4px;

  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.14em;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--gold);
  color: #111;
  border: 1px solid var(--gold);
}

.button-primary:hover {
  background: var(--gold-light);
}

.button-secondary {
  background: rgba(255,255,255,0.03);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.button-secondary:hover {
  border-color: var(--gold);
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.glow-one {
  left: -250px;
  top: 25%;
  background: rgba(215,173,88,0.08);
}

.glow-two {
  right: -250px;
  bottom: 0;
  background: rgba(35,150,125,0.07);
}

.scroll-mark {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  color: #777a74;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
}

.scroll-mark span {
  width: 1px;
  height: 35px;
  background: var(--gold);
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
  width: min(var(--max-width), calc(100% - 50px));
  margin: auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 850px;
}

.section-heading.centred {
  margin: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;

  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.section-heading p {
  color: var(--muted);
  margin: 20px auto 0;
  max-width: 650px;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
  border-bottom: 1px solid var(--line);
}

.about-content {
  max-width: 850px;
  margin: 55px auto 0;
}

.about-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 0 20px;
}

.about-content .lead {
  color: #eeeae1;
  font-size: 1.35rem;
  line-height: 1.65;
}


/* =========================================
   MUSIC
========================================= */

.music-section {
  padding-bottom: 80px;
}

.release-grid {
  margin-top: 65px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 28px;
}

.release-card {
  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--line);
  border-radius: 8px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.release-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215,173,88,0.42);
}

.release-featured {
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.release-image {
  overflow: hidden;
  background: #050606;
}

.release-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.release-card:hover .release-image img {
  transform: scale(1.025);
}

.release-featured .release-image {
  min-height: 500px;
}

.release-info {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.release-number {
  color: #555a55;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.release-type {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.16em;
}

.release-info h3 {
  margin: 12px 0 15px;

  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.release-info h3 span {
  display: block;
  color: #aaa9a2;
}

.release-info p {
  color: var(--muted);
  margin: 0 0 25px;
}

.release-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.release-buttons a {
  display: inline-block;

  padding: 10px 14px;

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;

  color: #e7e4dc;

  font-size: 0.62rem;
  font-weight: bold;
  letter-spacing: 0.12em;

  text-decoration: none;

  transition: 0.2s ease;
}

.release-buttons a:hover {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
}


/* =========================================
   BANDCAMP FEATURE
========================================= */

.bandcamp-section {
  margin: 20px auto 100px;

  width: min(1100px, calc(100% - 50px));

  padding: 80px 40px;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      #151813,
      #0d100e
    );

  border: 1px solid rgba(215,173,88,0.20);
  border-radius: 10px;
}

.bandcamp-inner {
  max-width: 700px;
  margin: auto;
}

.bandcamp-section h2 {
  margin: 0;

  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.bandcamp-section p {
  max-width: 620px;
  margin: 22px auto 30px;

  color: var(--muted);
  line-height: 1.8;
}


/* =========================================
   LINKS
========================================= */

.links-section {
  padding-top: 80px;
}

.platform-grid {
  max-width: 900px;
  margin: 55px auto 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 12px;
}

.platform-grid a {
  min-height: 100px;

  padding: 22px 25px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: var(--surface);

  border: 1px solid var(--line);
  border-radius: 6px;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.platform-grid a:last-child {
  grid-column: 1 / -1;
}

.platform-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.platform-grid strong {
  font-size: 1rem;
}

.platform-grid span {
  margin-top: 4px;

  color: #777b75;

  font-size: 0.72rem;
}


/* =========================================
   FOOTER
========================================= */

footer {
  padding: 75px 25px 45px;

  text-align: center;

  border-top: 1px solid var(--line);

  color: #737771;
}

.footer-name {
  color: #e7e3da;

  font-size: 1.15rem;
  font-weight: bold;
}

.footer-label {
  margin-top: 6px;

  color: var(--gold);

  font-size: 0.62rem;
  font-weight: bold;
  letter-spacing: 0.20em;
}

.footer-line {
  width: 45px;
  height: 1px;

  margin: 28px auto;

  background: var(--gold);
}

footer p {
  margin: 0 0 22px;

  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

footer small {
  color: #4f534f;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

  .nav-inner {
    width: calc(100% - 35px);
  }

  .nav-links {
    gap: 15px;
  }

  .release-featured {
    display: block;
  }

  .release-featured .release-image {
    min-height: 0;
  }

  .release-image {
    aspect-ratio: 1 / 1;
  }

  .release-image img {
    aspect-ratio: 1 / 1;
  }

}


@media (max-width: 650px) {

  .nav-inner {
    padding-top: 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 110px 20px 90px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-description {
    font-size: 0.78rem;
  }

  .section {
    width: calc(100% - 35px);
    padding: 75px 0;
  }

  .about-content {
    margin-top: 40px;
  }

  .about-content .lead {
    font-size: 1.15rem;
  }

  .release-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .release-featured {
    grid-column: auto;
  }

  .release-info {
    padding: 28px;
  }

  .release-info h3 {
    font-size: 1.65rem;
  }

  .bandcamp-section {
    width: calc(100% - 35px);
    padding: 60px 22px;
    margin-bottom: 70px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .platform-grid a:last-child {
    grid-column: auto;
  }

  .platform-grid a {
    min-height: 85px;
  }

  footer {
    padding-top: 55px;
  }

}