:root {
  --black: #050303;
  --ink: #0d0708;
  --burgundy: #3a070d;
  --wine: #7d1219;
  --gold: #d9aa44;
  --gold-bright: #ffe08a;
  --champagne: #f5ead2;
  --soft: #fff8ea;
  --muted: rgba(255, 248, 234, .72);
  --line: rgba(217, 170, 68, .28);
  --glass: rgba(13, 7, 8, .72);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--soft);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 72% 8%, rgba(217, 170, 68, .18), transparent 28rem),
    radial-gradient(circle at 12% 32%, rgba(125, 18, 25, .32), transparent 30rem),
    linear-gradient(180deg, #090405 0%, #020101 48%, #0b0304 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-shell {
  overflow: hidden;
  position: relative;
}

.site-shell::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.nav {
  align-items: center;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(5, 3, 3, .82), rgba(58, 7, 13, .64), rgba(5, 3, 3, .82));
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  background: #050308;
  border: 1px solid rgba(217, 170, 68, .34);
  border-radius: 10px;
  box-shadow: 0 0 34px rgba(217, 170, 68, .32);
  display: block;
  height: 46px;
  overflow: hidden;
  width: 58px;
}

.brand-mark img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.brand strong,
.brand em {
  display: block;
}

.brand strong {
  color: var(--gold-bright);
  font-size: 15px;
}

.brand em {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  margin-top: 2px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(12px, 1.7vw, 22px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 248, 234, .76);
  transition: color .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 40px;
  padding: 0;
  position: relative;
  width: 42px;
}

.menu-toggle span {
  background: var(--gold-bright);
  height: 2px;
  left: 8px;
  position: absolute;
  right: 8px;
  transition: transform .25s ease, top .25s ease;
}

.menu-toggle span:first-child {
  top: 14px;
}

.menu-toggle span:last-child {
  top: 24px;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 42px);
  position: relative;
  z-index: 1;
}

.hero {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .46fr);
  min-height: 100svh;
  max-width: none;
  padding-bottom: clamp(28px, 5vw, 58px);
  padding-top: 98px;
}

.hero-bg {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-bg img {
  filter: saturate(1.08) contrast(1.06);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-vignette,
.hero-bg::after,
.hero-bg::before {
  content: "";
  inset: 0;
  position: absolute;
}

.hero-vignette {
  background: radial-gradient(circle at 62% 44%, transparent 0 18%, rgba(5, 3, 3, .5) 52%, rgba(5, 3, 3, .95) 100%);
}

.hero-bg::after {
  background: linear-gradient(90deg, rgba(5, 3, 3, .96) 0%, rgba(5, 3, 3, .74) 36%, rgba(5, 3, 3, .18) 72%);
}

.hero-bg::before {
  background: linear-gradient(180deg, rgba(5, 3, 3, .32), transparent 42%, #050303 100%);
  z-index: 1;
}

.hero-content {
  max-width: 860px;
  padding-left: clamp(0px, 4vw, 32px);
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 8.3vw, 102px);
  font-weight: 700;
  letter-spacing: -.032em;
  line-height: .9;
  margin-bottom: 24px;
  max-width: 820px;
  text-shadow: 0 8px 42px rgba(0, 0, 0, .58);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 78px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: .92;
}

h3 {
  font-size: 18px;
  letter-spacing: .02em;
}

.hero-copy {
  color: var(--champagne);
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.35;
  max-width: 740px;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: .16em;
  min-height: 52px;
  padding: 0 22px;
  position: relative;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #fff3bd, var(--gold), #a96919);
  box-shadow: 0 18px 48px rgba(217, 170, 68, .22);
  color: #120607;
}

.button.ghost {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 248, 234, .24);
  color: var(--soft);
}

.hero-card {
  align-self: center;
  background: rgba(5, 3, 3, .52);
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .54);
  justify-self: end;
  max-width: 340px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-card img {
  aspect-ratio: 4 / 5.6;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-card div {
  background: linear-gradient(180deg, transparent, rgba(5, 3, 3, .94) 38%);
  bottom: 0;
  left: 0;
  padding: 70px 22px 22px;
  position: absolute;
  right: 0;
}

.hero-card span,
.hero-card strong {
  display: block;
  text-transform: uppercase;
}

.hero-card span {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
}

.hero-card strong {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  margin-top: 8px;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: .7fr 1.15fr .85fr;
}

.split-copy p,
.misty-copy p,
.access p,
.timeline-item p,
.highlight-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.editorial-frame,
.misty-portrait {
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.editorial-frame img {
  aspect-ratio: 4 / 5.7;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.editorial-frame figcaption {
  background: linear-gradient(180deg, transparent, rgba(5, 3, 3, .92));
  bottom: 0;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  left: 0;
  letter-spacing: .14em;
  padding: 72px 18px 18px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 56px);
  max-width: 760px;
}

.section-intro {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 720px;
}

.highlight-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.highlight-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 224, 138, .16), transparent 42%),
    var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
  margin: 0;
  overflow: hidden;
  padding: 10px;
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}

