@import url('https://fonts.cdnfonts.com/css/tall-films');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --black: #031024;
  --navy: #06172d;
  --navy-2: #08213b;
  --panel: #071b32;
  --ink: #f7fbff;
  --muted: #b9c6d2;
  --dim: #7f91a3;
  --moon: #d8bb73;
  --moon-soft: #f0d89a;
  --line: rgba(216, 187, 115, .44);
  --white-line: rgba(255, 255, 255, .18);
  --sea: #0e5f79;
  --cyan: #74d7e4;
  --max: 1100px;
  --display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --logo: 'Tall Films Expanded', 'Tall Films', 'Arial Narrow', sans-serif;
  --body: 'Manrope', Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 27%, rgba(216, 187, 115, .30) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 36%, rgba(216, 187, 115, .13), transparent 23%),
    linear-gradient(180deg, #06122a 0%, #071a32 43%, #061427 100%);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.62;
}

body::before {
  content: "";
  position: fixed;
  inset: 72px 0 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3, 9, 27, .15) 0%, rgba(5, 20, 40, .36) 36%, rgba(6, 16, 31, .84) 75%, rgba(4, 13, 26, .98) 100%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 72px 0 0;
  z-index: -3;
  /* background:
    linear-gradient(180deg, transparent 0 45%, rgba(116,215,228,.16) 48%, rgba(5,23,43,.2) 51%, transparent 56%),
    repeating-linear-gradient(0deg, rgba(116,215,228,.12) 0 1px, transparent 1px 17px),
    linear-gradient(100deg, rgba(1,8,20,.85) 0 20%, rgba(5,27,50,.44) 45%, rgba(216,187,115,.17) 82%, rgba(5,16,31,.9) 100%); */
  filter: saturate(.9);
  opacity: .98;
  pointer-events: none;
}

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

img {
  max-width: 100%
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  background: #fff;
  color: #000;
  padding: .75rem 1rem
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  background: rgba(3, 12, 27, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 270px 1fr 240px;
  align-items: center;
  gap: 24px;
}

.logo {
  justify-self: start;
  font-family: var(--logo);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: lowercase;
  color: rgba(247, 251, 255, .88);
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  transition: color .18s ease;
}

.logo span {
  display: inline
}

.logo span:nth-child(5)::after,
.logo span:nth-child(10)::after {
  content: " ";
  white-space: pre
}

.logo:hover,
.logo:focus-visible {
  color: var(--moon-soft)
}

.nav {
  justify-self: center;
  display: flex;
  gap: 38px;
  align-items: center;
  color: rgba(247, 251, 255, .72);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: lowercase;
}

.nav a {
  position: relative;
  padding: 24px 0 22px;
  transition: color .16s ease
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 2px;
  background: var(--moon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s steps(2, end);
}

.nav a.active,
.nav a:hover,
.nav a:focus-visible {
  color: var(--moon-soft)
}

.nav a.active::after,
.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1)
}

.social {
  justify-self: end;
  display: flex;
  gap: 22px;
  align-items: center
}

.social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: rgba(247, 251, 255, .82);
  border: 1px solid transparent;
  transition: color .16s ease, background .16s steps(2, end), border-color .16s ease, transform .16s ease
}

.social a:hover,
.social a:focus-visible {
  color: var(--moon-soft);
  background: rgba(216, 187, 115, .12);
  border-color: rgba(216, 187, 115, .36);
  transform: translateY(-1px)
}

.social svg {
  width: 20px;
  height: 20px;
  fill: currentColor
}

.display {
  font-family: var(--display);
  font-weight: 300;
  /* text-transform:lowercase; */
  letter-spacing: .08em;
  line-height: .95;
  color: var(--ink)
}

main {
  min-height: 54vh
}

.hero {
  --mx: 0;
  --my: 0;
  position: relative;
  overflow: hidden;
  min-height: 54vh;
  background-image: linear-gradient(90deg, rgba(3, 12, 27, .18) 0%, rgba(3, 12, 27, .10) 42%, rgba(3, 12, 27, .48) 100%), linear-gradient(180deg, rgba(2, 9, 22, .08) 0%, rgba(2, 9, 22, .16) 50%, rgba(2, 9, 22, .78) 100%), url("assets/night-sea-hero.jpg");
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at calc(78% + var(--mx)*8px) calc(56% + var(--my)*6px), rgba(216, 187, 115, .18), transparent 14%);
  pointer-events: none;
}

.hero-stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .024) 0 1px, transparent 1px 10px);
  opacity: .46;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 54px 34px 50px;
  display: grid;
  grid-template-columns: minmax(330px, 510px) minmax(340px, 1fr);
  gap: 70px;
  align-items: center;
}

