@font-face {
  font-family: "Sligoil";
  src: url("assets/fonts/Sligoil-Micro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sligoil";
  src: url("assets/fonts/Sligoil-MicroMedium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sligoil";
  src: url("assets/fonts/Sligoil-MicroBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Karla";
  src: url("assets/fonts/Karla-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Karla";
  src: url("assets/fonts/Karla-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #080605;
  --skin: #e9c4b8;
  --skin-light: #f2d6cc;
  --cream: #f7eadf;
  --skin-deep: #e0a795;
  --accent-orange: #e0522c;
  --accent-purple: #7a75be;
  --accent-teal: #007b7c;
  --white: #fff9f3;
  --max: 1180px;
  --gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--skin);
  font-family: "Karla", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  overflow-x: hidden;
  --nav-progress: 0;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 28px), 1260px);
  min-height: 58px;
  padding: 8px 10px 8px 18px;
  background: color-mix(in srgb, var(--skin-light) 88%, transparent);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 8px 8px 0 var(--ink);
  opacity: 1;
  overflow: hidden;
  pointer-events: auto;
  transform: translateX(-50%) translateY(calc((1 - var(--nav-progress)) * -18px));
  transform-origin: right center;
  transition:
    width 360ms cubic-bezier(.2, .8, .2, 1),
    padding 360ms cubic-bezier(.2, .8, .2, 1),
    border-radius 360ms cubic-bezier(.2, .8, .2, 1),
    transform 360ms cubic-bezier(.2, .8, .2, 1),
    background-color 220ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--cream) 92%, transparent);
}

.site-header.nav-is-visible {
  pointer-events: auto;
}

.site-header.is-collapsed:not(.is-menu-open) {
  right: 18px;
  left: auto;
  justify-content: center;
  width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
}

.site-header.is-menu-open {
  overflow: visible;
  transform: translateX(-50%) translateY(0);
}

.brand {
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
}

.site-header.is-collapsed:not(.is-menu-open) .brand,
.site-header.is-collapsed:not(.is-menu-open) .site-nav {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(18px) scaleX(.92);
}

.site-nav a {
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: var(--ink);
  outline: none;
}

.menu-button,
.floating-menu-button {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 46px;
  height: 46px;
  margin-left: 8px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease;
}

.menu-button {
  display: none;
}

.floating-menu-button {
  position: fixed;
  z-index: 100;
  top: 18px;
  right: 18px;
  display: flex;
  opacity: 1;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--accent-orange);
  box-shadow: 6px 6px 0 var(--ink);
}

body.nav-is-present .floating-menu-button,
body.menu-is-open .floating-menu-button {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(.86);
}

.menu-button:hover,
.menu-button:focus-visible,
.floating-menu-button:hover,
.floating-menu-button:focus-visible {
  outline: none;
  transform: rotate(-4deg) scale(1.04);
}

.menu-button span:not(.visually-hidden),
.floating-menu-button span:not(.visually-hidden) {
  display: block;
  width: 22px;
  height: 3px;
  margin: 2px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 96vh;
  padding: 132px var(--gutter) 84px;
  isolation: isolate;
  --hero-progress: 0;
  --hero-distortion: 0;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: var(--skin);
}

