:root {
  --ink: #202124;
  --muted: #626262;
  --line: #d9d9d9;
  --soft: #f6f6f6;
  --paper: #ffffff;
  --accent: #383838;
  --accent-soft: #eeeeee;
  --mid: #555555;
  --rule: #b8b8b8;
  --shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: #ffffff;
}

body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: var(--paper);
  border-top: 5px solid #6a6a6a;
  border-bottom: 1px solid var(--line);
}

.nav-toggle,
.search-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.brand-row {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.brand img {
  width: 86px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 600;
}

.tagline {
  font-size: 12px;
  letter-spacing: 0;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.search {
  position: absolute;
  right: 20px;
  top: calc(100% - 8px);
  z-index: 10;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.search input {
  width: min(46vw, 360px);
  min-width: 220px;
  border: 1px solid #b8bec6;
  padding: 8px 10px;
  font: inherit;
}

.search button {
  border: 1px solid #555;
  background: #4a4a4a;
  color: white;
  padding: 8px 12px;
  font: inherit;
}

.search-toggle:checked ~ .brand-row .search {
  display: flex;
}

.language-switcher {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--paper);
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
}

.lang-button:last-child {
  border-right: 0;
}

.lang-button.is-active {
  background: #4a4a4a;
  color: #ffffff;
}

.lang-button:hover,
.lang-button:focus-visible {
  background: var(--soft);
  color: var(--ink);
  outline: 0;
}

.lang-button.is-active:hover,
.lang-button.is-active:focus-visible {
  background: #3c3c3c;
  color: #ffffff;
}

.search-button {
  display: inline-flex;
  position: relative;
  width: 40px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-button::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 9px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 23px;
  width: 9px;
  height: 2px;
  background: var(--ink);
  transform: rotate(45deg);
  transform-origin: left center;
}

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

.menu-button {
  display: none;
  width: 40px;
  height: 36px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px 12px;
  font-size: 13px;
  font-weight: 500;
}

.archive-wordpress-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.archive-wordpress-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  font-size: 13px;
  font-weight: 500;
}

.archive-wordpress-nav a {
  color: #333;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.archive-wordpress-nav a:hover,
.archive-wordpress-nav a:focus-visible {
  border-bottom-color: #777;
  outline: 0;
  text-decoration: none;
}

.main-nav a,
.nav-item > a {
  color: #333;
  display: block;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  text-align: center;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-item:hover > a,
.nav-item:focus-within > a {
  border-bottom-color: #777;
  outline: 0;
  text-decoration: none;
}

.nav-item {
  position: relative;
  display: block;
}

.has-submenu > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 20;
  display: none;
  min-width: 220px;
  padding: 8px 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.submenu a {
  padding: 8px 14px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 0;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  display: block;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px 56px;
}

.home-hero {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--mid);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
}

h2 {
  margin-bottom: 0;
  font-size: 20px;
}

h3 {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.25;
}

.poster-slider {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f2f2f2;
}

.slider-track {
  display: flex;
  width: 500%;
  animation: poster-slide 25s infinite linear;
}

.poster-slider.is-manual .slider-track {
  animation: none;
  transform: translateX(calc(var(--slide-index, 0) * -20%));
  transition: transform 420ms ease;
}

.poster-slider:hover .slider-track {
  animation-play-state: paused;
}

.slide {
  position: relative;
  display: grid;
  flex: 0 0 20%;
  min-height: clamp(310px, 38vw, 430px);
  background: #202020;
  overflow: hidden;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.04)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 42%);
  pointer-events: none;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide img.slider-image-contain {
  box-sizing: border-box;
  object-fit: contain;
  object-position: 72% center;
  padding: clamp(14px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(34, 30, 25, 0.82), rgba(34, 30, 25, 0.34) 48%, rgba(34, 30, 25, 0.08)),
    #e5dfd3;
}

.slide img.slider-image-poster {
  object-fit: cover;
  object-position: var(--slider-image-position, center 18%);
}

.slide img.slider-image-reviewed {
  object-fit: cover;
  object-position: var(--slider-image-position, center center);
}

.slide img.slider-image-composed-poster,
.slide img.slider-image-layout-half,
.slide img.slider-image-layout-third {
  box-sizing: border-box;
  object-fit: contain;
  object-position: var(--slider-image-position, right center);
  background:
    radial-gradient(circle at 76% 44%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(20, 17, 24, 0.96), rgba(31, 26, 37, 0.92) 44%, rgba(64, 54, 74, 0.68)),
    #211c28;
}

.slide img.slider-image-layout-center-80 {
  box-sizing: border-box;
  object-fit: cover;
  object-position: var(--slider-image-position, center center);
  padding: 0 10%;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.36), transparent 34%),
    linear-gradient(90deg, #d5eadf, #f2f4df 48%, #c7e6df);
}

