:root {
  --ink: #0b0b0d;
  --ink-soft: #151519;
  --paper: #f2efe9;
  --paper-dark: #d9d4ca;
  --white: #fff;
  --muted: #9a9895;
  --orange: #ff5c35;
  --orange-light: #ff8a6e;
  --blue: #6f9fc9;
  --line: rgba(255, 255, 255, 0.14);
  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

h1,
h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.wrap {
  width: min(100%, calc(var(--max) + (var(--pad) * 2)));
  margin-inline: auto;
  padding-inline: var(--pad);
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.15rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, padding 250ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  padding-block: 0.85rem;
  background: rgba(11, 11, 13, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  font-size: 0.88rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.7rem 1.15rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.85rem 0.7rem;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 0.3rem 0;
  background: currentColor;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #25303a;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: hero-arrive 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.88) 0%, rgba(8, 9, 12, 0.48) 44%, rgba(8, 9, 12, 0.08) 72%),
    linear-gradient(0deg, rgba(8, 9, 12, 0.9) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-top: 7rem;
  padding-bottom: 8rem;
}

.eyebrow {
  margin-bottom: 1.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow::before,
.section-heading .eyebrow::before,
.split-heading .eyebrow::before,
.story-sticky .eyebrow::before,
.connect-inner .eyebrow::before {
  display: inline-block;
  width: 2.8rem;
  height: 1px;
  margin: 0 0.8rem 0.22rem 0;
  content: "";
  background: currentColor;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  max-width: 9ch;
  margin-bottom: 1.35rem;
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero h1 span:last-child {
  margin-left: 0.55em;
}

.hero-copy {
  max-width: 28rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.35rem;
  padding: 0.85rem 1.45rem;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.hero-footer {
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  left: 0;
  z-index: 2;
}

.hero-footer p {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
}

.hero-footer strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-footer span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.music-section {
  color: var(--ink);
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.55fr 0.8fr;
  column-gap: 4rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.section-heading > p:last-child {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 31rem;
  padding-bottom: 0.7rem;
  color: #615e59;
  font-size: 1.05rem;
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 1.2rem;
}

.player-card,
.quote-card {
  min-height: 31rem;
  border-radius: 1.3rem;
}

.player-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #1b1b1f;
}

.player-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #1ed760;
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem rgba(30, 215, 96, 0.12);
}

.spotify-player {
  border: 0;
  border-radius: 0.8rem;
}

.quote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.7rem, 4vw, 3rem);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(165deg, #201f24 0%, #17161a 100%);
  border: 1px solid var(--line);
}

.quote-card::before {
  position: absolute;
  top: 0;
  right: clamp(1.7rem, 4vw, 3rem);
  left: clamp(1.7rem, 4vw, 3rem);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), transparent 75%);
}

.quote-card::after {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 20rem;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(255, 92, 53, 0.16), transparent 70%);
}

.quote-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 1.6rem;
  color: var(--orange-light);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-card blockquote {
  position: relative;
  z-index: 1;
  max-width: none;
  margin-bottom: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.platform-links {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease, color 200ms ease;
}

.platform-btn svg {
  width: 1.4rem;
  height: 1.4rem;
}

.platform-btn:hover,
.platform-btn:focus-visible {
  transform: translateY(-3px);
  border-color: transparent;
}

.platform-spotify:hover,
.platform-spotify:focus-visible {
  color: #0b0b0d;
  background: #1ed760;
}

.platform-apple:hover,
.platform-apple:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #fa57c1, #fa233c);
}

.platform-ytmusic:hover,
.platform-ytmusic:focus-visible {
  color: var(--white);
  background: #ff0033;
}

.watch-section {
  background: var(--ink);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 27rem;
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.video-shell {
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  aspect-ratio: 16 / 9;
  box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.32);
}

.video-shell::before {
  position: absolute;
  inset: -30%;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(111, 159, 201, 0.22), transparent 55%);
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.6rem;
}

.watch-footer p {
  margin: 0;
  color: var(--muted);
}

