:root {
  --sky: #b6ecff;
  --sun: #ffd447;
  --mint: #9af2cf;
  --berry: #ff6f91;
  --ink: #153047;
  --paper: #fffdf7;
  --pill-purple-top: #a974ff;
  --pill-purple-bottom: #7d57df;
  --pill-purple-border: rgba(255, 241, 255, 0.34);
  --pill-purple-shadow: rgba(49, 20, 104, 0.26);
  --font-display: "cooper-black-std", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
}

html {
  margin-top: 0 !important;
}

.site-footer {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 70;
}

.parent-drawer {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 78;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.65rem;
}

.parent-drawer__toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.55rem 0.9rem;
  border: 2px solid rgba(166, 113, 11, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff4a8 0%, #ffd84a 100%);
  box-shadow: 0 10px 22px rgba(123, 87, 12, 0.2);
  color: var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.parent-drawer__toggle:hover,
.parent-drawer__toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(166, 113, 11, 0.32);
  box-shadow: 0 14px 24px rgba(123, 87, 12, 0.24);
}

.parent-drawer__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  font-size: 1rem;
  color: #8f5d00;
}

.parent-drawer__toggle-glyph {
  line-height: 1;
}

.parent-drawer__toggle-label {
  display: inline-block;
  max-width: 14rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: left;
  text-transform: uppercase;
}

.parent-drawer__panel {
  width: min(19rem, calc(100vw - 2rem));
  padding: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.5rem;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.parent-drawer__label {
  display: none;
  margin: 0 0 0.65rem;
  color: rgba(21, 48, 71, 0.64);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.parent-drawer.is-open .parent-drawer__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 0s;
}

.parent-drawer__menu {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.parent-drawer__menu li {
  min-width: 0;
}

.parent-drawer__menu a {
  display: block;
  padding: 0.58rem 0.78rem;
  border: 2px solid rgba(21, 48, 71, 0.1);
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 242, 199, 0.98) 100%);
  box-shadow: 0 5px 12px rgba(21, 48, 71, 0.08);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.parent-drawer__menu a:hover,
.parent-drawer__menu a:focus-visible {
  border-color: rgba(21, 48, 71, 0.16);
  color: var(--ink);
}

.parent-drawer__menu .current-menu-item > a,
.parent-drawer__menu .current_page_item > a {
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  border-color: var(--pill-purple-border);
  color: #fff;
}

.site-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

.site-menu-overlay {
  display: contents;
}

.site-menu-overlay__close {
  display: none;
}

.floating-menu {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: auto;
  pointer-events: none;
  transition: opacity 220ms ease;
}

body.admin-bar .floating-menu {
  top: calc(1rem + 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .floating-menu {
    top: calc(1rem + 46px);
  }
}

.site-menu-toggle {
  display: none;
}

.site-nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 5rem;
  flex: 1 1 0;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease;
}

.site-nav-brand img {
  display: block;
  height: 100%;
  width: auto;
}

.site-nav-brand__default--mobile {
  display: none !important;
}

.site-nav-brand__tv {
  display: none !important;
}

body.is-interior-nav .site-nav-brand {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-top: 0;
  margin-left: auto;
  flex: 1 1 0;
  pointer-events: auto;
}

.site-socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid rgba(21, 48, 71, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  color: var(--ink);
  text-decoration: none;
}

.site-socials__link i {
  font-size: 1.1rem;
}

.site-socials__link[aria-label="YouTube"] {
  color: #ff0000;
}

.site-socials__link[aria-label="TikTok"] {
  color: #111111;
}

.site-socials__link[aria-label="Instagram"] {
  color: #e4405f;
}

.site-socials__link[aria-label="Facebook"] {
  color: #1877f2;
}

.site-menu li,
.site-menu a {
  pointer-events: auto;
}

.site-menu li {
  position: relative;
}

.site-menu a {
  display: block;
  padding: 0.7rem 0.95rem;
  border: 3px solid rgba(21, 48, 71, 0.12);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 242, 199, 0.98) 100%);
  box-shadow: 0 10px 0 rgba(21, 48, 71, 0.12), 0 18px 26px rgba(0, 0, 0, 0.12);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  border-color: rgba(21, 48, 71, 0.18);
  box-shadow: 0 6px 0 rgba(21, 48, 71, 0.12), 0 14px 22px rgba(0, 0, 0, 0.16);
  color: var(--ink);
  transform: translateY(4px) rotate(-1deg);
}

.site-menu li:nth-child(2n) a:hover,
.site-menu li:nth-child(2n) a:focus-visible {
  transform: translateY(4px) rotate(1deg);
}

.site-menu .active a {
  background: transparent;
  border-color: #153047;
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: -6px;
  box-shadow: 0 8px 0 rgba(21, 48, 71, 0.1), 0 14px 20px rgba(0, 0, 0, 0.1);
  color: #111;
  font-style: italic;
  transform: none;
}

