:root {
  --bg: #000000;
  --paper: #e8e6df;
  --muted: #a5a29a;
  --line: rgba(232, 230, 223, 0.52);
  --soft-line: rgba(232, 230, 223, 0.22);
  --accent: #7ba3ff;
  --warm: #d8a856;
  --green: #87a878;
  --rose: #d59698;
  --max: 1860px;
  color-scheme: dark;
}

@font-face {
  font-family: "Relationship of Melodrama";
  src: url('assets/Relationship%20of%20mélodrame.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--paper);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 40px clamp(20px, 3.4vw, 70px) 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.brand-mark {
  width: fit-content;
  border: none;
  padding: 7px 10px 6px;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1.05rem, 1.6vw, 1.78rem);
  line-height: 1;
  text-transform: uppercase;
  color: #f5f5f1;
  background: transparent;
  border-radius: 4px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.brand-mark:hover {
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.nav {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(16px, 3.3vw, 54px);
  font-size: 0.86rem;
  color: rgba(245, 245, 241, 0.75);
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.nav a {
  position: relative;
  padding-block: 4px;
  font-family: Arial, sans-serif;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 3.4vw, 70px) 58px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;

  background: url("assets/loading.jpg") center / cover no-repeat;
  filter: contrast(1.03) brightness(0.95) saturate(1.05);
  transform: scale(1.03);

  opacity: 1;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Zoom and dissolve the loading image */
.hero.is-video-starting::before {
  opacity: 0;
  transform: scale(1.08);
}

/* Swap to the ocean hero background once the dissolve begins/finishes */
.hero.is-video-playing::before {
  background: url("assets/ocean-hero-clean.png") center / cover no-repeat;
  opacity: 1;
}

.hero-video {
  position: absolute;
  inset: -8vh 0;
  z-index: -2;
  width: 100%;
  height: calc(100% + 16vh);
  object-fit: cover;
  object-position: center;
  filter: contrast(1.06) brightness(0.68) saturate(1.08);
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.04);
  transform-origin: center;
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity 0.7s ease 0.05s;
}

.hero.is-video-starting .hero-video {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 7, 6, 0.58), rgba(6, 7, 6, 0.14) 36%, rgba(6, 7, 6, 0.68) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 34%, transparent 68%, rgba(0, 0, 0, 0.38));
}

@keyframes heroLogoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: "Songti SC", "Songti", "STSongti-SC-Regular", "Courier New", Courier, monospace;
  font-size: clamp(4rem, 7.8vw, 10.5rem);
  font-weight: 400;
  line-height: 0.95;
  text-align: center;
  color: #fff;
  text-shadow: 0 8px 38px rgba(0, 0, 0, 0.38);
  opacity: 0;
  animation: heroLogoFadeIn 900ms ease-out 0ms both;
}

.hero-title span {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    transform: scale(1.04);
  }

  .hero-title {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero-meta {
  position: absolute;
  bottom: 36px;
  left: clamp(20px, 3.4vw, 70px);
  right: clamp(20px, 3.4vw, 70px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(245, 245, 241, 0.78);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 128px) clamp(20px, 3.4vw, 70px);
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
  color: var(--paper);
}

.section-heading::after {
  content: "";
  height: 1px;
  background: var(--line);
  grid-column: 2;
}

.reveal-item {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.work-card,
.category-link {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  transition-delay: calc(var(--reveal-index, 0) * 0.07s + 0.12s);
  will-change: opacity, transform;
}

.reveal-item.is-revealed .work-card,
.reveal-item.is-revealed .category-link {
  opacity: 1;
  transform: translateY(0);
}

.work-card,
.category-link {
  position: relative;
}

.work-card::before,
.category-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}

.reveal-item.is-revealed .work-card::before,
.reveal-item.is-revealed .category-link::before {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .work-card,
  .category-link {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-heading h2 {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1.45rem, 2.8vw, 3.2rem);
  font-weight: 400;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

/* HOME PAGE: subtitles */
.hero-meta {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

#work .section-heading p,
#work + section .section-heading p {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.category-strip small {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.work-wall {
  display: grid;
  grid-template-columns: 1.25fr 0.62fr 0.62fr;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-card {
  min-height: 350px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 12px 14px 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.work-card.wide {
  grid-row: span 2;
}

.work-card.long {
  grid-column: span 2;
  min-height: 315px;
}

.work-kicker {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: rgba(245, 245, 241, 0.88);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.work-kicker b {
  font-weight: 400;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.work-kicker span {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.frame {
  min-height: 230px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42)),
    url("assets/work-reference.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(0.86) contrast(1.03);
}

.frame.film-1,
.frame.film-2,
.frame.film-3,
.frame.film-4,
.frame.film-5,
.frame.film-6 {
  background-size: contain;
  background-position: center center;
}

.frame.film-1 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    url("assets/filmmaking-01.png");
}

.frame.film-2 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    url("assets/filmmaking-02.png");
}

.frame.film-3 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    url("assets/filmmaking-03.png");
}

.frame.film-4 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    url("assets/filmmaking-04.png");
}

.frame.film-5 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    url("assets/filmmaking-05.png");
}

.frame.film-6 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    url("assets/filmmaking-06.png");
}
.frame.wed-1 { background-position: 29% 77%; }
.frame.wed-2 { background-position: 4% 76%; }
.frame.sport-1 { background-position: 55% 72%; }
.frame.sport-2 { background-position: 82% 72%; }
.frame.music-1 { background-position: 7% 25%; }
.frame.music-2 { background-position: 63% 53%; }
.frame.music-3 { background-position: 36% 50%; }

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.category-link {
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.82)),
    url("assets/work-reference.png");
  background-size: 1900px auto;
  color: #fff;
}

