:root {
  --color-black: #050505;
  --color-charcoal: #171717;
  --color-ink: #242424;
  --color-gray: #6f6f6f;
  --color-silver: #d9d9d9;
  --color-mist: #f3f3f3;
  --color-white: #ffffff;
  --regular-padding: 40px;
  --player-offset: 0rem;
  --player-height: 118px;
  --player-padding-x: 1rem;
  --player-padding-y: 0.8rem;
  --player-gap: 0.8rem;
  --player-art-size: 56px;
  --player-nav-size: 40px;
  --player-control-height: 40px;
}

* {
  font-size: 100%;
  font-family: Georgia, 'Times New Roman', Times, serif, Arial, Helvetica, sans-serif;
  margin: 0px;
  max-width: 100%;
  box-sizing: border-box;
}

body {
  background: var(--color-mist);
  scroll-behavior: smooth;
  text-align: center;
}

header {
  color: var(--color-white);
  background-color: var(--color-black);
}

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--color-black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.4) 48%, rgba(0,0,0,0.85) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 0 6vw 5rem;
  text-align: left;
}

.hero-overlay h1,
.hero-subtitle {
  text-align: left;
}

.embedded-form {
  width: min(100%, 640px);
  margin-top: 1.35rem;
  text-align: left;
}

.embedded-form-hero {
  margin-left: 0;
  align-self: flex-start;
}

.embedded-form-footer {
  margin: 1.15rem 0 0;
}

.embedded-form-label {
  padding-top: 0;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
}

.mailing-list-form {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 420px);
}

.mailing-list-field {
  display: grid;
}

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

.mailing-list-field input {
  width: 100%;
  min-height: 3.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  font-size: 1rem;
  text-align: left;
  color: var(--color-black);
  background: rgba(255,255,255,0.94);
}

.mailing-list-field input::placeholder {
  color: rgba(0,0,0,0.42);
}

.mailing-list-form button {
  justify-self: start;
  min-width: 10rem;
  margin: 0;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--color-black);
  background: var(--color-white);
}

.mailing-list-form button:hover {
  color: var(--color-white);
  background: var(--color-black);
  border-color: rgba(255,255,255,0.42);
}

.mailing-list-status {
  min-height: 1.25rem;
  padding-top: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.84);
}

