/* Sasha Sirota — colorful campaign artist site */

:root {
  --panel-transition: 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --footer-height: 72px;

  --off-white: #faf8f4;
  --cream: #f5f0e6;
  --warm-beige: #ebe4d6;
  --charcoal: #2a2826;
  --text-muted: #5c5854;
  --espresso: var(--charcoal);

  --tomato: #e03c31;
  --cobalt: #2d5bff;
  --yellow: #f5c518;
  --mint: #3ecfb2;
  --orange: #f07830;
  --lavender: #b8a9d9;
  --dusty-rose: #c98b8b;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, -apple-system, sans-serif;

  --header-height: 3.5rem;
  --shadow-graphic: 6px 6px 0 var(--charcoal);
  --panel-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  --site-bg-color: #faf8f4;
  --site-bg-image:
    var(--panel-grain),
    repeating-linear-gradient(
      168deg,
      transparent,
      transparent 18px,
      rgba(42, 40, 38, 0.045) 18px,
      rgba(42, 40, 38, 0.045) 20px
    ),
    radial-gradient(ellipse 85% 65% at 15% 25%, rgba(62, 207, 178, 0.42) 0%, transparent 58%),
    radial-gradient(ellipse 75% 58% at 88% 78%, rgba(184, 169, 217, 0.45) 0%, transparent 52%),
    radial-gradient(ellipse 45% 38% at 62% 8%, rgba(245, 197, 24, 0.28) 0%, transparent 48%),
    radial-gradient(ellipse 120% 80% at 50% 110%, rgba(62, 207, 178, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 78% 18%, rgba(184, 169, 217, 0.45) 0%, transparent 46%),
    radial-gradient(circle at 14% 88%, rgba(62, 207, 178, 0.38) 0%, transparent 44%),
    linear-gradient(155deg, #d4f5ec 0%, var(--cream) 40%, #faf8f4 100%);
  --site-bg-size:
    200px 200px,
    auto,
    100% 100vh,
    100% 100vh,
    100% 100vh,
    100% 100vh,
    100% 100%,
    100% 100%,
    100% 100%;
  --site-bg-repeat:
    repeat,
    repeat,
    repeat-y,
    repeat-y,
    repeat-y,
    repeat-y,
    no-repeat,
    no-repeat,
    no-repeat;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--charcoal);
  background-color: var(--site-bg-color);
  background-image: var(--site-bg-image);
  background-size: var(--site-bg-size);
  background-repeat: var(--site-bg-repeat);
  background-attachment: scroll;
  -webkit-font-smoothing: antialiased;
}

body.panel-scroll-page {
  overflow: hidden;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Graphic system (typography labels only — no bg shapes) ---- */

.panel-marker {
  position: absolute;
  top: calc(var(--header-height) + 0.75rem + env(safe-area-inset-top, 0px));
  left: max(1.25rem, env(safe-area-inset-left, 0px));
  z-index: 4;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  line-height: 1;
}

.panel-scene--hero .panel-marker {
  color: var(--off-white);
  text-shadow: 0 1px 12px rgba(42, 40, 38, 0.4);
}

.panel-marker--dark {
  color: var(--charcoal);
}

.panel-marker-num {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--tomato);
}

.panel-scene--hero .panel-marker-num {
  color: var(--yellow);
}

.panel-scene--videos .panel-marker-num {
  color: var(--cobalt);
}

.panel-scene--press .panel-marker-num {
  color: var(--mint);
}

.panel-scene--about .panel-marker-num {
  color: var(--orange);
}

.panel-marker-sep {
  opacity: 0.35;
  margin: 0 0.15em;
}

.graphic-rule {
  width: 100%;
  max-width: 12rem;
  height: 4px;
  background: var(--charcoal);
  margin-top: 0.75rem;
}

.graphic-rule--page {
  max-width: 100%;
  margin-bottom: 2rem;
  height: 2px;
  background: rgba(26, 26, 26, 0.14);
}

/* ---- Scroll engine ---- */

#main-wrapper {
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform var(--panel-transition);
}

body.showfooter #main-wrapper {
  transform: translateY(calc(-1 * var(--footer-height)));
}

.smoothslide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  will-change: transform;
  overflow: hidden;
}

.smoothslide.transitioning {
  transition: transform var(--panel-transition);
}

#main-content .slide:nth-child(1) { z-index: 1; }
#main-content .slide:nth-child(2) { z-index: 2; transform: translateY(100%); }
#main-content .slide:nth-child(3) { z-index: 3; transform: translateY(100%); }
#main-content .slide:nth-child(4) { z-index: 4; transform: translateY(100%); }

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: auto;
  min-height: var(--footer-height);
  background: var(--charcoal);
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  padding:
    0.85rem max(1rem, env(safe-area-inset-right, 0px))
    calc(0.85rem + env(safe-area-inset-bottom, 0px))
    max(1rem, env(safe-area-inset-left, 0px));
  z-index: 5;
  transform: translateY(100%);
  transition: transform var(--panel-transition);
  border-top: 4px solid var(--tomato);
}

body.showfooter .site-footer {
  transform: translateY(0);
  z-index: 1;
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
  margin: 0;
}

/* ---- Header ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header--solid {
  background: rgba(245, 240, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--charcoal);
}

.menu_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding:
    calc(0.5rem + env(safe-area-inset-top, 0px))
    max(1.25rem, env(safe-area-inset-right, 0px))
    0.5rem
    max(1.25rem, env(safe-area-inset-left, 0px));
  pointer-events: auto;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--off-white);
  transition: color 0.3s ease;
  text-shadow: 0 1px 8px rgba(42, 40, 38, 0.35);
}

.header--solid .site-logo {
  color: var(--charcoal);
  text-shadow: none;
}

.header_nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--off-white);
  transition: color 0.3s ease;
}

.header--solid .header_nav {
  color: var(--charcoal);
}

.header_nav a {
  padding: 0.35rem 0.45rem;
  border: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header_nav a:hover,
.mobile_menu-link:hover {
  background: var(--yellow);
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.header_nav a.is-current,
.mobile_menu-link.is-current {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.logo_heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu_toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--off-white);
  background: rgba(42, 40, 38, 0.35);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.header--solid .menu_toggle {
  border-color: var(--charcoal);
  background: var(--yellow);
}

.menu_toggle:hover {
  background: var(--tomato);
  transform: scale(1.05);
}

.menu_toggle-line {
  height: 2px;
  background: var(--off-white);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.header--solid .menu_toggle-line {
  background: var(--charcoal);
}

.menu_toggle-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.menu_toggle.is-open .menu_toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu_toggle.is-open .menu_toggle-line:nth-child(2) {
  opacity: 0;
}

.menu_toggle.is-open .menu_toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile_menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
}

.mobile_menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 40, 38, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile_menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(85vw, 18rem);
  height: 100%;
  background: var(--cream);
  border-right: 4px solid var(--charcoal);
  padding: calc(4rem + env(safe-area-inset-top, 0px)) 1.5rem 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.menu-open .mobile_menu {
  pointer-events: auto;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile_menu-backdrop {
  opacity: 1;
}

body.menu-open .mobile_menu-panel {
  transform: translateX(0);
}

.mobile_menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile_menu-link {
  padding: 0.65rem 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 2px solid var(--charcoal);
  background: var(--off-white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile_menu-link:hover {
  transform: translateX(4px);
}

.mobile_menu-link--secondary {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: none;
  background: transparent;
  padding-top: 1rem;
}

/* ---- Shared panel ---- */