.cover {
  display: block;
  width: 100%;
  max-width: 510px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
  transform: translate(calc(var(--mx)*5px), calc(var(--my)*4px));
  transition: transform .28s ease-out;
}

.hero-copy {
  max-width: 480px;
  padding-top: 10px;
  text-align: left;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .42);
  transform: translate(calc(var(--mx)*-5px), calc(var(--my)*-4px));
  transition: transform .28s ease-out;
}

.hero-kicker,
.eyebrow,
.footer h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
  color: var(--moon);
}

.hero-kicker {
  margin: 0 0 18px
}

.hero-title {
  margin: 0;
  max-width: 520px;
  font-family: var(--display);
  font-size: clamp(66px, 7.6vw, 96px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: lowercase;
  color: #fff;
}

.hero-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 30px 0 24px;
  background: rgba(216, 187, 115, .42);
  box-shadow: 108px 0 0 -106px var(--moon);
}

.hero-now {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--moon-soft);
  /* text-transform:lowercase; */
}

.hero-subtitle {
  margin: 0 0 18px;
  font-family: var(--body);
  font-size: 20px;
  font-style: italic;
  font-weight: 200;
  letter-spacing: .01em;
  text-transform: lowercase;
  color: rgb(47 192 217);
}

.release-copy {
  max-width: 430px;
  margin: 0;
  color: rgba(247, 251, 255, .88);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: 0;
}

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

.action-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 27px;
  border: 1px solid rgba(247, 251, 255, .34);
  background: rgba(4, 15, 29, .48);
  color: #fff;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .16s steps(2, end), color .16s ease, border-color .16s ease, transform .16s ease;
}

.action-link::before {
  /* content: ""; */
  margin-right: 10px;
  color: var(--moon)
}

.action-link.primary,
.btn {
  background: var(--moon);
  border-color: var(--moon);
  color: #07152a
}

.action-link.primary::before {
  content: "";
  display: none
}

.spotify-mark {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  fill: currentColor;
  flex: 0 0 auto
}

.action-link:hover,
.action-link:focus-visible,
.btn:hover,
.btn:focus-visible {
  background: #fff;
  border-color: #fff;
  color: #07152a;
  transform: translateY(-2px)
}

.pause {
  display: none
}

.page {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 34px 96px
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 16px
}

.songs {
  padding-top: 64px
}

.song {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(250px, 1fr);
  gap: 20px 58px;
  padding: 0 0 72px;
  margin-bottom: 76px;
  border-bottom: 1px solid rgba(216, 187, 115, .28);
}

.song:last-child {
  margin-bottom: 0
}

.song-featured {
  border-bottom-color: rgba(216, 187, 115, .68)
}

.song-cover {
  grid-row: 1 / span 2
}

.song-cover img {
  width: 100%;
  display: block;
  margin-bottom: 34px;
  box-shadow: 0 22px 65px rgba(0, 0, 0, .32)
}

.credits {
  align-self: end;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7
}

.credits em {
  color: #fff;
  font-style: italic
}

.song h2 {
  font-size: clamp(42px, 5.8vw, 72px);
  margin: 0 0 24px;
  color: #fff;
  letter-spacing: .02em
}

.song-intro {
  max-width: 490px;
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 24px
}

.song-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 34px
}

.lyrics {
  white-space: pre-line;
  color: rgba(247, 251, 255, .88);
  font-size: 15px;
  line-height: 1.65
}

.lyrics.columns {
  columns: 2;
  column-gap: 64px
}

.song.no-cover {
  grid-template-columns: 39% 1fr
}

.song.no-cover .credits {
  grid-column: 1
}

.song.no-cover h2,
.song.no-cover .lyrics {
  grid-column: 2
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 96px;
  align-items: start
}

.about h1,
.contact h1 {
  font-size: clamp(48px, 6vw, 72px);
  margin: 0 0 32px;
  max-width: 620px
}

.about p {
  max-width: 610px;
  margin: 0 0 18px;
  color: rgba(247, 251, 255, .86)
}

.about .lede {
  font-size: 20px;
  line-height: 1.52;
  color: #fff;
  margin-bottom: 24px
}

.people {
  padding: 32px 0 0;
  border-left: 1px solid rgba(216, 187, 115, .32);
  padding-left: 36px
}

.people h2 {
  font-size: 30px;
  margin: 0 0 14px;
  color: var(--moon-soft);
  letter-spacing: .07em
}

.people p {
  margin: 0 0 30px
}

.people em {
  font-style: italic;
  color: #fff
}

.contact-wrap {
  max-width: 650px;
  margin: 0 auto
}