.category-link:nth-child(1) { background-position: 5% 22%; }
.category-link:nth-child(2) { background-position: 90% 22%; }
.category-link:nth-child(3) { background-position: 45% 78%; }
.category-link:nth-child(4) { background-position: 62% 50%; }

.category-link small {
  color: rgba(245, 245, 241, 0.72);
  text-transform: uppercase;
}

.category-link strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 4.4rem);
  font-weight: 400;
}

.page-hero {
  min-height: 56svh;
  padding: 150px clamp(20px, 3.4vw, 70px) 54px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(5, 5, 5, 0.92)),
    url("assets/work-reference.png") center / cover no-repeat;
}

.page-hero.filmmaking {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(5, 5, 5, 0.92)),
    url("assets/filmmaking-01.jpg") center / cover no-repeat;
}
.page-hero.weddings {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(5, 5, 5, 0.92)),
    url("assets/weddings/PACKAGES (1).jpg") center / cover no-repeat;
}
.page-hero.sports {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(5, 5, 5, 0.92)),
    url("assets/sports/sports%20hero%20photo.png") center / cover no-repeat;
}
.page-hero.music {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(5, 5, 5, 0.92)),
    url("assets/music/kobe2.jpg") 8% 22% / cover no-repeat;
}

/* Weddings-specific typography (only affects Weddings page) */
.page-hero.weddings .page-copy h1,
.page-hero.weddings .page-copy p,
.section.detail-grid .gallery-grid .gallery-card .thumb + .caption {
  font-family: "Apple Garamond", "Garamond", serif;
  font-weight: 300;
}