.panel {
  background-color: var(--site-bg-color);
  background-image: var(--site-bg-image);
  background-size: var(--site-bg-size);
  background-repeat: var(--site-bg-repeat);
  background-attachment: local;
}

.panel-scene {
  position: relative;
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.panel-scene--videos::before,
.panel-scene--videos::after,
.panel-scene--press::before,
.panel-scene--press::after {
  content: none;
  display: none;
}

.panel-scene--about::before {
  content: none;
  display: none;
}

.panel-scene--about::after {
  content: none;
  display: none;
}

.panel-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.panel-header {
  position: relative;
  z-index: 2;
}

/* ---- Panel 1: Hero ---- */

.panel--hero {
  background-color: var(--site-bg-color);
  background-image: var(--site-bg-image);
  background-size: var(--site-bg-size);
  background-repeat: var(--site-bg-repeat);
  background-attachment: local;
}

.panel-scene--hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  align-items: end;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 82%;
}

.hero-photo-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 40, 38, 0.25) 0%, transparent 30%),
    linear-gradient(0deg, rgba(42, 40, 38, 0.72) 0%, rgba(42, 40, 38, 0.15) 40%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding:
    calc(var(--header-height) + 1rem + env(safe-area-inset-top, 0px))
    max(1.5rem, env(safe-area-inset-right, 0px))
    max(2.5rem, env(safe-area-inset-bottom, 0px))
    max(1.5rem, env(safe-area-inset-left, 0px));
  max-width: 52rem;
}

.hero-wordmark {
  margin-bottom: 0.5rem;
}

.hero-wordmark-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--off-white);
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(42, 40, 38, 0.35);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 2.2vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.85);
  max-width: 30rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--tomato);
}

.scroll-cue {
  position: absolute;
  bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  right: max(1.5rem, env(safe-area-inset-right, 0px));
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.scroll-cue-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250, 248, 244, 0.7);
  writing-mode: vertical-rl;
}

.scroll-cue-arrow {
  font-size: 1.25rem;
  color: var(--yellow);
  line-height: 1;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-cue-line {
  width: 3px;
  height: 2.5rem;
  background: var(--off-white);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Panel 2: Videos ---- */

.panel--videos {
  background: transparent;
}

.panel-scene--videos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding:
    calc(var(--header-height) + 3.75rem + env(safe-area-inset-top, 0px))
    max(1.25rem, env(safe-area-inset-right, 0px))
    max(1.25rem, env(safe-area-inset-bottom, 0px))
    max(1.25rem, env(safe-area-inset-left, 0px));
  gap: 0;
  background-color: var(--site-bg-color);
  background-image: var(--site-bg-image);
  background-size: var(--site-bg-size);
  background-repeat: var(--site-bg-repeat);
  background-attachment: local;
  transition: none;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.panel-scene--videos .panel-marker {
  z-index: 5;
}

.panel-scene--videos {
  --active-accent: var(--mint);
}

.panel-scene--videos[data-active-accent] {
  --active-accent: var(--mint);
}

.panel-scene--videos .panel-header {
  width: 100%;
  max-width: 56rem;
  text-align: left;
  flex-shrink: 0;
}

.video-marquee {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 56rem;
  min-height: 0;
  gap: 0;
  z-index: 1;
}

.video-marquee-stage {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.video-marquee-player-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.video-marquee-track {
  position: relative;
  width: 100%;
  min-height: 0;
  flex-shrink: 0;
  align-self: flex-start;
  max-width: 42rem;
}

.video-marquee-slide {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.video-marquee-slide.is-active {
  display: flex;
}

.video-marquee-media {
  position: relative;
  --video-max-height: min(40vh, calc(100dvh - var(--header-height) - 20rem));
  --video-max-width: min(92vw, 900px);
  width: min(var(--video-max-width), calc(var(--video-max-height) * 16 / 9));
  max-height: var(--video-max-height);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: var(--shadow-graphic);
  border: 4px solid var(--charcoal);
  outline: 3px solid var(--active-accent, var(--tomato));
  outline-offset: -7px;
  transition: outline-color 0.5s ease;
}

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

.video-marquee-media .video-embed[hidden] {
  display: none;
}

.video-marquee-media .video-embed iframe,
.video-marquee-media .video-embed > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-watch-fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--off-white);
  text-decoration: none;
}

.video-watch-fallback[hidden] {
  display: none;
}

.video-fallback-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-fallback-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(42, 40, 38, 0.82) 0%, rgba(42, 40, 38, 0.2) 45%, rgba(42, 40, 38, 0.15) 100%);
  transition: background 0.25s ease;
}

.video-watch-fallback:hover .video-fallback-overlay,
.video-watch-fallback:focus-visible .video-fallback-overlay {
  background:
    linear-gradient(0deg, rgba(42, 40, 38, 0.9) 0%, rgba(42, 40, 38, 0.35) 50%, rgba(42, 40, 38, 0.2) 100%);
}

.video-watch-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: 3px solid var(--charcoal);
  background: var(--active-accent, var(--yellow));
  box-shadow: 4px 4px 0 var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-watch-fallback:hover .video-watch-btn,
.video-watch-fallback:focus-visible .video-watch-btn {
  transform: translate(calc(-50% - 1px), calc(-50% - 1px));
  box-shadow: 5px 5px 0 var(--charcoal);
}

.video-watch-icon {
  font-size: 0.7rem;
  line-height: 1;
}

.video-marquee.is-embed-blocked .video-marquee-media,
.panel-scene--videos.is-embed-blocked .video-marquee-media {
  outline-color: var(--text-muted);
}

.video-marquee-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
  width: 100%;
  max-width: 42rem;
  border-top: 4px solid var(--charcoal);
  margin-top: 0.25rem;
  margin-bottom: 0;
  transition: border-color 0.5s ease;
}

.video-marquee-counter {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--active-accent, var(--tomato));
  transition: color 0.5s ease;
}

.video-marquee-artist {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  margin-top: 0.25rem;
}