.site-menu li:nth-child(1) a {
  background: linear-gradient(180deg, #fff7c7 0%, #ffe47a 100%);
}

.site-menu li:nth-child(2) a {
  background: linear-gradient(180deg, #d3fbff 0%, #98ebff 100%);
}

.site-menu li:nth-child(3) a {
  background: linear-gradient(180deg, #d8ffe8 0%, #9af2cf 100%);
}

.site-menu li:nth-child(4) a {
  background: linear-gradient(180deg, #ffe7b8 0%, #ffd47d 100%);
}

.site-menu li:nth-child(5) a {
  background: linear-gradient(180deg, #ffd5e2 0%, #ff9fbc 100%);
}

.site-menu li:nth-child(6) a {
  background: linear-gradient(180deg, #ffe8c5 0%, #ffc375 100%);
}

.site-footer {
  bottom: 0;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.75);
}

.section {
  text-align: center;
}

.section-home {
  position: relative;
  overflow: hidden;
  background: #111;
}

.section-music {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #8ce4ff 0%, #63c9f0 40%, #4bb7de 100%);
}

.section-videos {
  background: linear-gradient(145deg, #baf7d5 0%, #85ebc3 100%);
}

.section-video-feature {
  position: relative;
  background: #000;
  overflow: hidden;
}

.section-video-feature__media {
  position: absolute;
  inset: -3rem -9rem;
  z-index: 1;
  overflow: hidden;
}

#happyhatters-channel-player,
.section-video-feature__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(177.77777778vh + 12rem);
  min-width: calc(100% + 18rem);
  height: calc(56.25vw + 6rem);
  min-height: calc(100% + 6rem);
  transform: translate(-50%, -50%);
  border: 0;
}

.section-video-feature__overlay {
  position: absolute;
  top: 6.25rem;
  right: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.section-video-feature__topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.section-video-feature__player-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
}

.section-video-feature__more {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.65rem 1rem;
  border: 2px solid var(--pill-purple-border);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  box-shadow: 0 12px 24px var(--pill-purple-shadow);
  color: #fffdf7;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.section-video-feature__control {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(21, 48, 71, 0.74);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  color: #fffdf7;
}

.section-video-feature__rail {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
  margin-top: 0.9rem;
  overflow-x: auto;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
}

.section-video-feature.is-rail-open .section-video-feature__rail {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.section-video-feature__rail::-webkit-scrollbar {
  height: 0.45rem;
}

.section-video-feature__rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.section-video-feature__episode {
  cursor: pointer;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  min-width: 280px;
  padding: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(21, 48, 71, 0.72);
  color: #fffdf7;
  text-align: left;
}

.section-video-feature__episode.is-active {
  border-color: rgba(255, 240, 196, 0.88);
  background: rgba(255, 154, 181, 0.82);
}

.section-video-feature__episode-thumb {
  position: relative;
  overflow: hidden;
  width: 96px;
  aspect-ratio: 16 / 9;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.12);
}

.section-video-feature__episode-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-video-feature__episode-copy {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.section-video-feature__episode strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-video-feature__episode small {
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.8rem;
}

.section-video-feature__wake {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.section-about {
  background: #10233d;
}

.section-book {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(255, 241, 173, 0.18), transparent 24%),
    linear-gradient(160deg, #ffbdd2 0%, #ff90b1 45%, #ff6f91 100%);
}

.section-contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 238, 186, 0.38), transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(160deg, #98ebff 0%, #66d5ff 42%, #8fe1b6 100%);
}

.section-bkg-video,
.section-bkg-overlay {
  position: absolute;
  inset: 0;
}

.section-bkg-video {
  z-index: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.section-bkg-video video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section-bkg-overlay {
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 22, 43, 0.36) 0%, rgba(10, 22, 43, 0.24) 100%);
  pointer-events: none;
}

.section-music .fp-overflow,
.section-music .fp-slides,
.section-music .fp-slidesContainer,
.section-music .slide,
.section-book .fp-overflow {
  position: relative;
  z-index: 4;
}

.section-book,
.section-book .fp-overflow {
  min-height: 100%;
  height: 100%;
}

.section-book .fp-overflow {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.section-contact .fp-overflow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 5rem 1.25rem 6rem;
}

.panel {
  position: relative;
  z-index: 4;
  max-width: 980px;
  margin: 0 auto;
  padding: 6.25rem 1.25rem 3.5rem;
}

.section-home .fp-overflow {
  width: 100%;
}

.hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "left logo right";
  align-items: center;
  gap: clamp(0.75rem, 2.6vw, 2rem);
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-logo {
  display: block;
  grid-area: logo;
  width: min(50vw, 620px);
  max-height: 30vh;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
  transform-origin: center center;
  animation: hero-pop 920ms cubic-bezier(0.18, 0.89, 0.32, 1.28) 120ms both;
}

.hero-character {
  display: block;
  width: min(22vw, 280px);
  max-height: 36vh;
  object-fit: contain;
  animation: hero-pop 900ms cubic-bezier(0.18, 0.89, 0.32, 1.24) both;
}

.hero-character-left {
  grid-area: left;
  justify-self: end;
  transform: rotate(-3deg);
  animation-name: hero-pop-left;
  animation-delay: 380ms;
}

.hero-character-right {
  grid-area: right;
  justify-self: start;
  transform: rotate(3deg);
  animation-name: hero-pop-right;
  animation-delay: 540ms;
}

@media (min-width: 1100px) {
  .hero-media {
    gap: 2rem;
  }

  .hero-logo {
    width: min(52vw, 680px);
    max-height: 34vh;
  }

  .hero-character {
    width: min(24vw, 320px);
    max-height: 40vh;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(100%, 1280px);
  max-width: 1280px;
  min-height: 100vh;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  line-height: 1.1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.9rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  border: 2px solid var(--pill-purple-border);
  box-shadow: 0 12px 24px var(--pill-purple-shadow);
  color: #fffdf7;
  font-family: var(--font-display);
  text-transform: uppercase;
  animation: tagline-glow 4.8s ease-in-out 1.2s infinite;
}

h2,
h3,
.btn {
  font-family: var(--font-display);
}

.lead {
  margin: 0 auto 1.25rem;
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions,
.cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta--coming-soon {
  flex-direction: column;
  width: min(100%, 980px);
  min-height: calc(100vh - 6rem);
  padding-top: 7.5rem;
  padding-bottom: 9rem;
  text-align: center;
  color: #fffdf7;
}

.cta__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  border: 2px solid var(--pill-purple-border);
  box-shadow: 0 12px 24px var(--pill-purple-shadow);
  color: #fffdf7;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta--coming-soon h2 {
  margin: 0 0 1.1rem;
  max-width: 16ch;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1.02;
  color: #fffdf7;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.cta--coming-soon p:last-child {
  margin: 0;
  max-width: 38ch;
  font-size: clamp(1.05rem, 1.85vw, 1.35rem);
  line-height: 1.6;
  color: #fffdf7;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.contact-panel {
  position: relative;
  z-index: 4;
  width: min(100%, 760px);
  padding: 1.2rem 1.25rem 1.1rem;
  border: 4px solid rgba(21, 48, 71, 0.12);
  border-radius: 1.5rem;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 24px 60px rgba(21, 48, 71, 0.18);
  color: var(--ink);
}

.contact-panel__intro {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 0.8rem;
}

.contact-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  border: 2px solid var(--pill-purple-border);
  box-shadow: 0 12px 24px var(--pill-purple-shadow);
  color: #fffdf7;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-panel__intro h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.contact-panel__intro p:last-child {
  margin: 0 auto;
  max-width: 30rem;
  font-size: clamp(0.92rem, 1.25vw, 1.02rem);
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-panel .wpcf7 {
  width: 100%;
}

.contact-panel .wpcf7 form {
  display: grid;
  gap: 0.7rem;
}

.contact-panel .wpcf7 p {
  margin: 0;
}

.contact-panel .wpcf7 br {
  display: none;
}

.contact-panel .contact-form > p,
.contact-panel .contact-form__grid > p {
  display: contents;
  margin: 0;
}

.contact-panel .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.contact-form__field {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  text-align: left;
}

.contact-form__field span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  display: block;
  padding: 0.68rem 0.85rem;
  border: 2px solid rgba(21, 48, 71, 0.12);
  border-radius: 0.85rem;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.45);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: rgba(21, 48, 71, 0.32);
  box-shadow: 0 0 0 5px rgba(102, 213, 255, 0.18);
}

.contact-form__field textarea,
.contact-form__textarea {
  min-height: 6.1rem;
  resize: vertical;
}

.contact-form__submit {
  justify-self: center;
  padding: 0.72rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  box-shadow: 0 12px 24px var(--pill-purple-shadow);
  color: #fffdf7;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.contact-form__notice {
  margin: 0 0 0.8rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form__notice p {
  margin: 0;
}

.contact-form__notice p + p {
  margin-top: 0.4rem;
}

.contact-panel .wpcf7 form .wpcf7-response-output {
  margin: 0 0 0.8rem;
  padding: 0.75rem 0.9rem;
  border: 0;
  border-radius: 0.85rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-panel .wpcf7 form.sent .wpcf7-response-output,
.contact-panel .wpcf7 form.submitting .wpcf7-response-output {
  background: rgba(117, 226, 167, 0.26);
  color: #0f5f34;
}

.contact-panel .wpcf7 form.invalid .wpcf7-response-output,
.contact-panel .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-panel .wpcf7 form.failed .wpcf7-response-output,
.contact-panel .wpcf7 form.aborted .wpcf7-response-output,
.contact-panel .wpcf7 form.spam .wpcf7-response-output {
  background: rgba(255, 111, 145, 0.18);
  color: #7e2341;
}

.contact-panel .wpcf7-not-valid-tip {
  margin-top: 0.15rem;
  color: #b4234b;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-panel .wpcf7-spinner {
  margin: 0 auto;
}

.contact-form__notice--success {
  background: rgba(117, 226, 167, 0.26);
  color: #0f5f34;
}

.contact-form__notice--error {
  background: rgba(255, 111, 145, 0.18);
  color: #7e2341;
}

.section-contact__shape {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.22);
  pointer-events: none;
}

.section-contact__shape--one {
  top: 8%;
  left: -6%;
  width: 16rem;
  height: 16rem;
}

.section-contact__shape--two {
  right: -4%;
  bottom: 10%;
  width: 12rem;
  height: 12rem;
}

.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(255, 232, 130, 0.4), transparent 24%),
    linear-gradient(180deg, #bcecff 0%, #ecfaff 54%, #d7f4b2 100%);
}

.error-page__stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.error-page__backdrop,
.error-page__sunburst {
  position: absolute;
  inset: 0;
}

.error-page__backdrop {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.28), transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.22), transparent 16%);
}

.error-page__sunburst {
  opacity: 0.9;
  background:
    radial-gradient(circle at center, rgba(255, 229, 0, 0.92) 0 10%, rgba(255, 215, 0, 0.7) 10% 16%, transparent 16% 100%),
    conic-gradient(from 0deg, rgba(255, 255, 255, 0.72) 0deg 12deg, rgba(255, 206, 110, 0.54) 12deg 24deg, transparent 24deg 36deg, rgba(255, 255, 255, 0.52) 36deg 48deg, rgba(255, 206, 110, 0.5) 48deg 60deg, transparent 60deg 72deg, rgba(255, 255, 255, 0.6) 72deg 84deg, rgba(255, 206, 110, 0.46) 84deg 96deg, transparent 96deg 108deg, rgba(255, 255, 255, 0.56) 108deg 120deg, rgba(255, 206, 110, 0.45) 120deg 132deg, transparent 132deg 144deg, rgba(255, 255, 255, 0.62) 144deg 156deg, rgba(255, 206, 110, 0.48) 156deg 168deg, transparent 168deg 180deg, rgba(255, 255, 255, 0.66) 180deg 192deg, rgba(255, 206, 110, 0.52) 192deg 204deg, transparent 204deg 216deg, rgba(255, 255, 255, 0.58) 216deg 228deg, rgba(255, 206, 110, 0.47) 228deg 240deg, transparent 240deg 252deg, rgba(255, 255, 255, 0.64) 252deg 264deg, rgba(255, 206, 110, 0.49) 264deg 276deg, transparent 276deg 288deg, rgba(255, 255, 255, 0.6) 288deg 300deg, rgba(255, 206, 110, 0.46) 300deg 312deg, transparent 312deg 324deg, rgba(255, 255, 255, 0.68) 324deg 336deg, rgba(255, 206, 110, 0.5) 336deg 348deg, transparent 348deg 360deg);
  background-position: center;
  background-size: 90vmin 90vmin;
  background-repeat: no-repeat;
}

.error-page__panel {
  position: relative;
  z-index: 3;
  width: min(100%, 760px);
  padding: 2rem 1.6rem 1.7rem;
  text-align: center;
  border: 4px solid rgba(21, 48, 71, 0.12);
  border-radius: 2rem;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 28px 64px rgba(21, 48, 71, 0.16);
}

.error-page__brand {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.error-page__brand img {
  display: block;
  width: min(100%, 420px);
  height: auto;
}

.error-page__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  margin: 0 0 1rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  border: 2px solid var(--pill-purple-border);
  box-shadow: 0 12px 24px var(--pill-purple-shadow);
  color: #fffdf7;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.85vw, 1.35rem);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.error-page__panel h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
  color: var(--ink);
}

.error-page__copy {
  margin: 0 auto;
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.error-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(21, 48, 71, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 242, 199, 0.98) 100%);
  box-shadow: 0 10px 0 rgba(21, 48, 71, 0.12), 0 18px 26px rgba(0, 0, 0, 0.12);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.error-page__button:hover,
.error-page__button:focus-visible {
  transform: translateY(4px);
  box-shadow: 0 6px 0 rgba(21, 48, 71, 0.12), 0 14px 22px rgba(0, 0, 0, 0.16);
}

.error-page__button--primary {
  background: linear-gradient(180deg, #d8ffe8 0%, #9af2cf 100%);
}

.error-page__characters {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  pointer-events: none;
}

.error-page__character {
  position: absolute;
  bottom: 0;
  width: min(24vw, 260px);
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
}

.error-page__character--left {
  left: max(1rem, 4vw);
}

.error-page__character--right {
  right: max(1rem, 4vw);
}

@media screen and (max-width: 782px) {
  .section-contact .fp-overflow {
    padding: 4.8rem 0.9rem 7.35rem;
  }

  .contact-panel {
    width: min(100%, 560px);
    padding: 1rem 0.95rem 0.95rem;
    border-radius: 1.25rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__submit {
    width: 100%;
  }

  .error-page__stage {
    padding: 1rem 0.9rem 2rem;
  }

  .error-page__panel {
    width: min(100%, 560px);
    padding: 1.35rem 1rem 1.15rem;
    border-radius: 1.5rem;
  }

  .error-page__brand img {
    width: min(100%, 280px);
  }

  .error-page__panel h1 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .error-page__copy {
    font-size: 0.98rem;
  }

  .error-page__actions {
    gap: 0.6rem;
  }

  .error-page__button {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
  }

  .error-page__character {
    width: min(29vw, 150px);
    opacity: 0.92;
  }
}

.btn {
  cursor: pointer;
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
}

.content-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 1.25rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  padding: 2rem 1.25rem;
}

.content-card.wide {
  max-width: 780px;
}

.music-panel {
  position: relative;
  z-index: 4;
  display: grid;
  align-items: center;
  gap: 1.5rem;
  width: min(100%, 1120px);
  min-height: calc(100vh - 7rem);
  padding: 7.25rem 1.5rem 9rem;
  color: #153047;
}

.music-panel--intro {
  justify-items: center;
  text-align: center;
}

.music-panel--embed {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.music-panel__copy {
  position: relative;
  z-index: 5;
  max-width: 34rem;
}

.music-panel--intro .music-panel__copy {
  max-width: 46rem;
}

.music-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  border: 2px solid var(--pill-purple-border);
  box-shadow: 0 12px 24px var(--pill-purple-shadow);
  color: #fffdf7;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.music-panel h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 4.4vw, 4.1rem);
  line-height: 1;
  color: #fffdf7;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.music-panel p:not(.music-panel__eyebrow) {
  margin: 0;
  font-size: clamp(1.05rem, 1.85vw, 1.35rem);
  line-height: 1.6;
  color: #fffdf7;
}

.music-panel__chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.music-panel__chips a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--pill-purple-border);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  box-shadow: 0 12px 24px var(--pill-purple-shadow);
  color: #fffdf7;
  font-family: var(--font-display);
  font-size: 1rem;
  text-decoration: none;
}