.mailing-list-frame {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.first {
  padding-top: 0px;
}

.section {
  width: 100%;
  padding-top: var(--regular-padding);
  padding-bottom: var(--regular-padding);
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  font-variant: small-caps;
  font-weight: 100;
  letter-spacing: 0.06em;
  line-height: 0.96;
  text-shadow: 0 10px 28px rgba(0,0,0,0.42);
}

.hero-subtitle {
  padding-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 8px 20px rgba(0,0,0,0.38);
}

.section-nav {
  position: fixed;
  top: 50%;
  right: clamp(0.9rem, 2vw, 1.6rem);
  z-index: 18;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  padding: 0.45rem 0.42rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  transform: translateY(-50%);
}

.section-nav::before {
  content: none;
}

.section-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 5.55rem;
  padding: 0.08rem 0;
  text-decoration: none;
  opacity: 0.58;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.section-nav-link:hover {
  opacity: 1;
  transform: translateX(-2px);
}

.section-nav-link.is-active {
  opacity: 1;
}

.section-nav-label {
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(24,24,24,0.82);
  font-weight: 400;
  transition: font-weight 0.22s ease, letter-spacing 0.22s ease;
}

.section-nav-dot {
  display: none;
}

.section-nav-link:hover .section-nav-label,
.section-nav-link.is-active .section-nav-label {
  font-weight: 700;
  letter-spacing: 0.15em;
}

h2 {
  margin: auto;
  font-size: 3rem;
  padding-bottom: var(--regular-padding);
  font-weight: 100;
}

p {
  font-size: 1.5rem;
  text-align: left;
  background-color: inherit;
  line-height: 150%;
  padding-top: var(--regular-padding);
}

.paragraph {
  width: min(100%, 980px);
  margin: auto;
  background-color: inherit;
}

.first {
  padding-top: 0px;
}

footer {
  padding-top: var(--regular-padding);
  padding-right: clamp(1rem, 4vw, 2rem);
  padding-bottom: calc(var(--player-height) + var(--player-offset) + 4.5rem);
  padding-left: clamp(1rem, 4vw, 2rem);
  color: var(--color-white);
  background-color: var(--color-black);
}

footer p {
  text-align: right;
}

.embedded-form-footer,
.embedded-form-footer * {
  text-align: left;
}

.footer-contact {
  padding-top: 0.75rem;
}

.footer-contact a {
  color: var(--color-white);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.pinned-audio-player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: var(--player-art-size) minmax(0, 1fr);
  grid-template-areas:
    "art meta"
    "transport transport";
  gap: var(--player-gap);
  width: 100%;
  padding: var(--player-padding-y) var(--player-padding-x);
  border-top: 1px solid rgba(0,0,0,0.12);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 -10px 28px rgba(0,0,0,0.12);
}

.pinned-audio-art {
  grid-area: art;
  width: var(--player-art-size);
  height: var(--player-art-size);
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.pinned-audio-meta {
  grid-area: meta;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.pinned-audio-credit,
.pinned-audio-title,
.pinned-audio-artist {
  padding-top: 0;
  margin: 0;
  min-width: 0;
  text-align: left;
}

.pinned-audio-credit {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: rgba(36,36,36,0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pinned-audio-title {
  padding-top: 0.18rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pinned-audio-artist {
  padding-top: 0.14rem;
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--color-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pinned-audio-transport {
  grid-area: transport;
  display: grid;
  grid-template-columns: var(--player-nav-size) minmax(0, 1fr) var(--player-nav-size);
  align-items: center;
  gap: 0.7rem;
  width: 100%;
}

.pinned-audio-nav {
  width: var(--player-nav-size);
  height: var(--player-nav-size);
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--color-black);
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  cursor: pointer;
}

.pinned-audio-nav:hover {
  color: var(--color-white);
  background: var(--color-black);
  border-color: var(--color-black);
}

.pinned-audio-control {
  width: 100%;
  height: var(--player-control-height);
  min-width: 0;
}

.pinned-audio-control::-webkit-media-controls-playback-rate-button,
.pinned-audio-control::-webkit-media-controls-overflow-button {
  display: none;
}

button {
  margin: 2rem;
  padding: 1rem;
  font-size: 1.4rem;
  color: var(--color-white);
  background: var(--color-black);
  border: 1px solid var(--color-white);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

button {
  cursor: pointer;
}

button:hover {
  color: var(--color-black);
  background: var(--color-white);
  border-color: var(--color-black);
}

a {
  color: var(--color-ink);
}

a:visited {
  color: var(--color-ink);
}

a:hover {
  color: var(--color-gray);
}

footer .footer-contact a,
footer .footer-contact a:link,
footer .footer-contact a:visited {
  color: var(--color-white);
}

footer .footer-contact a:hover {
  color: rgba(255,255,255,0.68);
  text-decoration: underline;
}

.section:nth-of-type(even) {
  color: var(--color-white);
  background-color: var(--color-charcoal);
}

.section:nth-of-type(odd) {
  color: var(--color-black);
  background-color: var(--color-mist);
}

#desc {
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.intro-block,
.featured-project,
.story-section,
.album-gallery {
  width: min(100%, 1200px);
  margin: 0 auto 3.5rem;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

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

.intro-paragraph {
  max-width: 980px;
}

.featured-project {
  margin-top: 3rem;
}

.featured-project-heading {
  margin-bottom: 1.4rem;
}

.featured-project-kicker {
  padding-top: 0;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(0,0,0,0.58);
}

.featured-project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.7fr);
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: center;
  width: min(100%, 880px);
  margin: 0 auto;
  padding: clamp(1.35rem, 4vw, 2.2rem);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(235,235,235,0.82)),
    radial-gradient(circle at top left, rgba(0,0,0,0.08), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78), 0 22px 50px rgba(0,0,0,0.08);
}

.featured-project-copy {
  width: 100%;
  margin: 0;
}

.featured-project-card h3 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
}

.featured-project-card p {
  padding-top: 0.85rem;
  font-size: 1.12rem;
  line-height: 1.65;
  text-align: left;
}

.featured-project-meta {
  font-weight: 600;
  color: var(--color-ink);
}

.featured-project-highlight {
  margin: 1rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center !important;
  text-wrap: balance;
  background: rgba(255,255,255,0.72);
}

.featured-project-role {
  color: rgba(36,36,36,0.72);
  font-size: 1rem !important;
}

.featured-project-link {
  display: inline-block;
  margin-top: 1.3rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--color-black);
}

.featured-project-link:hover {
  color: var(--color-gray);
}

.featured-project-poster-frame {
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-black);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.featured-project-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.section-heading {
  width: min(100%, 1100px);
  margin: 0 auto 2rem;
}

.subsection-heading {
  width: min(100%, 1200px);
  margin: 0 auto 1.5rem;
}

.subsection-heading h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subproject-panel {
  width: min(100%, 1120px);
  margin: 0 auto 2rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(241,241,241,0.7));
  box-shadow: 0 14px 32px rgba(0,0,0,0.05);
}

.subproject-heading {
  width: 100%;
  margin-bottom: 0.9rem;
}

.subproject-heading h3 {
  font-size: 1.28rem;
  font-weight: 600;
}

.vocational-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(232,232,232,0.74));
}

