:root {
  --bg: #020202;
  --panel: #090909;
  --text: #f1f4f7;
  --muted: #7f8a95;
  --soft: #182029;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #c5f234;
  --max: 1760px;
  --pad: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(112deg, rgba(197, 242, 52, 0.08) 0%, rgba(23, 71, 42, 0.045) 24%, transparent 48%),
    linear-gradient(180deg, #020202 0%, #020905 42%, #020202 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  min-width: 320px;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--pad);
  pointer-events: none;
}

.brand,
.top-nav {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.brand span {
  font-size: 18px;
  font-weight: 700;
}

.brand small,
.eyebrow {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.top-nav a,
.site-footer a,
.about-actions a,
.contact-links a {
  transition: color 160ms ease;
}

.top-nav a:hover,
.site-footer a:hover,
.about-actions a:hover,
.contact-links a:hover {
  color: var(--accent);
}

.icon-link,
.contact-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.instagram-mark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.instagram-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  translate: -50% -50%;
}

.instagram-mark::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  align-items: end;
  gap: clamp(40px, 8vw, 140px);
  padding: 116px var(--pad) 72px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 10px;
}

h2,
p {
  margin-top: 0;
}

.category-stack {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.category-link {
  padding: 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(44px, 5.8vw, 92px);
  font-weight: 400;
  line-height: 0.9;
  text-align: left;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease;
}

.category-link:hover,
.category-link:focus-visible {
  color: var(--accent);
  transform: translateX(6px);
}

.spotlight {
  align-self: end;
  min-width: 0;
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--panel);
  border-radius: 8px;
}

.spotlight-card img,
.video-thumb img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 300ms ease, filter 300ms ease;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #111 0%, #050505 58%, #1b2212 100%);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--text);
  text-align: center;
  text-transform: uppercase;
}

.video-fallback::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: var(--accent);
}

.video-fallback span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.video-fallback strong {
  max-width: 13ch;
  font-size: clamp(20px, 3vw, 46px);
  font-weight: 400;
  line-height: 0.95;
}

.video-fallback.is-spotlight strong {
  font-size: clamp(28px, 4vw, 58px);
}

.spotlight-card:hover img,
.video-card:hover .video-thumb img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.08);
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  pointer-events: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  translate: -50% -50%;
  background: rgba(0, 0, 0, 0.56);
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.spotlight-meta {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.spotlight-meta h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.spotlight-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.work-section,
.about-section,
.contact-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) var(--pad);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 5.6vw, 92px);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.filter:hover,
.filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #050505;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 64px) clamp(28px, 4vw, 52px);
}

.video-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  background: transparent;
  text-align: left;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: var(--panel);
}

.card-preview-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.thumb-trigger {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.5));
  opacity: 0;
  transition: opacity 180ms ease;
}

.video-card:hover .video-thumb::after {
  opacity: 1;
}

.video-card:focus-within .video-thumb {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.video-meta {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.video-meta h3 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.2vw, 16px);
  font-family: "Courier New", monospace;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}

.video-meta p {
  max-width: 58ch;
  margin: 0;
  color: #aeb6bf;
  font-size: 14px;
  line-height: 1.45;
}

.about-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(34px, 7vw, 118px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(197, 242, 52, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014) 58%, transparent);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
  opacity: 0.28;
}

.about-section::after {
  content: "";
  position: absolute;
  top: 76px;
  bottom: 76px;
  left: var(--pad);
  z-index: -1;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.72;
  transform-origin: top;
}

.about-heading {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
}

.about-title {
  display: grid;
  gap: 4px;
  max-width: 12ch;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: none;
}

.about-title-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-title-line {
  display: block;
  overflow: hidden;
}

.about-title-line > span {
  display: block;
}