.slide img.slider-image-composed-poster,
.slide img.slider-image-layout-half {
  padding: clamp(18px, 3vw, 38px) clamp(20px, 5vw, 70px) clamp(18px, 3vw, 38px) min(42vw, 520px);
}

.slide img.slider-image-layout-third {
  padding: clamp(18px, 3vw, 38px) clamp(20px, 5vw, 70px) clamp(18px, 3vw, 38px) min(58vw, 760px);
}

.archive-slide img {
  object-fit: contain;
  padding: clamp(18px, 4vw, 42px);
  background: #ededed;
}

.slider-text {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: min(760px, 74%);
  padding: clamp(22px, 5vw, 54px);
  color: #ffffff;
  text-shadow:
    0 2px 3px rgba(0, 0, 0, 0.76),
    0 8px 22px rgba(0, 0, 0, 0.62);
}

.slider-text .eyebrow {
  color: #eeeeee;
}

.slider-text h1 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(25px, 4vw, 48px);
  line-height: 1.1;
  text-shadow:
    0 2px 3px rgba(0, 0, 0, 0.86),
    0 10px 26px rgba(0, 0, 0, 0.72);
}

.slider-text p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(14px, 1.6vw, 18px);
}

.slider-text a {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 8px 13px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.slider-text a:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dots span {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.54);
}

.slider-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 64px;
  border: 0;
  background: rgba(40, 40, 40, 0.46);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-control:hover,
.slider-control:focus-visible {
  background: rgba(40, 40, 40, 0.68);
  outline: 0;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-control::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid rgba(255, 255, 255, 0.9);
  border-left: 2px solid rgba(255, 255, 255, 0.9);
}

.slider-prev::before {
  left: 20px;
  transform: translateY(-50%) rotate(-45deg);
}

.slider-next::before {
  right: 20px;
  transform: translateY(-50%) rotate(135deg);
}

.section-hero-slider {
  margin: 0 0 22px;
}

.section-slider {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-slider .slide {
  min-height: clamp(260px, 32vw, 360px);
}

.section-slider .slider-text {
  max-width: min(720px, 82%);
}

.section-slider .slider-text h1 {
  font-size: clamp(23px, 3.2vw, 38px);
}

@keyframes poster-slide {
  0%,
  16% {
    transform: translateX(0);
    animation-timing-function: cubic-bezier(0.55, 0.02, 0.18, 1);
  }

  20%,
  36% {
    transform: translateX(-20%);
    animation-timing-function: cubic-bezier(0.55, 0.02, 0.18, 1);
  }

  40%,
  56% {
    transform: translateX(-40%);
    animation-timing-function: cubic-bezier(0.55, 0.02, 0.18, 1);
  }

  60%,
  76% {
    transform: translateX(-60%);
    animation-timing-function: cubic-bezier(0.55, 0.02, 0.18, 1);
  }

  80%,
  96% {
    transform: translateX(-80%);
    animation-timing-function: cubic-bezier(0.55, 0.02, 0.18, 1);
  }

  100% {
    transform: translateX(0);
  }
}

.action-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  font-size: 13px;
}

.action-strip a {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px;
  color: var(--ink);
}

.action-strip span {
  display: block;
  color: var(--accent);
  font-weight: 800;
}