.vocational-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
  gap: 1.25rem;
  align-items: center;
}

.vocational-copy p {
  padding-top: 0;
  font-size: 1.15rem;
  line-height: 1.65;
}

.vocational-proof-card {
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 14px 30px rgba(0,0,0,0.06);
}

.vocational-logo {
  display: block;
  width: min(100%, 210px);
  max-height: 70px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.vocational-highlights {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.vocational-highlights li {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.68);
  background: rgba(255,255,255,0.7);
}

.vocational-video {
  width: min(100%, 680px);
  margin: 1.25rem auto 0;
}

.vocational-video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: var(--color-black);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

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

.vocational-video p {
  padding-top: 0.6rem;
  font-size: 0.9rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.58);
}

.podcast-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.15rem;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
}

.podcast-kicker {
  padding-top: 0;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(0,0,0,0.55);
}

.podcast-copy h4 {
  margin-top: 0.35rem;
  font-size: 1.25rem;
  text-align: left;
}

.podcast-copy p:not(.podcast-kicker) {
  padding-top: 0.55rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.external-links {
  position: relative;
  z-index: 6;
  width: fit-content;
  margin: 0.85rem auto 0;
  padding-top: 0;
  font-size: 0.76rem;
  text-align: center;
}

.external-links-left {
  margin-left: 0;
  margin-right: 0;
}

.external-links summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--color-black);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.external-links summary::-webkit-details-marker {
  display: none;
}

.external-links summary::after {
  content: "+";
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.9em;
  line-height: 1;
}

.external-links[open] summary,
.external-links summary:hover {
  color: var(--color-white);
  border-color: var(--color-black);
  background: var(--color-black);
  transform: translateY(-1px);
}

.external-links[open] summary::after {
  content: "-";
}

.external-links-menu {
  display: grid;
  gap: 0.45rem;
  min-width: 10rem;
  margin-top: 0.55rem;
  padding: 0.55rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.external-links-menu a {
  display: block;
  padding: 0.58rem 0.72rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-black);
  background: rgba(0,0,0,0.04);
  transition: color 0.2s ease, background 0.2s ease;
}