.highlight-card:hover {
  border-color: rgba(255, 224, 138, .72);
  transform: translateY(-5px);
}

.highlight-card span {
  align-items: center;
  background: rgba(5, 3, 3, .82);
  border: 1px solid rgba(255, 224, 138, .36);
  border-radius: 999px;
  color: var(--gold-bright);
  display: flex;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 18px;
  width: 44px;
  z-index: 2;
}

.highlight-card img {
  aspect-ratio: 2 / 3;
  filter: saturate(1.04) contrast(1.04);
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.schedule {
  max-width: 1040px;
}

.timeline {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 18px;
  margin-left: 10px;
  padding-left: clamp(22px, 5vw, 52px);
}

.timeline-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(217, 170, 68, .2);
  padding: 24px;
  position: relative;
}

.timeline-item::before {
  background: var(--gold-bright);
  border: 6px solid var(--black);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line), 0 0 28px rgba(217, 170, 68, .44);
  content: "";
  height: 13px;
  left: calc(clamp(22px, 5vw, 52px) * -1 - 7px);
  position: absolute;
  top: 27px;
  width: 13px;
}

.timeline-item time {
  color: var(--gold-bright);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .24em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.timeline-item h3 {
  font-family: var(--serif);
  font-size: 30px;
  margin-bottom: 8px;
}

.schedule-note {
  color: var(--muted);
  margin: 28px 0 0;
  text-align: center;
}

.schedule-note a,
.text-link,
.footer a {
  color: var(--gold-bright);
  font-weight: 900;
}

.misty-feature {
  align-items: center;
  display: grid;
  gap: clamp(26px, 6vw, 76px);
  grid-template-columns: .86fr 1.14fr;
}

.misty-portrait {
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 170, 68, .16), transparent 42%),
    var(--ink);
  padding: 10px;
  transform: rotate(-1.5deg);
}

.misty-portrait img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.misty-copy {
  background: linear-gradient(135deg, rgba(58, 7, 13, .34), rgba(255, 255, 255, .035));
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 54px);
}

.text-link {
  display: inline-block;
  letter-spacing: .16em;
  margin-top: 10px;
  text-transform: uppercase;
}

.music-links {
  border-top: 1px solid rgba(217, 170, 68, .24);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
}

.music-links-title {
  color: var(--gold-bright);
  flex: 0 0 100%;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.music-links a {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(217, 170, 68, .24);
  border-radius: 999px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 10px 12px;
  text-transform: uppercase;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}

.music-links a:hover {
  border-color: rgba(255, 224, 138, .72);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.merch-section {
  max-width: 1260px;
}

.merch-feature {
  align-items: stretch;
  background:
    radial-gradient(circle at 72% 14%, rgba(255, 224, 138, .18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(58, 7, 13, .12) 42%, rgba(5, 3, 3, .86)),
    #070404;
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .44);
  display: grid;
  gap: clamp(22px, 4vw, 46px);
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  padding: clamp(22px, 4vw, 44px);
  position: relative;
}

.merch-feature::before {
  background-image:
    linear-gradient(135deg, rgba(255, 224, 138, .08) 0 1px, transparent 1px),
    linear-gradient(45deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  opacity: .42;
  pointer-events: none;
  position: absolute;
}

.merch-copy,
.preorder-form,
.merch-hero {
  position: relative;
  z-index: 1;
}

.merch-copy {
  align-self: center;
  padding: clamp(8px, 2vw, 22px);
}

.merch-badge {
  border: 1px solid rgba(255, 224, 138, .45);
  border-radius: 999px;
  color: var(--gold-bright);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 20px;
  padding: 10px 13px;
  text-transform: uppercase;
}

.merch-copy h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -.03em;
  line-height: .94;
  margin-bottom: 18px;
}

.merch-copy p,
.merch-points {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.merch-points {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.merch-points li {
  align-items: baseline;
  display: grid;
  gap: 10px;
  grid-template-columns: 12px 1fr;
}

.merch-points li::before {
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 224, 138, .5);
  content: "";
  height: 6px;
  width: 6px;
}

.preorder-form {
  align-self: center;
  background: rgba(5, 3, 3, .58);
  border: 1px solid rgba(217, 170, 68, .26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 20px 70px rgba(0, 0, 0, .28);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(18px, 2.4vw, 28px);
}

.form-heading,
.preorder-form .full-field,
.preorder-form button {
  grid-column: 1 / -1;
}

.form-heading {
  margin-bottom: 4px;
}

.form-heading span {
  color: var(--gold-bright);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-heading strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: .95;
}

.preorder-form label {
  color: var(--gold-bright);
  display: grid;
  font-size: 10px;
  font-weight: 900;
  gap: 7px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.preorder-form input,
.preorder-form select,
.preorder-form textarea {
  appearance: none;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 248, 234, .18);
  border-radius: 0;
  color: var(--soft);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0;
  min-height: 44px;
  padding: 11px 12px;
  text-transform: none;
  width: 100%;
}

.preorder-form textarea {
  resize: vertical;
}

.preorder-form input:focus,
.preorder-form select:focus,
.preorder-form textarea:focus {
  border-color: rgba(255, 224, 138, .72);
  box-shadow: 0 0 0 3px rgba(217, 170, 68, .14);
  outline: none;
}

.preorder-form::placeholder,
.preorder-form input::placeholder,
.preorder-form textarea::placeholder {
  color: rgba(255, 248, 234, .42);
}

.preorder-form button {
  border: 0;
  cursor: pointer;
  margin-top: 2px;
  width: 100%;
}

.merch-hero {
  align-self: center;
  border: 1px solid rgba(217, 170, 68, .24);
  margin: 0;
  overflow: hidden;
}

.merch-hero img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.merch-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.merch-gallery .preorder-form {
  align-self: stretch;
  grid-column: span 2;
}

.merch-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 170, 68, .14), transparent 40%),
    var(--ink);
  border: 1px solid rgba(217, 170, 68, .22);
  margin: 0;
  overflow: hidden;
}

.merch-card img {
  aspect-ratio: 2 / 2.72;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform .55s ease, filter .55s ease;
  width: 100%;
}

.merch-card:hover img {
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.02);
}

