:root {
  --black: #080808;
  --coal: #101010;
  --panel: #171717;
  --panel-soft: #1f1b14;
  --line: #34302a;
  --gold: #d4af37;
  --gold-strong: #f1c84b;
  --red: #9d3126;
  --green: #3f9f6d;
  --white: #f7f3e8;
  --muted: #b7aea0;
  --quiet: #817a70;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.nav-link,
.button,
.eyebrow,
.kicker {
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p,
.button,
.trust-item,
.pill,
.song-title,
.song-artist,
.stat-chip strong {
  overflow-wrap: break-word;
}

p {
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 82px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-width: 180px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  font-family: "Oswald", Impact, sans-serif;
  letter-spacing: 0.11em;
  font-size: 1.3rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-strong);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.menu-toggle:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.62);
}

.menu-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-strong);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  color: #080808;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold-strong);
  border-color: var(--gold-strong);
}

.button.secondary {
  background: rgba(8, 8, 8, 0.54);
  color: var(--gold-strong);
}

.button.secondary:hover {
  background: rgba(212, 175, 55, 0.12);
}

.button.dark {
  background: var(--black);
  color: var(--gold-strong);
}

.hero {
  min-height: 92vh;
  padding: 136px 24px 54px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero.has-video::after {
  display: none;
}

.hero.short {
  min-height: 68vh;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
}

.hero::before {
  background-image: var(--hero-a);
  background-position: var(--hero-a-position, center);
  animation: heroA 14s infinite;
}

.hero.has-video::before {
  animation: none;
}

.hero::after {
  background-image: var(--hero-b);
  background-position: var(--hero-b-position, center);
  opacity: 0;
  animation: heroB 14s infinite;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.08);
}

@keyframes heroA {
  0%,
  44% {
    opacity: 1;
    transform: scale(1);
  }
  50%,
  94% {
    opacity: 0;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroB {
  0%,
  44% {
    opacity: 0;
    transform: scale(1.04);
  }
  50%,
  94% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.72) 43%, rgba(8, 8, 8, 0.28) 100%),
    linear-gradient(0deg, var(--black) 0%, rgba(8, 8, 8, 0.18) 44%, rgba(8, 8, 8, 0.48) 100%);
}

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

.hero-copy {
  max-width: 750px;
  min-width: 0;
}

