/* ============================================
   CHAF Production - Styles
   Modern animations with vanilla CSS/JS + GSAP
   ============================================ */

:root {
  --black: #0b0b0b;
  --ink: #121212;
  --white: #f8f8f6;
  --gray: #a5a59f;
  --gold: #E5B94E;  /* Updated: Brighter cinema gold */
  --gold-rgb: 229, 185, 78;  /* RGB values for rgba() usage */
  --line: #30302e;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  
  /* Typography scale - increased for better readability */
  --text-xs: 0.82rem;    /* 14.76px - was 0.7rem */
  --text-sm: 0.88rem;    /* 15.84px - was 0.75rem */
  --text-base: 1rem;     /* 18px base */
  --text-md: 1.05rem;    /* 18.9px - was 0.9rem */
  --text-lg: 1.1rem;     /* 19.8px - was 0.95rem */
  
  /* Animation variables */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.6s;
}

* { box-sizing: border-box; }

html { 
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;  /* Increased from 16px */
  line-height: 1.55;  /* Slightly increased for better readability */
  overflow-x: hidden;
}

body.locked { overflow: hidden; }

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

/* Skip Link */
.skip {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: #fff;
  color: #000;
  padding: .75rem;
}
.skip:focus { top: 1rem; }

/* ============================================
   LOADER
   ============================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-content: center;
  gap: 1rem;
  background: #090909;
  transition: opacity .6s var(--ease-smooth), visibility .6s;
}

.splash-logo {
  width: clamp(160px, 24vw, 300px);
  height: auto;
  object-fit: contain;
}

.loader i {
  height: 2px;
  width: clamp(120px, 18vw, 220px);
  margin: 0 auto;
  background: var(--gold);
  animation: load 1.1s var(--ease-out);
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

@keyframes load {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ============================================
   NAVBAR - With scroll effects
   ============================================ */

.nav {
  height: 92px;  /* Increased from 82px */
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(#080808bb, transparent);
  transition: 
    background var(--duration-normal) var(--ease-smooth),
    height var(--duration-normal) var(--ease-smooth),
    transform var(--duration-normal) var(--ease-smooth),
    backdrop-filter var(--duration-normal) var(--ease-smooth);
}

/* Navbar scrolled state */
.nav.scrolled {
  height: 76px;  /* Increased from 70px */
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Navbar hide on scroll down */
.nav.nav-hidden {
  transform: translateY(-100%);
}

.brand {
  font-weight: 600;
  letter-spacing: -.04em;
  font-size: 1.35rem;  /* Increased */
}

.brand span {
  display: block;
  font-size: .5rem;  /* Increased from .43rem */
  letter-spacing: .28em;
  color: var(--gold);
}

/* Logo - Increased sizes */
.logo-link img {
  display: block;
  width: auto;
  height: 75px;  /* Increased from 58px */
  object-fit: contain;
  transition: height var(--duration-normal) var(--ease-smooth);
}

.nav.scrolled .logo-link img {
  height: 60px;  /* Increased from 48px */
}

nav {
  display: flex;
  gap: 2.25rem;  /* Slightly increased */
}

nav a {
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--duration-fast) var(--ease-smooth);
}

/* Nav link underline animation */
nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-normal) var(--ease-out);
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

nav a.active {
  color: var(--gold);
}

/* Pill button */
.pill {
  font-size: 1rem;
  border: 1px solid #ffffff44;
  border-radius: 99px;
  padding: .7rem 1.15rem;  /* Slightly increased */
  transition: 
    background var(--duration-fast) var(--ease-smooth),
    border-color var(--duration-fast) var(--ease-smooth),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-smooth);
}

.pill:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(248, 248, 246, 0.15);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  height: 100svh;
  min-height: 720px;  /* Increased from 680px */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9rem var(--pad) 4rem;  /* Adjusted for larger navbar */
  overflow: hidden;
}