.external-links-menu a:hover {
  color: var(--color-white);
  background: var(--color-black);
}

.section-logo-row {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: min(100%, 1100px);
  margin: 0 auto 2rem;
  padding: 1rem 0 2.6rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(205,205,205,0.9), rgba(176,176,176,0.8));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.46), 0 16px 34px rgba(0,0,0,0.08);
  touch-action: pan-x;
}

.section-logo-row::before,
.section-logo-row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 2;
  pointer-events: none;
}

.section-logo-row::before {
  left: 0;
  background: linear-gradient(90deg, rgba(190,190,190,0.96), rgba(190,190,190,0));
}

.section-logo-row::after {
  right: 0;
  background: linear-gradient(270deg, rgba(190,190,190,0.96), rgba(190,190,190,0));
}

.music-logo-row {
  padding-left: 12.5rem;
}

.music-logo-row::before {
  content: none;
}

.featured-logo-lockup {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 11.5rem;
  padding: 0 1.2rem;
  border-right: 1px solid rgba(0,0,0,0.1);
  background: #cfcfcf;
  box-shadow: none;
}

.featured-logo-lockup span {
  font-size: 0.62rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.48);
}

.featured-logo {
  width: auto;
  height: auto;
  max-width: 112px;
  max-height: 58px;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.section-logo-track {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  min-width: max-content;
  padding-right: 2.5rem;
  animation: logo-marquee 32s linear infinite;
}

.section-logo-row.is-paused .section-logo-track {
  animation-play-state: paused;
}

.section-logo {
  max-width: 170px;
  max-height: 52px;
  width: auto;
  height: auto;
  opacity: 0.92;
  filter: saturate(0.72) contrast(1.08);
  transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
}

.section-logo:hover {
  opacity: 1;
  filter: saturate(1) contrast(1.04);
  transform: translateY(-2px);
}

.section-logo-caption {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  padding-top: 0;
  font-size: 0.82rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.58);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2.5rem));
  }
}

.credits-gallery {
  width: 100%;
  margin: 0 auto 3.5rem;
}

.credits-disclosure {
  width: min(100%, 1040px);
  margin: -0.75rem auto 3rem;
}

.credits-disclosure summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 14px 30px rgba(0,0,0,0.05);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.credits-disclosure summary::-webkit-details-marker {
  display: none;
}

.credits-disclosure summary::after {
  content: " +";
}

.credits-disclosure[open] summary::after {
  content: " -";
}

.credits-disclosure .credits {
  margin-top: 1rem;
}

.credits-gallery-header,
.collaborators-header {
  width: min(100%, 1100px);
  margin: 0 auto 2rem;
}

.credits-carousel {
  position: relative;
  overflow: hidden;
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0.85rem 0;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(237,237,237,0.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 18px 38px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.credits-carousel.is-paused {
  border-color: rgba(0,0,0,0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(233,233,233,0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 22px 48px rgba(0,0,0,0.09);
}

.credits-carousel::before,
.credits-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  z-index: 2;
  pointer-events: none;
}

.credits-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(241,241,241,1), rgba(241,241,241,0));
}

.credits-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(241,241,241,1), rgba(241,241,241,0));
}

.credits-carousel.is-paused::before {
  background: linear-gradient(90deg, rgba(235,235,235,1), rgba(235,235,235,0));
}

.credits-carousel.is-paused::after {
  background: linear-gradient(270deg, rgba(235,235,235,1), rgba(235,235,235,0));
}

.credits-grid {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  width: max-content;
  padding-inline: 34%;
  will-change: transform;
}

.credit-poster-card {
  flex: 0 0 clamp(220px, 30vw, 340px);
  padding: 0.8rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  opacity: 0.72;
  transform: scale(0.92);
  transition: transform 0.9s ease, opacity 0.9s ease, box-shadow 0.9s ease;
}