.video-feat {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.video-marquee-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.video-marquee-context {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.35rem;
  margin-bottom: 0.5rem;
  max-width: 32rem;
}

.video-marquee-controls {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem 1rem;
  margin-top: 0.25rem;
  padding-top: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 42rem;
  align-self: flex-start;
}

.video-marquee-prev,
.video-marquee-next {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.65rem 1.15rem;
  border: 3px solid var(--charcoal);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.video-marquee-mid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  flex: 1 1 auto;
  min-width: 0;
}

.video-marquee-progress {
  flex: 1 1 4rem;
  min-width: 3.5rem;
  max-width: 8rem;
  width: auto;
  height: 4px;
  background: rgba(42, 40, 38, 0.15);
  border: 1px solid var(--charcoal);
}

.video-marquee-prev:hover,
.video-marquee-next:hover {
  background: var(--active-accent, var(--tomato));
}

.control-label {
  display: none;
}

.video-marquee-dots {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 0 1 auto;
  max-width: none;
}

.video-marquee-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--charcoal);
  background: var(--off-white);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.video-marquee-dot.is-active {
  background: var(--active-accent, var(--tomato));
  transform: scale(1.2);
}

.video-marquee-progress-fill {
  height: 100%;
  width: 10%;
  background: var(--active-accent, var(--tomato));
  transition: width 0.45s ease, background 0.5s ease;
}

.video-marquee-watch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.25rem;
  border: 3px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s ease, color 0.2s ease;
}

.video-marquee-watch:hover {
  background: var(--active-accent, var(--tomato));
  color: var(--charcoal);
}

/* ---- Featured single video (home panel) ---- */

.video-featured {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 56rem;
  min-height: 0;
  z-index: 1;
}

.video-featured-stage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.video-featured-player-shell {
  width: 100%;
  display: flex;
  justify-content: center;
}

.video-featured-media {
  position: relative;
  --video-max-height: min(44vh, calc(100dvh - var(--header-height) - 18rem));
  --video-max-width: min(92vw, 960px);
  width: min(var(--video-max-width), calc(var(--video-max-height) * 16 / 9));
  max-height: var(--video-max-height);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: var(--shadow-graphic);
  border: 4px solid var(--charcoal);
  outline: 3px solid var(--active-accent, var(--tomato));
  outline-offset: -7px;
}

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

.video-featured-media .video-embed[hidden] {
  display: none;
}

.video-featured-media .video-embed iframe,
.video-featured-media .video-embed > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-featured.is-embed-blocked .video-featured-media {
  outline-color: var(--text-muted);
}

.video-featured-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  max-width: 42rem;
  padding-top: 0.5rem;
  border-top: 4px solid var(--charcoal);
}

.video-featured-artist {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  margin-top: 0.35rem;
}

.video-featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.video-featured-context {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--active-accent, var(--tomato));
  line-height: 1.4;
  margin-top: 0.25rem;
}

.video-featured-blurb {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 34rem;
  margin-top: 0.35rem;
}

.video-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 3px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 4px 4px 0 var(--mint);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.video-more-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--charcoal);
  background: var(--mint);
  color: var(--charcoal);
}

.video-more-count {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
}

/* ---- Video strip (home panel) ---- */

.video-strip {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 56rem;
  min-height: 0;
  gap: 0;
  z-index: 1;
}

.video-strip.is-stage-open {
  justify-content: flex-start;
}

/* ---- Expanded video stage ---- */

.video-stage {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1), margin 0.45s ease;
  margin-bottom: 0;
}

.video-stage.is-open {
  grid-template-rows: 1fr;
  margin-bottom: 1.25rem;
}

.video-stage-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.video-stage-media {
  position: relative;
  width: 100%;
  max-width: min(92vw, 920px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 4px solid var(--charcoal);
  outline: 3px solid var(--charcoal);
  outline-offset: -7px;
  box-shadow: var(--shadow-graphic);
  background: var(--charcoal);
  transition: none;
}

.video-stage-player-host {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.video-stage-player-host[hidden] {
  display: none;
}

.video-stage-player-target,
.video-stage-player-host iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.video-stage-thumb[hidden] {
  display: none;
}

.video-stage-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  color: var(--off-white);
  text-decoration: none;
}

.video-stage-fallback[hidden] {
  display: none;
}

.video-stage-fallback-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-stage-fallback-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(42, 40, 38, 0.82) 0%, rgba(42, 40, 38, 0.2) 50%, rgba(42, 40, 38, 0.15) 100%);
}

.video-stage-fallback-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border: 3px solid var(--charcoal);
  background: var(--mint);
  box-shadow: 4px 4px 0 var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}

.video-stage-caption {
  width: 100%;
  max-width: min(92vw, 920px);
  margin: 0 auto;
  padding-top: 0.15rem;
  border-top: 4px solid var(--charcoal);
}

.video-stage-artist {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  margin-top: 0.35rem;
}

.video-stage-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.video-stage-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin-top: 0.25rem;
}

.video-strip.is-stage-open .video-slidebar {
  margin-top: 0;
}

.video-strip.is-embed-blocked .video-stage-media {
  outline-color: var(--text-muted);
}

.video-slidebar {
  width: 100%;
  margin-top: 0;
}

.video-slidebar-track-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 0.65rem;
}

.video-slidebar-track-wrap::before,
.video-slidebar-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2rem;
  z-index: 2;
  pointer-events: none;
}

.video-slidebar-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--site-bg-color) 0%, transparent 100%);
}

.video-slidebar-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--site-bg-color) 0%, transparent 100%);
}