.hero__shape,
.hero__bubble {
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.hero__shape--purple {
  z-index: -1;
  bottom: 70px;
  left: -7vw;
  width: clamp(310px, 24vw, 410px);
  min-width: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: 1.18;
  border: clamp(32px, 3vw, 48px) solid var(--accent-purple);
  border-radius: 68% 32% 57% 43% / 38% 62% 38% 62%;
  background: transparent;
  opacity: .88;
  filter: blur(calc(var(--hero-progress) * 3px));
  transform:
    translate(
      calc(var(--hero-progress) * -16vw),
      calc(var(--hero-progress) * -7vh)
    )
    rotate(calc(-10deg - var(--hero-progress) * 12deg))
    scale(calc(1 - var(--hero-progress) * .1));
}

.hero__shape--orange {
  z-index: -1;
  top: 14vh;
  right: 10vw;
  width: clamp(220px, 16vw, 310px);
  min-width: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: 1.55;
  background: var(--accent-orange);
  border-radius: 72% 28% 64% 36% / 34% 58% 42% 66%;
  filter: blur(calc(var(--hero-progress) * 4px));
  transform:
    translate(
      calc(var(--hero-progress) * 12vw),
      calc(var(--hero-progress) * -12vh)
    )
    rotate(calc(22deg + var(--hero-progress) * 10deg))
    scale(calc(1 - var(--hero-progress) * .16));
}

.hero__shape--teal {
  z-index: -1;
  right: -2vw;
  bottom: -48px;
  width: clamp(340px, 29vw, 480px);
  min-width: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: .72;
  background: var(--accent-teal);
  border-radius: 54% 46% 66% 34% / 34% 48% 52% 66%;
  transform:
    translate(
      calc(var(--hero-progress) * 18vw),
      calc(var(--hero-progress) * -8vh)
    )
    rotate(calc(12deg + var(--hero-progress) * 8deg))
    scale(calc(1 - var(--hero-progress) * .08));
}

.hero__bubble {
  position: absolute;
  z-index: -1;
  right: max(24px, calc((100vw - var(--max)) / 2 - 20px));
  bottom: -72px;
  width: min(34vw, 490px);
  aspect-ratio: 1.18;
  border: 2px solid var(--ink);
  border-radius: 42% 58% 51% 49% / 33% 45% 55% 67%;
  box-shadow: 10px 10px 0 var(--ink);
  background:
    linear-gradient(110deg, transparent 0 46%, color-mix(in srgb, var(--skin-light) 70%, transparent) 46% 54%, transparent 54%),
    color-mix(in srgb, var(--skin) 64%, transparent);
  overflow: hidden;
  opacity: calc(1 - var(--hero-progress) * .72);
  filter: blur(calc(var(--hero-progress) * 1.5px));
  transform:
    translate(
      calc(var(--hero-progress) * 10vw),
      calc(var(--hero-progress) * 10vh)
    )
    rotate(calc(2deg + var(--hero-progress) * 14deg))
    scale(calc(1 - var(--hero-progress) * 0.1));
}

.hero__bubble span {
  position: absolute;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  opacity: calc(0.16 + var(--hero-progress) * 0.22);
  transform: rotate(var(--angle));
}

.hero__bubble span:nth-child(1) {
  --angle: -7deg;
  top: 20%;
  left: 12%;
}

.hero__bubble span:nth-child(2) {
  --angle: 84deg;
  right: 0;
  top: 20%;
}

.hero__bubble span:nth-child(3) {
  --angle: 178deg;
  right: 19%;
  bottom: 8%;
}

.hero__content {
  align-self: center;
  width: min(780px, 100%);
  margin-inline: max(0px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 18px;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 18px;
  font-weight: 600;
  text-transform: lowercase;
}

.hero h1 {
  position: relative;
  width: fit-content;
  margin: 0;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 154px;
  font-weight: 800;
  line-height: 0.85;
  opacity: calc(1 - var(--hero-progress) * 1.08);
  filter: blur(calc(var(--hero-distortion) * 5px)) contrast(calc(1 + var(--hero-distortion) * 1.2));
  transform:
    skewX(calc(var(--hero-distortion) * -8deg))
    translateY(calc(var(--hero-progress) * -24px));
  text-shadow:
    calc(var(--hero-distortion) * 10px) calc(var(--hero-distortion) * -4px) 0 var(--accent-purple),
    calc(var(--hero-distortion) * -12px) calc(var(--hero-distortion) * 7px) 0 var(--accent-teal),
    calc(var(--hero-distortion) * 5px) calc(var(--hero-distortion) * 10px) 0 var(--accent-orange);
  will-change: opacity, filter, transform, text-shadow;
}

.hero h1::before,
.hero h1::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  opacity: calc(var(--hero-distortion) * 0.7);
  pointer-events: none;
}

.hero h1::before {
  color: var(--accent-purple);
  clip-path: inset(0 0 54% 0);
  transform: translateX(calc(var(--hero-distortion) * -26px));
}

.hero h1::after {
  color: var(--accent-teal);
  clip-path: inset(48% 0 0 0);
  transform: translateX(calc(var(--hero-distortion) * 22px));
}

.hero .eyebrow,
.hero__claim,
.hero__actions {
  opacity: calc(1 - var(--hero-progress) * 1.08);
  filter: blur(calc(var(--hero-distortion) * 3px));
  transform:
    translateY(calc(var(--hero-progress) * -18px))
    skewX(calc(var(--hero-distortion) * -3deg));
  will-change: opacity, filter, transform;
}

.hero__claim {
  max-width: 610px;
  margin: 22px 0 0;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.05;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button--primary {
  color: var(--ink);
  background: var(--accent-orange);
}

.button--quiet {
  background: var(--white);
}

.button--dark {
  margin-top: 30px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--accent-orange);
}

.values {
  position: static;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, var(--max));
  margin: 76px auto 0;
  padding: 0;
  list-style: none;
  transform: none;
}

