
:root {
  --paper: #eee9df;
  --ink: #17221d;
  --muted: #657068;
  --line: rgba(23, 34, 29, 0.18);
  --accent: #315c49;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  padding: 55px 0;
}

.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #d8d2c7;
  border-radius: 3px;
  box-shadow: 0 24px 55px rgba(25, 32, 28, .12);
}

h1, h2 {
  font-family: "Times New Roman", Times, serif;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4.8rem, 12vw, 10rem);
  line-height: .78;
  margin: 12px 0 28px;
  max-width: 700px;
}

h2 {
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: .95;
}

p {
  font-size: 1.08rem;
  line-height: 1.65;
}

.eyebrow {
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

.tagline {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.3;
  max-width: 560px;
  margin-bottom: 18px;
}

.intro {
  color: var(--muted);
  max-width: 570px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 54px;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
  transition: .18s ease;
}

.button:first-child,
.button:hover {
  background: var(--ink);
  color: var(--paper);
}

.release {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.release h2 {
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 12px;
}

.listen,
.about {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.embed {
  min-height: 180px;
  border: 1px solid var(--line);
  padding: 24px;
  background: rgba(255,255,255,.18);
}

.embed iframe {
  width: 100%;
  border: 0;
}

.about p {
  max-width: 730px;
  margin-top: 0;
}

.credits {
  color: var(--muted);
}

footer {
  border-top: 1px solid var(--line);
  padding: 35px 0 55px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

footer a {
  color: var(--ink);
  margin-left: 18px;
}

@media (max-width: 760px) {
  main { width: min(100% - 28px, 620px); }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .hero-image { order: 2; }
  .hero-copy { order: 1; }

  h1 { font-size: clamp(4.3rem, 25vw, 7rem); }

  .listen,
  .about {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 65px 0;
  }

  footer {
    display: block;
  }

  footer a {
    margin: 0 18px 0 0;
  }
}
