:root {
  --ink: #141312;
  --paper: #f8f3ea;
  --muted: #746c61;
  --line: rgba(20, 19, 18, 0.14);
  --gold: #c49b54;
  --sea: #5e9fab;
  --jade: #6aa47b;
  --rose: #c0716e;
  --white: #fffaf2;
  --shadow: 0 22px 60px rgba(20, 19, 18, 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;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.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(20px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(20, 19, 18, 0.72), rgba(20, 19, 18, 0.1));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.58);
  border-radius: 8px;
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover,
.site-nav a.active {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.label-hero {
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 5vw, 72px) 80px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 19, 18, 0.84) 0%, rgba(20, 19, 18, 0.5) 44%, rgba(20, 19, 18, 0.12) 100%),
    url("assets/fialt-sound-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-copy,
.artist-hero-copy {
  width: min(760px, 100%);
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 12vw, 9.8rem);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 500;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 850;
}

.button.primary {
  background: var(--white);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 242, 0.45);
  color: var(--white);
}

.intro-band,
.artists-section,
.artist-body {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.releases-section {
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 112px);
  background: var(--paper);
}

.intro-band {
  background: var(--ink);
  color: var(--white);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.split > p,
.artist-text {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.artists-section {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 30px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.artist-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  isolation: isolate;
}

.artist-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.artist-card.reading img,
.reading-hero img {
  object-position: center center;
}

.artist-card.coastal img,
.coastal-hero img {
  object-position: center center;
}

.artist-card.flow img,
.flow-hero img {
  object-position: center center;
}

.artist-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(20, 19, 18, 0.9), rgba(20, 19, 18, 0.12));
}

.artist-card:hover img {
  transform: scale(1.045);
}

.card-copy {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: var(--white);
}

.card-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.78);
}

.card-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid rgba(255, 250, 242, 0.42);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 850;
  background: rgba(255, 250, 242, 0.08);
}

.card-link:hover {
  background: rgba(255, 250, 242, 0.18);
}

.artist-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 72px) 72px;
  color: var(--white);
  overflow: hidden;
}

.artist-hero img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(20, 19, 18, 0.86), rgba(20, 19, 18, 0.42), rgba(20, 19, 18, 0.08));
}

.coastal-hero .eyebrow,
.coastal .tag {
  color: #9ed2d8;
}

.flow-hero .eyebrow,
.flow .tag {
  color: #a9d7a8;
}

.artist-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
}

.artist-facts {
  display: grid;
  align-content: start;
  gap: 10px;
}

.artist-facts p {
  margin: 0;
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 16px;
  color: var(--muted);
  font-weight: 800;
}

.coastal-hero + .artist-body .artist-facts p {
  border-left-color: var(--sea);
}

.flow-hero + .artist-body .artist-facts p {
  border-left-color: var(--jade);
}

.artist-text {
  color: var(--ink);
}

.artist-text p {
  margin: 0 0 22px;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.artist-text p:last-child {
  margin-bottom: 0;
}

.artist-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.artist-contact a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.artist-contact a:hover {
  border-color: rgba(20, 19, 18, 0.35);
  transform: translateY(-1px);
}

.release-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.release-item {
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 176px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 250, 242, 0.62);
}

.release-item h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

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

.platform-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  background: var(--white);
}

.platform-links a:hover {
  border-color: rgba(20, 19, 18, 0.35);
  transform: translateY(-1px);
}

.release-note {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 250, 242, 0.28);
    border-radius: 8px;
    padding: 8px;
    background: rgba(20, 19, 18, 0.94);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .split,
  .artist-layout,
  .artist-grid,
  .release-list {
    grid-template-columns: 1fr;
  }

  .artist-card {
    min-height: 430px;
  }

  .label-hero,
  .artist-hero {
    min-height: 82svh;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .label-hero,
  .artist-hero {
    padding: 112px 18px 46px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.6rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intro-band,
  .artists-section,
  .artist-body {
    padding: 46px 18px;
  }

  .card-copy {
    padding: 22px;
  }
}
