:root {
  --carbon: #0d0d0e;
  --obsidian: #222326;
  --plate: #272c33;
  --slate: #191c21;
  --paper: #ffffff;
  --bone: #f4f4f5;
  --ash: #9ea0a9;
  --smoke: rgba(244, 244, 245, 0.16);
  --magenta: #e32652;
  --gold: #eed37f;
  --max: 1280px;
  --sticky-promo-height: 84px;
  --header-scroll-offset: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-scroll-offset);
}

body {
  margin: 0;
  padding-bottom: var(--sticky-promo-height);
  background: var(--obsidian);
  color: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.sticky-promo-hidden {
  padding-bottom: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 72% 12%, rgba(227, 38, 82, 0.2), transparent 32%),
    linear-gradient(180deg, #202126 0%, #0d0d0e 52%, #151619 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 16px max(16px, calc((100% - var(--max)) / 2 + 16px));
  border-bottom: 1px solid var(--smoke);
  background: rgba(13, 13, 14, 0.82);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-avatar-btn {
  padding: 0;
  border: 2px solid rgba(238, 211, 127, 0.45);
  border-radius: 50%;
  background: transparent;
  cursor: zoom-in;
  flex-shrink: 0;
}

.brand-link {
  display: grid;
  gap: 2px;
  min-width: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name {
  line-height: 1;
}

.brand-tagline {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ash);
  white-space: normal;
  line-height: 1.25;
}

.br-mobile {
  display: none;
}

.brand-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  display: block;
}

.nav-links,
.header-actions,
.hero-actions,
.hero-facts,
.price-line,
.audience-paths {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: clamp(10px, 1.25vw, 18px);
  color: var(--bone);
  font-size: 13px;
  white-space: nowrap;
}

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

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--smoke);
  border-radius: 8px;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 21;
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: background 0.2s ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

body.nav-open .nav-toggle-icon {
  background: transparent;
}

body.nav-open .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.lang-switch {
  min-width: 44px;
  min-height: 38px;
  border: 1px solid var(--smoke);
  border-radius: 8px;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  color: var(--paper);
  background: var(--magenta);
  font-weight: 700;
  cursor: pointer;
}

.button:hover {
  filter: brightness(1.08);
}

.button:focus-visible,
.lang-switch:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.button-small {
  width: 146px;
  min-height: 38px;
  padding: 9px 14px;
  font-size: 14px;
}

.ghost {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: transparent;
}

.section-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.class-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(420px, 0.58fr);
  gap: 56px;
  min-height: calc(100vh - 72px);
  align-items: center;
  padding-top: 48px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.promo-video .eyebrow {
  margin-bottom: 20px;
}

