/* ─── WORK PAGE HERO ─── */
.page-hero {
  padding: 200px 64px 100px;
  position: relative;
}
.page-hero .section-label { margin-bottom: 24px; }
.page-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.page-subhead {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ─── FEATURED FILMS ─── */
.featured-films {
  padding: 0 64px 80px;
}
.featured-films .section-label { margin-bottom: 48px; }
.featured-films-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.featured-film {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  display: block;
}
.featured-film-img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: opacity 0.4s, transform 0.6s;
}
.featured-film:hover .featured-film-img {
  opacity: 1;
  transform: scale(1.03);
}
.featured-film-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(to top, rgba(10,13,16,0.95) 0%, transparent 100%);
}
.featured-film-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.featured-film-premiere {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--red);
}

/* ─── PROJECT GRID ─── */
.project-grid {
  padding: 0 64px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  overflow: hidden;
  background: #0d1014;
  text-decoration: none;
  color: inherit;
  display: block;
}
.project-card-media {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.project-card:hover .project-card-img {
  opacity: 1;
  transform: scale(1.04);
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,13,16,0.95) 0%, rgba(10,13,16,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.4s;
}
.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(10,13,16,0.98) 0%, rgba(10,13,16,0.4) 60%, rgba(10,13,16,0.05) 100%);
}
.project-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.project-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  transition: letter-spacing 0.3s;
}
.project-card:hover .project-card-title { letter-spacing: 0.06em; }
.project-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.project-card-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  transform: translate(6px,-6px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s, color 0.3s;
}
.project-card:hover .project-card-arrow {
  opacity: 1;
  transform: translate(0,0);
  border-color: var(--red);
  color: var(--white);
}

/* In Production badge */
.project-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(196,1,1,0.85);
  padding: 6px 14px;
  z-index: 2;
}

/* Placeholder gradients for projects without images */
.project-placeholder {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.project-placeholder-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
  white-space: pre;
}

.ph-cocaine {
  background: linear-gradient(160deg, #1a0a0a 0%, #0a0d10 50%, #0d0a1a 100%);
}
.ph-bbc {
  background: linear-gradient(135deg, #080d14 0%, #0a0d10 60%, #0d1408 100%);
}
.ph-samourai {
  background: linear-gradient(135deg, #0a0d10 0%, #0d0a14 100%);
}
.ph-dragstory {
  background: linear-gradient(135deg, #0d100a 0%, #0a0d10 100%);
}

/* ─── IN PRODUCTION SECTION ─── */
.in-production-label {
  padding: 0 64px;
  margin-bottom: 32px;
}
.in-production-label h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
}
.in-production-grid {
  padding: 0 64px 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ─── CASE STUDY PAGE ─── */
.case-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}
.case-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,13,16,1) 0%,
    rgba(10,13,16,0.5) 40%,
    rgba(10,13,16,0.15) 70%,
    transparent 100%
  );
}
.case-hero-content {
  position: absolute;
  bottom: 64px;
  left: 64px;
  z-index: 2;
}
.case-hero-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.case-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* Info bar */
.case-info {
  padding: 48px 64px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.case-info-item label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.case-info-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

/* Description */
.case-body {
  padding: 80px 64px;
  max-width: 800px;
}
.case-body p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 28px;
}
.case-body p:last-child { margin-bottom: 0; }

/* Video embed */
.case-video {
  padding: 0 64px 80px;
  max-width: 960px;
}
.case-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #0d1014;
}
.case-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Next project */
.case-next {
  padding: 80px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 48px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}
.case-next:hover { background: rgba(255,255,255,0.02); }
.case-next-thumb {
  width: 240px;
  height: 135px;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.case-next:hover .case-next-thumb { opacity: 1; }
.case-next-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.case-next-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: letter-spacing 0.3s;
}
.case-next:hover .case-next-title { letter-spacing: 0.06em; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .page-hero { padding: 160px 28px 64px; }
  .featured-films { padding: 0 28px 64px; }
  .featured-films-grid { grid-template-columns: 1fr 1fr; }
  .project-grid { grid-template-columns: 1fr 1fr; padding: 0 28px 80px; }
  .case-hero { height: 40vh; }
  .case-hero-content { bottom: 32px; left: 28px; }
  .case-info { grid-template-columns: 1fr 1fr; padding: 32px 28px; }
  .case-body { padding: 48px 28px; }
  .case-video { padding: 0 28px 48px; }
  .case-next { padding: 48px 28px; flex-direction: column; align-items: flex-start; }
  .case-next-thumb { width: 100%; height: auto; aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .project-grid { grid-template-columns: 1fr; }
  .case-info { grid-template-columns: 1fr; gap: 24px; }
}