.credit-poster-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 22px 52px rgba(0,0,0,0.12);
}

.credit-poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.94), rgba(70,70,70,0.7));
}

.credit-poster-frame::before {
  content: "Add local poster";
  position: absolute;
  inset: auto 0 1rem 0;
  z-index: 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}

.credit-poster-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.credit-poster-card h3 {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.credit-poster-medium {
  padding-top: 0.28rem;
  font-size: 0.72rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.56);
}

.credit-poster-role {
  padding-top: 0.35rem;
  font-size: 0.82rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gray);
}

.producer-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  gap: 2rem;
  align-items: center;
  width: min(100%, 1200px);
  margin: 0 auto 2.5rem;
}

.producer-copy {
  width: 100%;
}

.producer-feature > *,
.grant-grover-feature > * {
  align-self: center;
}

.story-section .producer-feature .paragraph,
.story-section .composer-feature .paragraph,
.subproject-panel .grant-grover-feature .paragraph {
  margin: 0;
}

.music-video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1.25rem;
  align-items: center;
  width: min(100%, 1100px);
  margin: 0 auto 2.5rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 22px;
  background: rgba(255,255,255,0.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 16px 36px rgba(0,0,0,0.07);
}

.music-video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: var(--color-black);
}

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

.music-video-copy {
  text-align: left;
}

.music-video-kicker {
  padding-top: 0;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.56);
}

.music-video-copy h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  text-align: left;
}

.music-video-copy p:not(.music-video-kicker) {
  padding-top: 0.85rem;
  font-size: 1.05rem;
  line-height: 1.55;
  text-align: left;
}

.composer-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 1fr);
  gap: 2rem;
  align-items: center;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.composer-copy {
  width: 100%;
}

.composer-banner-card {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.composer-banner-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.composer-banner-card p {
  padding-top: 0.75rem;
  text-align: center;
  font-size: 0.98rem;
}

.grant-grover-feature {
  grid-template-columns: minmax(150px, 0.52fr) minmax(0, 1.65fr);
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 0;
}

.grant-grover-art-card {
  padding: 0.75rem;
  max-width: 210px;
  justify-self: center;
}

.grant-grover-art-card p {
  padding-top: 0.6rem;
  font-size: 0.9rem;
}

.story-section .paragraph {
  margin-bottom: 1.5rem;
}

.featured-album-card {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.featured-album-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.featured-album-card p {
  padding-top: 0.85rem;
  text-align: center;
  font-size: 1rem;
}

.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.collaborator-carousel {
  position: relative;
  overflow: hidden;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0.85rem 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(239,239,239,0.8));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 16px 34px rgba(0,0,0,0.05);
  cursor: pointer;
}

.collaborator-carousel::before,
.collaborator-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 11%;
  z-index: 2;
  pointer-events: none;
}

.collaborator-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(241,241,241,1), rgba(241,241,241,0));
}

.collaborator-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(241,241,241,1), rgba(241,241,241,0));
}

.collaborator-carousel.is-paused {
  border-color: rgba(0,0,0,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(233,233,233,0.88));
}

.collaborator-carousel .collaborators-grid {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  width: max-content;
  padding-inline: 30%;
  will-change: transform;
}

.collaborator-card {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(233,233,233,0.9));
  box-shadow: 0 14px 32px rgba(0,0,0,0.07);
}

.collaborator-carousel .collaborator-card {
  flex: 0 0 clamp(240px, 29vw, 320px);
  opacity: 0.72;
  transform: scale(0.93);
  transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.7s ease;
}

.collaborator-carousel .collaborator-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 18px 42px rgba(0,0,0,0.1);
}

.voice-carousel {
  position: relative;
  overflow: hidden;
  width: min(100%, 1120px);
  margin: 0 auto 2rem;
  padding: 0.85rem 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(239,239,239,0.8));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 16px 34px rgba(0,0,0,0.05);
  cursor: pointer;
}