.photo-zoom {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.story-photo {
  width: fit-content;
}

.story-photo img,
.member-story-card .story-photo img {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(238, 211, 127, 0.38);
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.story-author {
  display: grid;
  gap: 4px;
  align-self: end;
}

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

.story-author span {
  color: var(--ash);
  font-size: 13px;
  line-height: 1.35;
}

.case-points a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.case-points a:hover {
  color: var(--paper);
}

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

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: min(92vw, 920px);
  max-height: 88vh;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox.is-large .lightbox-image {
  max-width: 96vw;
  max-height: 92vh;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--smoke);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(13, 13, 14, 0.72);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

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

h1,
h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(54px, 6.25vw, 88px);
  line-height: 1.08;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 72px);
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.hero-lede,
.section-intro p,
.kids p,
.proof p {
  max-width: 660px;
  color: var(--bone);
  font-size: 18px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.audience-paths {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.audience-paths a,
.inline-cta {
  border: 1px solid rgba(238, 211, 127, 0.5);
  border-radius: 999px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.audience-paths a {
  padding: 8px 12px;
}

.audience-paths a:hover,
.inline-cta:hover,
.channel-link:hover {
  border-color: var(--gold);
  background: rgba(238, 211, 127, 0.08);
}

.hero-facts {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts div,
.service-card,
.production-grid article,
details,
.lead-form {
  border: 1px solid var(--smoke);
  background: rgba(25, 28, 33, 0.76);
  box-shadow: inset 0 0 0 1px rgba(39, 44, 51, 0.5);
}

.hero-facts div {
  min-width: 170px;
  padding: 14px 16px;
  border-radius: 8px;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--paper);
}

.hero-facts span {
  color: var(--ash);
  font-size: 14px;
}

.class-hero-media {
  min-height: min(70vh, 760px);
}

.class-hero-portrait {
  width: 100%;
  height: 100%;
  min-height: min(70vh, 760px);
  border-radius: 12px;
  object-fit: cover;
  object-position: 50% 36%;
}

.proof img {
  width: 100%;
  min-height: 420px;
  border-radius: 12px;
  object-fit: cover;
}

.studio-photo {
  width: 100%;
  margin-top: 28px;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--paper);
}

.skills-section {
  padding-top: 0;
  padding-bottom: 48px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.skill-card {
  min-height: 148px;
  padding: 22px 20px;
  border: 1px solid var(--smoke);
  border-radius: 12px;
  background: var(--plate);
  box-shadow: inset 0 0 0 1px rgba(39, 44, 51, 0.5);
}

.skill-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 600;
  line-height: 0.9;
}

.skill-card h3 {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: none;
}

.promo-video {
  padding-top: 0;
  padding-bottom: 48px;
}

.video-embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--smoke);
  border-radius: 12px;
  background: #000;
  aspect-ratio: 16 / 9;
}

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

.video-embed-vertical {
  aspect-ratio: 9 / 16;
  min-height: 100%;
}

.mid-promo {
  padding-top: 0;
  padding-bottom: 64px;
}

.mid-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid var(--smoke);
  border-radius: 12px;
  background: var(--carbon);
  box-shadow: inset 0 0 0 1px rgba(39, 44, 51, 0.5);
}

.mid-promo-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mid-promo-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 42px);
}

.mid-promo-text {
  max-width: 560px;
  margin: 0;
  color: var(--bone);
  font-size: 16px;
}

.mid-promo-actions {
  flex-shrink: 0;
}

.member-stories {
  border-top: 1px solid var(--smoke);
}

.member-stories > h2 {
  margin-bottom: 24px;
}

.member-stories-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.member-story-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--smoke);
  border-radius: 12px;
  background: var(--plate);
  box-shadow: inset 0 0 0 1px rgba(39, 44, 51, 0.5);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.member-story-card:hover,
.member-story-card:focus-within {
  border-color: rgba(238, 211, 127, 0.65);
  background:
    linear-gradient(145deg, rgba(227, 38, 82, 0.13), transparent 52%),
    rgba(25, 28, 33, 0.92);
}

.member-story-card blockquote {
  margin: 0;
  color: var(--bone);
  font-size: 16px;
  line-height: 1.45;
}

.faq-subtitle {
  margin: -8px 0 24px;
  color: var(--paper);
  font-size: 18px;
}

.sticky-promo {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: var(--sticky-promo-height);
  padding: 12px max(16px, calc((100% - var(--max)) / 2 + 16px));
  border-top: 1px solid var(--smoke);
  background: var(--carbon);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sticky-promo.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.sticky-promo-avatars {
  display: flex;
}

.sticky-promo-avatars img {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 2px solid var(--carbon);
  border-radius: 50%;
  object-fit: cover;
}

.sticky-promo-avatars img:first-child {
  margin-left: 0;
}

.sticky-promo-copy {
  display: grid;
  gap: 2px;
}

.sticky-promo-copy strong {
  font-size: 15px;
}

.sticky-promo-copy span {
  color: var(--ash);
  font-size: 12px;
}

.split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
  align-items: start;
}