.video-slidebar-track {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 1rem;
  padding: 0.5rem 1rem 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.video-slidebar-track::-webkit-scrollbar {
  display: none;
}

.video-slide {
  flex: 0 0 clamp(8rem, 24vw, 10rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  cursor: pointer;
  text-align: left;
  scroll-snap-align: center;
  color: inherit;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.video-slide.is-active .video-slide-media {
  outline: 3px solid var(--charcoal);
  outline-offset: -6px;
  box-shadow: 5px 5px 0 var(--charcoal);
  transform: translate(-1px, -1px);
}

.video-slide:hover .video-slide-media {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--charcoal);
}

.video-slide-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 3px solid var(--charcoal);
  background: var(--charcoal);
  box-shadow: 3px 3px 0 rgba(42, 40, 38, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, outline-color 0.2s ease;
}

.video-slide-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.video-slide-thumb[hidden] {
  display: none;
}

.video-slide:hover .video-slide-thumb {
  transform: scale(1.04);
}

.video-slide-thumb--empty {
  display: block;
  background: linear-gradient(135deg, var(--mint), var(--charcoal));
}

.video-slide-play {
  position: absolute;
  right: 0.4rem;
  bottom: 0.4rem;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  border: 2px solid var(--charcoal);
  font-size: 0.5rem;
  color: var(--charcoal);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.video-slide:not(.is-active):hover .video-slide-play,
.video-slide.is-active .video-slide-play {
  opacity: 1;
}

.video-slide.is-embed-blocked .video-slide-play {
  opacity: 1;
  background: var(--mint);
}

.video-slide-meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.video-slide-artist {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-slide-title {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-slide.is-active .video-slide-title {
  white-space: normal;
}

.video-slide-feat {
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-slide-role {
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-slide.is-active .video-slide-role {
  color: var(--charcoal);
  font-weight: 700;
}

.video-slidebar-scroll {
  position: relative;
  height: 5px;
  background: rgba(42, 40, 38, 0.12);
  border: 2px solid var(--charcoal);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) and (pointer: fine) {
  .video-slidebar-track {
    cursor: grab;
    user-select: none;
  }

  .video-slidebar-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .video-slidebar-track.is-dragging .video-slide {
    pointer-events: none;
  }

  .video-slidebar-scroll {
    cursor: grab;
    touch-action: none;
  }

  .video-slidebar-scroll.is-dragging {
    cursor: grabbing;
  }

  .video-slidebar-scroll-fill {
    pointer-events: none;
  }
}

.video-slidebar-scroll-fill {
  height: 100%;
  width: 20%;
  margin-left: 0;
  background: var(--charcoal);
  transition: width 0.15s ease, margin-left 0.15s ease;
}

.video-slidebar-count {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.video-slidebar-count-sep {
  margin: 0 0.15rem;
  opacity: 0.5;
}

#video-slidebar-current {
  color: var(--charcoal);
}

.video-more-link {
  align-self: flex-start;
}

/* ---- Panel 3: Press ---- */

.panel--press {
  background: transparent;
}

.panel-scene--press {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background-color: var(--site-bg-color);
  background-image: var(--site-bg-image);
  background-size: var(--site-bg-size);
  background-repeat: var(--site-bg-repeat);
  background-attachment: local;
}

.press-layout {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding:
    calc(var(--header-height) + 2.5rem + env(safe-area-inset-top, 0px))
    max(1.25rem, env(safe-area-inset-right, 0px))
    max(1.25rem, env(safe-area-inset-bottom, 0px))
    max(1.25rem, env(safe-area-inset-left, 0px));
  gap: 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.press-blocks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.press-block-link {
  display: grid;
  grid-template-columns: 3px 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0.2rem 0.85rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 26, 26, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.press-block-link:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(26, 26, 26, 0.2);
}

.press-block-bar {
  grid-row: 1 / -1;
  width: 3px;
  opacity: 0.65;
}

.press-block--tomato .press-block-link { background: rgba(255, 255, 255, 0.55); }
.press-block--tomato .press-block-bar { background: var(--tomato); }
.press-block--cobalt .press-block-link { background: rgba(255, 255, 255, 0.55); }
.press-block--cobalt .press-block-bar { background: var(--cobalt); }
.press-block--yellow .press-block-link { background: rgba(255, 255, 255, 0.55); }
.press-block--yellow .press-block-bar { background: var(--yellow); }
.press-block--orange .press-block-link { background: rgba(255, 255, 255, 0.55); }
.press-block--orange .press-block-bar { background: var(--orange); }
.press-block--mint .press-block-link { background: rgba(255, 255, 255, 0.55); }
.press-block--mint .press-block-bar { background: var(--mint); }
.press-block--lavender .press-block-link { background: rgba(255, 255, 255, 0.55); }
.press-block--lavender .press-block-bar { background: var(--lavender); }

.press-block-outlet {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1;
}

.press-block-headline {
  grid-column: 2;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--charcoal);
}

.press-block-context {
  grid-column: 2;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.press-block-arrow {
  grid-column: 3;
  grid-row: 1 / -1;
  align-self: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  transition: transform 0.2s ease, color 0.2s ease;
}

.press-block-link:hover .press-block-arrow {
  color: var(--tomato);
  transform: translateX(5px);
}

.press-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  padding: 0.5rem 0;
  border-bottom: 3px solid var(--tomato);
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.press-more-link:hover {
  color: var(--tomato);
  border-color: var(--cobalt);
}

/* ---- Panel 4: About ---- */

.panel--about {
  background: transparent;
}

.panel-scene--about {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--site-bg-color);
  background-image: var(--site-bg-image);
  background-size: var(--site-bg-size);
  background-repeat: var(--site-bg-repeat);
  background-attachment: local;
  padding:
    calc(var(--header-height) + 2.5rem + env(safe-area-inset-top, 0px))
    max(1.25rem, env(safe-area-inset-right, 0px))
    max(2rem, env(safe-area-inset-bottom, 0px))
    max(1.25rem, env(safe-area-inset-left, 0px));
}

.about-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}

.about-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.about-photos {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
  max-height: 300px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.about-photo--1 {
  grid-row: 1 / 3;
  min-height: 200px;
}

.about-photo--2,
.about-photo--3 {
  min-height: 95px;
}

.about-pull-quote {
  border: none;
  margin: 0.5rem 0 1rem;
  padding: 0;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.about-pull-quote .about-headline::before {
  content: '\201C';
  color: var(--tomato);
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 0.05em;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-bio-wrap {
  display: block;
}

.about-bio-wrap::after {
  content: '';
  display: table;
  clear: both;
}

.about-layout--bio {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 72rem;
}

.panel-header--about {
  margin-bottom: 0.25rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.panel-title--about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
}

.about-tagline {
  margin: 0.65rem 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--text-muted);
}

.about-bio-wrap--panel {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.about-bio-inline-figure {
  margin: 0.15rem 0 0.85rem;
  width: clamp(7.5rem, 28vw, 11.5rem);
  shape-outside: margin-box;
}

.about-bio-inline-figure--left {
  float: left;
  margin-right: 1.1rem;
}

.about-bio-inline-figure--right {
  float: right;
  margin-left: 1.1rem;
}

.about-bio-inline-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--charcoal);
  border-radius: 2px;
  box-shadow: 4px 4px 0 var(--mint);
}

.about-bio-inline-figure--right .about-bio-inline-photo {
  box-shadow: 4px 4px 0 var(--lavender);
}

.about-bio-float-figure {
  width: clamp(6.75rem, 24vw, 10.5rem);
  margin: 0.1rem 0 0.85rem;
  shape-outside: margin-box;
}

.about-bio-float-figure--left {
  float: left;
  margin-right: 1.15rem;
}

.about-bio-float-figure--right {
  float: right;
  margin-left: 1.15rem;
}

.about-bio-float-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--charcoal);
  border-radius: 2px;
  box-shadow: 4px 4px 0 var(--yellow);
}

.about-bio-float-caption {
  margin-top: 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  color: var(--charcoal);
}

.about-bio-p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 38rem;
}

.about-bio-wrap .about-bio-p {
  max-width: none;
  margin: 0 0 1.15rem;
}

.about-bio-wrap .about-bio-p::after {
  content: '';
  display: table;
  clear: both;
}

.about-photo-gallery {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 2.75rem;
  padding-top: 1.85rem;
  border-top: 4px solid var(--charcoal);
  clear: both;
  scroll-margin-top: 5.5rem;
}

.about-photo-gallery-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.35rem;
}

.about-photo-gallery-grid {
  columns: 1;
  column-gap: 1.15rem;
}

.about-photo-gallery-item {
  display: block;
  margin: 0 0 1.15rem;
  break-inside: avoid;
  overflow: hidden;
  border: 3px solid var(--charcoal);
  background: var(--off-white);
  box-shadow: 5px 5px 0 var(--mint);
}

.about-photo-gallery-item--extra {
  display: none;
}

.about-photo-gallery.is-expanded .about-photo-gallery-item--extra {
  display: block;
}

.about-photo-gallery-item:nth-child(3n) {
  box-shadow: 5px 5px 0 var(--yellow);
}

.about-photo-gallery-item:nth-child(3n + 2) {
  box-shadow: 5px 5px 0 var(--lavender);
}

.about-photo-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.about-photo-gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  color: inherit;
}

.about-photo-gallery-open:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: -3px;
}

.about-photo-gallery-open:hover img {
  filter: brightness(1.03);
}

/* ---- Lightbox ---- */

.lightbox {
  width: min(96vw, 1100px);
  max-width: 96vw;
  height: min(92vh, 900px);
  max-height: 92vh;
  margin: auto;
  padding: 0;
  border: 4px solid var(--charcoal);
  background: var(--charcoal);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.35);
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(42, 40, 38, 0.82);
}

