:root {
  --sky: #84d8d2;
  --sky-soft: #c8ebe0;
  --sand: #d9903c;
  --clay: #8f5131;
  --ink: #17110d;
  --paper: #fff6e8;
  --muted: #5f4b3d;
  --border: rgba(23, 17, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(
    180deg,
    #91dcd6 0,
    #b9e5d9 34rem,
    #d9bd70 64rem,
    #d48639 92rem,
    #b65f2b 120rem,
    #e8c796 120rem,
    #e8c796 100%
  );
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Ubuntu,
    Cantarell,
    "Noto Sans",
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.wrap {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(132, 216, 210, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.site-header .brand img {
  display: block;
  width: 66px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(23, 17, 13, 0.28);
}

.nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.nav a:hover {
  text-decoration: underline;
}

/* hero */
.hero {
  position: relative;
  padding: clamp(52px, 8vw, 76px) 0 58px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  position: absolute;
  right: 0;
  left: 50%;
  bottom: -90px;
  width: min(760px, 76vw);
  height: min(560px, 58vw);
  content: "";
  background: url("../img/brand/alien-desert-rocket-mountain.jpg") center /
    cover no-repeat;
  border: 10px solid rgba(255, 246, 232, 0.74);
  box-shadow: 0 24px 70px rgba(74, 39, 17, 0.25);
  opacity: 0.72;
  transform: translateX(-50%) rotate(-1.5deg);
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--ink);
  font-family: UnifrakturCook, Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 12vw, 142px);
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 246, 232, 0.45);
  overflow-wrap: anywhere;
}

.hero .tagline {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 650;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-block;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.btn.ghost {
  color: var(--ink);
  background: rgba(255, 246, 232, 0.36);
}

.alien-members {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
  max-width: min(850px, 100%);
  margin: 46px 0 -72px;
  align-items: end;
}

.alien-members img {
  display: block;
  width: 100%;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(74, 39, 17, 0.28));
}

/* sections */
.content {
  padding: 48px 0;
  background: transparent;
}

.content#about {
  background: transparent;
  color: var(--ink);
  border-top: 0;
  border-bottom: 0;
}

.content.alt {
  background: transparent;
  color: var(--ink);
  border-top: 0;
  border-bottom: 0;
}

#social {
  background: #e8c796;
  border-top: 1px solid rgba(23, 17, 13, 0.16);
  padding-bottom: 86px;
}

#merch {
  position: relative;
  margin-top: -54px;
  padding-top: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 246, 232, 0.34) 0%,
    rgba(232, 199, 150, 0.96) 42%,
    #e8c796 100%
  );
  border-top: 1px solid rgba(23, 17, 13, 0.12);
}

.content h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.player-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.link-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.link-list li {
  margin: 8px 0;
}

.link-list a {
  color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.content a {
  color: #4b2a1a;
  font-weight: 750;
  text-decoration-color: rgba(75, 42, 26, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.content a:hover {
  color: #123f3d;
  text-decoration-color: currentcolor;
}

/* music section */
.music-section {
  text-align: center;
}

.music-video {
  position: relative;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0 auto 20px;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.music-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.music-subscribe {
  margin-top: 12px;
}

.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #f00;
  border-radius: 8px;
}

.yt-btn .yt-icon {
  display: inline-block;
}

/* footer */
.site-footer {
  padding: 28px 0;
  color: var(--paper);
  background: var(--ink);
}

@media (width <= 720px) {
  .hero {
    padding: 54px 0 42px;
  }

  .hero::before {
    right: auto;
    left: 50%;
    bottom: 110px;
    width: 120vw;
    height: 78vw;
    opacity: 0.42;
    transform: translateX(-50%) rotate(-1.5deg);
  }

  .alien-members {
    grid-template-columns: 1fr;
    max-width: 76vw;
    margin-bottom: -88px;
  }

  .alien-members img {
    max-height: 420px;
  }
}

@media (width <= 560px) {
  html {
    scroll-padding-top: 112px;
  }

  .site-header .wrap {
    align-items: flex-start;
    gap: 10px;
  }

  .site-header .brand img {
    width: 58px;
    height: 36px;
  }

  .nav {
    max-width: calc(100% - 68px);
    gap: 4px 10px;
  }

  .nav a {
    font-size: 11px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(52px, 20vw, 84px);
    line-height: 0.86;
  }

  .hero .tagline {
    max-width: 20rem;
    font-size: 17px;
  }

  .cta-row {
    flex-wrap: wrap;
  }

  .content {
    padding: 40px 0;
  }

  .music-video {
    border-radius: 6px;
  }

  .music-video iframe {
    border-radius: 6px;
  }
}

@media (width <= 380px) {
  .nav a {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(46px, 19vw, 68px);
  }

  .alien-members {
    max-width: 84vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
