@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,650;9..144,800&display=swap");

:root {
  --ink: #f4efe5;
  --paper: #e6dac5;
  --muted: #b7ac9a;
  --dark: #080806;
  --night: #101412;
  --panel: #17130f;
  --line: rgba(244, 239, 229, 0.16);
  --amber: #d7a84f;
  --teal: #4f8f86;
  --brick: #a75045;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: linear-gradient(rgba(8, 8, 6, 0.82), rgba(8, 8, 6, 0.28));
  backdrop-filter: blur(14px);
}

.wordmark {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--amber);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 70px) clamp(54px, 8vw, 92px);
}

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

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.9), rgba(8, 8, 6, 0.46), rgba(8, 8, 6, 0.12)),
    linear-gradient(0deg, rgba(8, 8, 6, 0.9), transparent 55%);
}

.hero-copy {
  position: relative;
  width: min(860px, 100%);
}

.kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(4.4rem, 15vw, 13rem);
  line-height: 0.82;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 6vw, 5.8rem);
  line-height: 0.92;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy p:not(.kicker) {
  max-width: 640px;
  color: var(--paper);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button,
.platform-grid a,
.song-actions a,
.contact a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.platform-grid a:hover,
.song-actions a:hover,
.contact a:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 168, 79, 0.8);
}

.button-solid {
  background: var(--amber);
  color: #15100a;
}

.listen-panel,
.songs,
.story,
.photos,
.contact {
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

.listen-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1fr;
  gap: clamp(26px, 6vw, 80px);
  background: var(--night);
}

.platform-grid {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.platform-grid a {
  background: rgba(244, 239, 229, 0.04);
}

.section-title {
  max-width: 900px;
  margin-bottom: 34px;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 16px;
}

.song-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.song-card:nth-child(4n + 1) {
  background: #1b1610;
}

.song-card:nth-child(4n + 2) {
  background: #111917;
}

.song-card:nth-child(4n + 3) {
  background: #191211;
}

.song-number {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
}

.song-card p {
  color: var(--muted);
}

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

.song-actions a {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.8rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: var(--paper);
  color: #17120e;
}

.story-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.story .kicker {
  color: #8f4a35;
}

.story-copy p {
  color: #4b4033;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.photo-wall {
  columns: 3 250px;
  column-gap: 16px;
}

.photo-wall figure {
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.photo-wall img {
  width: 100%;
  height: auto;
}

.contact {
  background: #14110e;
}

.contact h2 {
  max-width: 850px;
}

.contact a {
  width: fit-content;
  background: var(--amber);
  color: #15100a;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 70px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-shade {
    background:
      linear-gradient(rgba(8, 8, 6, 0.28), rgba(8, 8, 6, 0.92)),
      linear-gradient(90deg, rgba(8, 8, 6, 0.72), transparent);
  }

  .listen-panel,
  .story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(4rem, 24vw, 6.6rem);
  }

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

  nav {
    gap: 8px 14px;
  }
}