.eyebrow {
  color: var(--gold-strong);
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  margin-bottom: 16px;
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.hero h1 {
  font-size: clamp(4.6rem, 16vw, 11.2rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.hero h1 span,
.section-head h2 span {
  display: block;
}

.hero.short h1 {
  font-size: clamp(3rem, 8.5vw, 6.6rem);
}

.hero-subhead {
  max-width: 710px;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  color: var(--white);
  margin-bottom: 16px;
}

.hero-tag {
  color: var(--gold-strong);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-format-picker {
  width: min(100%, 710px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.hero-format-option {
  --accent: var(--gold);
  position: relative;
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.62);
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  backdrop-filter: blur(8px);
  isolation: isolate;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-format-option:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.58);
  background: rgba(8, 8, 8, 0.78);
}

.hero-format-option.accent-red {
  --accent: var(--red);
}

.hero-format-option.accent-green {
  --accent: var(--green);
}

.hero-format-option.has-logo-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -74px;
  right: -76px;
  width: 228px;
  aspect-ratio: 1;
  background: url("assets/images/unplugged-logo.png") center / contain no-repeat;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.12;
  transform: translateY(calc(var(--unplugged-logo-scroll, 0px) * -0.08)) rotate(-7deg) scale(1.04);
  transform-origin: center;
}

.hero-format-option span,
.hero-format-option strong {
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
}

.hero-format-option span {
  color: var(--gold-strong);
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.hero-format-option strong {
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.05;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.hero-format-option small {
  color: var(--muted);
  line-height: 1.4;
}

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

.section {
  padding: 82px 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.section.dark {
  background: #050505;
}

.section.panel {
  background: linear-gradient(180deg, #101010, #080808);
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
  min-width: 0;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0.045em;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
}

.trust-strip {
  padding: 22px 24px;
  background: var(--gold);
  color: #080808;
}

.trust-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.9rem;
  text-align: center;
}

.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  color: var(--gold-strong);
  text-decoration: none;
  background: rgba(212, 175, 55, 0.06);
  font-weight: 700;
}

.interactive-section {
  position: relative;
  overflow: hidden;
}

.event-mixer {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.mixer-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.mixer-copy h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0.035em;
  margin-bottom: 16px;
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
}

.mixer-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.mixer-tab {
  min-height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mixer-tab:hover,
.mixer-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #080808;
  transform: translateY(-1px);
}

.mixer-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(140deg, rgba(212, 175, 55, 0.16), transparent 36%),
    rgba(12, 12, 12, 0.92);
  box-shadow: var(--shadow);
}

.mixer-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.mixer-card h3 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.mixer-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.mixer-stats div {
  min-width: 0;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.22);
}

.mixer-stats strong {
  display: block;
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.08;
}

.mixer-stats span {
  color: var(--quiet);
  font-size: 0.84rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  min-width: 0;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background: rgba(23, 23, 23, 0.92);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.card h3 {
  color: var(--gold-strong);
  font-size: 1.28rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card.accent-red {
  border-top: 3px solid var(--red);
}

.card.accent-green {
  border-top: 3px solid var(--green);
}

.format-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.format-card .best {
  color: var(--white);
  font-weight: 700;
}

.format-card .price {
  margin-top: auto;
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.proof-strip > *,
.video-proof > *,
.form-layout > *,
.split-band > * {
  min-width: 0;
}

.quote-card {
  position: relative;
}

.quote-card .label {
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 16px;
}

.quote-card blockquote {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1.05rem;
}

.quote-card cite {
  color: var(--quiet);
  font-style: normal;
}

.media-panel {
  position: relative;
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.media-panel .media-caption {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(8, 8, 8, 0.78);
}

.media-caption h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 14px;
}

.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.photo-grid img:first-child {
  grid-row: span 2;
  height: 534px;
}

.video-proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.video-frame {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: #030303;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.video-sound-button {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.video-meta {
  display: grid;
  gap: 16px;
}

.video-meta .stat-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.video-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.video-teaser-card {
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 8, 8, 0.68);
  color: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.video-teaser-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.5);
}

.video-teaser-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-teaser-card span {
  display: block;
  padding: 9px 10px 10px;
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.video-card {
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(15, 15, 15, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.video-card-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  align-items: stretch;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #030303;
  object-fit: contain;
}

.video-card-feature video {
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
}

.video-card-body {
  padding: 18px;
}

.video-card-feature .video-card-body {
  align-self: center;
  padding: clamp(22px, 4vw, 46px);
}

.video-card-body h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin: 4px 0 8px;
}

.video-card-feature .video-card-body h3 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.94;
}

.video-card-body p {
  color: var(--muted);
}

.stat-chip {
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(23, 23, 23, 0.8);
}

.stat-chip strong {
  display: block;
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.stat-chip span {
  color: var(--quiet);
  font-size: 0.86rem;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 62px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 24px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.logo-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
}

.logo-carousel-viewport {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.logo-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.logo-cloud {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  padding: 4px;
}

.logo-tile {
  appearance: none;
  position: relative;
  isolation: isolate;
  flex: 0 0 clamp(150px, 15vw, 188px);
  height: 118px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  padding: 12px;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.logo-tile::before {
  content: "";
  position: absolute;
  inset: -44px;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 30%, rgba(241, 200, 75, 0.42), transparent 42%),
    linear-gradient(145deg, rgba(157, 49, 38, 0.16), rgba(63, 159, 109, 0.12));
  opacity: 0;
  transition: opacity 160ms ease;
}

.logo-tile:hover,
.logo-tile:focus-visible,
.logo-tile.active {
  transform: translateY(-2px);
  border-color: rgba(241, 200, 75, 0.72);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 24px rgba(212, 175, 55, 0.18);
}

.logo-tile:hover::before,
.logo-tile:focus-visible::before,
.logo-tile.active::before {
  opacity: 1;
}

.logo-tile:focus-visible,
.logo-carousel-control:focus-visible {
  outline: 2px solid var(--gold-strong);
  outline-offset: 3px;
}

.logo-tile img {
  max-height: 88px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.86);
  opacity: 0.82;
  transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.logo-tile:hover img,
.logo-tile:focus-visible img,
.logo-tile.active img {
  filter: grayscale(0) brightness(1.08) saturate(1.08);
  opacity: 1;
  transform: scale(1.03);
}

.logo-carousel-control {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-strong);
  font: inherit;
  font-size: 1.08rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.logo-carousel-control:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(241, 200, 75, 0.72);
  background: rgba(212, 175, 55, 0.16);
}

.logo-carousel-control:disabled {
  opacity: 0.34;
  cursor: default;
}

.song-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  padding: 8px 13px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.filter-button.active {
  background: var(--gold);
  color: #080808;
}

.search-input,
.form-control,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 6px;
  background: #0d0d0d;
  color: var(--white);
  padding: 12px 14px;
  font: inherit;
}

.search-input {
  max-width: 360px;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.song-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.song-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  padding: 12px 0;
}

.song-title {
  display: block;
  color: var(--white);
  font-weight: 700;
}

.song-artist {
  color: var(--quiet);
  font-size: 0.9rem;
}

.song-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.song-count {
  margin: 0;
  color: var(--quiet);
  font-size: 0.9rem;
}

.song-show-all {
  min-width: 178px;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
  align-items: start;
}

.inquiry-form {
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.96);
  padding: 24px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 7px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--quiet);
  font-size: 0.86rem;
}

.form-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2px;
}

.form-submit-button {
  min-width: min(100%, 240px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid rgba(63, 159, 109, 0.42);
  background: rgba(63, 159, 109, 0.12);
  color: var(--white);
}

.form-status.active {
  display: block;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 8px;
  background: rgba(23, 23, 23, 0.82);
  padding: 18px 20px;
}

.faq summary {
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 14px 0 0;
}

.route-card,
.profile-card,
.review-proof-card,
.show-card,
.archive-row {
  min-width: 0;
}

.route-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.86)),
    var(--route-image) center / cover;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.62);
}