/* If Apple Garamond isn't available, fall back to lighter Garamond look */
.page-hero.weddings .page-copy h1 {
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Weddings approach and gallery */
.approach {
  width: min(100%, 1120px);
  margin: 40px auto 0;
  text-align: center;
}
.approach-inner small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.approach-inner p {
  margin: 0 auto;
  max-width: 860px;
  color: rgba(245,245,241,0.88);
  font-size: 1.05rem;
  line-height: 1.6;
}

.gallery-grid {
  width: min(100%, 1120px);
  margin: 8px auto 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 36px;
  background: transparent;
  padding: 28px;
  border-radius: 4px;
}
.gallery-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gallery-card .thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

/* Subtle hover expand for gallery thumbnails */
.gallery-card {
  overflow: hidden;
}
.gallery-card .thumb {
  transition: transform 260ms cubic-bezier(.2,.9,.2,1);
  transform-origin: center;
  will-change: transform;
}
.gallery-card:hover .thumb {
  transform: scale(1.035);
}

/* Apply same subtle hover-expand to project frames (Filmmaking etc.) */
.project-link {
  display: block;
  overflow: hidden;
}
.project .frame {
  transition: transform 260ms cubic-bezier(.2,.9,.2,1);
  transform-origin: center;
  will-change: transform;
}
.project-link:hover .frame,
.project .frame:hover {
  transform: scale(1.035);
}
.gallery-card .caption {
  margin-top: 10px;
  text-align: center;
  color: var(--paper);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-copy {
  max-width: 970px;
}

.page-copy small {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  text-transform: uppercase;
}

.page-copy h1 {
  margin: 0;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(4rem, 9vw, 11rem);
  font-weight: 400;
  line-height: 0.84;
}

.page-copy p {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(245, 245, 241, 0.72);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.5;
}

.detail-grid {
  position: relative;
  width: min(100%, 1300px);
  margin: 0 auto;
}

.side-label {
  position: absolute;
  left: -56px;
  top: 28px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.86rem;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  width: min(100%, 1300px);
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

.project-grid article:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.project-grid article:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.project-grid article:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.project {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px;
  min-height: 440px;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 4px;
  overflow: hidden;
}

.work-kicker {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: rgba(245, 245, 241, 0.88);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.project .frame {
  aspect-ratio: 16 / 9;
  width: 92%;
  max-width: 720px;
  margin: 0 auto;
}

.project p {
  margin: 0;
  color: rgba(245, 245, 241, 0.64);
  line-height: 1.38;
}

/* Filmmaking project titles - Courier New mixed case */
.project .work-kicker {
  font-family: "Courier New", Courier, monospace;
  text-transform: none;
  font-size: 0.95rem;
}

/* Filmmaking page styling */
.page-hero.filmmaking .page-copy p {
  font-family: "Courier New", Courier, monospace;
  text-transform: none;
}

.page-hero.filmmaking ~ .section.detail-grid .project p {
  font-family: "Courier New", Courier, monospace;
  text-transform: none;
}

.statement {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.statement h2 {
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
}

.statement p {
  margin: 28px 0 0;
  color: rgba(245, 245, 241, 0.72);
  font-size: clamp(1.02rem, 1.55vw, 1.35rem);
  line-height: 1.58;
}

.contact-band {
  padding-top: 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.contact-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 7.5rem);
  font-weight: 400;
}

.contact-inner a {
  border: 1px solid var(--line);
  padding: 12px 16px;
  text-transform: uppercase;
  color: rgba(245, 245, 241, 0.86);
}

@media (max-width: 1050px) {
  .work-wall,
  .category-strip,
  .project-grid,
  .statement,
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .side-label {
    writing-mode: horizontal-tb;
    grid-column: 1 / -1;
  }
}

/* Sports Page Styling - Vertical Staggered Scroll */
.sports-scroll-section {
  background: var(--bg);
  padding: 80px clamp(20px, 3.4vw, 70px);
}

.sports-stagger-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.sports-item {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
}

.sports-item-1 {
  justify-content: center;
}

.sports-item-2 {
  justify-content: center;
  margin-top: 40px;
  gap: 2px;
}

.sports-item-3 {
  justify-content: center;
  margin-top: 40px;
}

.sports-photo {
  width: clamp(280px, 35vw, 420px);
  aspect-ratio: 9/16;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.sports-photo:hover {
  transform: scale(1.04);
}

.sports-caption {
  flex: 1;
  max-width: 320px;
}

.sports-caption h3 {
  margin: 0 0 12px 0;
  font-family: "Relationship of Melodrama", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--paper);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sports-caption p {
  display: none;
}

/* Sports page title and copy styling */
.page-hero.sports .page-copy h1 {
  font-family: 'Perandory', Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Responsive Sports */
@media (max-width: 1050px) {
  .sports-stagger-container {
    gap: 60px;
  }

  .sports-item {
    gap: 24px;
  }

  .sports-photo {
    width: clamp(240px, 45vw, 380px);
  }
}

@media (max-width: 720px) {
  .sports-stagger-container {
    gap: 50px;
  }

  .sports-item {
    flex-direction: column;
    justify-content: center !important;
    gap: 16px;
  }

  .sports-photo {
    width: 100%;
    max-width: 100%;
  }

  .sports-caption {
    max-width: 100%;
    text-align: center;
  }
}

/* =========================
   MUSIC PAGE: layout + font
   ========================= */

/* Source Serif 4 for Music page title/headings/captions */
.page-hero.music .page-copy h1,
.page-hero.music .page-copy p,
.music-grid .work-kicker,
.music-caption,
.music-episode-copy p,
.music-episode-copy .work-kicker span {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
}

/* Responsive, template-like stagger: media + copy alternating rows */
.music-stagger-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.music-episode {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  align-items: center;
  gap: clamp(16px, 3.2vw, 34px);
  border-top: 1px solid var(--soft-line);
  padding-top: 22px;
}

.music-episode:first-child {
  border-top: none;
  padding-top: 0;
}

/* Alternate sides for the media */
.music-episode:nth-child(odd) {
  grid-template-columns: 1.02fr 1fr;
}

.music-episode-media {
  display: block;
  overflow: hidden;
}

.music-episode-media .frame {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 260ms cubic-bezier(.2,.9,.2,1);
}

/* Subtle hover polish (only while hovering the photo/media itself) */
.music-episode-media .frame {
  transition: transform 260ms cubic-bezier(.2,.9,.2,1);
}

.music-episode-media:hover .frame {
  transform: scale(1.02);
}

.music-episode-copy {
  padding-bottom: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.music-episode-copy .work-kicker {
  justify-content: center;
}

.music-episode-copy p {
  margin: 14px 0 0;
  color: rgba(245, 245, 241, 0.72);
  font-size: clamp(1.02rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

/* Keep existing work-kicker styling, but tune for music template */
.music-grid .work-kicker {
  margin: 0;
  color: rgba(245, 245, 241, 0.88);
  text-transform: uppercase;
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .music-episode {
    grid-template-columns: 1fr;
  }

  .music-episode:nth-child(odd) {
    grid-template-columns: 1fr;
  }
}