.values li {
  display: flex;
  min-width: 0;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 16px 22px;
  border-top: 7px solid var(--accent-orange);
  border-right: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  font-family: "Sligoil", "Courier New", monospace;
  font-size: clamp(25px, 2.65vw, 42px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.035em;
}

.value-icon {
  display: block;
  width: 34px;
  height: 34px;
  color: var(--accent-orange);
}

.value-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: currentColor;
}

.value-icon__line {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-icon__cutout {
  fill: var(--skin);
}

.values li:nth-child(2),
.values li:nth-child(4) {
  border-top-color: var(--accent-purple);
}

.values li:nth-child(2) .value-icon,
.values li:nth-child(4) .value-icon {
  color: var(--accent-purple);
}

.values li:nth-child(3) {
  border-top-color: var(--accent-teal);
}

.values li:nth-child(3) .value-icon {
  color: var(--accent-teal);
}

.values li:last-child {
  border-right: 0;
}

.section-band {
  position: relative;
  padding: 96px var(--gutter);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-band--skin {
  background: var(--skin);
}

.section-band--skin-light {
  background: var(--skin-light);
}

.section-band--orange {
  color: var(--ink);
  background: var(--accent-orange);
}

.section-band--cream {
  background: var(--cream);
}

.section-band--teal {
  color: var(--white);
  background: var(--accent-teal);
}

.section-band--rose {
  background: var(--skin-deep);
}

.section-band--purple {
  color: var(--ink);
  background: var(--accent-purple);
}

.wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 76px;
  background: var(--skin);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 76' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 0H1440V24C1250 74 1080 0 894 38C695 78 520 6 322 36C170 60 88 45 0 20Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 76' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 0H1440V24C1250 74 1080 0 894 38C695 78 520 6 322 36C170 60 88 45 0 20Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.wave--cream {
  background: var(--cream);
}

.wave--skin {
  background: var(--skin);
}

.intro {
  z-index: 2;
  padding-top: 150px;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bubble {
    opacity: .28;
    filter: blur(1.5px);
  }
}

.intro__grid,
.story__layout,
.faq__layout,
.community__layout,
.lineup__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: start;
}

h2 {
  margin: 0;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 58px;
  font-weight: 800;
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 30px;
  line-height: 1;
}

p {
  margin: 0;
}

.intro p:not(.eyebrow),
.program__lead p,
.lineup__layout p,
.story__layout p,
.section-copy {
  font-size: 22px;
  line-height: 1.38;
}

.story__layout p + p {
  margin-top: 18px;
}

.split-heading {
  max-width: 850px;
}

.section-copy {
  max-width: 760px;
  margin-top: 28px;
}

.ticket-river {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.ticket {
  min-height: 250px;
  padding: 34px 28px;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.ticket:nth-child(1) {
  border-radius: 47% 53% 45% 55% / 18% 28% 72% 82%;
  transform: rotate(-2deg);
}

.ticket:nth-child(2) {
  border-radius: 37% 63% 56% 44% / 73% 27% 73% 27%;
  transform: translateY(24px) rotate(2deg);
}

.ticket:nth-child(3) {
  border-radius: 59% 41% 50% 50% / 26% 60% 40% 74%;
  transform: rotate(-1deg);
}

.ticket--orange {
  background: var(--accent-orange);
}

.ticket--purple {
  background: var(--accent-purple);
}

.ticket--teal {
  color: var(--white);
  background: var(--accent-teal);
}

.ticket h3,
.ticket p,
.ticket strong {
  width: 76%;
  margin-right: auto;
  margin-left: auto;
}

.ticket p {
  margin-top: 18px;
  font-size: 17px;
}

.ticket strong {
  display: block;
  margin-top: 26px;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 48px;
  line-height: 1;
}

.ticket:nth-child(1) strong,
.ticket:nth-child(3) strong {
  transform: translateX(8%);
}

.program__lead {
  display: grid;
  grid-template-columns: minmax(270px, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
}

.program__lead .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.program-streams {
  display: grid;
  gap: 16px;
  margin-top: 46px;
}

.stream,
.faq-list details {
  border-block: 2px solid var(--ink);
}

.stream + .stream,
.faq-list details + details {
  margin-top: -2px;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.stream summary,
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 30px;
  line-height: 1;
}

.stream summary::after,
.faq-list summary::after {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
  background: radial-gradient(circle at center, currentColor 0 24%, transparent 25%);
}

.stream[open] summary::after,
.faq-list details[open] summary::after {
  background: currentColor;
}

.stream p,
.faq-list p {
  max-width: 840px;
  padding: 0 0 24px;
}

.lineup {
  padding-top: 132px;
}

.artist-list {
  display: grid;
  gap: 14px;
}

.artist-item {
  width: 100%;
  padding: 22px 24px;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  border-radius: 999px;
  text-align: left;
  cursor: pointer;
}

.artist-item:hover,
.artist-item:focus-visible {
  color: var(--ink);
  background: var(--accent-orange);
  outline: none;
}

.artist-item span {
  display: block;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 25px;
}

.artist-item small {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
}

.schedule-flow {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.schedule-flow::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 24px;
  width: 6px;
  content: "";
  background: var(--ink);
  border-radius: 999px;
}

.schedule-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 78px;
  padding-left: 74px;
}

.schedule-flow li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 54px;
  height: 40px;
  content: "";
  background: var(--accent-orange);
  border: 2px solid var(--ink);
  border-radius: 48% 52% 45% 55% / 42% 39% 61% 58%;
}

.schedule-flow time {
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 24px;
  line-height: 1;
}

.schedule-flow span {
  font-size: 22px;
}

.story__mark {
  align-self: stretch;
  min-height: 420px;
  padding: 32px;
  color: var(--white);
  background: var(--accent-teal);
  border-radius: 55% 45% 49% 51% / 38% 58% 42% 62%;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 70px;
  font-weight: 800;
  line-height: 0.95;
  transform: rotate(-4deg);
}

.community {
  padding-top: 132px;
}

.community__items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.community__items a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 13px 19px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.community__items a:hover,
.community__items a:focus-visible {
  color: var(--ink);
  background: var(--cream);
  outline: none;
}

.faq-list {
  margin-top: -18px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px var(--gutter);
  color: var(--white);
  background: var(--ink);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-orange);
  outline: none;
}

/* Coming soon */

.coming-soon-page {
  min-height: 100svh;
  background: var(--skin);
}

.coming-header,
.coming-footer {
  position: fixed;
  z-index: 10;
  left: clamp(18px, 3vw, 48px);
  display: flex;
  width: calc(100% - clamp(36px, 6vw, 96px));
  align-items: center;
  justify-content: space-between;
}

.coming-header {
  top: clamp(18px, 3vw, 38px);
}

.coming-header__link {
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: color-mix(in srgb, var(--cream) 80%, transparent);
}

.coming-header__link:hover,
.coming-header__link:focus-visible {
  color: var(--white);
  background: var(--ink);
  outline: none;
}

.coming-main {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: 120px clamp(18px, 7vw, 120px) 110px;
  overflow: hidden;
  isolation: isolate;
}

.coming-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
}