.route-card span {
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.route-card h3 {
  color: var(--white);
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 8px 0 10px;
}

.route-card p {
  margin-bottom: 0;
  color: rgba(247, 243, 232, 0.82);
}

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

.profile-card {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.94);
  box-shadow: var(--shadow);
}

.profile-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.profile-body {
  padding: 24px;
}

.profile-kicker,
.review-proof-card .label,
.show-copy p,
.date-chip {
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.profile-card h3 {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.instrument-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.instrument-list span {
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--gold-strong);
  background: rgba(212, 175, 55, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-tools,
.review-tools,
.show-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.gallery-grid-page {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background: #050505;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.gallery-tile.wide {
  grid-column: span 2;
}

.gallery-tile.tall {
  grid-row: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 260ms ease, opacity 180ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.045);
  opacity: 0.88;
}

.gallery-tile[data-gallery-item="venue"] img,
.gallery-tile[data-gallery-item="brand"] img {
  object-fit: contain;
  padding: 26px;
  background: #111;
}

.gallery-tile[data-gallery-item="venue"]:hover img,
.gallery-tile[data-gallery-item="brand"]:hover img {
  transform: scale(1.02);
}

.gallery-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: block;
  border-left: 3px solid var(--gold);
  padding: 10px 12px;
  background: rgba(8, 8, 8, 0.76);
  color: var(--white);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox.open {
  display: grid;
}

.lightbox-shell {
  position: relative;
  width: min(100%, 980px);
  max-height: min(88svh, 820px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  overflow: hidden;
  background: #050505;
  box-shadow: var(--shadow);
}

.lightbox-shell img {
  width: 100%;
  max-height: calc(88svh - 74px);
  object-fit: contain;
  background: #030303;
}

.lightbox-shell p {
  margin: 0;
  padding: 14px 18px;
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 4px;
  background: rgba(8, 8, 8, 0.82);
  color: var(--gold-strong);
  padding: 9px 12px;
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-proof-card {
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.94);
  padding: 24px;
}

.review-proof-card.featured {
  background:
    linear-gradient(140deg, rgba(212, 175, 55, 0.14), transparent 42%),
    rgba(17, 17, 17, 0.94);
  border-color: rgba(212, 175, 55, 0.34);
}

.review-proof-card blockquote {
  margin: 14px 0 18px;
  color: var(--white);
  font-size: 1.04rem;
}

.review-proof-card cite {
  color: var(--quiet);
  font-style: normal;
}

.show-note-card {
  align-self: start;
}

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

.show-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 118px;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.94);
  padding: 18px;
}

.upcoming-card {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 38%),
    rgba(17, 17, 17, 0.94);
}