.voice-carousel::before,
.voice-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 11%;
  z-index: 2;
  pointer-events: none;
}

.voice-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(241,241,241,1), rgba(241,241,241,0));
}

.voice-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(241,241,241,1), rgba(241,241,241,0));
}

.voice-carousel.is-paused {
  border-color: rgba(0,0,0,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(233,233,233,0.88));
}

.collaborator-headshot-frame {
  width: min(100%, 240px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20,20,20,0.96), rgba(92,92,92,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
}

.collaborator-headshot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.collaborator-headshot-raj {
  object-position: 42% 24%;
}

.collaborator-headshot-peter {
  object-position: center 20%;
}

.collaborator-headshot-karen {
  object-position: center 22%;
}

.collaborator-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
}

.voice-card h3,
.landscape-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.collaborator-copy {
  padding-top: 0.9rem;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.65;
  color: var(--color-ink);
}

.collaborator-copy span {
  font-weight: 600;
}

.album-grid,
.landscape-grid {
  display: grid;
  gap: 1.5rem;
  width: min(100%, 1200px);
  margin: 0 auto;
}

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

.album-carousel {
  position: relative;
  overflow: hidden;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0.85rem 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(239,239,239,0.8));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 16px 34px rgba(0,0,0,0.05);
  cursor: pointer;
}

.album-carousel::before,
.album-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 11%;
  z-index: 2;
  pointer-events: none;
}

.album-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(241,241,241,1), rgba(241,241,241,0));
}

.album-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(241,241,241,1), rgba(241,241,241,0));
}

.album-carousel.is-paused {
  border-color: rgba(0,0,0,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(233,233,233,0.88));
}

.album-carousel .album-grid {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  width: max-content;
  padding-inline: 30%;
  will-change: transform;
}

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

.album-placeholder-card,
.landscape-card,
.voice-card {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.album-carousel .album-placeholder-card {
  flex: 0 0 clamp(240px, 29vw, 320px);
  opacity: 0.72;
  transform: scale(0.93);
  transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.7s ease;
}

.album-carousel .album-placeholder-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 18px 42px rgba(0,0,0,0.1);
}

.album-art-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.landscape-media-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  padding: 1rem;
}

.album-placeholder-card p,
.landscape-card h3 {
  padding-top: 0.85rem;
  text-align: center;
  font-size: 1rem;
}

.media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20,20,20,0.96), rgba(110,110,110,0.68));
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 1rem;
}

.square-placeholder {
  aspect-ratio: 1 / 1;
}

.landscape-placeholder {
  aspect-ratio: 16 / 9;
}

.educator-voices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: min(100%, 1200px);
  margin: 0 auto 2rem;
}

.voice-carousel .educator-voices {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  width: max-content;
  padding-inline: 30%;
  margin-bottom: 0;
  will-change: transform;
}

.voice-carousel .voice-card {
  flex: 0 0 clamp(240px, 29vw, 320px);
  opacity: 0.72;
  transform: scale(0.93);
  transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.7s ease;
}

.voice-carousel .voice-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 18px 42px rgba(0,0,0,0.1);
}

.web-carousel {
  position: relative;
  overflow: hidden;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0.85rem 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(239,239,239,0.8));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 16px 34px rgba(0,0,0,0.05);
  cursor: pointer;
}

.web-carousel::before,
.web-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 11%;
  z-index: 2;
  pointer-events: none;
}

.web-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(241,241,241,1), rgba(241,241,241,0));
}

.web-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(241,241,241,1), rgba(241,241,241,0));
}

.web-carousel.is-paused {
  border-color: rgba(0,0,0,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(233,233,233,0.88));
}

.web-grid {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  width: max-content;
  padding-inline: 26%;
  will-change: transform;
}

.web-card {
  flex: 0 0 clamp(280px, 36vw, 420px);
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  opacity: 0.72;
  transform: scale(0.93);
  transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.7s ease;
}