.action-strip strong {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
  margin-bottom: 26px;
}

.stream,
.module,
.matrix,
.archive-band {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stream,
.matrix,
.archive-band {
  padding: 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.section-head.compact {
  margin-bottom: 10px;
}

.article-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
  margin: 0 0 10px;
  border-bottom: 1px solid var(--line);
}

.article-section-nav a {
  padding: 10px 0 8px;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-section-nav a:hover,
.article-section-nav a:focus-visible,
.article-section-nav a.is-active {
  border-bottom-color: var(--accent);
  color: var(--ink);
  text-decoration: none;
}

.update {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e6e9ed;
}

.update:last-child {
  border-bottom: 0;
}

.update.featured {
  padding-top: 4px;
}

.datebox {
  display: grid;
  place-items: center;
  height: 62px;
  border: 1px solid #bfc3c7;
  color: #333;
}

.datebox span {
  font-size: 11px;
  font-weight: 800;
}

.datebox strong {
  font-size: 24px;
  line-height: 1;
}

.datebox.muted {
  border-color: #b9c1c9;
  color: var(--muted);
}

.datebox.small {
  width: 46px;
  height: 46px;
}

.datebox.small span {
  font-size: 10px;
}

.datebox.small strong {
  font-size: 18px;
}

.kicker {
  margin: 0 0 3px;
  color: var(--mid);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.meta span {
  border: 1px solid #d3d7dc;
  padding: 2px 6px;
  background: var(--soft);
}

.side-stack {
  display: grid;
  gap: 18px;
}

.module {
  padding: 16px;
}

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

.event-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e9ed;
}

.event-list li:last-child {
  border-bottom: 0;
}

.event-list span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.sponsor {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-left: 4px solid var(--rule);
}

.sponsor img {
  width: 96px;
  height: auto;
}

.sponsor p {
  margin-bottom: 8px;
  color: var(--muted);
}

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

.section-matrix article {
  border-top: 3px solid var(--rule);
  background: var(--paper);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.055);
  padding: 14px;
}

.section-matrix p {
  color: var(--muted);
}

.section-matrix ul {
  margin: 0;
  padding-left: 18px;
}

.archive-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  border-top: 3px solid var(--rule);
}

.archive-band p {
  color: var(--muted);
}

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

.archive-links a {
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 700;
}

.article-main {
  max-width: 1220px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--muted);
}