.about-copy {
  display: grid;
  gap: 20px;
  max-width: 680px;
  padding: 26px 0 26px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.about-copy p {
  margin: 0;
  color: #e3e8ee;
  font-size: 19px;
  line-height: 1.48;
}

.about-copy p:first-child {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.38;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

.about-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #edf4f0;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.about-actions .instagram-mark {
  width: 17px;
  height: 17px;
  border-radius: 5px;
}

.about-actions a:hover,
.about-actions a:focus-visible {
  border-color: rgba(197, 242, 52, 0.42);
  background: rgba(197, 242, 52, 0.07);
}

.about-section.reveal-ready::after {
  transform: scaleY(0.08);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section.reveal-ready .about-title-kicker,
.about-section.reveal-ready .about-title-line > span,
.about-section.reveal-ready .about-copy p,
.about-section.reveal-ready .about-actions {
  opacity: 0;
  transform: translateY(24px);
}

.about-section.is-visible::after {
  transform: scaleY(1);
}

.about-section.is-visible .about-title-kicker,
.about-section.is-visible .about-title-line > span,
.about-section.is-visible .about-copy p,
.about-section.is-visible .about-actions {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section.is-visible .about-title-line:nth-of-type(2) > span {
  transition-delay: 80ms;
}

.about-section.is-visible .about-title-line:nth-of-type(3) > span {
  transition-delay: 170ms;
}

.about-section.is-visible .about-copy p:first-child {
  transition-delay: 250ms;
}

.about-section.is-visible .about-copy p:nth-child(2) {
  transition-delay: 340ms;
}

.about-section.is-visible .about-actions {
  transition-delay: 420ms;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(34px, 7vw, 118px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(197, 242, 52, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014) 58%, transparent);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
  opacity: 0.24;
}

.contact-section::after {
  content: "";
  position: absolute;
  top: 76px;
  bottom: 76px;
  left: var(--pad);
  z-index: -1;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.58;
}

.contact-heading {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
}

.contact-title {
  display: grid;
  gap: 4px;
  max-width: 12ch;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: none;
}

.contact-title-line {
  display: block;
  overflow: hidden;
}

.contact-title-line > span {
  display: block;
}

.contact-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
  padding: 26px 0 26px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-copy p {
  margin: 0;
  color: #e3e8ee;
  font-size: 19px;
  line-height: 1.48;
}

.contact-copy p:first-child {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.38;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 820px;
  padding-top: 6px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 68px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.032);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.email-link {
  color: #eff6ef;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(197, 242, 52, 0.45);
  background: rgba(197, 242, 52, 0.07);
  transform: translateY(-1px);
}

.contact-icon-link .instagram-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--pad);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: var(--pad);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
}

.modal-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - (var(--pad) * 2));
  overflow: auto;
  background: #050505;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #050505;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.player-shell {
  aspect-ratio: 16 / 9;
  background: var(--panel);
}

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

.player-shell video {
  display: block;
  object-fit: contain;
}

.local-player {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000;
  cursor: pointer;
}

.local-player video {
  background: #000000;
}

.youtube-player-frame,
.youtube-player-frame iframe {
  width: 100%;
  height: 100%;
}

[data-youtube-player] iframe {
  pointer-events: none;
}

.local-player-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: auto auto minmax(90px, 1fr) auto auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(6, 10, 8, 0.64), rgba(0, 0, 0, 0.86));
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.local-player.controls-hidden {
  cursor: none;
}

.local-player.controls-hidden .local-player-controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.local-player:focus-within .local-player-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.player-control {
  min-width: 48px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7fbf3;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.player-control:hover,
.player-control:focus-visible {
  border-color: rgba(197, 242, 52, 0.48);
  background: rgba(197, 242, 52, 0.12);
  color: #fbffd8;
}

.player-time {
  min-width: 42px;
  color: #e8efe6;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
}

.player-range {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}

.player-local-needed {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 280px;
  padding: 24px;
  isolation: isolate;
  text-align: center;
}

.player-local-needed::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at center, rgba(197, 242, 52, 0.16), transparent 48%);
}

.player-local-needed img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.42);
}

.player-local-needed div {
  display: grid;
  gap: 8px;
  width: min(430px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 8, 6, 0.72);
  backdrop-filter: blur(12px);
}

.player-local-needed strong {
  color: #ffffff;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 0.95;
}