.web-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 18px 42px rgba(0,0,0,0.1);
}

.website-thumbnail-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 16px;
}

.web-card h3 {
  padding-top: 0.85rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

.educator-logo-row .section-logo {
  max-width: 190px;
  max-height: 60px;
}

.voice-headshot-frame {
  width: min(100%, 220px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20,20,20,0.96), rgba(92,92,92,0.7));
}

.bandcamp-embed {
  width: 100%; /* Ensure the container takes full width */
  display: flex;
  justify-content: center; /* Horizontally centers the iframe */
}

.bandcamp-embed iframe {
  max-width: 800px; /* Limit the iframe width for better aesthetics */
}

.social-proof {
  margin: 2rem auto;
  text-align: center;
}

.social-proof h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.logos {
  display: flex;
  justify-content: center; /* Center the logos horizontally */
  flex-wrap: wrap; /* Allow logos to wrap if screen is small */
  gap: 1rem; /* Space between the logos */
}

.logo {
  max-width: 300px; /* Limit the width of each logo */
  max-height: 65px; /* Limit the height of each logo */
  opacity: 0.7; /* Make the logos slightly transparent */
  transition: opacity 0.3s ease;
  filter: grayscale(100%); /* Apply grayscale to all logos */
  transition: filter 0.3s ease; /* Smooth transition effect */
}

.logo:hover {
  opacity: 1; /* Remove transparency on hover */
  filter: grayscale(0%); /* Remove grayscale on hover */
}

.credits {
  margin: 48px 0;
  padding: 36px 32px 28px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.72);
}

.credits h2 {
  text-align: center;
  max-width: 100%;
  margin: 0 0 28px 0;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

.credits-group {
  max-width: 760px;
  margin: 0 auto 34px auto;
}

.credits-group h3 {
  margin: 24px 0 14px 0;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  opacity: 0.78;
}

.credit {
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: 10px 16px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.78);
  margin: 10px 0;
}

.credit-title {
  font-weight: 600;
}

.credit-title span {
  font-weight: 500;
  opacity: 0.85;
}

.credit-role {
  opacity: 0.95;
  line-height: 1.4;
}

.imdb-linkline {
  max-width: 760px;
  margin: 28px auto 0 auto;
  padding: 14px 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.55);
  text-align: center;

}

.imdb-linkline a {
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  color: var(--color-black);
  opacity: 0.85;
}