.contact h1 {
  margin-bottom: 26px
}

.contact-intro {
  margin: 0 0 34px;
  color: var(--muted)
}

.field {
  display: block;
  margin-bottom: 22px
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.field label, label.field,
.group-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--moon-soft)
}

.field small {
  color: var(--dim);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px
}

input,
textarea {
  font: inherit
}

.contact input,
.contact textarea,
.newsletter-row input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(4, 15, 29, .56);
  color: #fff;
  min-height: 52px;
  padding: 13px 15px;
  outline: none
}

.contact input:focus,
.contact textarea:focus,
.newsletter-row input:focus {
  border-color: var(--moon);
  box-shadow: 0 0 0 3px rgba(216, 187, 115, .12)
}

.contact textarea {
  min-height: 128px;
  resize: vertical
}

.send-row {
  text-align: right
}

.contact .btn {
  min-width: 116px
}

.form-note {
  color: var(--dim);
  font-size: 13px;
  margin-top: 16px;
  text-align: right
}

.form-status {
  min-height: 1.4em;
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 0
}

.form-status[data-type="success"] {
  color: #bff5e7
}

.form-status[data-type="error"] {
  color: #ffd0d8
}

.btn:disabled {
  cursor: wait;
  opacity: .72
}

.footer {
  position: relative;
  padding: 34px 34px 80px;
  color: #fff
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, .06)
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px
}

.footer h3 {
  margin: 0 0 20px;
  font-size: 16px
}

.footer h3::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  margin: 0 0 .3em 14px;
  background: rgba(216, 187, 115, .42)
}

.spotify {
  border: 0;
  border-radius: 12px;
  width: 100%;
  height: 152px;
  max-width: 500px;
  background: rgba(4, 15, 29, .5)
}

.newsletter-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 460px
}

.newsletter-row input {
  min-height: 54px;
  border-right: 0
}

.newsletter-row .btn {
  min-width: 122px
}

.note {
  color: var(--dim);
  font-size: 12px;
  margin-top: 12px
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important
  }
}

@media (max-width:920px) {
  .site-header {
    position: relative
  }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 22px 20px;
    gap: 14px
  }

  .logo {
    justify-self: center
  }

  .nav {
    gap: 24px;
    flex-wrap: wrap
  }

  .nav a {
    padding: 4px 0 9px
  }

  .nav a::after {
    bottom: 0
  }

  .social {
    justify-self: center
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 22px 48px
  }

  .hero {
    min-height: auto
  }

  .cover {
    max-width: 520px;
    margin: 0 auto
  }

  .hero-copy {
    text-align: left;
    max-width: 620px;
    margin: 0 auto
  }

  .hero-title {
    font-size: clamp(56px, 14vw, 86px)
  }

  .page {
    padding: 58px 22px 78px
  }

  .song,
  .song.no-cover {
    grid-template-columns: 1fr;
    margin-bottom: 72px;
    gap: 22px
  }

  .song-cover,
  .credits,
  .song.no-cover .credits,
  .song.no-cover h2,
  .song.no-cover .lyrics {
    grid-column: auto;
    grid-row: auto
  }

  .lyrics.columns {
    columns: 1
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .people {
    border-left: 0;
    border-top: 1px solid rgba(216, 187, 115, .28);
    padding: 30px 0 0
  }

  .footer {
    padding: 34px 22px 66px
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 38px
  }

  .newsletter-row {
    max-width: none
  }

  .name-row {
    grid-template-columns: 1fr
  }

  .send-row,
  .form-note {
    text-align: left
  }
}

@media (max-width:540px) {
  .hero {
    background-position: center 62%
  }

  body::before,
  body::after {
    inset: 0
  }

  .logo {
    font-size: 20px;
    letter-spacing: .14em
  }

  .nav {
    gap: 18px;
    font-size: 13px
  }

  .social {
    gap: 14px
  }

  .hero-inner {
    padding-top: 30px
  }

  .hero-kicker {
    font-size: 15px
  }

  .hero-title {
    font-size: 54px
  }

  .hero-title::after {
    width: 80%;
    margin: 24px 0 20px
  }

  .hero-now {
    font-size: 29px
  }

  .hero-subtitle {
    font-size: 19px
  }

  .hero-actions {
    flex-direction: column
  }

  .action-link,
  .btn {
    width: 100%
  }

  .newsletter-row {
    flex-direction: column;
    gap: 10px
  }

  .newsletter-row input {
    border-right: 1px solid rgba(255, 255, 255, .13)
  }

  .song h2,
  .about h1,
  .contact h1 {
    font-size: 44px
  }

  .footer h3::after {
    width: 38px
  }
}