.hero > img,
.shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shade {
  background: linear-gradient(180deg, #0008 0%, #05050555 40%, #050505ee 100%);
}

.hero > *:not(img):not(.shade) {
  position: relative;
}

/* Hero text animation support */
.hero-title .word {
  display: inline-block;
  will-change: transform, opacity;
}

.eyebrow,
.section-no {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: var(--text-xs);  /* Increased from .7rem */
  color: var(--gold);
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-weight: 400;
  line-height: .9;  /* Slightly increased */
  letter-spacing: -.055em;
}

h1 {
  font-size: clamp(3.8rem, 9vw, 10rem);  /* Increased from clamp(3.3rem, 8.5vw, 9rem) */
  max-width: 1400px;
  margin: 1rem 0 2.25rem;  /* Slightly increased */
}

h1 em, h2 em {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--gold);
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff44;
  padding-top: 1.15rem;  /* Increased */
  font-size: var(--text-md);  /* Increased from .85rem */
}

/* Hero CTA button */
.hero-cta {
  position: relative;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.hero-cta:hover {
  color: var(--gold);
}

/* ============================================
   SECTIONS - Base styles
   ============================================ */

.manifesto,
.work,
.services,
.contact {
  padding: clamp(7rem, 13vw, 12rem) var(--pad);  /* Slightly increased */
}

.manifesto h2,
.section-head h2,
.services h2,
.contact h2 {
  font-size: clamp(3.8rem, 7.5vw, 8rem);  /* Increased */
}

.manifesto > div {
  margin-left: auto;
  max-width: 600px;  /* Increased from 550px */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;  /* Increased */
  color: var(--gray);
  font-size: var(--text-lg);  /* Explicit size */
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

/* ============================================
   REVEAL ANIMATIONS (CSS Fallback)
   ============================================ */

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

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

/* Stagger delays for CSS fallback */
.stagger-delay-1 { transition-delay: 0s; }
.stagger-delay-2 { transition-delay: 0.1s; }
.stagger-delay-3 { transition-delay: 0.2s; }
.stagger-delay-4 { transition-delay: 0.3s; }

/* When GSAP handles animation, reset CSS transforms */
.gsap-animated {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================
   FILTERS (Legacy)
   ============================================ */

.filters {
  display: flex;
  gap: .6rem;  /* Slightly increased */
  overflow: auto;
  margin: 2.25rem 0;  /* Increased */
}

.filters button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gray);
  padding: .8rem 1.15rem;  /* Increased */
  border-radius: 99px;
  white-space: nowrap;
  cursor: pointer;
  font-size: var(--text-sm);  /* Explicit size */
  transition: 
    background var(--duration-fast) var(--ease-smooth),
    color var(--duration-fast) var(--ease-smooth),
    transform var(--duration-fast) var(--ease-out);
}

.filters button:hover {
  transform: scale(1.03);
}

.filters button.active,
.filters button:hover {
  background: var(--white);
  color: var(--black);
}

/* ============================================
   PROJECT GRID (Legacy)
   ============================================ */

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 1.5rem;  /* Increased */
}

.project.wide { grid-column: 1/-1; }

.project button {
  width: 100%;
  height: clamp(360px, 52vw, 800px);  /* Increased */
  padding: 0;
  border: 0;
  background: #181818;
  position: relative;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
}

.project:not(.wide) button {
  height: clamp(380px, 48vw, 680px);  /* Increased */
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
  filter: saturate(.75);
}

.project:hover img {
  transform: scale(1.025);
}

.play {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  background: var(--white);
  color: #111;
  border-radius: 99px;
  padding: .9rem 1.15rem;  /* Increased */
  font-size: var(--text-sm);  /* Explicit size */
  transition: 
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-smooth);
}

.project:hover .play {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.project-copy {
  display: flex;
  justify-content: space-between;
  padding-top: 1.15rem;  /* Increased */
}

.project-copy p {
  font-size: var(--text-xs);  /* Increased from .72rem */
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray);
}

.project-copy h3 {
  font-family: 'Instrument Serif';
  font-size: 2.25rem;  /* Increased from 2rem */
  font-weight: 400;
}

/* ============================================
   THEATER SECTION - YouTube Watch Page Layout
   ============================================ */

.theater {
  padding: clamp(7rem, 13vw, 12rem) var(--pad);  /* Increased */
  background: var(--ink);
}