.show-date {
  display: grid;
  place-items: center;
  min-height: 104px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  background: var(--gold);
  color: #080808;
  text-align: center;
  line-height: 1;
}

.show-date span,
.show-date small {
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.show-date strong {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 2.7rem;
  line-height: 0.9;
}

.show-copy h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.show-copy p {
  margin: 0;
}

.show-logo-mark {
  width: 118px;
  min-height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
}

.show-logo-mark img {
  max-height: 78px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.archive-list {
  display: grid;
  gap: 10px;
}

.archive-row {
  display: grid;
  grid-template-columns: 160px minmax(180px, 0.8fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 8px;
  background: rgba(23, 23, 23, 0.82);
  padding: 14px 16px;
}

.archive-row strong {
  color: var(--white);
}

.archive-row span:last-child {
  color: var(--quiet);
}

[hidden] {
  display: none !important;
}

.footer {
  padding: 56px 24px 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.76), #030303 58%),
    #030303;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand p,
.footer-booking p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-booking {
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.footer-label,
.footer-column span {
  display: block;
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-booking a {
  display: inline-block;
  margin-top: 9px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.footer-booking a:hover {
  color: var(--gold-strong);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column a,
.footer-bottom {
  color: var(--quiet);
  text-decoration: none;
}

.footer-column a {
  font-size: 0.92rem;
}

.footer-column a:hover {
  color: var(--gold-strong);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gold-strong);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

.sticky-book {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  transform: translateY(90px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-book.visible {
  transform: translateY(0);
  opacity: 1;
}

.page-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.mini-map {
  min-height: 260px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0.78)),
    url("assets/images/live/27birds-guitarist-drummer-stage.jpg") center / cover;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.mini-map strong {
  display: block;
  color: var(--gold-strong);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
}

.hidden-field {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  .menu-toggle {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 49;
    display: block;
    padding: 94px 16px 16px;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms ease, background 180ms ease;
  }

  .mobile-menu.open {
    background: rgba(0, 0, 0, 0.58);
    pointer-events: auto;
    opacity: 1;
  }

  .mobile-menu-panel {
    width: min(100%, 390px);
    max-height: calc(100svh - 112px);
    overflow-y: auto;
    margin-left: auto;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 8px;
    background: rgba(9, 9, 9, 0.97);
    box-shadow: var(--shadow);
    padding: 16px;
    transform: translateY(-10px) scale(0.98);
    transition: transform 180ms ease;
  }

  .mobile-menu.open .mobile-menu-panel {
    transform: translateY(0) scale(1);
  }

  .mobile-menu-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    color: var(--quiet);
    font-size: 0.8rem;
  }

  .mobile-menu-top span,
  .mobile-menu-top strong,
  .mobile-menu-feature span,
  .mobile-menu-links span {
    font-family: "Oswald", Impact, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .mobile-menu-top strong {
    color: var(--gold-strong);
  }

  .mobile-menu a {
    text-decoration: none;
  }

  .mobile-menu-feature {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 8px;
    background: var(--gold);
    color: #080808;
    margin-bottom: 10px;
  }

  .mobile-menu-feature small {
    color: rgba(8, 8, 8, 0.72);
    line-height: 1.35;
  }

  .mobile-menu-links {
    display: grid;
    gap: 8px;
  }

  .mobile-menu-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 14px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
  }

  .mobile-menu-links small {
    color: var(--quiet);
    text-align: right;
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .event-mixer {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.four,
  .proof-strip,
  .video-proof,
  .videos-grid,
  .form-layout,
  .split-band,
  .profile-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .logo-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .archive-row span:last-child {
    grid-column: 2;
  }

  .video-meta .stat-line {
    grid-template-columns: 1fr;
  }

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

  .photo-grid img,
  .photo-grid img:first-child {
    height: 260px;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 74px;
    padding: 8px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    font-size: 1.08rem;
  }

  .mobile-menu {
    padding: 84px 12px 12px;
  }

  .mobile-menu-panel {
    width: 100%;
    max-height: calc(100svh - 96px);
    padding: 14px;
  }

  .hero {
    min-height: 88svh;
    padding: 118px 18px 42px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5.4rem);
    letter-spacing: 0.015em;
  }

  .hero.short {
    min-height: 76svh;
  }

  .hero.short h1 {
    font-size: clamp(2rem, 9.2vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: 0.015em;
  }

  .hero-copy,
  .section-head {
    max-width: min(100%, 340px);
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }

  .hero-subhead {
    font-size: 1.02rem;
    line-height: 1.52;
    max-width: min(100%, 312px);
  }

  .hero-tag {
    font-size: 0.98rem;
    line-height: 1.45;
    max-width: min(100%, 312px);
    margin-bottom: 18px;
  }

  .hero-tag span {
    display: block;
  }

  .hero-format-picker {
    grid-template-columns: 1fr;
    max-width: min(100%, 330px);
    gap: 9px;
    margin-bottom: 16px;
  }

  .hero-format-option {
    padding: 13px 14px;
    gap: 4px;
  }

  .hero-format-option.has-logo-mark::before {
    top: -58px;
    right: -58px;
    width: 184px;
    opacity: 0.13;
  }

  .hero-format-option span {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .hero-format-option strong {
    font-size: 1.05rem;
  }

  .hero-format-option small {
    font-size: 0.8rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.64)),
      linear-gradient(0deg, var(--black) 0%, rgba(8, 8, 8, 0.16) 54%, rgba(8, 8, 8, 0.55) 100%);
  }

  .section {
    padding: 62px 18px;
  }

  .mixer-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .mixer-tabs,
  .mixer-stats {
    grid-template-columns: 1fr;
  }

  .mixer-card h3 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .section-head h2 {
    font-size: clamp(1.8rem, 9.2vw, 2.65rem);
    line-height: 1.02;
    letter-spacing: 0.015em;
  }

  .card,
  .inquiry-form {
    padding: 20px;
  }

  .step {
    padding: 60px 20px 20px;
  }

  .step::before {
    left: 20px;
    top: 20px;
  }

  .trust-strip {
    padding: 22px 18px;
  }

  .trust-grid {
    gap: 10px;
  }

  .trust-item {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .trust-grid,
  .form-grid,
  .logo-cloud,
  .song-list,
  .photo-grid,
  .footer-nav,
  .video-teaser-grid,
  .videos-grid,
  .gallery-grid-page,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .logo-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .logo-carousel-control {
    width: 40px;
    height: 40px;
  }

  .logo-tile {
    flex-basis: min(72vw, 220px);
    height: 108px;
    padding: 12px;
  }

  .logo-tile img {
    max-height: 78px;
  }

  .profile-card {
    grid-template-rows: auto auto;
  }

  .profile-photo {
    height: 360px;
    min-height: 0;
  }

  .gallery-tile,
  .gallery-tile img {
    min-height: 310px;
  }

  .show-card {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 14px;
  }

  .show-logo-mark {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 76px;
  }

  .show-date {
    min-height: 82px;
  }

  .show-date strong {
    font-size: 2.1rem;
  }

  .archive-row {
    grid-template-columns: 1fr;
  }

  .archive-row span:last-child {
    grid-column: auto;
  }

  .photo-grid img,
  .photo-grid img:first-child {
    height: 310px;
  }

  .hero-actions,
  .song-tools,
  .song-list-footer,
  .form-actions {
    align-items: stretch;
  }

  .button,
  .search-input {
    width: 100%;
  }

  .button {
    padding: 12px 14px;
  }

  .form-actions {
    margin-top: 20px;
  }

  .form-submit-button {
    width: 100%;
  }

  .footer {
    padding: 44px 18px 26px;
  }

  .footer-brand {
    gap: 13px;
  }

  .footer-brand img {
    width: 56px;
    height: 56px;
  }

  .footer-nav {
    gap: 20px;
  }

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

  .sticky-book {
    right: 12px;
    left: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: auto;
    min-width: 146px;
    min-height: 42px;
    padding: 10px 14px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
  }

  .video-sound-button {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-format-option.has-logo-mark::before {
    transform: rotate(-7deg) scale(1.04);
  }

  .logo-carousel-viewport {
    scroll-behavior: auto;
  }

  .logo-tile,
  .logo-tile::before,
  .logo-tile img,
  .logo-carousel-control {
    transition: none;
  }
}