.coming-content h1 {
  max-width: 830px;
  margin: 12px 0 28px;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: clamp(64px, 10vw, 150px);
  font-weight: 600;
  line-height: .84;
  letter-spacing: -.06em;
}

.coming-lead {
  max-width: 650px;
  margin: 0;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 450;
  line-height: 1.15;
}

.coming-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.coming-actions .button {
  margin: 0;
}

.coming-loader,
.coming-shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.coming-loader {
  right: -1vw;
  bottom: 4vh;
  display: grid;
  color: transparent;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: clamp(94px, 15vw, 240px);
  font-weight: 800;
  line-height: .64;
  letter-spacing: -.08em;
  opacity: .75;
  -webkit-text-stroke: 2px var(--ink);
  transform: rotate(-7deg);
  animation: coming-loader 4.8s ease-in-out infinite;
}

.coming-loader span:nth-child(2) {
  color: var(--accent-purple);
  -webkit-text-stroke-color: var(--accent-purple);
  transform: translateX(-8%);
}

.coming-loader span:nth-child(3) {
  color: var(--accent-teal);
  -webkit-text-stroke-color: var(--accent-teal);
  transform: translateX(5%);
}

.coming-shape--purple {
  top: -12vw;
  right: 20vw;
  width: clamp(220px, 28vw, 480px);
  aspect-ratio: 1;
  border: clamp(28px, 4vw, 60px) solid var(--accent-purple);
  border-radius: 64% 36% 54% 46% / 38% 61% 39% 62%;
  transform: rotate(18deg);
}

.coming-shape--orange {
  top: 22%;
  right: 4%;
  width: clamp(150px, 17vw, 280px);
  aspect-ratio: 1.45;
  border-radius: 72% 28% 60% 40% / 36% 58% 42% 64%;
  background: var(--accent-orange);
  transform: rotate(24deg);
  animation: coming-shape 5.6s ease-in-out infinite alternate;
}

.coming-shape--teal {
  bottom: -22vw;
  left: -10vw;
  width: clamp(360px, 42vw, 720px);
  aspect-ratio: 1;
  border-radius: 57% 43% 68% 32% / 38% 48% 52% 62%;
  background: var(--accent-teal);
  transform: rotate(-12deg);
}