.theater .section-head {
  margin-bottom: 3.5rem;  /* Increased */
}

.theater-layout {
  display: grid;
  grid-template-columns: 1fr 400px;  /* Slightly wider playlist */
  gap: 2.25rem;  /* Increased */
  max-width: 1500px;  /* Increased */
  margin: 0 auto;
}

.theater-main {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;  /* Increased */
}

.theater-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
  transition: box-shadow var(--duration-normal) var(--ease-smooth);
}

.theater-player:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, .5);
}

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

.theater-info {
  padding: .6rem 0;  /* Increased */
}

.theater-category {
  font-size: var(--text-xs);  /* Increased from .72rem */
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: .6rem;  /* Increased */
}

.theater-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);  /* Increased */
  font-weight: 400;
  margin-bottom: .85rem;  /* Increased */
  line-height: 1.15;
}

.theater-description {
  color: var(--gray);
  font-size: var(--text-lg);  /* Increased from .95rem */
  line-height: 1.65;
  max-width: 750px;
}

/* Playlist sidebar */
.theater-playlist {
  background: #0f0f0f;
  border-radius: 12px;
  padding: 1.4rem;  /* Increased */
  max-height: 650px;  /* Increased */
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.theater-playlist::-webkit-scrollbar { width: 6px; }
.theater-playlist::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 3px; }
.theater-playlist::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
.theater-playlist::-webkit-scrollbar-thumb:hover { background: #444; }

.playlist-heading {
  font-size: var(--text-sm);  /* Increased from .85rem */
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray);
  margin-bottom: 1.15rem;  /* Increased */
  padding-bottom: .85rem;  /* Increased */
  border-bottom: 1px solid var(--line);
}

.playlist-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;  /* Increased */
}

/* Playlist item with hover effects */
.playlist-item {
  display: grid;
  grid-template-columns: 150px 1fr;  /* Slightly wider thumb */
  gap: 1.1rem;  /* Increased */
  padding: .75rem;  /* Increased */
  border-radius: 8px;
  cursor: pointer;
  transition: 
    background var(--duration-fast) var(--ease-smooth),
    transform var(--duration-fast) var(--ease-out);
  background: transparent;
}

.playlist-item:hover {
  background: #1a1a1a;
  transform: translateX(4px);
}

.playlist-item.active {
  background: rgba(var(--gold-rgb), .12);  /* Using CSS variable */
  border-left: 3px solid var(--gold);
}

.playlist-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
}

.playlist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7);
  transition: 
    filter var(--duration-normal) var(--ease-smooth),
    transform .5s var(--ease-out);
}

.playlist-item:hover .playlist-thumb img {
  filter: saturate(1);
  transform: scale(1.05);
}

.playlist-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .6) 100%);
}

.playlist-thumb .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-smooth);
  z-index: 2;
}

.playlist-thumb .play-icon svg {
  width: 40px;  /* Increased */
  height: 40px;
  fill: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5));
}

.playlist-item:hover .play-icon {
  opacity: 1;
}

.playlist-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .4rem;  /* Increased */
  overflow: hidden;
}