.article-page {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.article-hero {
  padding: 28px 28px 0;
  border-top: 3px solid var(--rule);
}

.article-hero h1 {
  max-width: 920px;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.article-meta span {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 4px 8px;
}

.article-hero-image {
  display: block;
  width: calc(100% + 56px);
  max-width: none;
  height: auto;
  margin: 0 -28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-hero-image.article-hero-reviewed,
.article-hero-image.article-hero-poster,
.article-hero-image.article-hero-composed-poster,
.article-hero-image.article-hero-layout-half,
.article-hero-image.article-hero-layout-third,
.article-hero-image.article-hero-layout-center-80 {
  height: clamp(300px, 42vw, 540px);
  object-fit: cover;
  object-position: var(--article-hero-position, center center);
}

.article-hero-image.article-hero-composed-poster,
.article-hero-image.article-hero-layout-half,
.article-hero-image.article-hero-layout-third {
  box-sizing: border-box;
  object-fit: contain;
  object-position: var(--article-hero-position, right center);
  background:
    radial-gradient(circle at 74% 44%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(20, 17, 24, 0.96), rgba(31, 26, 37, 0.92) 42%, rgba(64, 54, 74, 0.68)),
    #211c28;
}

.article-hero-image.article-hero-layout-center-80 {
  box-sizing: border-box;
  object-fit: cover;
  object-position: var(--article-hero-position, center center);
  padding: 0 10%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(90deg, #d5eadf, #f4f6e4 48%, #c7e6df);
}

.article-hero-image.article-hero-composed-poster,
.article-hero-image.article-hero-layout-half {
  padding: clamp(16px, 3vw, 36px) clamp(16px, 5vw, 64px) clamp(16px, 3vw, 36px) min(30vw, 340px);
}

.article-hero-image.article-hero-layout-third {
  padding: clamp(16px, 3vw, 36px) clamp(16px, 5vw, 64px) clamp(16px, 3vw, 36px) min(46vw, 560px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.44fr);
  gap: 28px;
  padding: 28px;
}

.article-body {
  min-width: 0;
  color: #252525;
  font-family: Georgia, "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  line-height: 1.72;
}

.article-body h2 {
  margin: 28px 0 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 22px;
}

.article-media-section {
  clear: both;
}

.article-flyer,
.media-embed {
  max-width: 100%;
  margin: 16px 0 0;
}

.article-flyer a {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.article-flyer img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 1px solid var(--line);
  background: #fff;
}

.media-embed-youtube iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  background: #111;
}

.media-embed-apple-music iframe {
  display: block;
  width: 100%;
  max-width: 660px;
  height: 450px;
  border: 0;
  border-radius: 10px;
  background: #f5f5f7;
}

.third-party-embed {
  width: 100%;
}

.embed-consent-panel {
  display: grid;
  min-height: 180px;
  place-content: center;
  gap: 18px;
  box-sizing: border-box;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, #f7f8fb, #e9edf4);
  text-align: center;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
}

.embed-consent-panel p {
  margin: 0;
}

.embed-consent-copy {
  display: grid;
  gap: 14px;
}

.embed-consent-panel-facade {
  display: block;
  aspect-ratio: auto !important;
  padding: 0;
  overflow: hidden;
}

.embed-consent-panel-facade .embed-consent-copy {
  padding: 16px 18px 18px;
}

.embed-facade-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.embed-facade-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.embed-facade-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 24px;
  border: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55));
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.embed-facade-play-icon {
  width: 72px;
  height: 50px;
  border-radius: 13px;
  background: #f00;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
}

.embed-facade-play-icon::after {
  display: block;
  width: 0;
  height: 0;
  margin: 14px 0 0 29px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #fff;
  content: "";
}

.embed-facade-play-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  font-weight: 800;
}

.embed-facade-play:hover .embed-facade-play-icon,
.embed-facade-play:focus-visible .embed-facade-play-icon {
  transform: scale(1.07);
}

.embed-facade-play:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -5px;
}