.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
}

.lightbox--zoomed .lightbox-stage {
  cursor: grab;
}

.lightbox-stage:active {
  cursor: grabbing;
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  margin: 0;
  background: var(--warm-beige);
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
}

.lightbox-hint {
  position: absolute;
  left: 50%;
  bottom: 0.65rem;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  padding: 0.3rem 0.55rem;
  border: 2px solid var(--charcoal);
  background: var(--cream);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  opacity: 0.92;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox--zoomed .lightbox-hint {
  opacity: 0;
}

.lightbox-close {
  position: absolute;
  top: -0.85rem;
  right: -0.85rem;
  z-index: 3;
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--charcoal);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--charcoal);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--mint);
  outline: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--charcoal);
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--charcoal);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
}

.lightbox--multi .lightbox-nav {
  display: inline-flex;
}

.lightbox--zoomed.lightbox--multi .lightbox-nav {
  opacity: 0.35;
  pointer-events: none;
}

.lightbox-nav--prev {
  left: -0.85rem;
}

.lightbox-nav--next {
  right: -0.85rem;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: var(--yellow);
  outline: none;
}

@media (max-width: 640px) {
  .lightbox {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100dvh;
    border-left: 0;
    border-right: 0;
  }

  .lightbox-nav--prev {
    left: 0.4rem;
  }

  .lightbox-nav--next {
    right: 0.4rem;
  }

  .lightbox-close {
    top: 0.4rem;
    right: 0.4rem;
  }
}

.about-gallery-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.35rem;
  padding-top: 0.5rem;
}

.about-gallery-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border: 3px solid var(--charcoal);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-gallery-toggle:hover,
.about-gallery-toggle:focus-visible {
  background: var(--mint);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--charcoal);
  outline: none;
}

.about-gallery-toggle:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--charcoal);
}

@media (min-width: 560px) {
  .about-photo-gallery-grid {
    columns: 2;
    column-gap: 1.25rem;
  }

  .about-photo-gallery-item {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 900px) {
  .about-photo-gallery-grid {
    columns: 3;
    column-gap: 1.4rem;
  }

  .about-photo-gallery-item {
    margin-bottom: 1.4rem;
  }
}

.about-section {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 4px solid var(--charcoal);
}

.about-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.credits-wall {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.credit-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border: 2px solid var(--charcoal);
  font-size: 0.85rem;
  line-height: 1.4;
  transition: background 0.2s ease;
}

.credit-line:nth-child(odd) {
  background: #fff8d6;
}

.credit-line:nth-child(even) {
  background: #e8edff;
}

.credit-line:hover {
  background: var(--cream);
}

.credit-artist {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--charcoal);
}

.credit-sep {
  display: none;
}

.credit-project {
  color: var(--charcoal);
  font-weight: 500;
}

.credit-role {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tomato);
}

.credits-spotlight {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.credit-spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.15rem 1.25rem;
  border: 3px solid var(--charcoal);
  background: var(--off-white);
  box-shadow: 4px 4px 0 var(--charcoal);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.credit-spotlight:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--charcoal);
}

.credit-spotlight--tomato { border-left: 6px solid var(--tomato); }
.credit-spotlight--cobalt { border-left: 6px solid var(--cobalt); }
.credit-spotlight--yellow { border-left: 6px solid var(--yellow); }
.credit-spotlight--mint { border-left: 6px solid var(--mint); }
.credit-spotlight--orange { border-left: 6px solid var(--orange); }
.credit-spotlight--lavender { border-left: 6px solid var(--lavender); }

.credit-spotlight-badge {
  align-self: flex-start;
  padding: 0.2rem 0.5rem;
  background: var(--yellow);
  border: 2px solid var(--charcoal);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.credit-spotlight-artist {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 4vw, 1.5rem);
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.credit-spotlight-project {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
}

.credit-spotlight-role {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tomato);
  margin-top: 0.15rem;
}

.credit-spotlight-note {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  border-top: 2px dashed rgba(42, 40, 38, 0.15);
}

.credits-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border: 3px solid var(--charcoal);
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  transition: background 0.2s ease, transform 0.2s ease;
}

.credits-more-link:hover {
  background: var(--tomato);
  transform: translateX(3px);
}

.about-gxtp-summary {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 36rem;
  margin-bottom: 1.25rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--cobalt);
}

.about-gxtp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-gxtp-label {
  display: inline-block;
  padding: 0.3rem 0.55rem;
  background: var(--lavender);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  margin-bottom: 0.65rem;
}

.about-gxtp-list {
  list-style: none;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--charcoal);
}

.about-gxtp-list li {
  padding: 0.15rem 0;
  border-bottom: 1px dashed rgba(42, 40, 38, 0.15);
}

.about-contact {
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  border-top: 4px solid var(--charcoal);
}

.about-contact-intro {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.about-contact-email a {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--tomato);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.15em;
}

.about-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-social-link {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  padding: 0.4rem 0.75rem;
  border: 2px solid var(--charcoal);
  background: var(--yellow);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-social-link:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.about-full-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  border-bottom: 2px solid var(--tomato);
}

.about-full-link:hover {
  color: var(--tomato);
}

/* ---- Standard pages ---- */

