@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  --ink: #130d09;
  --coal: #1d1710;
  --moss: #213c28;
  --moss-bright: #3e6b3e;
  --gold: #e4bf35;
  --gold-deep: #a97716;
  --cream: #fff3c7;
  --paper: #f6e7b8;
  --rose: #cf4277;
  --line: rgba(255, 243, 199, .24);
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(228, 191, 53, .16), transparent 34rem),
    linear-gradient(135deg, #10170f 0%, #261208 45%, #0b0f0a 100%);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  column-gap: clamp(34px, 5vw, 72px);
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(19, 13, 9, .48);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: auto;
  height: 90px;
}

.site-nav {
  display: contents;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.mobile-nav-links {
  display: none;
}

.nav-group-left {
  grid-column: 1;
  justify-content: flex-end;
}

.nav-group-right {
  grid-column: 3;
  justify-content: flex-start;
}

.brand {
  grid-column: 2;
  justify-self: center;
}

.site-nav a,
.brand {
  position: relative;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after,
.brand::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

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

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 243, 199, .08);
  color: var(--cream);
  padding: 9px 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(310px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  min-height: 100vh;
  padding: 126px clamp(22px, 6vw, 88px) 88px;
  opacity: 0;
  visibility: hidden;
  isolation: isolate;
  --album-shadow: rgba(0, 0, 0, .38);
  --album-wash-a: rgba(228, 191, 53, .18);
  --album-wash-b: rgba(33, 60, 40, .2);
  --album-dark: rgba(19, 13, 9, .88);
  --album-edge: rgba(255, 243, 199, .66);
  --album-filter: saturate(1.15);
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 30% 48%, var(--album-wash-a), transparent 28rem),
    linear-gradient(90deg, rgba(19, 13, 9, .48), rgba(19, 13, 9, .82)),
    var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity .7s ease, visibility .7s ease;
}

.hero-slide::before {
  display: none;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 243, 199, .035) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .045) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 24% 44%, var(--album-wash-a), transparent 18rem),
    radial-gradient(circle at 86% 22%, var(--album-wash-b), transparent 26rem),
    linear-gradient(180deg, rgba(19, 13, 9, .36), rgba(19, 13, 9, .74));
  mix-blend-mode: multiply;
  opacity: .92;
}

.hero-slide.album-egg {
  --album-wash-a: rgba(229, 194, 48, .32);
  --album-wash-b: rgba(48, 115, 55, .28);
  --album-dark: rgba(13, 19, 10, .88);
  --album-edge: rgba(229, 194, 48, .8);
  --album-shadow: rgba(38, 72, 29, .44);
  --album-filter: saturate(1.24) contrast(1.05);
}

.hero-slide.band-photo {
  display: block;
  padding: 0;
}

.hero-slide.band-photo::before,
.hero-slide.band-photo::after {
  display: none;
}

.hero-slide.band-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-full-image {
  width: 100%;
  height: 100vh;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.hero-slide.album-reality {
  --album-wash-a: rgba(207, 66, 119, .34);
  --album-wash-b: rgba(88, 41, 130, .28);
  --album-dark: rgba(24, 7, 28, .9);
  --album-edge: rgba(207, 66, 119, .78);
  --album-shadow: rgba(207, 66, 119, .32);
  --album-filter: saturate(1.28) hue-rotate(-8deg) contrast(1.08);
}

.hero-slide.album-phobos {
  --album-wash-a: rgba(252, 204, 51, .28);
  --album-wash-b: rgba(74, 8, 103, .35);
  --album-dark: rgba(15, 5, 27, .9);
  --album-edge: rgba(252, 204, 51, .75);
  --album-shadow: rgba(74, 8, 103, .4);
  --album-filter: saturate(1.2) contrast(1.1);
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.hero-art {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(520px, 100%);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--album-edge);
  box-shadow: 0 24px 70px var(--album-shadow), 0 0 80px var(--album-wash-a);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .92;
  text-wrap: balance;
}

.hero-slide:not(.band-photo) h1 {
  font-size: clamp(40px, 5.4vw, 72px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 21px;
  line-height: 1.12;
}

p {
  color: rgba(255, 243, 199, .82);
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.release-card a,
.press-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 243, 199, .55);
  background: rgba(19, 13, 9, .38);
  color: var(--cream);
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover,
.release-card a:hover,
.press-links a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

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

.button.ghost {
  background: rgba(255, 243, 199, .08);
}

.slider-controls {
  position: absolute;
  right: clamp(22px, 6vw, 88px);
  bottom: 34px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 38px;
  height: 4px;
  border: 0;
  background: rgba(255, 243, 199, .38);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--gold);
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 74px);
}

.section-heading {
  max-width: 1120px;
  margin: 0 auto 38px;
}

.new-album {
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(28px, 4vw, 48px);
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 19, 10, .9), rgba(13, 19, 10, .74) 42%, rgba(38, 72, 29, .86)),
    url("../img/album_egg.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.new-album::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 76% 44%, rgba(229, 194, 48, .22), transparent 24rem);
  pointer-events: none;
}