.popular-heading {
  margin-top: clamp(3.5rem, 7vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.popular-heading .eyebrow {
  margin-bottom: 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.2rem;
  margin-top: 2rem;
}

.video-card {
  display: flex;
  flex-direction: column;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #101013;
  border-radius: 0.7rem;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.video-card:hover .video-thumb img,
.video-card:focus-visible .video-thumb img {
  transform: scale(1.05);
}

.play-badge {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--ink);
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transition: background 200ms ease;
}

.video-card:hover .play-badge,
.video-card:focus-visible .play-badge {
  background: var(--orange);
  color: var(--white);
}

.video-title {
  display: -webkit-box;
  margin-top: 0.85rem;
  overflow: hidden;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-views {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding-bottom: 0.4rem;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(0.18rem, -0.18rem);
}

.story-section {
  color: var(--ink);
  background: var(--paper-dark);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.story-sticky {
  align-self: start;
}

.story-sticky h2 {
  margin-bottom: 2rem;
}

.story-photo {
  display: block;
  overflow: hidden;
  width: min(100%, 22rem);
  border-radius: 1.1rem;
  aspect-ratio: 4 / 5;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  padding-top: 4.5rem;
}

.story-copy p {
  margin-bottom: 1.5rem;
  color: #58554f;
  font-size: 1.05rem;
}

.story-copy .story-lead {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.story-copy .text-link {
  margin-top: 1.5rem;
}

.official-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.5rem;
}

.official-links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  background: rgba(11, 11, 13, 0.05);
  border: 1px solid rgba(11, 11, 13, 0.16);
  border-radius: 999px;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.official-links svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.official-links a:hover,
.official-links a:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.support-section {
  padding-block: clamp(1.25rem, 2vw, 2rem);
  background: var(--ink);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.support-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 35rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border-radius: 1.3rem;
}

.support-card h2 {
  max-width: 8ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5vw, 5rem);
}

.support-card > p:not(.eyebrow) {
  max-width: 26rem;
  margin-bottom: 2rem;
}

.support-card .button {
  margin-top: auto;
}

.merch-card {
  position: relative;
  color: var(--ink);
  background: var(--orange);
}

.merch-card::after {
  position: absolute;
  right: -9rem;
  bottom: -10rem;
  width: 28rem;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.05), 0 0 0 6rem rgba(255, 255, 255, 0.04);
}

.patreon-card {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(111, 159, 201, 0.48), transparent 42%),
    #22252c;
  border: 1px solid var(--line);
}

.connect-section {
  overflow: hidden;
  background: #101013;
}

.connect-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70rem, 110vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.2), rgba(111, 159, 201, 0.08) 38%, transparent 68%);
  transform: translate(-50%, -50%);
}

.connect-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.connect-inner {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 1.2rem;
  text-align: left;
}

.connect-inner h2 {
  max-width: 9ch;
}

.connect-inner > p:not(.eyebrow) {
  max-width: 33rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  backdrop-filter: blur(16px);
}

.booking-form label {
  display: grid;
  gap: 0.55rem;
}

.booking-form label > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.9rem 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: 0;
  font: inherit;
  transition: border-color 180ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--orange-light);
}

.booking-form select {
  appearance: none;
  color-scheme: dark;
}

.booking-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.booking-form .button {
  justify-self: start;
  margin-top: 0.25rem;
}

.form-note {
  margin: -0.3rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.thanks-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: var(--pad);
  text-align: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(111, 159, 201, 0.22), transparent 35%),
    radial-gradient(circle at 25% 80%, rgba(255, 92, 53, 0.2), transparent 38%),
    var(--ink);
}

.thanks-card {
  width: min(100%, 45rem);
}

.thanks-card h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 10vw, 8rem);
}

.thanks-card > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  padding-block: 4rem 2rem;
  background: #070708;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 3rem;
}

.footer-brand {
  font-size: 2rem;
}

.footer-brand p {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(8rem, 1fr));
  gap: 0.7rem 2rem;
}

.social-links a {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-meta p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes hero-arrive {
  from {
    opacity: 0.45;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 900px) {
  .story-sticky {
    position: sticky;
    top: 8rem;
  }
}

@media (max-width: 899px) {
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
    padding: 6rem var(--pad) 3rem;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .site-nav a {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.5rem, 11vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1.05;
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
  }

  .site-header.menu-active .site-nav {
    transform: translateX(0);
  }

  .site-header.menu-active .menu-toggle span:not(.sr-only):first-of-type {
    transform: translateY(0.22rem) rotate(45deg);
  }

  .site-header.menu-active .menu-toggle span:not(.sr-only):last-of-type {
    transform: translateY(-0.22rem) rotate(-45deg);
  }

  .section-heading,
  .split-heading,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .player-card,
  .quote-card {
    min-height: auto;
  }

  .quote-card {
    min-height: 31rem;
  }

  .story-copy {
    padding-top: 1rem;
  }

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

  .support-card {
    min-height: 29rem;
  }

  .connect-layout {
    grid-template-columns: 1fr;
  }

  .connect-inner {
    padding-top: 0;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 599px) {
  .hero-photo img {
    object-position: 72% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 9, 12, 0.8), rgba(8, 9, 12, 0.16)),
      linear-gradient(0deg, rgba(8, 9, 12, 0.94) 0%, transparent 60%);
  }

  .hero-content {
    justify-content: end;
    padding-bottom: 9.5rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 20vw, 7rem);
  }

  .hero h1 span:last-child {
    margin-left: 0;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 11rem;
  }

  .section-heading > p:last-child,
  .split-heading > p {
    padding-bottom: 0;
  }

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

  .video-shell {
    width: calc(100% + (var(--pad) * 2));
    margin-left: calc(var(--pad) * -1);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

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

  .footer-meta {
    grid-column: auto;
  }

  .social-links {
    margin-top: 1rem;
  }

  .official-links,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .official-links a:nth-child(odd),
  .official-links a:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .booking-form {
    padding: 1.25rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