.embed-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.embed-load-button {
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.media-embed-youtube .embed-consent-panel {
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: linear-gradient(145deg, #242424, #080808);
  color: #fff;
}

.media-embed-apple-music .embed-consent-panel {
  max-width: 660px;
}

.embed-preference-button {
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.embed-preference-button.secondary {
  opacity: 0.75;
}

.embed-load-button:hover,
.embed-load-button:focus-visible,
.embed-preference-button:hover,
.embed-preference-button:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(171, 0, 58, 0.14);
}

.media-embed figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.legacy-body {
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.legacy-body img {
  max-width: 100%;
  height: auto;
}

.legacy-body table {
  max-width: 100%;
  border-collapse: collapse;
}

.legacy-body td,
.legacy-body th {
  vertical-align: top;
}

.legacy-body .outer {
  margin: 0 0 16px;
  border: 1px solid var(--line);
}

.legacy-body .head,
.legacy-body .even,
.legacy-body .odd {
  padding: 8px;
  border-bottom: 1px solid #eeeeee;
}

.legacy-body .head {
  background: var(--soft);
  font-weight: 700;
}

.legacy-page .article-layout {
  grid-template-columns: 1fr;
}

.legacy-directory-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
}

.legacy-directory-summary span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.legacy-letter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: sticky;
  top: 0;
  z-index: 4;
  margin: 0 0 16px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.legacy-letter-nav a {
  min-width: 28px;
  padding: 5px 7px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.legacy-letter-nav a:hover,
.legacy-letter-nav a:focus-visible {
  background: #e2e2e2;
  text-decoration: none;
  outline: 0;
}

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

.legacy-letter-heading {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding: 8px 0;
  border-bottom: 2px solid var(--line);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.legacy-person-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.legacy-person-card h2 {
  margin: 0 0 7px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 18px;
  line-height: 1.28;
}

.legacy-entry-meta {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.legacy-entry-description {
  color: #333333;
  font-size: 14px;
  line-height: 1.65;
}

.legacy-entry-description * {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.legacy-entry-description img {
  display: none;
}

.legacy-redacted {
  display: inline-block;
  margin: 0 2px;
  padding: 1px 6px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.legacy-entry-actions {
  margin: 12px 0 0;
}

.legacy-entry-actions a {
  display: inline-block;
  border: 1px solid #777777;
  padding: 5px 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legacy-entry-actions a:hover,
.legacy-entry-actions a:focus-visible {
  background: var(--soft);
  text-decoration: none;
  outline: 0;
}

.legacy-callout {
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--rule);
  background: var(--soft);
}

.legacy-callout h2 {
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 18px;
}

.legacy-callout p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

.marimba-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
  gap: 24px;
  align-items: start;
}

.marimba-intro-figure {
  order: 2;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.marimba-intro-image {
  display: block;
  width: 100%;
  height: auto;
}

.marimba-intro-copy {
  min-width: 0;
}

.marimba-intro-copy p {
  margin: 0 0 16px;
}

.marimba-intro-references,
.marimba-intro-notes {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.marimba-intro-references h2,
.marimba-intro-notes h2 {
  margin-top: 0;
}

.marimba-intro-references ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.55;
}

.marimba-intro-references li {
  padding: 4px 0;
}

.marimba-intro-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.repertoire-nav {
  position: static;
}

.repertoire-nav a {
  min-width: auto;
  text-align: left;
}

.repertoire-section {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.repertoire-section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.repertoire-section-head h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 19px;
}

.repertoire-section-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.repertoire-section ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 0;
  padding: 12px 18px 16px 34px;
  font-size: 14px;
  line-height: 1.55;
}

.repertoire-section li {
  padding: 5px 0;
  border-bottom: 1px solid #eeeeee;
  break-inside: avoid;
}

.article-lead {
  font-size: 21px;
  line-height: 1.62;
}

.preview-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 14px;
}

.preview-search-form input {
  min-width: 0;
  border: 1px solid var(--line);
  padding: 11px 12px;
  font: inherit;
}

.preview-search-form button {
  border: 1px solid #777777;
  background: #222222;
  color: #ffffff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-search-status {
  min-height: 22px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.preview-search-results {
  display: grid;
  gap: 12px;
}

.preview-search-result {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.preview-search-result h2 {
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 18px;
}

.preview-search-result p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.article-section:first-child h2 {
  margin-top: 18px;
}

.privacy-version {
  color: var(--muted);
  font-size: 14px;
}

.privacy-page .article-layout {
  grid-template-columns: minmax(0, 820px);
}

.privacy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-left: 20px;
}

.privacy-contact {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #f6f4ef;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer a,
.footer-settings-button {
  color: var(--ink);
  font-weight: 700;
}

.footer-settings-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.external-settings-dialog {
  width: min(560px, calc(100vw - 32px));
  box-sizing: border-box;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.external-settings-dialog::backdrop {
  background: rgba(20, 18, 18, 0.58);
}

.external-settings-form {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.external-settings-form h2,
.external-settings-form p {
  margin: 0;
}

.external-settings-form fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
}

.external-settings-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.article-facts,
.detail-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.article-facts div,
.detail-card dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #ededed;
}

.detail-card dl div {
  grid-template-columns: 92px minmax(0, 1fr);
}

.article-facts dt,
.detail-card dt {
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-facts dd,
.detail-card dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.article-facts dd a,
.detail-card dd a {
  overflow-wrap: anywhere;
}

.program-list {
  margin: 0;
  padding-left: 1.35em;
}

.program-list li {
  padding: 4px 0;
}

.article-source-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.button-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid #4a4a4a;
  background: #4a4a4a;
  color: #ffffff;
  padding: 7px 12px;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.button-link:hover {
  background: #333333;
  text-decoration: none;
}

.button-link.secondary {
  background: var(--paper);
  color: var(--ink);
}

.button-link.secondary:hover {
  background: var(--soft);
}

.article-side {
  display: grid;
  align-content: start;
  justify-items: stretch;
  gap: 16px;
  min-width: 0;
}

.detail-card {
  width: 100%;
  justify-self: stretch;
  border-top: 3px solid var(--rule);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.055);
}

.detail-card h2 {
  margin-bottom: 12px;
  font-size: 18px;
}

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

/* Marimba.org music class */
.music-class-page {
  --class-blue: #5d7fbd;
  --class-blue-dark: #375b99;
  --class-lemon: #f4ef65;
  --class-mint: #b7d8b0;
  --class-coral: #e06f73;
  --class-cream: #fffdf2;
  background: #f5f2e9;
}

.music-class-page main {
  max-width: 1240px;
}

.music-class-shell {
  overflow: hidden;
  border-radius: 28px;
  background: var(--class-cream);
  box-shadow: 0 18px 50px rgba(32, 33, 36, 0.1);
}

.music-class-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--class-blue);
  color: white;
}

.music-class-hero::before {
  display: none;
}

.music-class-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
  padding: 84px 7vw 104px;
}

.music-class-hero .eyebrow,
.music-class-contact .eyebrow {
  color: var(--class-lemon);
}

.music-class-hero h1 {
  max-width: 720px;
  margin: 10px 0 24px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-shadow: 0 3px 20px rgba(22, 39, 72, 0.46);
}

.music-class-lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.9;
}

.music-class-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.music-class-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 2px solid var(--class-lemon);
  border-radius: 999px;
  background: var(--class-lemon);
  color: #283c62;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 0 rgba(39, 57, 92, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.music-class-button:hover,
.music-class-button:focus-visible {
  transform: translateY(3px);
  box-shadow: 0 5px 0 rgba(39, 57, 92, 0.24);
  text-decoration: none;
}

.music-class-text-link {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.music-class-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  padding: 0;
}

.music-class-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 58, 103, 0.94) 0%, rgba(45, 72, 121, 0.76) 34%, rgba(55, 83, 137, 0.2) 67%, rgba(55, 83, 137, 0.02) 100%);
}

