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

:root {
  --bg-2: #12100f;
  --card: #171412;
  --card-2: #1f1a17;
  --text: #f4f1ea;
  --muted: #c8c1b4;
  --muted-2: #9a9387;
  --accent: #e43c2f;
  --accent-2: #ffb258;
  --line: rgba(255, 255, 255, 0.08);
  --max: 1200px;
  --radius: 18px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --section-pad: clamp(3.5rem, 8vw, 7rem);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Sora', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --hero-title: clamp(3rem, 10vw, 8rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #0a0a09 0%, #0f0d0b 40%, #0a0a09 100%);
  color: var(--text);
  min-height: 100%;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(45% 45% at 15% 20%, rgba(228, 60, 47, 0.22), transparent 60%),
    radial-gradient(40% 40% at 85% 15%, rgba(255, 178, 88, 0.16), transparent 60%),
    radial-gradient(50% 50% at 70% 85%, rgba(26, 162, 111, 0.12), transparent 65%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image: 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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
}

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

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

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ─── Layout ─── */
.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

section {
  padding: var(--section-pad) var(--pad);
}

/* ─── Cursor ─── */
#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

#cursor-ring {
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(228, 60, 47, 0.55);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
}

/* ─── Nav ─── */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 9, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: height 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-logo em {
  color: var(--accent);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted-2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: all 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile menu ─── */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(12, 11, 10, 0.98);
  z-index: 499;
  padding: 1.5rem var(--pad);
  display: none;
  flex-direction: column;
  gap: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu.open {
  display: flex;
}

/* ─── Hero ─── */
.hero {
  padding: calc(var(--section-pad) + 1.5rem) var(--pad) var(--section-pad);
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.08) contrast(1.1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 10, 9, 0.95) 25%, rgba(10, 10, 9, 0.55) 55%, rgba(10, 10, 9, 0.15) 100%);
}

.hero-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  position: relative;
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--hero-title);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero-title-accent {
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: var(--muted);
  line-height: 1.6;
  margin: 1.5rem 0 2.5rem;
  font-weight: 400;
  max-width: 520px;
}

.hero-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.7s;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) - 6px);
  z-index: 2;
  pointer-events: none;
}

.hero-image:hover img {
  transform: scale(1.06);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  writing-mode: vertical-lr;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: var(--muted-2);
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.2; transform: scaleY(0.35); }
}

/* ─── Ticker ─── */
.ticker {
  height: 54px;
  background: linear-gradient(90deg, #d63124 0%, #ee6a3f 70%, #ff9b5d 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

/* ─── Section headings ─── */
.section-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

.section-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1rem;
}

/* ─── Quote ─── */
.quote-banner {
  background: linear-gradient(135deg, #11100e 0%, #181512 100%);
  border-top: 1px solid var(--line);
}

.quote-layout {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 3rem;
  align-items: center;
}

.quote-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1.35;
  font-weight: 400;
  color: var(--text);
}

.quote-text em {
  color: var(--accent);
  font-style: italic;
}

.quote-author {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 1.5rem;
}

/* ─── About ─── */
.about-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  max-width: 560px;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 360px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.6s;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(228, 60, 47, 0.15) 100%);
}

/* ─── Bio ─── */
.bio-section {
  border-top: 1px solid var(--line);
  background: #0f0e0c;
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.bio-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  display: block;
}

.bio-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 1.2rem;
  margin-bottom: 1.8rem;
}

.bio-columns {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
}

.gallery-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #0f0e0c 0%, #191614 100%);
}

.gallery-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 1.2rem;
  align-items: start;
}

.media-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  padding: 1rem;
}

.media-panel-stills {
  position: sticky;
  top: 88px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  cursor: none;
}

.gallery-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0a09;
}

