@font-face {
  font-family: "Saira";
  src: url("/assets/fonts/saira.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 50% 125%;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/jetbrains-mono-italic.woff2") format("woff2");
  font-weight: 100 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #fff;
  --ink: #000;
  --graphite: #595959;
  --page: 84rem;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --space: clamp(3.5rem, 7vw, 6rem);
  --notch: clamp(3.5rem, 9vw, 9rem);
  --notch-drop: calc(var(--notch) * 0.5774);
  --lift: 6px;
  --statement-size: clamp(1.875rem, 4vw, 3.75rem);
  --statement-end: calc(max(0px, (100vw - var(--page)) / 2) + var(--gutter) + var(--statement-size) * 11);
  --sans: "Saira", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
  color-scheme: light;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: env(safe-area-inset-top, 0px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.125rem;
  line-height: 1.55;
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.page {
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nowrap {
  white-space: nowrap;
}

.tile {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: calc(var(--lift) * -1) var(--lift) 0 var(--ink);
  transition: top 0.12s ease, left 0.12s ease, box-shadow 0.12s ease;
}

a.tile:hover,
button.tile:hover {
  top: 3px;
  left: -3px;
  box-shadow: -3px 3px 0 var(--ink);
}

a.tile:active,
button.tile:active {
  top: var(--lift);
  left: calc(var(--lift) * -1);
  box-shadow: 0 0 0 var(--ink);
}

.masthead {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.masthead-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 50%;
  -webkit-mask-image: linear-gradient(90deg, transparent calc(var(--statement-end) + 1.5rem), #000 calc(var(--statement-end) + 20rem));
  mask-image: linear-gradient(90deg, transparent calc(var(--statement-end) + 1.5rem), #000 calc(var(--statement-end) + 20rem));
}

.masthead-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(3rem, 7vw, 5.5rem);
  min-height: clamp(26rem, 40vw, 36rem);
  padding-block: clamp(1.5rem, 3vw, 2.5rem) calc(var(--notch-drop) + clamp(2.5rem, 5vw, 4rem));
}

.masthead-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.masthead-logo img {
  width: clamp(10rem, 18vw, 15rem);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  padding: 0.55rem 0.9rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
}

.studio-statement {
  margin: 0;
  font-family: var(--mono);
  font-style: italic;
  font-weight: 600;
  font-size: var(--statement-size);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.studio-statement span {
  display: block;
}

.studio-intro {
  margin: clamp(1.25rem, 2.5vw, 2rem) 0 0;
  max-width: calc(var(--statement-size) * 11);
  font-size: clamp(1.125rem, 1.7vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
}

.band {
  position: relative;
  margin-top: calc(var(--notch-drop) * -1);
  padding-block: var(--space) calc(var(--space) + var(--notch-drop));
  background: var(--band-bg);
  color: var(--band-ink);
  clip-path: polygon(0 0, calc(100% - var(--notch)) 0, 100% var(--notch-drop), 100% 100%, 0 100%);
}

.band:last-child {
  padding-bottom: var(--space);
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.band--reverse .band-grid {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.band--reverse .band-emblem {
  grid-column: 2;
  grid-row: 1;
}

.band--reverse .band-text {
  grid-column: 1;
  grid-row: 1;
}

.band-emblem {
  justify-self: center;
}

.band-title {
  margin: 0;
  font-weight: 800;
  font-stretch: 62%;
  font-size: clamp(3rem, 7.4vw, 6.75rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
}

.band-summary {
  margin: 1.75rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  line-height: 1.5;
  color: var(--band-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.button {
  padding: 0.8rem 1.3rem 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  font-stretch: 75%;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 1.4rem 0 0 -0.7em;
  padding: 0.4em 0.7em;
  font-size: 1rem;
  font-weight: 600;
  transition: gap 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.more::before {
  content: "";
  flex: none;
  width: 0.72em;
  height: 0.82em;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  transition: transform 0.18s ease;
}

.more:hover,
.more:focus-visible {
  gap: 0.9em;
  background: var(--band-accent);
  color: var(--ink);
}

.more:hover::before,
.more:focus-visible::before {
  transform: rotate(90deg);
}

.more--pulse {
  position: relative;
  z-index: 0;
}

.more--pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.7em;
  z-index: -1;
  width: 0.72em;
  height: 0.82em;
  margin-top: -0.41em;
  background: var(--band-accent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  pointer-events: none;
  animation: more-pulse 2.4s ease-out infinite;
}

.more--pulse:hover::after,
.more--pulse:focus-visible::after {
  animation: none;
  opacity: 0;
}

@keyframes more-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  70%,
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

.band-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin: var(--space) 0 0;
  padding: 0 0 0 var(--lift);
  list-style: none;
}

.frame {
  --cut: clamp(1.25rem, 2.5vw, 2.25rem);
  filter: drop-shadow(-7px 7px 0 var(--frame-shadow, var(--ink)));
}

.frame-inner {
  padding: 3px;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% calc(var(--cut) * 0.5774), 100% 100%, 0 100%);
}

.frame-inner > * {
  display: block;
  width: 100%;
  clip-path: polygon(0 0, calc(100% - var(--cut) + 2px) 0, 100% calc((var(--cut) - 2px) * 0.5774), 100% 100%, 0 100%);
}

.band-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tinted > :nth-child(3n + 1) {
  --frame-shadow: var(--band-tint-1);
}

.tinted > :nth-child(3n + 2) {
  --frame-shadow: var(--band-tint-2);
}

.tinted > :nth-child(3n) {
  --frame-shadow: var(--band-tint-3);
}

.band--alcyone {
  --band-bg: #bd00ff;
  --band-ink: #fff;
  --band-soft: #f8ecff;
  --band-accent: #00f0ff;
  --band-tint-1: #00f0ff;
  --band-tint-2: #ec7aff;
  --band-tint-3: #91b0ff;
}

.band--alcyone .band-emblem {
  width: 100%;
  max-width: 28rem;
}

.band--iyetra {
  --band-bg: #e0a246;
  --band-ink: #000;
  --band-soft: #231600;
  --band-accent: #de1f64;
  --band-tint-1: #de1f64;
  --band-tint-2: #d2df3c;
  --band-tint-3: #a1ccff;
}

.band--iyetra .band-emblem {
  width: auto;
  height: clamp(18rem, 31vw, 29rem);
}

.colophon {
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--graphite);
  text-align: center;
}

.colophon p {
  margin: 0 auto;
  max-width: 62rem;
}

.colophon p + p {
  margin-top: 0.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.band--first {
  margin-top: 0;
  clip-path: none;
}

.sitebar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.sitebar-logo img {
  width: clamp(8rem, 13vw, 10.5rem);
}

.section-title {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-stretch: 62%;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-lockup {
  margin: 0;
}

.hero-lockup img {
  width: 100%;
  max-width: 22rem;
}

.store-button {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.store-button small {
  font-size: 0.8125rem;
  font-weight: 600;
  font-stretch: 100%;
  letter-spacing: 0;
  text-transform: none;
}

.trailer-frame {
  --frame-shadow: #00f0ff;
}

.funding {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.funding p {
  margin: 0 0 0.75rem;
  font-weight: 800;
  font-stretch: 75%;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.funding img {
  width: 100%;
  max-width: 24rem;
  margin-inline: auto;
}

.trailer {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--ink);
  cursor: pointer;
}

.trailer img,
.frame-inner > iframe {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.frame-inner > iframe {
  height: auto;
  border: 0;
}

.trailer-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(3.5rem, 7vw, 5rem);
  aspect-ratio: 1;
  translate: -50% -50%;
}

.trailer-play::before {
  content: "";
  width: 38%;
  height: 44%;
  margin-left: 12%;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.trailer:hover .trailer-play,
.trailer:focus-visible .trailer-play {
  top: calc(50% + 3px);
  left: calc(50% - 3px);
  box-shadow: -3px 3px 0 var(--ink);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.quotes blockquote {
  margin: 0;
  font-family: var(--mono);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.quotes blockquote p {
  margin: 0;
}

.quotes em {
  font-style: inherit;
  font-weight: 700;
}

.quote-source {
  margin: 1.25rem 0 0;
  font-weight: 700;
}

.quote-source a {
  color: var(--band-accent);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 0 clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.story-title {
  grid-column: 1;
}

.story-grid .prose {
  grid-column: 1;
}

.prose p {
  margin: 0;
  max-width: 38rem;
  color: var(--band-soft);
}

.prose p + p {
  margin-top: 1.1rem;
}

.accent {
  white-space: nowrap;
  color: var(--band-highlight);
}

.story-kicker {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  text-align: center;
  font-family: var(--mono);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.story-kicker span,
.story-kicker strong {
  display: block;
}

.story-kicker strong {
  font-weight: 800;
  color: var(--band-highlight);
}

.story-art {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  margin: 0;
  padding: 0 0 0 var(--lift);
  list-style: none;
}

.story-art img {
  height: auto;
}

.story-portrait {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  width: 100%;
  max-width: 26rem;
  margin-left: var(--lift);
  --frame-shadow: #00f0ff;
}

.release-hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  grid-template-areas:
    "intro media"
    "stores stores";
  align-items: start;
  gap: clamp(2.5rem, 5vw, 3.5rem) clamp(2.5rem, 7vw, 7rem);
}

.release-intro {
  grid-area: intro;
}

.release-media {
  grid-area: media;
}

.store-row {
  grid-area: stores;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding-left: var(--lift);
}

.store-row .button {
  width: 100%;
}

.houses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.houses figure {
  margin: 0;
  text-align: center;
}

.houses img {
  width: 100%;
  max-width: 9rem;
  margin-inline: auto;
}

.houses figcaption {
  max-width: 25rem;
  margin: 0.6rem auto 0;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--band-soft);
  text-wrap: balance;
}

.houses figcaption strong {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 800;
  font-stretch: 75%;
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--band-ink);
}

.features-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.features {
  margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
  padding: 0;
  list-style: none;
}

.features li {
  position: relative;
  max-width: 40rem;
  padding-left: 1.6rem;
  color: var(--band-soft);
}

.features li + li {
  margin-top: 1.1rem;
}

.features li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0.72em;
  height: 0.82em;
  background: var(--band-ink);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.features strong {
  color: var(--band-ink);
}

.features a {
  font-weight: 700;
  color: var(--band-ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin: 0;
  padding: 0 0 0 var(--lift);
  list-style: none;
}

.gallery a {
  display: block;
}

.gallery img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: filter 0.15s ease;
}

.gallery a:hover img,
.gallery a:focus-visible img {
  filter: brightness(1.12);
}

.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.facts {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0.75rem 1.5rem;
  margin: 0;
}

.facts dt {
  font-weight: 800;
  font-stretch: 75%;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  color: var(--band-soft);
}

.facts a {
  font-weight: 700;
  color: var(--band-ink);
}

.downloads {
  display: grid;
  gap: 1.25rem;
  justify-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.downloads small {
  font-size: 0.8125rem;
  font-weight: 600;
  font-stretch: 100%;
  letter-spacing: 0;
  text-transform: none;
}

.downloads .button {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.press-contact {
  margin: 2rem 0 0;
  color: var(--band-soft);
}

.press-contact a {
  font-weight: 700;
  color: var(--band-ink);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin: 1rem 0 0 -0.7em;
  padding: 0;
  list-style: none;
}

.link-row .more {
  margin: 0;
}

.follow {
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin: 0 0 1.75rem;
}

.follow .more {
  --band-accent: #ec7aff;
  color: var(--ink);
}

.title-row {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.title-sigil {
  flex: none;
  width: clamp(5.5rem, 11vw, 9rem);
}

.title-row h1 {
  margin: 0;
  font-weight: 800;
  font-stretch: 62%;
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 0.8;
  text-transform: uppercase;
}

.byline {
  margin: 1.25rem 0 0;
  font-weight: 800;
  font-stretch: 75%;
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.review {
  margin: 1.75rem 0 0;
  max-width: 34rem;
}

.review p {
  margin: 0;
  font-family: var(--mono);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.review footer {
  margin-top: 0.5rem;
  font-weight: 800;
}

.laurels {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}

.laurels li {
  position: relative;
  padding-left: 1.4rem;
}

.laurels li + li {
  margin-top: 0.35rem;
}

.laurels li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 0.7em;
  height: 0.8em;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.hero-grid {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.hero-art {
  width: 100%;
  margin-left: var(--lift);
  --frame-shadow: #de1f64;
}

.volume-buy {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  --frame-shadow: #de1f64;
}

.books {
  display: grid;
  gap: clamp(3.5rem, 7vw, 5.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.book {
  display: grid;
  grid-template-columns: clamp(10rem, 18vw, 15rem) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
  scroll-margin-top: 2rem;
}

.book-cover {
  margin-left: var(--lift);
}

.book-title {
  margin: 0 0 1.25rem;
  font-weight: 800;
  font-stretch: 62%;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.book-epigraph {
  margin: 0 0 1.1rem;
  max-width: 40rem;
  font-family: var(--mono);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.book-epigraph p {
  margin: 0;
}

.book .prose p {
  max-width: 40rem;
}

.book .actions {
  margin-top: 1.75rem;
}


.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgb(16 0 32 / 0.9);
}

.lightbox-stage {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 5rem clamp(1rem, 4vw, 4rem);
}

.lightbox-stage img {
  width: auto;
  max-width: min(100%, 1600px);
  height: auto;
  max-height: calc(100vh - 11rem);
  border: 3px solid var(--ink);
  box-shadow: -8px 8px 0 #00f0ff;
}

.lightbox-controls {
  position: fixed;
  inset: auto 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox .tile {
  padding: 0.6rem 1rem 0.55rem;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.band--indigo {
  --band-bg: #695ee6;
  --band-ink: #fff;
  --band-soft: #f1efff;
  --band-accent: #00f0ff;
}

.band--paper {
  --band-bg: var(--paper);
  --band-ink: var(--ink);
  --band-soft: #262626;
}

.band--sky {
  --band-bg: #a1ccff;
  --band-ink: #000;
  --band-soft: #0b1728;
}

.palette-alcyone {
  --band-highlight: #bd00ff;
  --band-tint-1: #bd00ff;
  --band-tint-2: #00f0ff;
  --band-tint-3: #ec7aff;
}

.palette-iyetra {
  --band-highlight: #de1f64;
  --band-accent: #de1f64;
  --band-tint-1: #de1f64;
  --band-tint-2: #d2df3c;
  --band-tint-3: #e0a246;
}

.band--lavender {
  --band-bg: #9892e0;
  --band-ink: #000;
  --band-soft: #15123a;
}

.band--pink {
  --band-bg: #ec7aff;
  --band-ink: #000;
  --band-soft: #1e0624;
  --band-tint-1: #bd00ff;
  --band-tint-2: #695ee6;
  --band-tint-3: #00f0ff;
}

@media (max-width: 48rem) {
  .sitebar {
    flex-direction: column;
    gap: 1.25rem;
  }

  .quotes,
  .story-grid,
  .features-grid,
  .press-grid,
  .book {
    grid-template-columns: minmax(0, 1fr);
  }

  .book-cover {
    width: 11rem;
  }

  .hero-art {
    margin-top: 0.5rem;
  }

  .houses {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .story-portrait {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    max-width: 18rem;
    margin-top: 2.5rem;
  }

  .release-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "intro"
      "stores"
      "media";
  }

  .store-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .lightbox-stage {
    padding-inline: 0.75rem;
  }

  .masthead-field {
    top: auto;
    left: auto;
    width: 180%;
    max-width: none;
    height: calc(var(--notch-drop) + clamp(8rem, 40vw, 13rem));
    object-position: 100% 50%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 55%);
  }

  .masthead-inner {
    min-height: 0;
    padding-bottom: calc(var(--notch-drop) + clamp(8rem, 40vw, 13rem));
  }

  .masthead-top {
    flex-direction: column;
    gap: 1.25rem;
  }

  .studio-statement span {
    display: inline;
  }

  .studio-intro {
    max-width: 36rem;
  }

  .site-nav ul {
    justify-content: flex-start;
  }

  .band-grid,
  .band--reverse .band-grid,
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .band--reverse .band-emblem,
  .band--reverse .band-text {
    grid-column: 1;
    grid-row: auto;
  }

  .band-emblem {
    justify-self: start;
  }

  .band--alcyone .band-emblem {
    max-width: 14rem;
  }

  .band--iyetra .band-emblem {
    height: 15rem;
  }

  .band-media {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 1rem calc(var(--gutter) + var(--lift));
    scroll-padding-inline: var(--gutter);
  }

  .band-media > li {
    scroll-snap-align: start;
  }
}

@media (min-width: 48.01rem) and (max-width: 64rem) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .tile,
  .more,
  .more::before,
  .gallery img {
    transition: none;
  }

  .more--pulse::after {
    animation: none;
    opacity: 0;
  }
}