.coming-footer {
  bottom: clamp(16px, 2vw, 30px);
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
}

@keyframes coming-loader {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-14px);
  }
}

@keyframes coming-shape {
  from {
    transform: rotate(24deg) translateY(-5px);
  }
  to {
    transform: rotate(30deg) translateY(12px);
  }
}

/* Posts */

.post-page {
  background: var(--cream);
}

.posts-main,
.post-main {
  min-height: 100vh;
  padding: 148px var(--gutter) 112px;
}

.posts-heading,
.posts-grid,
.post-article {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.posts-heading {
  max-width: 820px;
  margin-left: max(0px, calc((100% - var(--max)) / 2));
  margin-bottom: 82px;
}

.posts-heading h1,
.post-hero h1 {
  max-width: 920px;
  margin: 10px 0 24px;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: clamp(56px, 7.5vw, 104px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.045em;
}

.posts-heading > p:last-child,
.post-lead {
  max-width: 720px;
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 430;
  line-height: 1.28;
}

.post-page .eyebrow {
  font-weight: 600;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 42px;
}

.post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-top: 18px;
  border: 0;
  border-top: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.post-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 42px;
}

.post-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  border-radius: 28px;
  isolation: isolate;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.post-card:hover .post-card__image img {
  transform: scale(1.025);
}

.post-card__play,
.post-image-play {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.post-card__play {
  z-index: 1;
}

.post-card__orb,
.post-image-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.post-card__orb--orange {
  top: -20px;
  right: 12%;
  width: 84px;
  height: 84px;
  border: 16px solid var(--accent-orange);
  opacity: .88;
  animation: post-orb-float 5.8s ease-in-out infinite alternate;
}

.post-card__orb--purple {
  right: -22px;
  bottom: 22%;
  width: 76px;
  height: 76px;
  background: color-mix(in srgb, var(--accent-purple) 84%, transparent);
  animation: post-orb-float 4.6s 600ms ease-in-out infinite alternate-reverse;
}

.post-card:hover .post-card__orb--orange {
  transform: translate(-8px, 8px) rotate(12deg);
}

.post-card:hover .post-card__orb--purple {
  transform: translate(-10px, -6px) scale(1.08);
}

.post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 2px 0;
}

.post-card--featured .post-card__body {
  padding-top: 4px;
}

.post-card h2 {
  margin: 12px 0 18px;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1;
}

.post-card h2 a {
  text-decoration: none;
}

.post-card h2 a:hover,
.post-card h2 a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  outline: none;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 22px;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  font-size: 15px;
  font-weight: 600;
}

.post-card__excerpt {
  margin: 0 0 28px;
  font-size: 19px;
  line-height: 1.5;
}

.post-card__read {
  width: fit-content;
  margin-top: auto;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.post-card__read span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.post-card__read:hover span,
.post-card__read:focus-visible span {
  transform: translate(3px, -3px);
}

.post-article {
  max-width: 880px;
}

.post-hero {
  max-width: none;
}

.post-meta {
  margin: 22px 0;
  font-size: 16px;
  font-weight: 600;
}

.post-featured-image {
  position: relative;
  margin: 58px 0 72px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  box-shadow: none;
  isolation: isolate;
}

.post-featured-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.post-image-play {
  z-index: 1;
}

.post-image-orb {
  z-index: 3;
}

.post-image-orb--orange {
  top: -5%;
  right: 24%;
  width: clamp(74px, 10vw, 132px);
  aspect-ratio: 1;
  border: clamp(13px, 1.8vw, 24px) solid var(--accent-orange);
  opacity: .9;
  animation: post-orb-float 5.6s ease-in-out infinite alternate;
}

.post-image-orb--purple {
  bottom: 7%;
  left: 32%;
  width: clamp(58px, 8vw, 104px);
  aspect-ratio: 1;
  border: clamp(10px, 1.5vw, 20px) solid var(--accent-purple);
  opacity: .9;
  animation: post-orb-float 4.8s 700ms ease-in-out infinite alternate-reverse;
}

.post-image-orb--teal {
  right: -5%;
  bottom: -12%;
  width: clamp(130px, 19vw, 240px);
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--accent-teal) 84%, transparent);
  animation: post-orb-pulse 6.4s ease-in-out infinite alternate;
}

@keyframes post-orb-float {
  from {
    transform: translate(0, 0) rotate(0);
  }
  to {
    transform: translate(-9px, 11px) rotate(12deg);
  }
}