.music-panel__frame {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 2px solid rgba(255, 253, 247, 0.22);
  border-radius: 2rem;
  background: rgba(8, 19, 32, 0.2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.music-panel__frame iframe {
  display: block;
  width: 100%;
  max-width: 660px;
}

.section-has-slides {
  position: relative;
}

.section-slide-controls {
  position: absolute;
  inset: 50% 1rem auto;
  z-index: 9;
  pointer-events: none;
}

.section-slide-control {
  cursor: pointer;
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border: 2px solid rgba(255, 253, 247, 0.34);
  border-radius: 999px;
  background: rgba(12, 28, 51, 0.7);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
  color: #fffdf7;
  pointer-events: auto;
  transform: translateY(-50%);
}

.section-slide-control--prev {
  left: 0;
  background: rgba(255, 157, 66, 0.86);
  border-color: rgba(255, 236, 214, 0.42);
  color: #fffdf7;
}

.section-slide-control--next {
  right: 0;
  background: rgba(45, 179, 90, 0.88);
  border-color: rgba(226, 255, 235, 0.42);
  color: #fffdf7;
}

.section-slide-control--next.is-reset {
  background: rgba(76, 135, 255, 0.9);
  border-color: rgba(229, 240, 255, 0.44);
  color: #fffdf7;
}

.section-slide-control i {
  font-size: 1.1rem;
}

.section-slide-control.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.story-slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: #10233d;
}

.story-slide__media,
.story-slide__overlay {
  position: absolute;
  inset: 0;
}

.story-slide__media {
  z-index: 1;
  overflow: hidden;
}

.story-slide__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-slide__overlay {
  z-index: 2;
  background:
    linear-gradient(115deg, rgba(10, 22, 43, 0.84) 0%, rgba(10, 22, 43, 0.56) 45%, rgba(10, 22, 43, 0.68) 100%),
    radial-gradient(circle at top left, rgba(255, 224, 119, 0.24), transparent 38%);
}

.story-slide--shop .story-slide__overlay {
  background:
    linear-gradient(115deg, rgba(33, 22, 49, 0.82) 0%, rgba(33, 22, 49, 0.54) 45%, rgba(17, 43, 72, 0.68) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 161, 193, 0.2), transparent 30%);
}

