:root {
  color-scheme: light;
  --ink: #221612;
  --coffee: #3a2119;
  --wood: #8f4f24;
  --amber: #e58a35;
  --gold: #f6c96e;
  --cream: #f8efe1;
  --linen: #fff9ef;
  --rose: #d66f57;
  --shadow: 0 24px 70px rgba(34, 22, 18, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(246, 201, 110, 0.28), transparent 30%),
    linear-gradient(180deg, #fff8ec 0%, #f7e6d1 46%, #2d1b16 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(58, 33, 25, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 33, 25, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--linen);
  background: linear-gradient(180deg, rgba(34, 22, 18, 0.78), rgba(34, 22, 18, 0));
}

.brand-mark,
.footer-brand {
  font-family: Georgia, "Bookman Old Style", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  color: var(--gold);
  text-shadow: 2px 2px 0 var(--wood);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.92;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--linen);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("./assets/madi-allen-hero.jpg");
  background-size: cover;
  background-position: center 34%;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: inherit;
  filter: blur(18px) saturate(0.82) brightness(0.65);
  transform: scale(1.04);
}

.hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 66vw;
  height: 100%;
  object-fit: cover;
  object-position: center 33%;
  filter: saturate(0.95) contrast(1.05);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.9) 20%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.9) 20%, #000 100%);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 14, 10, 0.9) 0%, rgba(24, 14, 10, 0.72) 38%, rgba(24, 14, 10, 0.12) 78%),
    linear-gradient(0deg, rgba(24, 14, 10, 0.86) 0%, rgba(24, 14, 10, 0.22) 45%, rgba(24, 14, 10, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 112px);
  margin-right: auto;
  padding: 120px 0 12vh;
}

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

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Bookman Old Style", serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 760px;
  color: var(--gold);
  font-size: clamp(4.2rem, 12vw, 9.2rem);
  text-shadow:
    4px 4px 0 #9b4d22,
    8px 8px 0 rgba(48, 24, 14, 0.88);
}

h2 {
  color: var(--coffee);
  font-size: clamp(2.35rem, 6vw, 5.4rem);
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 249, 239, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(246, 201, 110, 0.72);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--coffee);
}

.button-secondary {
  color: var(--linen);
  background: rgba(34, 22, 18, 0.28);
  backdrop-filter: blur(10px);
}

.release-band {
  position: relative;
  z-index: 3;
  margin-top: -48px;
  padding: 0 clamp(18px, 5vw, 70px);
}

.release-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 2px solid rgba(246, 201, 110, 0.74);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.92);
  box-shadow: var(--shadow);
}

.release-cover {
  width: 124px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid var(--amber);
}

.release-inner h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.release-inner p:last-child {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(34, 22, 18, 0.76);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0;
}

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

.listen-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(320px, 1.32fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.spotify-frame {
  overflow: hidden;
  border: 2px solid rgba(58, 33, 25, 0.16);
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--coffee);
}

.spotify-frame iframe {
  border: 0;
  border-radius: 12px;
}

.stream-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.stream-links {
  grid-column: 2;
  margin-top: -46px;
  padding: 0 18px 20px;
  color: var(--linen);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bio-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(58, 33, 25, 0.08), transparent 42%),
    rgba(255, 249, 239, 0.58);
}

.bio-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.bio-copy {
  display: grid;
  gap: 18px;
  color: rgba(34, 22, 18, 0.82);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
}

.bio-copy p {
  margin: 0;
}

.join-section {
  color: var(--linen);
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border: 2px solid rgba(246, 201, 110, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(76, 38, 22, 0.96), rgba(27, 17, 14, 0.96)),
    var(--coffee);
  box-shadow: var(--shadow);
}

.join-panel h2 {
  color: var(--gold);
  text-shadow: 3px 3px 0 var(--wood);
}

.join-panel p {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 249, 239, 0.82);
}

.signup-form {
  display: grid;
  gap: 12px;
}

.signup-form label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.signup-form input {
  width: 100%;
  min-height: 52px;
  border: 2px solid rgba(246, 201, 110, 0.36);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--linen);
  background: rgba(255, 249, 239, 0.08);
  font: inherit;
}

.signup-form input::placeholder {
  color: rgba(255, 249, 239, 0.56);
}

.signup-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: var(--coffee);
  background: var(--gold);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.hidden-field {
  position: absolute;
  left: -5000px;
}

.form-note {
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 58px);
  color: rgba(255, 249, 239, 0.78);
  background: #1b110e;
}

.site-footer p {
  margin: 12px 0 0;
}

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

.footer-links {
  justify-content: flex-end;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

  .nav-links {
    gap: 12px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-media img {
    top: -10%;
    max-width: 100%;
    height: 110%;
    object-position: 58% 24%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(24, 14, 10, 0.92) 0%, rgba(24, 14, 10, 0.36) 58%, rgba(24, 14, 10, 0.32) 100%);
  }

  .hero-content {
    padding-bottom: 10vh;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6.4rem);
    text-shadow:
      3px 3px 0 #9b4d22,
      6px 6px 0 rgba(48, 24, 14, 0.88);
  }

  .release-inner,
  .listen-section,
  .bio-layout,
  .join-panel {
    grid-template-columns: 1fr;
  }

  .release-inner {
    margin-top: 10px;
  }

  .stream-links {
    grid-column: auto;
    margin-top: -8px;
    color: var(--coffee);
    padding: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .site-header {
    display: grid;
  }

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

  .release-inner {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .release-cover {
    width: 92px;
  }

  .release-inner h2 {
    font-size: 2.15rem;
  }
}