@keyframes post-orb-pulse {
  from {
    transform: scale(.94) rotate(-5deg);
  }
  to {
    transform: scale(1.06) rotate(6deg);
  }
}

.post-content {
  max-width: none;
  margin-inline: auto;
  font-size: 20px;
  line-height: 1.65;
}

.post-content h2,
.post-content h3 {
  margin: 1.6em 0 .55em;
}

.post-content h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 600;
  line-height: 1.08;
}

.post-content h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote {
  margin: 0 0 1.25em;
}

.post-content img {
  margin: 42px 0;
  border-radius: 28px;
}

.post-content blockquote {
  padding: 18px 26px;
  border-left: 5px solid var(--accent-purple);
  font-size: 1.15em;
  font-weight: 500;
  background: var(--skin-light);
}

.post-footnote {
  margin: -8px 0 32px;
  font-size: 15px;
  line-height: 1.45;
  opacity: .76;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 36px 0;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 18px;
  font-weight: 600;
}

.post-tags span {
  color: var(--accent-purple);
}

.post-signup-button,
.post-hero__button {
  margin: 10px 0 42px;
}

.post-signup {
  margin: 64px 0;
  padding: clamp(28px, 5vw, 42px);
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--accent-orange);
  box-shadow: 5px 5px 0 var(--ink);
}

.post-signup h2 {
  margin-top: 4px;
}

.quest-button {
  position: relative;
  min-width: 164px;
  min-height: 58px;
  padding: 14px 26px 13px;
  overflow: visible;
  border-width: 3px;
  color: var(--ink);
  background: var(--accent-orange);
  box-shadow:
    0 7px 0 var(--ink),
    0 11px 0 var(--accent-purple);
  isolation: isolate;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transform: translateY(0);
  transition:
    color 160ms ease,
    background-color 160ms ease,
    box-shadow 120ms ease,
    transform 120ms cubic-bezier(.2, .8, .2, 1);
}

.quest-button::before {
  position: absolute;
  z-index: -1;
  inset: -12px;
  content: "";
  border: 4px solid var(--accent-teal);
  border-radius: 999px;
  opacity: 0;
  transform: scale(.72);
}

.quest-button__label {
  position: relative;
  z-index: 2;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: 20px;
  letter-spacing: -.02em;
}