.story-slide--poof .story-slide__overlay {
  background:
    radial-gradient(circle at center, rgba(255, 241, 173, 0.26), rgba(10, 22, 43, 0.2) 24%, rgba(10, 22, 43, 0.8) 74%),
    linear-gradient(135deg, rgba(255, 136, 166, 0.18), rgba(98, 216, 255, 0.2));
}

.story-slide--hatterville .story-slide__overlay {
  background:
    linear-gradient(115deg, rgba(18, 54, 81, 0.76) 0%, rgba(20, 93, 107, 0.5) 45%, rgba(10, 22, 43, 0.76) 100%),
    radial-gradient(circle at 20% 20%, rgba(132, 255, 211, 0.22), transparent 28%);
}

.story-slide--adventure .story-slide__overlay {
  background:
    linear-gradient(115deg, rgba(67, 34, 64, 0.78) 0%, rgba(25, 46, 89, 0.52) 50%, rgba(10, 22, 43, 0.8) 100%),
    radial-gradient(circle at top right, rgba(255, 224, 119, 0.18), transparent 32%);
}

.story-slide__content {
  position: relative;
  z-index: 3;
  width: min(100%, 1080px);
  margin-left: auto;
  margin-right: auto;
  padding: 7rem 1.5rem 11rem;
  color: #fffdf7;
  text-align: center;
}

.story-slide__content--centered {
  max-width: 1080px;
}

.story-slide__eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  border: 2px solid var(--pill-purple-border);
  box-shadow: 0 12px 24px var(--pill-purple-shadow);
  color: #fffdf7;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kicker,