.sticky-intro {
  position: sticky;
  top: 92px;
}

.cards,
.production-grid,
.faq-grid,
.streaming-grid,
.testimonial-grid {
  display: grid;
  gap: 14px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
}

.inline-cta-narrow {
  margin-top: 20px;
}

.service-card,
.production-grid article {
  min-height: 190px;
  padding: 24px;
  border-radius: 12px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 12px;
  border: 1px solid rgba(238, 211, 127, 0.55);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
}

.instrument-line {
  margin: -6px 0 16px;
  color: var(--gold);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.service-card p,
.production-grid p,
details p,
.note,
.form-note {
  color: var(--ash);
}

.service-card strong,
.production-grid strong {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(227, 38, 82, 0.55);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(227, 38, 82, 0.2);
  font-size: 16px;
  font-weight: 700;
}

.kids,
.proof {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.kids {
  border-top: 1px solid var(--smoke);
  border-bottom: 1px solid var(--smoke);
}

.project-case {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.case-media {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100%;
}

.case-media .video-embed-vertical {
  width: auto;
  max-width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 9 / 16;
}

.case-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.case-points li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--bone);
}

.price-line {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.price-line span {
  padding: 10px 14px;
  border: 1px solid rgba(227, 38, 82, 0.55);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(227, 38, 82, 0.2);
  font-weight: 700;
}

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

.production-cta {
  grid-column: 1 / -1;
}

.muted-card {
  background: rgba(34, 38, 44, 0.5) !important;
}

.proof-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--bone);
}

.streaming {
  padding-top: 46px;
}

.streaming-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.streaming-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--smoke);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(227, 38, 82, 0.13), transparent 52%),
    rgba(25, 28, 33, 0.76);
  box-shadow: inset 0 0 0 1px rgba(39, 44, 51, 0.5);
}

.streaming-card:hover {
  border-color: rgba(238, 211, 127, 0.65);
  background:
    linear-gradient(145deg, rgba(227, 38, 82, 0.18), transparent 52%),
    rgba(25, 28, 33, 0.92);
}

.streaming-card > span:not(.streaming-logo),
.streaming-card strong {
  display: block;
}

.streaming-card > span:not(.streaming-logo) {
  margin: 28px 0 42px;
  color: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.streaming-card strong {
  color: var(--gold);
  font-size: 14px;
}

.streaming-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.testimonials {
  border-top: 1px solid var(--smoke);
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.testimonial-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--smoke);
  border-radius: 12px;
  background: rgba(25, 28, 33, 0.76);
  box-shadow: inset 0 0 0 1px rgba(39, 44, 51, 0.5);
}

.testimonial-card img {
  width: 104px;
  height: 104px;
  border: 1px solid rgba(238, 211, 127, 0.38);
  border-radius: 12px;
  object-fit: cover;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--bone);
  font-size: 15px;
}

.testimonial-card strong {
  color: var(--gold);
  font-size: 14px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

details {
  padding: 20px;
  border-radius: 12px;
}

summary {
  color: var(--paper);
  font-weight: 700;
  cursor: pointer;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.request-steps {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: request-step;
}

.request-steps li {
  position: relative;
  padding-left: 42px;
  color: var(--bone);
}

.request-steps li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(238, 211, 127, 0.55);
  border-radius: 50%;
  color: var(--gold);
  content: counter(request-step);
  counter-increment: request-step;
  font-size: 13px;
  font-weight: 700;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
}

.lead-form label,
.lead-form span {
  display: grid;
  gap: 8px;
}

.lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--magenta);
}

.lead-form .consent span {
  display: block;
  color: var(--ash);
  font-weight: 500;
}

.lead-form span {
  color: var(--bone);
  font-size: 14px;
  font-weight: 700;
}

.lead-form .full,
.lead-form button,
.contact-channels,
.form-note,
.form-channel-hint,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--smoke);
  border-radius: 6px;
  color: var(--paper);
  background: rgba(13, 13, 14, 0.62);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 51;
}