body.standard-page {
  overflow: auto;
  height: auto;
  min-height: 100%;
  background-color: var(--site-bg-color);
  background-image: var(--site-bg-image);
  background-size: var(--site-bg-size);
  background-repeat: var(--site-bg-repeat);
  background-attachment: scroll;
}

body.standard-page .header {
  position: sticky;
  pointer-events: auto;
  background: rgba(245, 240, 230, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--charcoal);
}

body.standard-page .site-logo {
  color: var(--charcoal);
  text-shadow: none;
}

body.standard-page .header_nav {
  color: var(--charcoal);
}

body.standard-page .menu_toggle {
  background: var(--yellow);
  border-color: var(--charcoal);
}

.page-main {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  padding:
    calc(2rem + env(safe-area-inset-top, 0px))
    max(1.5rem, env(safe-area-inset-left, 0px))
    calc(2rem + env(safe-area-inset-bottom, 0px))
    max(1.5rem, env(safe-area-inset-right, 0px));
}

.page-main:has(#about-page-content),
.page-main:has(#videos-page-content),
.page-main:has(#credits-page-content),
.page-main:has(#press-page-content),
.page-main:has(#contact-page-content) {
  background: transparent;
}

.page-main:has(#about-page-content)::before,
.page-main:has(#about-page-content)::after,
.page-main:has(#press-page-content)::before,
.page-main:has(#press-page-content)::after,
.page-main:has(#contact-page-content)::before,
.page-main:has(#contact-page-content)::after,
.page-main::before,
.page-main:not(:has(#about-page-content)):not(:has(#press-page-content)):not(:has(#videos-page-content)):not(:has(#credits-page-content)):not(:has(#contact-page-content))::after {
  content: none;
  display: none;
}

.page-main > * {
  position: relative;
  z-index: 1;
}

.panel-marker--subpage {
  position: absolute;
  top: calc(2rem + env(safe-area-inset-top, 0px));
  left: max(1.25rem, env(safe-area-inset-left, 0px));
  z-index: 2;
}

.page-content {
  max-width: 44rem;
  margin: 0 auto;
}

.page-content:has(#videos-page-content),
.page-content:has(#credits-page-content),
.page-main:has(#about-page-content) .page-content {
  max-width: 72rem;
}

.page-main:has(#about-page-content) .about-page-header,
.page-main:has(#about-page-content) .about-page-bio {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Videos page ---- */

.videos-page-header,
.credits-page-header,
.about-page-header {
  margin-bottom: 2.5rem;
}

.page-main:has(#about-page-content) .about-page-header {
  margin-bottom: 2.5rem;
}

.about-page-header .about-tagline {
  margin-top: 0.75rem;
}

.videos-page-lead,
.credits-page-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 40rem;
  margin-top: 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.videos-category,
.credits-category {
  margin-bottom: 3rem;
}

.videos-category-title,
.credits-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 4px solid var(--charcoal);
  display: inline-block;
}

.videos-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.videos-pair-entry {
  --card-accent: var(--mint);
  opacity: 0;
  animation: video-card-in 0.55s ease forwards;
  animation-delay: calc(var(--card-index, 0) * 0.06s);
}

.videos-pair-entry-layout {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 0.85rem;
  align-items: start;
  padding: 0.85rem;
  border: 3px solid var(--charcoal);
  background: var(--off-white);
  box-shadow: 5px 5px 0 var(--charcoal);
}

.videos-pair-entry-layout > .video-card-index {
  position: static;
  top: auto;
  left: auto;
  align-self: start;
  margin-top: 0.15rem;
}

.video-card-body--pair {
  padding: 0;
  min-width: 0;
}

.video-card-pair-slots {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-column: 1 / -1;
  gap: 0.85rem;
}

.video-card--slot {
  opacity: 1;
  animation: none;
}

.video-card--slot .video-card-slot-layout {
  display: grid;
  gap: 0.65rem;
}

.video-card--slot .video-card-thumb-wrap {
  border-width: 2px;
}

.video-card-slot-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0.1rem 0.15rem;
}

.videos-pair-entry:has(.video-card.is-playing) {
  position: sticky;
  top: calc(var(--header-height) + 0.75rem);
  z-index: 40;
}

.page-main:has(.video-card.is-playing) .videos-pair-entry:not(:has(.video-card.is-playing)) {
  opacity: 0.38;
  filter: saturate(0.8);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

@media (min-width: 900px) {
  .video-card-pair-slots {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.video-card {
  --card-accent: var(--mint);
  opacity: 0;
  animation: video-card-in 0.55s ease forwards;
  animation-delay: calc(var(--card-index, 0) * 0.06s);
}

@keyframes video-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-card--tomato { --card-accent: var(--tomato); }
.video-card--cobalt { --card-accent: var(--cobalt); }
.video-card--yellow { --card-accent: var(--yellow); }
.video-card--mint { --card-accent: var(--mint); }
.video-card--orange { --card-accent: var(--orange); }
.video-card--lavender { --card-accent: var(--lavender); }

.video-card-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: 0.85rem;
  border: 3px solid var(--charcoal);
  background: var(--off-white);
  box-shadow: 5px 5px 0 var(--charcoal);
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.video-card:hover .video-card-layout {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--charcoal);
}

.video-card.is-playing {
  position: sticky;
  top: calc(var(--header-height) + 0.75rem);
  z-index: 40;
  margin-bottom: 0.5rem;
}

.video-card.is-playing .video-card-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: min(56rem, 100%);
  margin: 0 auto;
  padding: 1rem 1rem 1.15rem;
  transform: translateY(-2px);
  box-shadow:
    12px 12px 0 var(--charcoal),
    0 0 0 3px var(--mint);
}

.video-card.is-playing .video-card-thumb-wrap {
  width: 100%;
  max-width: none;
  align-self: stretch;
  aspect-ratio: 16 / 9;
  max-height: min(68vh, calc(100dvh - var(--header-height) - 11rem));
  border-width: 3px;
}

.video-card.is-playing .video-card-body {
  padding: 0 0.15rem;
}

.page-main:has(.video-card.is-playing) .video-card:not(.is-playing) {
  opacity: 0.38;
  filter: saturate(0.8);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.page-main:has(.video-card.is-playing) .videos-category-title {
  opacity: 0.55;
  transition: opacity 0.25s ease;
}

.video-card-index {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  background: var(--card-accent);
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
}

.video-card-thumb-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid var(--charcoal);
  background: var(--charcoal);
  align-self: start;
}

.video-card-thumb-btn {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.video-card-thumb-btn:hover .video-card-thumb {
  transform: scale(1.05);
}

.video-card-thumb-btn:hover .video-card-thumb-wash {
  background: rgba(42, 40, 38, 0.1);
}

.video-card-thumb-btn:hover .video-card-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card-player-host {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--charcoal);
}

.video-card-player-host[hidden] {
  display: none;
}

.video-card-player {
  width: 100%;
  height: 100%;
}

.video-card-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-youtube-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  color: var(--off-white);
  text-decoration: none;
}

.video-card-youtube-fallback[hidden] {
  display: none;
}

.video-card-fallback-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-fallback-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(42, 40, 38, 0.82) 0%, rgba(42, 40, 38, 0.2) 50%, rgba(42, 40, 38, 0.15) 100%);
}

.video-card-watch-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  border: 3px solid var(--charcoal);
  background: var(--card-accent);
  box-shadow: 3px 3px 0 var(--charcoal);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  white-space: nowrap;
}

.video-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.video-card-thumb--empty {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--card-accent), var(--lavender));
}

.video-card-thumb-wash {
  position: absolute;
  inset: 0;
  background: rgba(42, 40, 38, 0.25);
  transition: background 0.25s ease;
  pointer-events: none;
}

.video-card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-accent);
  border: 3px solid var(--charcoal);
  font-size: 0.85rem;
  color: var(--charcoal);
  box-shadow: 3px 3px 0 var(--charcoal);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.video-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.25rem 0;
  min-width: 0;
}

.video-card-artist {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
}

.video-card-feat {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.video-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.video-card-context {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--card-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}

.video-card-blurb {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: 0.35rem;
  flex: 1;
}

.video-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  text-decoration: none;
}

.video-card-cta:hover {
  color: var(--card-accent);
}

/* ---- Credits page ---- */

.credits-page-featured {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 4px solid var(--charcoal);
}

.credits-page-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.credits-spotlight--page {
  grid-template-columns: 1fr;
}

.credits-catalog {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.credit-entry {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  padding: 0.85rem 1rem;
  border: 2px solid var(--charcoal);
  border-left: 5px solid var(--charcoal);
  background: var(--off-white);
  transition: transform 0.2s ease, background 0.2s ease;
}

.credit-entry:hover {
  transform: translateX(4px);
  background: var(--cream);
}

.credit-entry-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  padding-top: 0.15rem;
}

.credit-entry-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    'artist role'
    'project role';
  gap: 0.1rem 1.25rem;
  align-items: end;
  min-width: 0;
}

.credit-entry-artist {
  grid-area: artist;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.credit-entry-project {
  grid-area: project;
  font-weight: 600;
  color: var(--charcoal);
}

.credit-entry-role {
  grid-area: role;
  justify-self: end;
  align-self: end;
  max-width: 16rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--charcoal);
  text-align: right;
  line-height: 1.35;
  margin-top: 0;
}

@media (max-width: 640px) {
  .credit-entry-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      'artist'
      'project'
      'role';
    gap: 0.15rem;
  }

  .credit-entry-role {
    justify-self: start;
    text-align: left;
    max-width: none;
    margin-top: 0.25rem;
    color: var(--text-muted);
  }
}

.page-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.page-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 0;
}

/* ---- Contact page ---- */

.contact-page-header {
  margin-bottom: 1.25rem;
}

.contact-page-intro {
  margin-bottom: 1.75rem;
}

.contact-photo {
  margin: 0 0 1.5rem;
  max-width: 22rem;
}

.contact-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid var(--charcoal);
  box-shadow: 5px 5px 0 var(--charcoal);
  background: var(--warm-beige);
}

.contact-page-lead {
  margin: 1rem 0 0.75rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.contact-email {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.contact-email a {
  color: var(--charcoal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-email a:hover,
.contact-email a:focus-visible {
  color: var(--cobalt);
  outline: none;
}

.contact-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin: 0 0 0.25rem;
  padding: 0;
}

.contact-links a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  padding: 0.35rem 0.55rem;
  border: 2px solid var(--charcoal);
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--charcoal);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: #fff;
  box-shadow: 4px 4px 0 var(--charcoal);
  transform: translate(-1px, -1px);
  outline: none;
}

.contact-links-item--instagram:hover,
.contact-links-item--instagram:focus-visible {
  background: #e4405f;
}

.contact-links-item--spotify:hover,
.contact-links-item--spotify:focus-visible {
  background: #1db954;
}

.contact-links-item--youtube:hover,
.contact-links-item--youtube:focus-visible {
  background: #ff0000;
}

.contact-links-item--soundcloud:hover,
.contact-links-item--soundcloud:focus-visible {
  background: #ff5500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 32rem;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form-row label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

.contact-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
}

.contact-form-row input,
.contact-form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--charcoal);
  background: var(--off-white);
  border: 3px solid var(--charcoal);
  padding: 0.7rem 0.85rem;
  box-shadow: 3px 3px 0 var(--charcoal);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  width: 100%;
  resize: vertical;
}

.contact-form-row input:focus,
.contact-form-row textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 4px 4px 0 var(--cobalt);
}