.cta__eyebrow,
.contact-panel__eyebrow,
.music-panel__eyebrow,
.story-slide__eyebrow {
  min-height: 2.45rem;
  padding: 0.5rem 0.95rem;
  font-size: clamp(1.05rem, 1.85vw, 1.35rem);
  line-height: 1;
  letter-spacing: 0.05em;
}

.story-slide h2 {
  margin: 0 0 1.25rem;
  /* max-width: 16ch; */
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1.02;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.story-slide__content--centered h2 {
  max-width: none;
}

.story-slide p:not(.story-slide__eyebrow),
.story-slide li {
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  line-height: 1.55;
}

.story-slide p:not(.story-slide__eyebrow) {
  margin: 0 0 1rem;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.story-slide__callout {
  margin-top: 1.5rem;
  color: #fff3af;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 3.8vw, 3.4rem);
  line-height: 1.1;
}

.story-slide__list {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 1.1rem;
  padding: 0;
  list-style: none;
  justify-items: center;
}

.story-slide__list li {
  position: relative;
  max-width: 36ch;
  padding-left: 2rem;
}

.story-slide__list li::before {
  content: "✨";
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  font-size: 1rem;
  line-height: 1;
}

.story-slide--hatterville .story-slide__list {
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.story-slide--hatterville .story-slide__list li {
  width: min(100%);
  /* max-width: 24ch; */
  font-size: clamp(0.98rem, 1.55vw, 1.2rem);
  line-height: 1.4;
}

.story-slide__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.story-slide__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--pill-purple-border);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  box-shadow: 0 12px 24px var(--pill-purple-shadow);
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fffdf7;
}

.icon {
  display: block;
  margin: 0 auto 1rem;
}

.video-grid {
  margin: 1.5rem auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.9rem;
  padding: 0.5rem;
  text-align: left;
}

.video-card img {
  width: 100%;
  border-radius: 0.7rem;
  display: block;
}

.video-card h3 {
  margin: 0.6rem 0.4rem 0.4rem;
  font-size: 1rem;
}

.normal-scroll {
  max-height: min(56vh, 420px);
  overflow: auto;
  padding: 0.2rem;
}

.fp-controlArrow.fp-prev {
  border-color: transparent rgba(255, 253, 247, 0.92) transparent transparent;
  left: 1.25rem;
}

.fp-controlArrow.fp-next {
  border-color: transparent transparent transparent rgba(255, 253, 247, 0.92);
  right: 1.25rem;
}

.fp-controlArrow {
  z-index: 8;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.24));
}

.section-about .fp-controlArrow {
  opacity: 0;
  pointer-events: none;
}

.section-about .fp-slidesNav {
  z-index: 8;
  bottom: 1.25rem !important;
}

.section-about .fp-slidesNav ul li a span,
.section-about .fp-slidesNav ul li:hover a span,
.section-about .fp-slidesNav ul li a.active span {
  background: #fffdf7;
}

.section-music .fp-controlArrow {
  opacity: 0;
  pointer-events: none;
}

.home-bg-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.home-bg-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(9, 18, 30, 0.12) 0%, rgba(9, 18, 30, 0.18) 100%);
}

.section-home .panel {
  color: #fff;
}

.section-home .btn-primary {
  background: #fff;
  color: var(--ink);
}

.section-home .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.video-modal.is-open {
  display: block;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 15, 0.75);
}

.video-modal__dialog {
  position: relative;
  margin: 5vh auto 0;
  width: min(96vw, 980px);
  background: #fff;
  border-radius: 0.9rem;
  padding: 0.85rem 0.85rem 1rem;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.4);
}

.video-modal__dialog h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.video-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.45rem 0.6rem;
  background: #153047;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.video-modal__frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 0.6rem;
  overflow: hidden;
  background: #000;
}