.player-local-needed span {
  color: #cbd4d0;
  font-size: 14px;
  line-height: 1.45;
}

.modal-copy {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 38px);
}

.modal-copy h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.modal-copy p {
  margin: 0;
  max-width: 72ch;
  color: #c5ccd4;
  line-height: 1.5;
}

.modal-credits {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: 9px 18px;
  margin: 8px 0 0;
  padding: 18px 0 2px;
  border-top: 1px solid rgba(199, 244, 52, 0.22);
}

.modal-credits[hidden] {
  display: none;
}

.modal-credits dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.modal-credits dd {
  margin: 0;
  color: #f2f7ed;
  line-height: 1.45;
}

.modal-action {
  justify-self: start;
  margin-top: 10px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(199, 244, 52, 0.42);
  border-radius: 8px;
  background: rgba(199, 244, 52, 0.1);
  color: #f4ffd1;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.modal-action:hover {
  border-color: rgba(199, 244, 52, 0.82);
  background: rgba(199, 244, 52, 0.18);
  color: #ffffff;
}

body.modal-open {
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

  .about-section.reveal-ready::after,
  .about-section.reveal-ready .about-title-kicker,
  .about-section.reveal-ready .about-title-line > span,
  .about-section.reveal-ready .about-copy p,
  .about-section.reveal-ready .about-actions,
  .about-section.is-visible::after,
  .about-section.is-visible .about-title-kicker,
  .about-section.is-visible .about-title-line > span,
  .about-section.is-visible .about-copy p,
  .about-section.is-visible .about-actions {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 48px;
    padding-top: 118px;
  }

  .spotlight {
    width: min(760px, 100%);
  }

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

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

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    padding-top: 18px;
    align-items: center;
  }

  .top-nav {
    gap: 13px;
    font-size: 12px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 94px;
  }

  .category-link {
    line-height: 0.96;
    font-size: clamp(34px, 11vw, 54px);
  }

  .section-heading {
    display: grid;
    gap: 8px;
  }

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

  .video-meta {
    justify-items: start;
    text-align: left;
  }

  .about-section {
    gap: 28px;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .about-section::before {
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, #000, transparent 78%);
  }

  .about-section::after {
    top: 58px;
    bottom: 58px;
  }

  .about-heading {
    gap: 12px;
    padding-left: 18px;
  }

  .about-title {
    max-width: none;
    font-size: 42px;
  }

  .about-title-kicker {
    font-size: 12px;
  }

  .about-copy {
    gap: 16px;
    padding: 8px 0 0 18px;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.52;
  }

  .about-copy p:first-child {
    font-size: 18px;
    line-height: 1.46;
  }

  .about-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-actions a {
    justify-content: space-between;
  }

  .contact-section {
    gap: 22px;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .contact-section::before {
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, #000, transparent 78%);
  }

  .contact-section::after {
    top: 58px;
    bottom: 58px;
  }

  .contact-heading {
    gap: 12px;
    padding-left: 18px;
  }

  .contact-title {
    max-width: none;
    font-size: 42px;
  }

  .contact-copy {
    gap: 16px;
    padding: 8px 0 0 18px;
  }

  .contact-copy p {
    font-size: 16px;
    line-height: 1.52;
  }

  .contact-copy p:first-child {
    font-size: 18px;
    line-height: 1.46;
  }

  .contact-links {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
  }

  .contact-links a {
    min-height: 58px;
  }

  .local-player-controls {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 8px;
  }

  .player-time {
    display: none;
  }

  .player-control {
    min-width: 42px;
    min-height: 34px;
    padding: 0 10px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 16px;
  }

  .top-nav {
    gap: 10px;
    font-size: 11px;
  }

  .instagram-mark {
    width: 18px;
    height: 18px;
    border-radius: 5px;
  }

  .filters {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter {
    width: 100%;
  }

  .modal {
    padding: 10px;
  }

  .modal-panel {
    max-height: calc(100vh - 20px);
  }

  .local-player-controls {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .modal-credits {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .modal-credits dd {
    margin-bottom: 8px;
  }

  .modal-action {
    width: 100%;
  }
}