.music-class-flyer-art {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}

.music-marimba {
  position: absolute;
  z-index: 2;
  left: 2%;
  right: 8%;
  top: 45%;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 14px 35px;
  transform: rotate(-5deg);
}

.music-marimba::before,
.music-marimba::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 74%;
  width: 12px;
  height: 160px;
  border-radius: 8px;
  background: #263f70;
}

.music-marimba::before {
  left: 10%;
  transform: rotate(12deg);
}

.music-marimba::after {
  right: 10%;
  transform: rotate(-12deg);
}

.music-marimba i {
  flex: 1;
  height: 90px;
  border: 3px solid #442e21;
  border-radius: 6px 6px 12px 12px;
  background: #a9673f;
  box-shadow: inset 0 -10px rgba(73, 40, 25, 0.12), 0 6px 0 #503420;
}

.music-marimba i:nth-child(2n) { height: 104px; }
.music-marimba i:nth-child(3n) { height: 118px; }
.music-marimba i:nth-child(4n) { height: 132px; }

.music-mallet {
  position: absolute;
  z-index: 3;
  width: 190px;
  height: 8px;
  border-radius: 99px;
  background: #202a3e;
  transform-origin: right center;
}

.music-mallet::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--class-coral);
}

.mallet-one {
  top: 37%;
  right: 24%;
  transform: rotate(-61deg);
}

.mallet-two {
  top: 42%;
  right: 30%;
  transform: rotate(-112deg);
}

.music-moon {
  position: absolute;
  top: 14%;
  right: 12%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--class-lemon);
  box-shadow: -24px 8px 0 2px var(--class-blue);
  transform: rotate(-14deg);
}

.music-note,
.music-star {
  position: absolute;
  z-index: 1;
  color: var(--class-lemon);
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
}