.merch-gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-grid {
  display: flex;
  gap: 18px;
  margin-inline: calc(clamp(18px, 4vw, 42px) * -1);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px clamp(18px, 4vw, 42px) 18px;
  scroll-padding-left: clamp(18px, 4vw, 42px);
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(217, 170, 68, .55) rgba(255, 255, 255, .08);
}

.gallery-item {
  aspect-ratio: 2 / 3.25;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 170, 68, .16), transparent 42%),
    var(--ink);
  border: 1px solid rgba(217, 170, 68, .2);
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(230px, 28vw, 330px);
  margin: 0;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.gallery-item.large {
  grid-column: auto;
  grid-row: auto;
}

.gallery-item.tall {
  grid-row: auto;
}

.gallery-item.wide {
  grid-column: auto;
}

.gallery-item img {
  filter: saturate(1.03) contrast(1.04);
  flex: 1;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  transition: transform .55s ease, filter .55s ease;
  width: 100%;
}

.gallery-item:hover img {
  filter: saturate(1.15) contrast(1.08);
  transform: scale(1.02);
}

.gallery-item figcaption {
  display: none;
}

.access {
  max-width: none;
  padding-bottom: clamp(82px, 10vw, 140px);
}

.access-inner {
  background:
    linear-gradient(90deg, rgba(5, 3, 3, .9), rgba(58, 7, 13, .62)),
    url("assets/official-afterparty.png") center 28% / cover;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1280px;
  min-height: 460px;
  padding: clamp(42px, 7vw, 86px);
}

.access-inner h2 {
  font-size: clamp(54px, 10vw, 126px);
  margin-bottom: 18px;
}

.access-inner p:not(.eyebrow) {
  max-width: 680px;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: rgba(255, 248, 234, .68);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 54px);
  position: relative;
  z-index: 1;
}

.footer p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}

.audio-control {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(5, 3, 3, .78);
  border: 1px solid rgba(217, 170, 68, .38);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .34);
  color: var(--champagne);
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: .12em;
  min-height: 38px;
  padding: 0 14px;
  position: fixed;
  right: 18px;
  text-transform: uppercase;
  z-index: 30;
}

.audio-control[hidden] {
  display: none;
}

.audio-dot {
  animation: pulseAudio 1.3s ease-in-out infinite;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 224, 138, .72);
  height: 8px;
  width: 8px;
}

.audio-control.is-paused .audio-dot {
  animation: none;
  background: rgba(255, 248, 234, .54);
  box-shadow: none;
}

@keyframes pulseAudio {
  0%,
  100% {
    opacity: .55;
    transform: scale(.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    z-index: 22;
  }

  .nav-links {
    align-content: center;
    background: rgba(5, 3, 3, .96);
    display: grid;
    gap: 24px;
    inset: 0;
    justify-items: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-open .menu-toggle span:first-child {
    top: 20px;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    top: 20px;
    transform: rotate(-45deg);
  }

  .hero,
  .split,
  .misty-feature {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(5, 3, 3, .54), rgba(5, 3, 3, .74) 52%, #050303 100%);
  }

  .hero-card {
    display: none;
  }

  .split {
    max-width: 760px;
  }

  .merch-feature {
    grid-template-columns: 1fr;
  }

  .merch-hero {
    order: -1;
  }

  .preorder-form {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  .nav {
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand em {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 88px;
  }

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

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .highlight-grid,
  .merch-gallery {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    min-height: auto;
  }

  .preorder-form {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .gallery-item {
    flex-basis: min(78vw, 310px);
  }

  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