.playlist-info h5 {
  font-size: var(--text-base);  /* Increased from .9rem */
  font-weight: 500;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.playlist-info p {
  font-size: var(--text-xs);  /* Increased from .72rem */
  color: var(--gray);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================
   SOCIAL / REELS SECTION
   ============================================ */

.social {
  padding: clamp(7rem, 13vw, 12rem) var(--pad);  /* Increased */
  background: #070707;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;  /* Increased */
  margin-top: 3.5rem;  /* Increased */
}

.reel {
  display: block;
  position: relative;
  overflow: hidden;
  background: #141414;
  border-radius: 12px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.reel:hover {
  transform: translateY(-8px);
}

.reel > img {
  display: block;
  width: 100%;
  height: 52vw;
  max-height: 750px;  /* Increased */
  object-fit: cover;
  filter: saturate(.55) contrast(1.08);
  transition: 
    transform .7s var(--ease-out),
    filter var(--duration-normal) var(--ease-smooth);
}

.reel:hover > img {
  transform: scale(1.025);
  filter: saturate(.75) contrast(1.05);
}

.reel-play {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  background: #f8f8f6;
  color: #111;
  border-radius: 99px;
  padding: .75rem .95rem;  /* Increased */
  font-size: var(--text-xs);  /* Increased */
  transition: 
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-smooth);
}

.reel:hover .reel-play {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.reel div {
  position: absolute;
  inset: auto 1.4rem 1.4rem;  /* Increased */
}

.reel div p {
  font-size: var(--text-xs);  /* Increased from .7rem */
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.reel div h3 {
  font-family: 'Instrument Serif';
  font-size: 2rem;  /* Increased from 1.8rem */
  font-weight: 400;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background: var(--ink);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 9vw;  /* Increased */
}

.service-list article {
  display: grid;
  grid-template-columns: 2.25rem 1fr 1.2fr 1.25rem;  /* Increased */
  gap: 1.15rem;  /* Increased */
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;  /* Increased */
  transition: 
    background var(--duration-fast) var(--ease-smooth),
    padding-left var(--duration-fast) var(--ease-out);
}

.service-list article:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 1.15rem;
}

.service-list span,
.service-list p {
  color: var(--gray);
  font-size: var(--text-sm);  /* Increased from .78rem */
}

.service-list h3 {
  font-size: 1.2rem;  /* Increased from 1.1rem */
  transition: color var(--duration-fast) var(--ease-smooth);
}

.service-list article:hover h3 {
  color: var(--gold);
}

.service-list b {
  transition: transform var(--duration-fast) var(--ease-out);
}

.service-list article:hover b {
  transform: translate(4px, -4px);
}

/* ============================================
   NUMBERS SECTION
   ============================================ */

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 var(--pad);
  border-block: 1px solid var(--line);
}

.numbers article {
  padding: 4.5rem 1.15rem;  /* Increased */
  border-right: 1px solid var(--line);
  display: grid;
}

.numbers strong {
  font-family: 'Instrument Serif';
  font-size: clamp(3.5rem, 6.5vw, 7rem);  /* Increased */
  font-weight: 400;
  color: var(--gold);
}

.numbers span {
  color: var(--gray);
  font-size: var(--text-md);  /* Explicit size */
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  text-align: center;
}

.contact-link {
  display: flex;
  max-width: 800px;  /* Increased */
  margin: 4.5rem auto 0;  /* Increased */
  border-bottom: 1px solid var(--gray);
  padding: 1.15rem 0;  /* Increased */
  justify-content: space-between;
  font-size: clamp(1.35rem, 3.2vw, 2.25rem);  /* Increased */
  transition: 
    border-color var(--duration-fast) var(--ease-smooth),
    color var(--duration-fast) var(--ease-smooth);
}

.contact-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-link span {
  transition: transform var(--duration-fast) var(--ease-out);
}

.contact-link:hover span {
  transform: translate(4px, -4px);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 2.25rem var(--pad);  /* Increased */
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--gray);
  font-size: var(--text-sm);  /* Increased from .75rem */
}

.socials {
  display: flex;
  gap: 1.15rem;  /* Increased */
  text-transform: capitalize;
}

.socials a {
  transition: color var(--duration-fast) var(--ease-smooth);
}

.socials a:hover {
  color: var(--gold);
}

/* ============================================
   MODAL / PLAYER
   ============================================ */

.player {
  width: min(1200px, 94vw);  /* Increased */
  max-height: 92vh;
  padding: 0;
  background: #111;
  color: #fff;
  border: 1px solid var(--line);
  animation: modalIn 0.4s var(--ease-out);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.player::backdrop {
  background: #000d;
  backdrop-filter: blur(7px);
  animation: backdropIn 0.3s var(--ease-smooth);
}

@keyframes backdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.close {
  position: absolute;
  right: .7rem;
  top: .5rem;
  z-index: 2;
  border: 0;
  background: #fff;
  color: #000;
  width: 2.75rem;  /* Increased */
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.65rem;  /* Increased */
  cursor: pointer;
  transition: 
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-smooth);
}

.close:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.video-shell {
  aspect-ratio: 16/9;
  background: #050505;
}

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

.player-copy {
  padding: 1.75rem 2.25rem 2.25rem;  /* Increased */
}

.player-copy h2 {
  font-size: 3.5rem;  /* Increased from 3rem */
  margin: .6rem 0;
}

.player-description {
  color: var(--gray);
  max-width: 680px;
  font-size: var(--text-lg);  /* Explicit size */
}

.source-link {
  color: var(--gold);
  font-size: var(--text-md);  /* Explicit size */
  transition: opacity var(--duration-fast);
}

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

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */

@media (max-width: 900px) {
  .theater-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  
  .theater-playlist {
    max-height: none;
    padding: 1.15rem;
  }
  
  .playlist-list {
    flex-direction: row;
    overflow-x: auto;
    gap: 1.15rem;
    padding-bottom: .6rem;
    scroll-snap-type: x mandatory;
  }
  
  .playlist-item {
    min-width: 300px;  /* Increased */
    scroll-snap-align: start;
    grid-template-columns: 130px 1fr;
  }
  
  .playlist-heading {
    margin-bottom: .85rem;
  }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */

@media (max-width: 760px) {
  :root {
    --text-xs: 0.78rem;
    --text-sm: 0.82rem;
  }
  
  body {
    font-size: 17px;  /* Slightly reduced for mobile */
  }
  
  .nav {
    height: 80px;  /* Adjusted for mobile */
  }
  
  .nav.scrolled {
    height: 68px;
  }
  
  .nav nav { display: none; }
  
  .logo-link img { height: 58px; }  /* Increased from 45px */
  .nav.scrolled .logo-link img { height: 50px; }  /* Increased from 40px */
  
  .pill { 
    padding: .6rem .85rem;
    font-size: 0.9rem;
  }
  
  .hero { 
    min-height: 650px;  /* Increased */
    padding: 8rem var(--pad) 3.5rem;
  }
  
  h1 {
    font-size: clamp(2.8rem, 11vw, 4.5rem);  /* Adjusted for mobile */
  }
  
  .hero-foot { align-items: end; }
  .hero-foot p { max-width: 68%; }
  
  .manifesto > div,
  .service-layout {
    grid-template-columns: 1fr;
    margin: 3.5rem 0 0;
  }
  
  .section-head { display: block; }
  
  .manifesto h2,
  .section-head h2,
  .services h2,
  .contact h2 {
    font-size: clamp(2.5rem, 10vw, 4rem);  /* Adjusted for mobile */
  }
  
  .theater { padding: clamp(4.5rem, 9vw, 7rem) var(--pad); }
  .theater-layout { gap: 1.75rem; }
  .theater-player { border-radius: 8px; }
  .theater-info { padding: .35rem 0; }
  .theater-title { font-size: 1.65rem; }
  .theater-description { font-size: var(--text-md); }
  .theater-playlist { border-radius: 8px; padding: .85rem; }
  .playlist-item { 
    min-width: 280px; 
    padding: .6rem; 
    grid-template-columns: 110px 1fr; 
    gap: .85rem; 
  }
  .playlist-thumb { border-radius: 4px; }
  .playlist-info h5 { font-size: var(--text-sm); }
  
  .reel-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  
  .reel {
    min-width: 84vw;  /* Slightly increased */
    scroll-snap-align: start;
  }
  
  .reel > img {
    height: 125vw;  /* Increased */
    max-height: 720px;
  }
  
  .service-list article {
    grid-template-columns: 2rem 1fr 1.15rem;
    padding: 1.5rem 0;
  }
  
  .service-list p { display: none; }
  
  .numbers {
    grid-template-columns: 1fr 1fr;
  }
  
  .numbers article:nth-child(2) { border-right: 0; }
  
  .numbers article {
    padding: 2.25rem .6rem;
    border-bottom: 1px solid var(--line);
  }
  
  .numbers strong {
    font-size: clamp(2.5rem, 12vw, 4rem);  /* Adjusted */
  }
  
  footer {
    align-items: start;
    gap: 2.25rem;
    flex-wrap: wrap;
  }
  
  .socials { width: 100%; }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal-item,
  .reveal-section > * {
    opacity: 1;
    transform: none;
  }
}
