@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --text-dim: #888888;
  --accent: #cc2222;
  --accent-hover: #a30000;
  --border: #1e1e1e;
  --card-bg: #0e0e0e;
  --nav-height: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.15;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   LOGO — Option C: boxed italic-serif F + bold sans ORSHADOWED
   ============================================================ */

.logo { display: inline-flex; align-items: center; }

.logo-box {
  border: 1.5px solid rgba(255,255,255,0.8);
  padding: 5px 10px 4px;
  display: inline-block;
  line-height: 1;
}

.logo-name {
  display: flex;
  align-items: baseline;
}

.logo-f {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}

.logo-rest {
  font-family: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
}

.logo-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 7.5px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-links a.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
}

.nav-links a.nav-cta:hover { background: var(--accent-hover); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border);
  padding: 28px 32px 32px;
  z-index: 999;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nav-mobile a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   LAYOUT
   ============================================================ */

.page-wrap { padding-top: var(--nav-height); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section      { padding: 80px 0; }
.section-sm   { padding: 48px 0; }

.section-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.04); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
.btn-ghost:hover { color: #fff; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */

.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-copy {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-logo-large { margin-bottom: 18px; }
.hero-logo-large .logo-box { padding: 16px 32px 14px; }
.hero-logo-large .logo-f { font-size: 72px; }
.hero-logo-large .logo-rest { font-size: 38px; letter-spacing: 0.12em; }
.hero-logo-large .logo-sub { font-size: 15px; letter-spacing: 0.4em; }

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */

.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.page-hero .label {
  background: #cc2222;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  margin-bottom: 16px;
  color: #ffffff;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.75;
}

/* ============================================================
   CREDIBILITY STRIP — scrolling marquee
   ============================================================ */

.credibility-strip {
  overflow: hidden;
  padding: 10px 0;
  background: #cc2222;
}

.credibility-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.credibility-strip:hover .credibility-track {
  animation-play-state: paused;
}

.credibility-item {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.credibility-sep {
  color: rgba(255,255,255,0.6);
  padding: 0 16px;
  font-size: 0.55rem;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   POSTER REEL — scrolling marquee
   ============================================================ */

.poster-reel {
  overflow: hidden;
  width: 100%;
}

.poster-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reel-scroll 60s linear infinite;
}

.poster-reel:hover .poster-track {
  animation-play-state: paused;
}

.poster-reel-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.poster-reel-img {
  height: 220px;
  width: auto;
  display: block;
  border: 1px solid var(--border);
  transition: opacity 0.2s;
}

.poster-reel-link:hover .poster-reel-img {
  opacity: 0.75;
}

@keyframes reel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   TWO-ARM SPLIT
   ============================================================ */

.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.split-panel {
  padding: 52px 44px;
  border: 1px solid var(--border);
  background: var(--bg);
}

/* ============================================================
   PROJECT CARDS — grid
   ============================================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 20px;
}

/* Centered flex grid — orphan items centered on last row */
.projects-grid-centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.projects-grid-centered > * {
  flex: 0 0 calc(25% - 15px);
}
@media (max-width: 768px) {
  .projects-grid-centered > * {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Casting credits — 4 cards in a single centered row */
.projects-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .projects-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}

/* 5-card casting grid — 3+2 centered using flex */
.projects-grid-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.projects-grid-5 > * {
  flex: 0 0 calc(33.333% - 14px);
}
@media (max-width: 768px) {
  .projects-grid-5 > * { flex: 0 0 calc(50% - 10px); }
}

/* 6-card grid — 3 columns, clean 3+3 */
.projects-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .projects-grid-6 { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .projects-grid-6 .project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    margin: 0 auto;
  }
}

/* Homepage produced work — 3+2 centered, same approach as awards-grid-5 */
.projects-grid-home {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.projects-grid-home > :nth-child(1) { grid-column: 1 / 3; }
.projects-grid-home > :nth-child(2) { grid-column: 3 / 5; }
.projects-grid-home > :nth-child(3) { grid-column: 5 / 7; }
.projects-grid-home > :nth-child(4) { grid-column: 2 / 4; }
.projects-grid-home > :nth-child(5) { grid-column: 4 / 6; }

@media (max-width: 768px) {
  .projects-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid-home > :nth-child(n) { grid-column: auto; }
  .projects-grid-home .project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

.project-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.project-card:hover {
  border-color: #333;
  transform: translateY(-3px);
}

.poster-wrap {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #0c0c0c;
  position: relative;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}

.project-card:hover .poster-wrap img { transform: scale(1.04); }

.poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-info { padding: 14px 15px 16px; }

.project-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.project-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.project-role {
  font-size: 0.67rem;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 5px;
}

.project-status {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  margin-top: 8px;
  background: #2a2a2a;
  color: var(--text-muted);
  border: 1px solid #3a3a3a;
}

.project-status.released {
  background: #2a2a2a;
  color: var(--text-muted);
  border-color: #3a3a3a;
}

/* ============================================================
   AWARDS
   ============================================================ */

.awards-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* 3+2 centered layout for 5-badge rows */
.awards-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.awards-grid-5 > :nth-child(1) { grid-column: 1 / 3; }
.awards-grid-5 > :nth-child(2) { grid-column: 3 / 5; }
.awards-grid-5 > :nth-child(3) { grid-column: 5 / 7; }
.awards-grid-5 > :nth-child(4) { grid-column: 2 / 4; }
.awards-grid-5 > :nth-child(5) { grid-column: 4 / 6; }

@media (max-width: 768px) {
  .awards-grid-5 {
    grid-template-columns: 1fr 1fr;
  }
  .awards-grid-5 > :nth-child(n) { grid-column: auto; }
}

/* 6-award grid — 3 columns, 2 full rows, no centering tricks needed */
.awards-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .awards-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.award-badge {
  border: 1px solid rgba(139,0,0,0.35);
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
}

.award-badge .award-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cc2222;
}

.award-badge .award-fest {
  font-size: 0.63rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   FILM ENTRY — detailed list (films.html)
   ============================================================ */

.film-entries { display: flex; flex-direction: column; }

.film-entry {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 44px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.film-entry:first-child { padding-top: 0; }
.film-entry:last-child { border-bottom: none; }

.film-poster {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
  align-self: start;
  border: 1px solid var(--border);
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.film-details { display: flex; flex-direction: column; gap: 0; }

.film-type {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.film-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom: 18px;
}

.film-logline {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.film-credits {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}

.film-credit-item { font-size: 0.82rem; }

.film-credit-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.63rem;
  display: block;
  margin-bottom: 2px;
}

.film-credit-value { color: rgba(255,255,255,0.85); font-weight: 500; }

.film-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.film-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}

.film-link:hover { color: #fff; border-color: #3a3a3a; }

.trailer-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--border);
  margin-top: 8px;
}

.trailer-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   CASTING FORM
   ============================================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  background: #111;
  border: 1px solid var(--border);
  color: #fff;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(139,0,0,0.5); }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option { background: #111; color: #fff; }

.form-textarea { resize: vertical; min-height: 110px; }

.form-file-label {
  background: #111;
  border: 1px dashed #2a2a2a;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
  display: block;
}

.form-file-label:hover { border-color: #444; }

.form-file-label span {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}

.form-file-label small {
  font-size: 0.65rem;
  color: var(--text-dim);
}

input[type="file"] { display: none; }

.file-name {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 4px;
  min-height: 1em;
}

.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.form-notice {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 480px;
}

.form-success {
  display: none;
  border: 1px solid rgba(139,0,0,0.3);
  background: rgba(139,0,0,0.06);
  padding: 32px;
  text-align: center;
  margin-top: 24px;
}

.form-success.visible { display: block; }

.form-success h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================================
   ABOUT PAGE — TEAM
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.headshot-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.headshot-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.member-name {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 4px;
}

.member-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  display: block;
}

.member-bio {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.member-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-block h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.contact-block p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

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

.footer {
  border-top: 1px solid var(--border);
  padding: 52px 0 36px;
  margin-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.footer-links a {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .film-entry { grid-template-columns: 200px 1fr; gap: 32px; }
  .team-grid { gap: 48px; }
  .split-panel { padding: 40px 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 64px 0 52px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  .hero-logo-large .logo-f { font-size: 48px; }
  .hero-logo-large .logo-rest { font-size: 26px; }

  .film-entry { grid-template-columns: 1fr; gap: 28px; }
  .film-poster { max-width: 280px; margin: 0 auto; }
  .film-details { align-items: center; text-align: center; }
  .film-credits { justify-content: center; }
  .film-links { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .film-links .btn-outline { width: 100%; text-align: center; }

  /* A-List Casting: S1 + S2 side by side, IMDb full-width below */
  #a-list-casting .film-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  #a-list-casting .film-links .btn-outline {
    grid-column: 1 / -1;
    width: auto;
    text-align: center;
  }

  .awards-row { flex-wrap: wrap; gap: 8px; }

  /* Awards 2-column layout on mobile within film entries */
  .film-details .awards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }
  .film-details .awards-row .award-badge {
    flex: 0 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
  }

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

  .split-two { grid-template-columns: 1fr; }
  .split-panel { padding: 36px 24px; }

  /* about.html — team section */
  .team-grid { grid-template-columns: 1fr; gap: 52px; }
  .headshot-wrap { max-width: 280px; margin: 0 auto; }
  .member-name { text-align: center; }
  .member-title { text-align: center; }
  .member-bio { text-align: center; }
  .member-links { justify-content: center; }

  /* about.html — company story section */
  .company-story-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .company-story-grid > div { text-align: center; }
  .company-story-grid .awards-row { justify-content: center; }
  .company-story-grid .award-badge { flex-direction: column !important; align-items: center !important; text-align: center; gap: 4px !important; }

  /* Global section headings */
  .section-sub { text-align: center; display: block; }
  .section-title { text-align: center; }
  .section-lead { text-align: center; }

  /* films.html — partner CTA */
  .partner-cta { text-align: center; max-width: 100% !important; }

  /* casting.html — who we are */
  .casting-statement-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .casting-statement-grid > div { text-align: center; }

  /* casting.html — submit section */
  .form-submit-row { justify-content: center; }

  /* contact.html — industry inquiries */
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-block > h3 { text-align: center; }
  .contact-block > p { text-align: center; }
  .contact-block .contact-form .btn { display: block; width: 100%; text-align: center; }

  /* index.html — produced work header */
  .produced-work-header { flex-direction: column !important; justify-content: center !important; align-items: center !important; text-align: center; }

  /* index.html — split panels */
  .split-panel { text-align: center; }
  .split-panel .btn { display: inline-block; }

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

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { text-align: center; align-items: center; }
  .footer-brand p { text-align: center; }
  .footer-links { text-align: center; justify-content: center; flex-direction: row; flex-wrap: wrap; gap: 12px 20px; }
  .footer-bottom { text-align: center; flex-direction: column; gap: 12px; align-items: center; }
  .footer-social { justify-content: center; }

  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .film-credits { gap: 16px; }
}

@media (max-width: 480px) {
  .film-poster { max-width: 180px; margin: 0 auto; }
  .trailer-wrap { max-width: 100%; }
  .film-credits { flex-direction: column; gap: 12px; }
}