.new-album::after {
  content: "";
  position: absolute;
  right: clamp(12px, 4vw, 70px);
  bottom: 0;
  z-index: 1;
  width: min(34vw, 420px);
  aspect-ratio: 640 / 1000;
  background: url("../img/silhouette duo.png") bottom right / contain no-repeat;
  opacity: 1;
  pointer-events: none;
}

.new-album-art,
.new-album-copy {
  position: relative;
  z-index: 2;
}

.new-album-art {
  width: min(1320px, 100%);
}

.new-album-art img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.new-album-copy {
  display: grid;
  justify-items: center;
  width: min(920px, 100%);
}

.new-album-copy h2 {
  max-width: 920px;
}

.album-date {
  margin: 18px 0 18px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.new-album-copy p:not(.eyebrow):not(.album-date) {
  max-width: 720px;
  font-size: 18px;
}

.releases {
  background:
    linear-gradient(90deg, rgba(13, 19, 10, .92), rgba(13, 19, 10, .72) 45%, rgba(24, 7, 28, .88)),
    url("../img/orangesuits_background.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}

.release-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-height: 100%;
  padding: 14px;
  background: rgba(255, 243, 199, .08);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
}

.release-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 243, 199, .34);
}

.release-card > div {
  display: flex;
  flex-direction: column;
}

.release-card h3 {
  font-size: 18px;
}

.release-card p:not(.release-year) {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.45;
}

.release-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.release-actions a {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  font-size: 11px;
}

.release-year {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.videos {
  background:
    linear-gradient(rgba(4, 7, 5, .9), rgba(4, 7, 5, .94)),
    url("../img/wap_background.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.video-card {
  padding: 16px;
  background: rgba(19, 13, 9, .42);
  border: 1px solid var(--line);
}

.video-card.wide {
  grid-column: 1 / -1;
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.tour {
  background:
    linear-gradient(rgba(19, 13, 9, .78), rgba(19, 13, 9, .9)),
    url("../img/wap_background.jpg") center / cover fixed;
}

.tour-panel {
  max-width: 1120px;
  min-height: 240px;
  margin: 0 auto;
  padding: 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  border: 1px solid rgba(255, 243, 199, .35);
  box-shadow: var(--shadow);
}

.about-copy p {
  font-size: 17px;
}

.press-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact {
  padding-top: clamp(46px, 6vw, 76px);
  padding-bottom: clamp(46px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(62, 107, 62, .24), rgba(207, 66, 119, .14)),
    rgba(19, 13, 9, .5);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-grid article {
  min-height: 132px;
  padding: 10px 18px;
}

.contact-grid a {
  overflow-wrap: anywhere;
  color: var(--gold);
  text-decoration: none;
}

.contact-name {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  font-weight: 800;
}

.social-links {
  display: grid;
  gap: 10px;
}

.social-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 30px;
}

.social-row img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 42px 20px calc(42px + env(safe-area-inset-bottom));
  background: var(--ink);
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer img {
  width: 190px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    min-height: 72px;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
  }

  .site-nav {
    display: contents;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-group {
    display: none;
  }

  .mobile-nav-links {
    position: absolute;
    top: 100%;
    right: 18px;
    display: none;
    width: min(240px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(19, 13, 9, .96);
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
  }

  .site-nav.is-open .mobile-nav-links {
    display: flex;
  }

  .site-nav a {
    padding: 11px 0;
  }

  .hero-slide,
  .new-album,
  .about {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    position: absolute;
    align-content: start;
    gap: 30px;
    padding-top: 150px;
  }

  .hero-art {
    width: min(430px, 74vw);
  }

  .new-album-art {
    width: min(760px, 100%);
  }

  .release-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero-slider,
  .hero-slide {
    min-height: 920px;
  }

  .hero-slide {
    padding: 160px 20px 86px;
  }

  .hero-slide.band-photo .hero-full-image {
    height: 100%;
  }

  .hero-art {
    width: min(330px, 88vw);
  }

  h1 {
    font-size: 34px;
    line-height: .98;
    margin-bottom: 14px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.4;
  }

  .hero-slide .eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .hero-slide .button-row {
    margin-top: 18px;
  }

  .button-row,
  .press-links {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-slide .button-row,
  .new-album .button-row,
  .about .press-links {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .button,
  .release-card a,
  .press-links a {
    width: 100%;
  }

  .hero-slide .button,
  .new-album .button,
  .about .press-links a {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 38px;
    padding: 9px 7px;
    font-size: 9px;
    letter-spacing: .05em;
    white-space: nowrap;
  }

  .new-album .button-row {
    display: grid;
    grid-template-columns: .8fr .95fr 1.35fr;
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
    gap: 6px;
  }

  .new-album .button {
    min-height: 36px;
    padding: 8px 4px;
    font-size: 8px;
    letter-spacing: .02em;
  }

  .release-grid,
  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .video-card.wide {
    grid-column: auto;
  }

  .slider-controls {
    left: 20px;
    right: auto;
  }
}