.quest-button__burst {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.quest-button__burst span {
  position: absolute;
  opacity: 0;
  color: var(--cream);
  font-size: 20px;
  line-height: 1;
  text-shadow: 1px 1px 0 var(--ink);
}

.quest-button__burst span:nth-child(1) {
  top: -8px;
  left: 14%;
}

.quest-button__burst span:nth-child(2) {
  top: 4px;
  right: -8px;
  color: var(--accent-teal);
  font-size: 15px;
}

.quest-button__burst span:nth-child(3) {
  right: 15%;
  bottom: -9px;
  color: var(--accent-purple);
}

.quest-button__burst span:nth-child(4) {
  bottom: 2px;
  left: -8px;
  color: var(--cream);
  font-size: 13px;
}

.quest-button:hover,
.quest-button:focus-visible {
  color: var(--ink);
  background: var(--cream);
  box-shadow:
    0 7px 0 var(--ink),
    0 11px 0 var(--accent-teal);
  transform: translateY(-1px) rotate(-1deg);
}

.quest-button--quiet {
  min-width: 0;
  min-height: 50px;
  padding: 13px 22px 12px;
  border-width: 2px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
}

.quest-button--quiet .quest-button__label {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
}

.quest-button--quiet:hover,
.quest-button--quiet:focus-visible {
  background: var(--white);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.quest-button:active {
  box-shadow:
    0 1px 0 var(--ink),
    0 2px 0 var(--accent-purple);
  transform: translateY(9px) scale(.95) rotate(1deg);
}

.quest-button--quiet:active {
  box-shadow: none;
  transform: translate(5px, 5px) scale(.97);
}

.quest-button.is-questing {
  animation: quest-button-bounce 620ms cubic-bezier(.2, .9, .24, 1.2);
}

.quest-button--quiet.is-questing {
  animation:
    quest-button-bounce 620ms cubic-bezier(.2, .9, .24, 1.2),
    quest-button-fill 760ms ease-in-out;
}

.quest-button.is-questing::before {
  animation: quest-button-ring 620ms ease-out;
}

.quest-button.is-questing .quest-button__burst span {
  animation: quest-button-spark 620ms ease-out;
}

.quest-button.is-questing .quest-button__burst span:nth-child(2) {
  animation-delay: 40ms;
}

.quest-button.is-questing .quest-button__burst span:nth-child(3) {
  animation-delay: 80ms;
}

.quest-button.is-questing .quest-button__burst span:nth-child(4) {
  animation-delay: 120ms;
}

@keyframes quest-button-bounce {
  0% {
    transform: translateY(8px) scale(.95);
  }
  42% {
    transform: translateY(-5px) scale(1.04) rotate(-2deg);
  }
  68% {
    transform: translateY(1px) scale(.99) rotate(1deg);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes quest-button-fill {
  0%,
  100% {
    background-color: var(--white);
  }
  22%,
  66% {
    background-color: var(--accent-orange);
  }
}

@keyframes quest-button-ring {
  0% {
    opacity: .8;
    transform: scale(.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes quest-button-spark {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(.3) rotate(0);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0, -18px) scale(1.15) rotate(42deg);
  }
}

.post-signup-placeholder {
  display: inline-flex;
  margin-top: 8px;
  cursor: not-allowed;
  opacity: .62;
}

.post-details {
  margin: 72px 0 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.post-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: "Sligoil", "Courier New", monospace;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  cursor: pointer;
}

.post-details > summary::after {
  content: "+";
  font-size: 1.1em;
}

.post-details[open] > summary::after {
  content: "−";
}

.post-details__content {
  padding: 8px 0 28px;
}

.post-details__content h2 {
  margin-top: 1.25em;
  font-size: clamp(27px, 3vw, 34px);
}

@media (max-width: 980px) {
  body {
    font-size: 17px;
  }

  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .menu-button {
    position: static;
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 28px));
    padding: 12px;
    border: 2px solid var(--ink);
    border-radius: 28px;
    background: var(--cream);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .site-nav.is-open {
    display: grid;
    z-index: 90;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: 20px;
  }

  .post-page--coming-mode .site-header {
    align-items: center;
    border-radius: 999px;
  }

  .post-page--coming-mode .site-nav {
    position: static;
    display: flex;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 70px;
  }

  .hero__content {
    position: relative;
    z-index: 1;
    order: 1;
  }

  .hero h1 {
    font-size: 112px;
  }

  .hero__claim {
    font-size: 34px;
  }

  .hero__shape--purple {
    top: 300px;
    bottom: auto;
    left: -150px;
    width: 300px;
  }

  .hero__shape--orange {
    top: 88px;
    right: 62px;
    width: 180px;
  }

  .hero__shape--teal {
    top: 370px;
    right: -170px;
    bottom: auto;
    width: 380px;
  }

  .hero__bubble {
    position: relative;
    z-index: 0;
    order: 2;
    right: auto;
    bottom: auto;
    width: min(92%, 460px);
    margin: 36px 0 0 auto;
  }

  .intro {
    padding-top: 76px;
  }

  .values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 56px;
  }

  .values li {
    min-height: 130px;
  }

  .values li:nth-child(2n) {
    border-right: 0;
  }

  .values li:last-child {
    grid-column: 1 / -1;
    min-height: 110px;
  }

  .intro__grid,
  .story__layout,
  .faq__layout,
  .community__layout,
  .lineup__layout,
  .program__lead {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .program__lead .eyebrow {
    margin-bottom: 0;
  }

  h2 {
    font-size: 44px;
  }

  .ticket-river {
    grid-template-columns: 1fr;
  }

  .ticket:nth-child(n) {
    transform: none;
  }

  .schedule-flow li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 16px;
  }

  .site-header {
    top: 8px;
    right: 8px;
    left: 8px;
    width: calc(100% - 16px);
    min-height: 52px;
    align-items: center;
    padding: 4px 5px 4px 14px;
    border-radius: 999px;
    box-shadow: 4px 4px 0 var(--ink);
    transform: translateY(calc((1 - var(--nav-progress)) * -12px));
  }

  .site-header.is-collapsed:not(.is-menu-open) {
    right: 10px;
    left: auto;
    width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
  }

  .site-header.is-menu-open {
    transform: translateY(0);
  }

  .menu-button {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    margin-left: auto;
  }

  .floating-menu-button {
    top: 18px;
    right: auto;
    left: min(324px, calc(100vw - 66px));
    z-index: 100;
    width: 48px;
    height: 48px;
  }

  .site-nav {
    top: 68px;
    right: 8px;
    left: 8px;
    width: calc(100vw - 16px);
  }

  .brand {
    font-size: 28px;
  }

  .post-page--coming-mode .site-nav {
    width: auto;
    margin-left: auto;
  }

  .post-page--coming-mode .site-nav a {
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 70px;
  }

  .hero__claim {
    font-size: 28px;
  }

  .hero__bubble {
    width: 100%;
    margin-top: 28px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .hero__shape--purple {
    top: 280px;
    left: -150px;
    width: 230px;
  }

  .hero__shape--orange {
    top: 76px;
    right: 34px;
    width: 156px;
  }

  .hero__shape--teal {
    top: 380px;
    right: -170px;
    bottom: auto;
    width: 290px;
    min-width: 0;
  }

  .values {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .values li {
    display: grid;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
    align-items: end;
    padding: 14px 4px 16px;
    border-right: 0;
    font-size: 28px;
  }

  .values li:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .section-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  h2 {
    font-size: 34px;
  }

  h3,
  .stream summary,
  .faq-list summary {
    font-size: 24px;
  }

  .intro p:not(.eyebrow),
  .program__lead p,
  .lineup__layout p,
  .story__layout p,
  .section-copy,
  .schedule-flow span {
    font-size: 19px;
  }

  .ticket {
    min-height: 230px;
  }

  .story__mark {
    min-height: 280px;
    font-size: 48px;
  }

  .posts-main,
  .post-main {
    padding-top: 92px;
    padding-bottom: 72px;
  }

  .posts-heading {
    margin-bottom: 46px;
  }

  .posts-heading h1,
  .post-hero h1 {
    font-size: 58px;
  }

  .post-card {
    border-radius: 0;
    box-shadow: none;
  }

  .post-card__body {
    padding: 18px 2px 0;
  }

  .post-featured-image {
    margin: 42px 0;
    border-radius: 20px;
    box-shadow: none;
  }

  .post-content {
    font-size: 19px;
  }
}

@media (max-width: 980px) {
  .coming-content {
    max-width: 680px;
  }

  .coming-loader {
    right: -7vw;
    bottom: 10vh;
    opacity: .48;
  }

  .coming-shape--orange {
    top: 16%;
    right: -8%;
  }

  .post-card--featured {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .post-card--featured .post-card__body {
    padding-top: 22px;
  }
}

@media (max-width: 620px) {
  .coming-soon-page {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
  }

  .coming-header,
  .coming-footer {
    left: 16px;
    width: calc(100% - 32px);
  }

  .coming-main {
    flex: 1;
    min-height: calc(100svh - 64px);
    align-items: start;
    padding: 132px 16px 96px;
  }

  .coming-content h1 {
    max-width: 350px;
    font-size: clamp(58px, 20vw, 86px);
  }

  .coming-lead {
    max-width: 390px;
    font-size: 22px;
  }

  .coming-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 34px;
  }

  .coming-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .coming-loader {
    right: -22vw;
    bottom: 28px;
    font-size: clamp(90px, 34vw, 150px);
    opacity: .32;
  }

  .coming-shape--purple {
    top: -70px;
    right: 50px;
    width: 210px;
  }

  .coming-shape--orange {
    top: auto;
    right: -70px;
    bottom: 22%;
    width: 170px;
  }

  .coming-shape--teal {
    bottom: -190px;
    left: -130px;
    width: 390px;
  }

  .coming-footer {
    position: static;
    left: auto;
    bottom: auto;
    flex: 0 0 auto;
    min-height: 64px;
    width: auto;
    align-items: flex-end;
    margin: 0 16px;
    padding-bottom: 16px;
    font-size: 12px;
  }

  .coming-footer span:first-child {
    max-width: 210px;
  }

  .posts-heading h1,
  .post-hero h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .post-card__image {
    border-radius: 20px;
  }

  .post-card__orb--orange {
    width: 66px;
    height: 66px;
    border-width: 12px;
  }

  .post-image-orb--orange {
    right: 16%;
  }

  .post-image-orb--purple {
    bottom: 5%;
    left: 28%;
  }

  .post-card h2 {
    font-size: 34px;
  }

  .post-card__excerpt {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-loader,
  .coming-shape--orange,
  .post-card__orb,
  .post-image-orb,
  .quest-button,
  .quest-button::before,
  .quest-button__burst span {
    animation: none;
  }

  .coming-loader {
    transform: rotate(-7deg);
  }

  .quest-button {
    transition: color 0s, background-color 0s, box-shadow 0s, transform 0s;
  }

  .quest-button:active {
    box-shadow:
      0 1px 0 var(--ink),
      0 2px 0 var(--accent-purple);
    transform: translateY(7px) scale(.98);
  }

  .quest-button--quiet:active {
    box-shadow: none;
    transform: translate(5px, 5px) scale(.98);
  }
}

@supports not (clip-path: path("M0,0 H10 V10 Z")) {
  .wave {
    clip-path: polygon(0 0, 100% 0, 100% 44%, 80% 76%, 54% 42%, 30% 70%, 0 48%);
  }
}