.video-modal__frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sticky-player {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 95;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.sticky-player__drawer,
.sticky-player__bar {
  pointer-events: auto;
}

.sticky-player__drawer {
  max-width: 960px;
  margin: 0 auto 0.85rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 200ms ease, transform 200ms ease;
  visibility: hidden;
}

.sticky-player.is-open .sticky-player__drawer {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.sticky-player__panel {
  position: relative;
  border: 3px solid rgba(21, 48, 71, 0.14);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96) 0%, rgba(255, 243, 214, 0.96) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.sticky-player__drawer-close {
  cursor: pointer;
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid rgba(21, 48, 71, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.sticky-player__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.9rem 4rem 0 0.9rem;
}

.sticky-player__tab {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: linear-gradient(180deg, var(--pill-purple-top) 0%, var(--pill-purple-bottom) 100%);
  border: 2px solid var(--pill-purple-border);
  color: #fffdf7;
  box-shadow: 0 10px 20px var(--pill-purple-shadow);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
}

.sticky-player__tab.is-active {
  background: linear-gradient(180deg, #6f46d8 0%, #4f2aa8 100%);
  color: #fffdf7;
}

.sticky-player__content {
  padding: 1rem;
}

.sticky-player__platform {
  display: none;
  align-items: start;
  gap: 0.8rem;
  text-align: left;
}

.sticky-player__platform.is-active {
  display: grid;
}

.sticky-player__label {
  margin: 0;
  color: rgba(21, 48, 71, 0.65);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-player__platform h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  color: var(--ink);
}

.sticky-player__platform p {
  margin: 0;
  max-width: 60ch;
}

.sticky-player__playlist {
  display: grid;
  gap: 0.55rem;
}

.sticky-player__track {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(21, 48, 71, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-align: left;
}

.sticky-player__track span {
  font-family: var(--font-display);
  font-size: 1rem;
}

.sticky-player__track small {
  color: rgba(21, 48, 71, 0.62);
}

.sticky-player__track.is-active {
  border-color: rgba(21, 48, 71, 0.24);
  background: linear-gradient(180deg, #fff7c7 0%, #ffd98d 100%);
}

.sticky-player__links {
  display: grid;
  gap: 0.7rem;
}

.sticky-player__link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(21, 48, 71, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-align: left;
  text-decoration: none;
}

.sticky-player__link span:last-child {
  display: grid;
  gap: 0.15rem;
}

.sticky-player__link strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
}

.sticky-player__link small {
  color: rgba(21, 48, 71, 0.62);
}

.sticky-player__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: nowrap;
  width: fit-content;
  max-width: min(calc(100vw - 2rem), 46rem);
  margin: 0 auto;
  padding: 0.8rem 0.9rem;
  border: 3px solid rgba(21, 48, 71, 0.14);
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 240, 196, 0.98) 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: padding 220ms ease, gap 220ms ease;
}

.sticky-player__meta {
  display: flex;
  align-items: center;
  flex: 0 1 0;
  min-width: 0;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-14px);
  transition: max-width 260ms ease, opacity 180ms ease, transform 220ms ease, flex-basis 260ms ease;
}

.sticky-player__copy {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-align: left;
  min-width: 0;
}

.sticky-player__copy strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-player__copy span {
  display: none;
}

.sticky-player.has-active-track .sticky-player__meta {
  flex: 0 1 12rem;
  max-width: 12rem;
  opacity: 1;
  transform: translateX(0);
}

.sticky-player__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  justify-content: end;
}

.sticky-player__toggle,
.sticky-player__control,
.sticky-player__platform-icon {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
}

.sticky-player__control {
  border: 2px solid rgba(21, 48, 71, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.sticky-player__control--primary {
  background: #d9534f;
  color: #fffdf7;
}

.sticky-player__control--primary.is-playing {
  background: #2db35a;
}

.sticky-player__control--primary.is-paused {
  background: #e0b931;
  color: #153047;
}

.sticky-player__control--primary.is-stopped {
  background: #2db35a;
  color: #fffdf7;
}

.sticky-player__toggle {
  border: 0;
  background: linear-gradient(180deg, #ff98b5 0%, #ff6f91 100%);
  color: #fffdf7;
}

.sticky-player__platform-icons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
}

.sticky-player__platform-icon {
  min-width: 2.8rem;
  padding: 0;
  border: 2px solid rgba(21, 48, 71, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.sticky-player__icon {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
  align-items: center;
  justify-content: center;
}

.sticky-player__icon i {
  font-size: 1.15rem;
}

.sticky-player__icon--spotify i {
  color: #1db954;
}

.sticky-player__icon--apple i {
  color: #153047;
}

body.is-video-ui-hidden .floating-menu,
body.is-video-ui-hidden .parent-drawer,
body.is-video-ui-hidden .sticky-player,
body.is-video-ui-hidden .section-video-feature__overlay {
  opacity: 0;
  pointer-events: none;
}

body.is-video-ui-hidden .section-video-feature__wake {
  pointer-events: auto;
}

body.is-video-section .sticky-player {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

@keyframes hero-pop {
  0% {
    opacity: 0;
    transform: scale(0.45) translateY(34px);
  }

  55% {
    opacity: 1;
    transform: scale(1.1) translateY(-10px);
  }

  75% {
    transform: scale(0.96) translateY(4px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes hero-pop-left {
  0% {
    opacity: 0;
    transform: rotate(-3deg) scale(0.45) translateY(34px);
  }

  55% {
    opacity: 1;
    transform: rotate(-3deg) scale(1.1) translateY(-10px);
  }

  75% {
    transform: rotate(-3deg) scale(0.96) translateY(4px);
  }

  100% {
    opacity: 1;
    transform: rotate(-3deg) scale(1) translateY(0);
  }
}

@keyframes hero-pop-right {
  0% {
    opacity: 0;
    transform: rotate(3deg) scale(0.45) translateY(34px);
  }

  55% {
    opacity: 1;
    transform: rotate(3deg) scale(1.1) translateY(-10px);
  }

  75% {
    transform: rotate(3deg) scale(0.96) translateY(4px);
  }

  100% {
    opacity: 1;
    transform: rotate(3deg) scale(1) translateY(0);
  }
}

@keyframes tagline-glow {
  0%,
  100% {
    box-shadow: 0 12px 24px var(--pill-purple-shadow);
    filter: brightness(1);
  }

  50% {
    box-shadow: 0 16px 34px rgba(49, 20, 104, 0.34);
    filter: brightness(1.08);
  }
}

@media (max-width: 1180px) {
  .floating-menu {
    top: 0.7rem;
    left: 0.7rem;
    right: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
    transform: none;
    width: auto;
    pointer-events: auto;
  }

  .site-nav-brand {
    display: none;
    height: 2.35rem;
    flex: 1 1 auto;
    min-width: 0;
  }

  body.is-interior-nav .site-nav-brand {
    display: inline-flex;
  }

  body.is-interior-nav .floating-menu {
    justify-content: space-between;
  }

  .section-video-feature__overlay {
    top: 4.75rem;
    left: 0.9rem;
    right: 0.9rem;
  }

  .section-video-feature__topbar {
    gap: 0.6rem;
  }

  .section-video-feature__player-controls {
    gap: 0.35rem;
  }

  .section-video-feature__more {
    min-height: 2.65rem;
    padding: 0.55rem 0.8rem;
    font-size: 0.85rem;
  }

  .section-video-feature__control {
    width: 2.65rem;
    height: 2.65rem;
  }

  .section-video-feature__media {
    inset: -1.5rem -5rem;
  }

  #happyhatters-channel-player,
  .section-video-feature__media iframe {
    width: calc(177.77777778vh + 6rem);
    min-width: calc(100% + 10rem);
    height: calc(56.25vw + 4rem);
    min-height: calc(100% + 4rem);
  }

  .section-video-feature__episode {
    grid-template-columns: 84px minmax(0, 1fr);
    min-width: 240px;
    padding: 0.65rem;
  }

  .section-video-feature__episode-thumb {
    width: 84px;
  }

  .story-slide {
    align-items: end;
  }

  .story-slide__content {
    width: min(100%, 38rem);
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 5.8rem 1rem 9rem;
  }

  .story-slide h2 {
    max-width: 14ch;
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .story-slide p,
  .story-slide li {
    font-size: 1rem;
    line-height: 1.45;
  }

  .story-slide p {
    max-width: 28ch;
  }

  .story-slide__list li {
    max-width: 30ch;
    padding-left: 1.75rem;
  }

  .story-slide__chips span {
    min-height: 2.7rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }

  .music-panel {
    width: auto;
    min-height: calc(100vh - 6rem);
    padding: 6rem 1rem 9rem;
  }

  .music-panel--embed {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .music-panel__copy {
    max-width: 34rem;
    text-align: center;
  }

  .music-panel h2 {
    font-size: clamp(1.9rem, 7vw, 3rem);
  }

  .music-panel p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .music-panel__frame {
    width: min(100%, 42rem);
    padding: 0.8rem;
    border-radius: 1.5rem;
  }

  .cta--coming-soon {
    width: auto;
    min-height: calc(100vh - 6rem);
    padding-top: 6rem;
    padding-bottom: 9rem;
  }

  .cta--coming-soon h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .cta--coming-soon p:last-child {
    font-size: 1rem;
    line-height: 1.5;
  }

  .section-slide-controls {
    inset: auto 0.85rem 6.2rem;
  }

  .section-slide-control {
    width: 2.85rem;
    height: 2.85rem;
  }

  .site-menu-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 2px solid rgba(21, 48, 71, 0.16);
    border-radius: 999px;
    background: rgba(255, 253, 247, 0.94);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
    color: var(--ink);
  }

  .site-menu-toggle i {
    font-size: 1.15rem;
  }

  .site-menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 0.5rem;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.1rem;
    padding-bottom: 0.35rem;
    justify-items: stretch;
    align-self: start;
    justify-self: stretch;
    align-content: start;
    -webkit-overflow-scrolling: touch;
  }

  .site-menu-overlay {
    position: fixed;
    top: 4.35rem;
    right: 0.85rem;
    bottom: calc(6.85rem + env(safe-area-inset-bottom, 0px));
    left: 0.85rem;
    z-index: 110;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-items: start;
    justify-items: stretch;
    gap: 0.7rem;
    padding: 0.85rem 0.85rem 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.92) 0%, rgba(255, 236, 243, 0.9) 100%);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px) scale(0.98);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
  }

  .floating-menu.is-open .site-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 0s;
  }

  .site-menu-overlay .site-menu,
  .site-menu-overlay .site-menu li,
  .site-menu-overlay .site-menu a,
  .site-menu-overlay .site-socials,
  .site-menu-overlay .site-socials__link,
  .site-menu-overlay .site-menu-overlay__close {
    pointer-events: none;
  }

  .floating-menu.is-open .site-menu-overlay .site-menu,
  .floating-menu.is-open .site-menu-overlay .site-menu li,
  .floating-menu.is-open .site-menu-overlay .site-menu a,
  .floating-menu.is-open .site-menu-overlay .site-socials,
  .floating-menu.is-open .site-menu-overlay .site-socials__link,
  .floating-menu.is-open .site-menu-overlay .site-menu-overlay__close {
    pointer-events: auto;
  }

  .site-menu-overlay__close {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 2.7rem;
    height: 2.7rem;
    border: 2px solid rgba(21, 48, 71, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  }

  .site-socials {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-left: 0;
    margin-top: 0;
    padding-top: 0.05rem;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .site-socials__link {
    width: 2.35rem;
    height: 2.35rem;
  }

  .site-socials__link i {
    font-size: 0.98rem;
  }

  .site-menu li {
    width: 100%;
    min-width: 0;
  }

  .site-menu a {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 0.9rem;
    font-size: 0.92rem;
    text-align: center;
    border-width: 2px;
    border-radius: 1.1rem;
    box-shadow: 0 5px 0 rgba(21, 48, 71, 0.1), 0 10px 16px rgba(0, 0, 0, 0.1);
  }

  @media (max-height: 760px) {
    .site-menu-overlay {
      gap: 0.6rem;
      padding: 0.8rem 0.8rem 0.9rem;
    }

    .site-menu {
      gap: 0.45rem;
    }

    .site-menu a {
      padding: 0.64rem 0.85rem;
      font-size: 0.88rem;
    }
  }

  .panel {
    padding-top: 5.6rem;
  }

  .hero-logo {
    width: min(74vw, 320px);
    max-height: 20vh;
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "left right";
    align-items: end;
    justify-items: center;
    gap: 0.75rem;
    max-width: none;
  }

  .hero-character {
    width: min(34vw, 160px);
    max-height: 20vh;
  }

  .hero {
    min-height: 100vh;
    padding-top: 4.75rem;
    padding-bottom: 4rem;
  }

  .video-modal__dialog {
    margin-top: 7vh;
  }

  .sticky-player {
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
  }

  .sticky-player__bar {
    gap: 0.45rem;
    justify-content: center;
    padding: 0.55rem 0.65rem;
    border-radius: 999px;
  }

  .sticky-player__meta {
    display: none;
  }

  .sticky-player__actions {
    gap: 0.35rem;
    flex-wrap: nowrap;
  }

  .sticky-player__toggle,
  .sticky-player__control {
    min-width: 2.45rem;
    min-height: 2.45rem;
    padding: 0;
  }

  .sticky-player__platform-icons {
    gap: 0.35rem;
  }

  .sticky-player__control span,
  .sticky-player__toggle span {
    display: none;
  }

  .sticky-player__platform-icon {
    min-width: 2.45rem;
    min-height: 2.45rem;
  }

  .sticky-player__tabs {
    padding: 0.8rem 0.8rem 0;
  }

  .sticky-player__content {
    padding: 0.8rem;
  }
}

@media (max-width: 768px) {
  .section-about,
  .section-about .fp-overflow,
  .section-about .fp-slides,
  .section-about .fp-slidesContainer,
  .section-about .slide {
    height: 100%;
    width: 100%;
    min-width: 100%;
  }

  .section-about .fp-overflow,
  .section-about .fp-slides,
  .section-about .fp-slidesContainer,
  .section-about .slide {
    display: flex;
    align-items: center;
  }

  .floating-menu {
    top: 0.55rem;
    left: 0.55rem;
    right: 0.55rem;
    gap: 0.45rem;
  }

  .parent-drawer {
    left: 0.7rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
    z-index: 79;
    gap: 0.45rem;
  }

  .parent-drawer__toggle {
    justify-content: center;
    width: 3.15rem;
    min-width: 3.15rem;
    height: 3.15rem;
    min-height: 3.15rem;
    padding: 0;
    border: 2px solid rgba(21, 48, 71, 0.12);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  }

  .parent-drawer__toggle-label {
    display: none;
  }

  .parent-drawer__toggle-icon {
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    color: #c9960c;
  }

  .parent-drawer__panel {
    position: absolute;
    bottom: calc(100% + 0.55rem);
    left: 0;
    width: min(15.75rem, calc(100vw - 1.4rem));
    padding: 0.8rem;
    border-radius: 1.4rem;
    background:
      linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 240, 196, 0.98) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  }

  .parent-drawer__label {
    display: block;
  }

  .parent-drawer__menu a {
    padding: 0.68rem 0.8rem;
    font-size: 0.76rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 6px 12px rgba(21, 48, 71, 0.08);
  }

  .site-nav-brand {
    height: 1.85rem;
    max-width: calc(100% - 3.5rem);
  }

  .site-nav-brand__default--desktop {
    display: none !important;
  }

  .site-nav-brand__default--mobile {
    display: block !important;
  }

  .site-nav-brand img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .site-menu-toggle,
  .site-menu-overlay__close {
    width: 2.85rem;
    height: 2.85rem;
  }

  .hero {
    padding-top: 2.6rem;
    padding-bottom: 2.8rem;
    min-height: 100svh;
  }

  .hero-logo {
    width: min(76vw, 300px);
    max-height: 18vh;
  }

  .hero-character {
    width: min(31vw, 132px);
    max-height: 15vh;
  }

  .kicker {
    font-size: 0.95rem;
    padding: 0.5rem 0.95rem;
  }

  .story-slide__content {
    width: min(92vw, 34rem);
    max-width: 34rem;
    min-height: auto;
    max-height: calc(100svh - 6.4rem);
    margin-left: auto;
    margin-right: auto;
    padding: 2.25rem 1.1rem 2.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
    scrollbar-width: none;
  }

  .story-slide {
    min-height: 100svh;
    width: 100%;
    align-items: center;
  }

  .story-slide h2 {
    max-width: 10.75ch;
    font-size: clamp(1.35rem, 6.9vw, 2.2rem);
    line-height: 1.02;
  }

  .kicker,
  .contact-panel__eyebrow,
  .story-slide__eyebrow,
  .music-panel__eyebrow,
  .cta__eyebrow {
    min-height: 2.2rem;
    padding: 0.42rem 0.72rem;
  }

  .story-slide p:not(.story-slide__eyebrow),
  .story-slide li {
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .story-slide p {
    max-width: 34ch;
    margin-bottom: 0.75rem;
  }

  .story-slide__content::-webkit-scrollbar {
    display: none;
  }

  .story-slide--daybreak .story-slide__content,
  .story-slide--shop .story-slide__content,
  .story-slide--hatterville .story-slide__content,
  .story-slide--adventure .story-slide__content {
    width: min(92vw, 35rem);
  }

  .story-slide--daybreak h2,
  .story-slide--shop h2,
  .story-slide--hatterville h2,
  .story-slide--adventure h2 {
    max-width: 11.5ch;
    font-size: clamp(1.22rem, 6.3vw, 2rem);
  }

  .story-slide--daybreak p,
  .story-slide--shop p,
  .story-slide--hatterville p,
  .story-slide--adventure p {
    max-width: 36ch;
    font-size: 0.84rem;
    line-height: 1.27;
  }

  .story-slide--shop p,
  .story-slide--daybreak p {
    margin-bottom: 0.6rem;
  }

  .story-slide--poof .story-slide__content {
    justify-content: center;
  }

  .story-slide--poof h2 {
    max-width: none;
    font-size: clamp(1.75rem, 9vw, 2.8rem);
  }

  .story-slide--poof .story-slide__callout {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
    line-height: 1.08;
  }

  .story-slide--hatterville .story-slide__chips {
    gap: 0.45rem;
    margin-top: 0.8rem;
  }

  .story-slide__chips {
    gap: 0.55rem;
  }

  .story-slide__chips span {
    min-height: 2.1rem;
    padding: 0.42rem 0.62rem;
    font-size: 0.72rem;
  }

  .music-panel {
    min-height: 100svh;
    padding: 3rem 0.85rem 3.8rem;
    gap: 0.9rem;
    align-content: center;
  }

  .music-panel__copy {
    max-width: 28rem;
  }

  .music-panel h2 {
    font-size: clamp(1.55rem, 8vw, 2.55rem);
    line-height: 1.04;
  }

  .music-panel p {
    font-size: 0.92rem;
    line-height: 1.36;
  }

  .music-panel__chips {
    gap: 0.5rem;
    margin-top: 0.9rem;
  }

  .music-panel__chips a {
    min-height: 2.35rem;
    padding: 0.5rem 0.7rem;
    font-size: 0.78rem;
  }

  .music-panel__frame {
    width: 100%;
    max-width: 100%;
    padding: 0.5rem;
    border-radius: 1.1rem;
  }

  .music-panel__frame--spotify iframe {
    height: 168px;
  }

  .music-panel__frame--apple iframe {
    height: 300px;
  }

  .cta--coming-soon {
    min-height: 100svh;
    padding-top: 3rem;
    padding-bottom: 3.8rem;
  }

  .cta--coming-soon h2 {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }

  .cta--coming-soon p:last-child {
    max-width: 28ch;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .section-slide-controls {
    inset: 50% 0.65rem auto;
  }

  .section-slide-control {
    width: 2.55rem;
    height: 2.55rem;
  }

  .sticky-player {
    right: 0.7rem;
    bottom: 0.7rem;
    left: auto;
    width: auto;
  }

  .sticky-player__drawer {
    display: none;
  }

  .sticky-player__bar {
    gap: 0.4rem;
    max-width: none;
    margin: 0;
    padding: 0.5rem;
    border-radius: 999px;
  }

  .sticky-player__meta,
  .sticky-player__platform-icons {
    display: none;
  }

  .sticky-player__actions {
    display: flex;
    gap: 0;
  }

  .sticky-player__control {
    display: none;
  }

  .sticky-player__toggle {
    display: inline-flex;
    min-width: 3.15rem;
    min-height: 3.15rem;
    padding: 0;
    border-radius: 999px;
  }

  .sticky-player.is-mobile-expanded .sticky-player__bar {
    gap: 0.35rem;
    max-width: min(calc(100vw - 1.4rem), 24rem);
    padding: 0.55rem 0.6rem;
  }

  .sticky-player.is-mobile-expanded .sticky-player__actions,
  .sticky-player.is-mobile-expanded .sticky-player__platform-icons {
    display: flex;
  }

  .sticky-player.is-mobile-expanded .sticky-player__actions {
    gap: 0.35rem;
  }

  .sticky-player.is-mobile-expanded .sticky-player__platform-icons {
    gap: 0.3rem;
  }

  .sticky-player.is-mobile-expanded .sticky-player__control,
  .sticky-player.is-mobile-expanded .sticky-player__platform-icon,
  .sticky-player.is-mobile-expanded .sticky-player__toggle {
    min-width: 2.45rem;
    min-height: 2.45rem;
    padding: 0;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }
}