.note-one { top: 19%; left: 8%; transform: rotate(-12deg); }
.note-two { right: 4%; bottom: 14%; color: #8bd19a; transform: rotate(12deg); }
.music-star { color: #f0a8c5; font-size: 48px; }
.star-one { top: 10%; left: 45%; }
.star-two { right: 15%; bottom: 5%; color: #b7e5ef; }

.music-class-points,
.music-class-details {
  padding: 84px clamp(28px, 7vw, 92px);
}

.music-class-section-heading {
  margin-bottom: 34px;
}

.music-class-section-heading h2,
.music-class-details h2,
.music-class-contact h2 {
  margin: 4px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

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

.music-class-point-grid article {
  min-height: 260px;
  border: 1px solid rgba(55, 91, 153, 0.14);
  border-radius: 24px;
  background: white;
  padding: 30px;
  box-shadow: 0 9px 25px rgba(55, 91, 153, 0.08);
}

.music-class-point-grid article:nth-child(2) { transform: translateY(18px); }

.music-class-point-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--class-blue);
  color: white;
  font-weight: 800;
}

.music-class-point-grid h3 {
  margin: 26px 0 12px;
  font-size: 21px;
}

.music-class-point-grid p,
.music-class-teachers p {
  color: var(--muted);
  line-height: 1.8;
}

.music-class-details {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(36px, 7vw, 90px);
  background: #e8f1df;
}

.music-class-facts {
  margin: 28px 0 0;
}

.music-class-facts div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(42, 77, 57, 0.18);
}

.music-class-facts dt {
  color: #365244;
  font-weight: 800;
}

.music-class-facts dd {
  margin: 0;
  font-size: 16px;
}

.music-class-facts small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.music-class-teachers {
  align-self: start;
  border-radius: 24px;
  background: white;
  padding: 34px;
  box-shadow: 12px 12px 0 rgba(55, 91, 153, 0.12);
}

.music-class-teachers h2 {
  font-size: 30px;
}

.music-class-teachers div {
  display: grid;
  gap: 3px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.music-class-teachers strong {
  font-size: 20px;
}

.music-class-teachers span {
  color: var(--class-blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.music-class-contact {
  padding: 82px clamp(28px, 9vw, 120px);
  background: var(--class-blue-dark);
  color: white;
  text-align: center;
}

.music-class-contact > p:not(.eyebrow, .music-class-email) {
  max-width: 680px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.85;
}

.music-class-button.is-light {
  min-width: min(100%, 320px);
}

.music-class-email {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.04em;
}

@media (max-width: 1000px) {
  .brand-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }

  .brand img {
    width: 78px;
  }

  .brand-copy strong {
    font-size: 22px;
  }

  .header-right {
    gap: 4px;
  }

  .search {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 100%;
    z-index: 30;
    display: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
  }

  .search input {
    width: 100%;
    min-width: 0;
  }

  .search-toggle:checked ~ .brand-row .search {
    display: grid;
  }

  .search-toggle:checked ~ .brand-row .search-button {
    background: var(--soft);
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 25;
    display: none;
    padding: 8px 20px 14px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-toggle:checked ~ .brand-row .main-nav {
    display: grid;
  }

  .main-nav a,
  .nav-item > a,
  .submenu a {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .nav-item {
    display: grid;
  }

  .submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
  }

  .submenu a {
    color: var(--muted);
    font-size: 13px;
  }

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

  .music-class-hero-copy {
    padding-bottom: 84px;
  }

  .music-class-scene {
    min-height: 0;
    padding: 0;
  }

  .music-marimba {
    left: 16%;
    right: 16%;
    top: 33%;
  }
}

@media (max-width: 900px) {
  .content-grid,
  .archive-band,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .action-strip,
  .section-matrix,
  .legacy-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slide {
    min-height: 340px;
  }

  .slider-text {
    max-width: 86%;
  }

  .article-side {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .detail-card {
    width: 100%;
  }

  .detail-card dl div {
    grid-template-columns: minmax(72px, max-content) minmax(0, 1fr);
  }

  .marimba-intro {
    grid-template-columns: 1fr;
  }

  .marimba-intro-figure {
    order: 0;
    max-width: 320px;
  }

  .repertoire-section ol {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1100px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-side {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .article-side > .module,
  .detail-card {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .detail-card dl div {
    grid-template-columns: minmax(72px, max-content) minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-wordpress-header {
    width: min(calc(100% - 24px), 1180px);
    min-height: 0;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .archive-wordpress-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 4px 14px;
  }

  main {
    padding: 14px 12px 40px;
  }

  .brand-row {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand img {
    width: 66px;
  }

  .brand {
    gap: 8px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .tagline {
    display: none;
  }

  .action-strip,
  .section-matrix,
  .archive-links,
  .legacy-directory {
    grid-template-columns: 1fr;
  }

  .stream,
  .matrix,
  .archive-band {
    padding: 16px;
  }

  .slide {
    min-height: 310px;
  }

  .slide::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 72%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.04));
  }

  .slider-text {
    max-width: 100%;
    padding: 18px 16px 32px;
  }

  .slider-text h1 {
    font-size: 24px;
  }

  .slider-text p:not(.eyebrow) {
    font-size: 14px;
  }

  .slide img.slider-image-composed-poster,
  .slide img.slider-image-layout-half,
  .slide img.slider-image-layout-third,
  .slide img.slider-image-layout-center-80 {
    object-position: center center;
    padding: 18px;
  }

  .slide img.slider-image-layout-center-80 {
    padding: 0 8%;
  }

  .slider-dots {
    bottom: 12px;
  }

  .slider-dots span {
    width: 20px;
  }

  .slider-control {
    width: 38px;
    height: 54px;
  }

  .slider-prev::before {
    left: 15px;
  }

  .slider-next::before {
    right: 15px;
  }

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

  .update {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .article-hero {
    padding: 18px 16px 0;
  }

  .article-hero-image {
    width: calc(100% + 32px);
    margin: 0 -16px;
  }

  .article-hero-image.article-hero-composed-poster,
  .article-hero-image.article-hero-layout-half,
  .article-hero-image.article-hero-layout-third,
  .article-hero-image.article-hero-layout-center-80 {
    object-position: center center;
    padding: 18px;
  }

  .article-hero-image.article-hero-layout-center-80 {
    padding: 0 8%;
  }

  .article-layout {
    padding: 18px 16px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-lead {
    font-size: 18px;
  }

  .marimba-intro-figure,
  .marimba-intro-references,
  .marimba-intro-notes {
    margin-left: -4px;
    margin-right: -4px;
  }

  .article-facts div,
  .detail-card dl div,
  .article-side {
    grid-template-columns: 1fr;
  }

  .music-class-shell {
    border-radius: 18px;
  }

  .music-class-hero-copy {
    padding: 300px 24px 54px;
  }

  .music-class-hero h1 {
    font-size: 42px;
  }

  .music-class-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .music-class-scene {
    min-height: 0;
    padding: 0;
  }

  .music-class-scene::after {
    background: linear-gradient(180deg, rgba(55, 83, 137, 0.02) 0, rgba(45, 72, 121, 0.14) 220px, rgba(34, 58, 103, 0.94) 330px, rgba(34, 58, 103, 0.98) 100%);
  }

  .music-class-flyer-art {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .music-marimba {
    left: 4%;
    right: 4%;
    top: 35%;
  }

  .music-marimba i {
    height: 70px;
  }

  .music-marimba i:nth-child(2n) { height: 80px; }
  .music-marimba i:nth-child(3n) { height: 90px; }
  .music-marimba i:nth-child(4n) { height: 100px; }

  .music-mallet {
    width: 145px;
  }

  .music-class-points,
  .music-class-details,
  .music-class-contact {
    padding: 54px 22px;
  }

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

  .music-class-point-grid article {
    min-height: 0;
  }

  .music-class-point-grid article:nth-child(2) {
    transform: none;
  }

  .music-class-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