.gallery-media img,
.gallery-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-meta {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(18, 16, 15, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.gallery-legend {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.gallery-time {
  flex: 0 0 auto;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.video-library {
  min-height: min(76vh, 860px);
}

.video-library-scroll {
  max-height: min(76vh, 860px);
  min-height: min(76vh, 860px);
  overflow: auto;
  padding-right: 0.45rem;
  overscroll-behavior: contain;
}

.video-library-scroll::-webkit-scrollbar {
  width: 10px;
}

.video-library-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
}

.video-library-scroll::-webkit-scrollbar-thumb {
  background: rgba(228, 60, 47, 0.45);
  border-radius: 999px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.9rem;
  align-content: start;
}

.video-card .gallery-media {
  aspect-ratio: 9 / 16;
}

.video-card .gallery-meta {
  top: 0.8rem;
  bottom: auto;
}

.video-card video {
  background: #000;
}

/* ─── FM section ─── */
.fm-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #11100f 0%, #181512 100%);
}

.fm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.program-copy {
  max-width: 640px;
}

.program-text {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 560px;
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.program-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.meta-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--accent-2);
}

.program-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.program-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.program-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.partners-shell {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.partners-copy {
  margin-bottom: 1.3rem;
}

.partners-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.partners-marquee {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
  padding: 0.85rem;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  animation: partners-scroll 20s linear infinite;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(128px, 16vw, 180px);
  min-width: clamp(128px, 16vw, 180px);
  height: clamp(92px, 11vw, 116px);
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.partner-card img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-card.is-logo img {
  max-height: 54px;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.425rem)); }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(26, 162, 111, 0.12);
  border: 1px solid rgba(26, 162, 111, 0.28);
  color: #1aa26f;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #1aa26f;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.55); }
}

/* ─── Footer ─── */
footer {
  background: #0b0a09;
  border-top: 1px solid var(--line);
  padding: var(--section-pad) var(--pad) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.9fr));
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer-intro {
  padding-right: 1rem;
}

.footer-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  min-height: 100%;
}

.footer-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.footer-brand em {
  color: var(--accent);
  font-style: normal;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  font-weight: 400;
}

.social-link,
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-link + .social-link,
.contact-card + .contact-card {
  margin-top: 0.85rem;
}

.link-topline {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(228, 60, 47, 0.12);
  border: 1px solid rgba(228, 60, 47, 0.2);
  color: var(--accent-2);
}

.social-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.link-label,
.contact-role,
.contact-phone {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.social-link strong,
.contact-card strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-phone {
  color: var(--accent-2);
}

.social-link:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 60, 47, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.9;
}

/* ─── Utilities ─── */
.text-accent {
  color: var(--accent);
}

.text-muted-2 {
  color: var(--muted-2);
}

.link-accent {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s;
}

.link-accent:hover {
  opacity: 0.8;
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-visible {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── Responsive ─── */
@media (hover: none) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 16 / 9; }
}

@media (max-width: 900px) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }

  nav { height: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { top: 64px; }

  .hero-scroll { display: none; }

  .quote-layout {
    grid-template-columns: 1fr;
  }
  .quote-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

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

  .gallery-shell {
    grid-template-columns: 1fr;
  }

  .media-panel-stills {
    position: static;
  }

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

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

  .program-visual {
    min-height: 220px;
  }

  .partners-track {
    animation-duration: 16s;
  }

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

  .footer-intro {
    padding-right: 0;
  }

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

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

  .bio-columns { columns: 1; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }

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

  .video-library-scroll {
    max-height: 70vh;
    min-height: 70vh;
    padding-right: 0.2rem;
  }

  .gallery-meta {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.65rem 0.75rem;
  }

  .video-card .gallery-meta {
    top: 0.7rem;
  }

  .hero-title { font-size: clamp(2.6rem, 11vw, 4.6rem); }

  .partner-card {
    width: 124px;
    min-width: 124px;
    height: 88px;
    padding: 0.7rem;
  }

  .partner-card img {
    max-height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }
}

@media (max-width: 520px) {
  .section-title { font-size: 2.2rem; }
}