body:not(.sticky-promo-hidden) .contact-channels {
  margin-bottom: calc(var(--sticky-promo-height) + 8px);
}

.channel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  color: var(--paper);
  background: var(--magenta);
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
}

.channel-link:hover,
.channel-link:focus-visible {
  color: var(--paper);
  background: #c91f49;
}

.form-channel-hint,
.form-status {
  margin: -4px 0 0;
  color: var(--ash);
  font-size: 13px;
  line-height: 1.45;
}

.form-status {
  color: var(--gold);
}

.channel-logo {
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: contain;
  flex-shrink: 0;
}

.channel-link.disabled {
  color: var(--ash);
  border-color: var(--smoke);
}

.site-footer {
  width: 100%;
  padding: 32px max(16px, calc((100% - var(--max)) / 2 + 16px)) 46px;
  border-top: 1px solid var(--smoke);
  color: var(--ash);
}

@media (max-width: 920px) {
  :root {
    --header-scroll-offset: 80px;
  }

  .site-header-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .br-mobile {
    display: block;
  }

  .brand-link {
    white-space: normal;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    width: min(280px, calc(100vw - 32px));
    max-height: min(70vh, 420px);
    padding: 8px;
    border: 1px solid var(--smoke);
    border-radius: 12px;
    background: rgba(25, 28, 33, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
    overflow-y: auto;
    white-space: normal;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .nav-links a {
    padding: 11px 12px;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.3;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--paper);
    background: rgba(227, 38, 82, 0.14);
  }

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

  .class-hero,
  .split,
  .kids,
  .proof,
  .contact,
  .mid-promo-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .class-hero-copy {
    display: contents;
  }

  .class-hero-media {
    order: 1;
    min-height: auto;
  }

  .hero-kicker {
    order: 2;
  }

  .class-hero h1 {
    order: 3;
  }

  .hero-actions {
    order: 4;
    margin-top: 0;
    margin-bottom: 8px;
  }

  .class-hero-portrait {
    min-height: min(58vh, 480px);
  }

  .hero-lede {
    order: 5;
  }

  .skills-grid,
  .member-stories-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-media .video-embed-vertical {
    width: 100%;
    height: auto;
    min-height: min(70vh, 520px);
  }

  .class-hero {
    min-height: auto;
  }

  .sticky-intro {
    position: static;
  }

  .sticky-promo {
    grid-template-columns: 1fr auto;
  }

  .sticky-promo-avatars {
    display: none;
  }

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

@media (max-width: 640px) {
  :root {
    --header-scroll-offset: 88px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-link {
    font-size: 18px;
  }

  .brand-tagline {
    font-size: 10px;
  }

  .brand-avatar,
  .brand-avatar-btn .brand-avatar {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .button-small {
    min-width: 44px;
    width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .button-small::before {
    content: "↗";
    color: var(--paper);
    font-size: 18px;
  }

  .section-band {
    width: min(100% - 20px, var(--max));
    padding: 58px 0;
  }

  .skills-section,
  .promo-video,
  .mid-promo {
    padding-top: 0;
    padding-bottom: 40px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 38px;
  }

  .skills-grid,
  .member-stories-track,
  .production-grid,
  .faq-grid,
  .streaming-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .member-stories-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 4px;
  }

  .member-story-card {
    flex: 0 0 min(84vw, 320px);
    scroll-snap-align: start;
  }

  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-promo {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 16px;
  }

  .sticky-promo .button-small {
    width: 100%;
    min-width: 0;
    color: var(--paper);
    font-size: 14px;
  }

  .sticky-promo .button-small::before {
    content: none;
  }

  .lead-form .full,
  .lead-form button,
  .contact-channels,
  .form-note,
  .form-channel-hint,
  .form-status {
    grid-column: auto;
  }

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

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