.imdb-linkline a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Mobile: stack title/role */
@media (max-width: 700px) {
  .credits h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    line-height: 1.2;
    text-wrap: balance;
  }
  :root {
    --player-height: 122px;
    --player-padding-x: 0.75rem;
    --player-padding-y: 0.7rem;
    --player-gap: 0.65rem;
    --player-art-size: 44px;
    --player-nav-size: 34px;
    --player-control-height: 36px;
  }

  .section-nav {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  #desc {
    padding-inline: 1rem;
  }

  .hero {
    min-height: 72vh;
    align-items: flex-end;
  }

  .hero-image {
    object-position: center 22%;
  }

  .hero-overlay {
    padding: calc(2.4rem + env(safe-area-inset-top, 0px)) 1.4rem 2.4rem;
  }

  .embedded-form {
    width: 100%;
    margin-top: 1rem;
  }

  .embedded-form-footer {
    margin-left: 0;
  }

  footer p,
  .footer-contact,
  .embedded-form-footer,
  .embedded-form-footer * {
    text-align: left;
  }

  .hero-subtitle {
    letter-spacing: 0.14em;
    line-height: 1.5;
  }

  .paragraph,
  .section-heading,
  .subsection-heading,
  .credits-gallery-header,
  .section-logo-row {
    width: 100%;
  }

  .section-logo-row::before,
  .section-logo-row::after {
    width: 1.5rem;
  }

  .section-logo-track {
    gap: 1.75rem;
    padding-right: 1.75rem;
    animation-duration: 24s;
  }

  .credits-grid {
    gap: 1rem;
    padding-inline: 18%;
  }

  .producer-feature,
  .featured-project-card,
  .music-video-feature,
  .composer-feature,
  .collaborators-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .featured-project-card {
    align-items: start;
  }

  .featured-project-poster-frame {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .collaborator-carousel .collaborators-grid {
    padding-inline: 16%;
  }

  .voice-carousel .educator-voices {
    padding-inline: 16%;
  }

  .web-grid {
    padding-inline: 16%;
  }

  .album-carousel .album-grid {
    padding-inline: 16%;
  }

  .grant-grover-feature {
    grid-template-columns: 1fr;
  }

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

  .vocational-proof-card {
    padding: 0.85rem;
  }

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

  .album-grid,
  .landscape-grid,
  .educator-voices {
    grid-template-columns: 1fr;
  }

  .credit-poster-card {
    flex-basis: 68vw;
    padding: 0.85rem;
  }

  .collaborator-card,
  .album-placeholder-card,
  .voice-card,
  .landscape-card,
  .featured-album-card {
    padding: 0.85rem;
  }

  .collaborator-carousel .collaborator-card {
    flex-basis: 70vw;
  }

  .voice-carousel .voice-card {
    flex-basis: 70vw;
  }

  .web-card {
    flex-basis: 78vw;
  }

  .album-carousel .album-placeholder-card {
    flex-basis: 70vw;
  }

  .music-logo-row {
    padding: 5.25rem 0 3rem;
  }

  .section-logo-row::before,
  .section-logo-row::after {
    width: 2.25rem;
  }

  .music-logo-row::before {
    left: 0;
  }

  .music-logo-row .featured-logo-lockup {
    inset: 0 0 auto 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 4rem;
    padding: 0.75rem 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  }

  .music-logo-row .featured-logo-lockup span {
    text-align: center;
  }

  .music-logo-row .featured-logo {
    max-width: 92px;
    max-height: 52px;
  }

  .section-logo-track {
    gap: 1.5rem;
    padding-right: 1.5rem;
    animation-duration: 24s;
  }

  .section-logo {
    max-width: 140px;
    max-height: 46px;
  }

  .section-logo-caption {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    bottom: 0.9rem;
  }

  .subproject-panel {
    padding: 1rem;
  }

  .grant-grover-art-card {
    max-width: 210px;
    margin: 0 auto;
  }

  .pinned-audio-credit {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .pinned-audio-title {
    font-size: 0.94rem;
  }

  .pinned-audio-artist {
    font-size: 0.76rem;
  }

  .pinned-audio-nav {
    font-size: 1.05rem;
  }

  .credit {
    grid-template-columns: 1fr;
  }
  .credits {
    padding: 28px 20px 22px;
  }

  .credits h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    line-height: 1.2;
  }
  .credits-group {
    margin-bottom: 28px;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .section-nav {
    right: 0.7rem;
    padding: 0.62rem 0.5rem;
  }

  .section-nav-link {
    min-width: 5.6rem;
    gap: 0.42rem;
  }

  .section-nav-label {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .music-logo-row {
    padding-left: 10.5rem;
  }

  .music-logo-row::before {
    left: 10rem;
  }

  .music-logo-row .featured-logo-lockup {
    width: 10rem;
    padding: 0 1rem;
  }

  .music-logo-row .featured-logo {
    max-width: 104px;
  }

  .credits-grid {
    padding-inline: 28%;
  }

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

  .collaborator-carousel .collaborators-grid {
    padding-inline: 24%;
  }

  .voice-carousel .educator-voices {
    padding-inline: 24%;
  }

  .web-grid {
    padding-inline: 22%;
  }

  .album-carousel .album-grid {
    padding-inline: 24%;
  }

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

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

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

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