.contact-form-actions {
  margin-top: 0.25rem;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 3px solid var(--charcoal);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--mint);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--charcoal);
  outline: none;
}

.contact-submit:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--charcoal);
}

.contact-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.contact-form-status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form-status.is-success {
  color: #1a6b55;
}

.contact-form-status.is-error {
  color: var(--tomato);
}

.about-pull-quote--page h1 {
  margin-bottom: 0;
}

.about-pull-quote--page h1::before {
  content: '\201C';
  color: var(--tomato);
}

.page-body {
  color: var(--charcoal);
  line-height: 1.65;
}

.press-list-page {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-page-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-page-bio.about-bio-wrap {
  display: block;
}

.about-page-bio p {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.about-page-bio.about-bio-wrap p {
  max-width: none;
}

.site-footer--static {
  position: relative;
  transform: none;
  height: auto;
  min-height: var(--footer-height);
  padding: 1.5rem 1rem;
}

.site-footer .footer-copy a:hover {
  color: var(--yellow);
}

/* ---- Mobile layout fixes ---- */

@media (max-width: 767px) {
  .panel-marker {
    font-size: 0.75rem;
  }

  .panel-marker-num {
    font-size: 1.35rem;
  }

  .panel-scene--hero .hero-wordmark-line {
    font-size: clamp(2.75rem, 12vw, 4.25rem);
    line-height: 1;
  }

  .panel-scene--hero .hero-tagline {
    font-size: clamp(1.15rem, 4.5vw, 1.65rem);
  }

  .panel-scene--hero .hero-content {
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }

  .panel-scene--videos {
    padding-top: calc(var(--header-height) + 3.25rem + env(safe-area-inset-top, 0px));
  }

  .video-marquee-media {
    --video-max-width: 100%;
    --video-max-height: min(42vh, 240px);
  }

  .video-slide {
    flex-basis: clamp(7rem, 38vw, 9rem);
  }

  .video-slidebar-track-wrap::before,
  .video-slidebar-track-wrap::after {
    width: 1rem;
  }

  .video-card.is-playing .video-card-thumb-wrap {
    max-height: min(52vh, calc(100dvh - var(--header-height) - 9rem));
  }

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

  .video-card-index {
    top: 0.5rem;
    left: 0.5rem;
  }

  .video-marquee-track {
    min-height: 0;
  }

  .video-marquee-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.65rem;
    width: 100%;
    max-width: 100%;
    margin-top: 0.75rem;
    align-self: stretch;
  }

  .video-marquee-prev {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    padding: 0.55rem 0.85rem;
  }

  .video-marquee-next {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding: 0.55rem 0.85rem;
  }

  .video-marquee-mid {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .video-marquee-progress {
    width: 100%;
    max-width: 14rem;
    flex: unset;
  }

  .video-marquee-track {
    max-width: 100%;
  }

  .video-marquee-title {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    line-height: 1;
  }

  .video-marquee-counter {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .panel-scene--about {
    padding-top: calc(var(--header-height) + 2rem + env(safe-area-inset-top, 0px));
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-photos {
    display: flex;
    flex-direction: column;
    max-height: none;
    gap: 0.65rem;
  }

  .about-photo--1,
  .about-photo--2,
  .about-photo--3 {
    grid-row: auto;
    min-height: 0;
    width: 100%;
    max-height: 42vh;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .about-bio-inline-figure,
  .about-bio-float-figure {
    width: clamp(5.25rem, 32vw, 7.75rem);
  }

  .about-bio-inline-figure--left,
  .about-bio-float-figure--left {
    float: left;
    margin-right: 0.75rem;
    margin-bottom: 0.45rem;
    margin-left: 0;
  }

  .about-bio-inline-figure--right,
  .about-bio-float-figure--right {
    float: right;
    margin-left: 0.75rem;
    margin-bottom: 0.45rem;
    margin-right: 0;
  }

  .about-bio-float-caption {
    font-size: 0.52rem;
    letter-spacing: 0.06em;
  }

  .about-bio-p,
  .about-page-bio p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .about-bio-wrap .about-bio-p,
  .about-page-bio.about-bio-wrap p {
    margin-bottom: 1.2rem;
  }

  .about-intro {
    position: relative;
    z-index: 2;
  }

  .about-headline {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
    line-height: 1;
    max-width: 100%;
  }

  .about-pull-quote {
    margin-top: 0;
  }

  .press-layout {
    max-width: 100%;
    padding-top: calc(var(--header-height) + 2rem + env(safe-area-inset-top, 0px));
  }

  .panel-header--press .panel-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
}

/* ---- Responsive ---- */

@media (min-width: 640px) {
  .control-label {
    display: inline;
  }

  .credit-line {
    grid-template-columns: minmax(8rem, 1fr) auto minmax(6rem, 1.2fr) minmax(8rem, 1.5fr);
    align-items: baseline;
    gap: 0.5rem 0.75rem;
  }

  .credit-sep {
    display: inline;
    color: var(--text-muted);
  }

  .credit-role {
    text-align: right;
  }

  .credits-wall {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-photos {
    max-height: 320px;
  }
}

@media (min-width: 768px) {
  .credits-spotlight {
    grid-template-columns: repeat(3, 1fr);
  }

  .panel-scene--videos {
    padding-left: max(2rem, env(safe-area-inset-left, 0px));
    padding-right: max(2rem, env(safe-area-inset-right, 0px));
  }

  .video-marquee-stage {
    align-items: flex-start;
  }

  .video-marquee-media {
    --video-max-width: min(85vw, 960px);
    --video-max-height: min(38vh, calc(100dvh - var(--header-height) - 21rem));
  }

  .video-slide {
    flex-basis: clamp(8.5rem, 16vw, 11rem);
  }

  .video-stage-media {
    max-width: min(88vw, 960px);
  }

  .video-marquee-controls {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem 1.25rem;
    margin-top: 0.25rem;
    max-width: 42rem;
    width: 100%;
    align-self: flex-start;
  }

  .video-marquee-mid {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
  }

  .video-marquee-dots {
    justify-content: flex-start;
    flex: 0 1 auto;
  }

  .credits-wall {
    grid-template-columns: 1fr 1fr;
    column-gap: 0.75rem;
  }

  .credit-line {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .credit-sep {
    display: none;
  }

  .credit-role {
    text-align: left;
  }

  .press-layout {
    max-width: 48rem;
    padding-left: max(2rem, env(safe-area-inset-left, 0px));
    padding-right: max(2rem, env(safe-area-inset-right, 0px));
  }
}

@media (min-width: 768px) {
  .menu_toggle,
  .mobile_menu {
    display: none;
  }

  .header_nav {
    display: flex;
  }

  .logo_heading {
    position: static;
    transform: none;
  }

  .menu_nav {
    max-width: 72rem;
    margin: 0 auto;
  }

  body.standard-page .menu_nav {
    max-width: 56rem;
  }
}

@media (min-width: 1025px) {
  .press-layout {
    max-width: 52rem;
    padding-left: max(3rem, env(safe-area-inset-left, 0px));
    padding-right: max(3rem, env(safe-area-inset-right, 0px));
  }

  .panel-scene--videos {
    padding: calc(var(--header-height) + 2.5rem) 3rem 1.5rem;
  }

  .panel-scene--about {
    padding-left: max(3rem, env(safe-area-inset-left, 0px));
    padding-right: max(3rem, env(safe-area-inset-right, 0px));
  }

  .panel-marker {
    left: max(3rem, env(safe-area-inset-left, 0px));
  }

  .panel-marker--subpage {
    left: max(3rem, env(safe-area-inset-left, 0px));
  }

  .hero-photo {
    object-position: center 36%;
  }
}

@media (min-width: 1025px), (orientation: landscape) {
  .hero-content {
    padding-left: max(3rem, env(safe-area-inset-left, 0px));
    padding-bottom: max(4rem, env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 1025px) {
  .about-top {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .about-photos {
    max-height: 360px;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {
  .about-top {
    grid-template-columns: 1fr;
  }

  .about-photos {
    max-height: 280px;
  }

  .video-marquee-track {
    min-height: 0;
  }

  .video-marquee-slide {
    position: relative;
    inset: auto;
    display: none;
    width: 100%;
  }

  .video-marquee-slide.is-active {
    display: flex;
  }

  .video-marquee-media {
    --video-max-height: min(34vh, calc(100dvh - var(--header-height) - 20rem));
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  html,
  body {
    height: 100%;
    overscroll-behavior: none !important;
    touch-action: pan-y;
  }

  .smoothslide {
    position: fixed !important;
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
  }

  body.panel-scroll-page .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }

  body.standard-page .header {
    position: sticky;
  }

  .site-footer {
    z-index: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue-line,
  .scroll-cue-arrow {
    animation: none;
  }

  .video-marquee-slide {
    transition: opacity 0.3s ease;
    transform: none;
  }

  .panel-scene--videos {
    transition: none;
  }
}
