/* ============================================================
   D-Lites Studio — style.css
   Dark cinematic theme | Gold accent #c9a96e
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #c9a96e;
  --gold-dim:   #a07840;
  --gold-pale:  #e8d5b0;
  --black:      #080808;
  --near-black: #0d0d0d;
  --charcoal:   #161616;
  --mid:        #2a2a2a;
  --muted:      #555555;
  --light:      #aaaaaa;
  --white:      #f5f3ef;
  --serif:      'Georgia', 'Times New Roman', serif;
  --sans:       'Arial', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
.label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.label-muted {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

h1, h2, h3, h4 { font-weight: 400; line-height: 1.15; }

/* --- Section Divider --- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 40px 60px 0;
}
.section-divider .label { white-space: nowrap; }
.divider-rule { flex: 1; height: .5px; background: #1f1f1f; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  border-bottom: .5px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, .95);
  backdrop-filter: blur(8px);
}

.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.logo-main {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--white);
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .5em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--light);
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-yt {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  border: .5px solid var(--gold-dim);
  padding: 7px 14px;
}
.nav-links .nav-yt:hover { background: rgba(201,169,110,.08); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 64px;
  overflow: hidden;
  border-bottom: .5px solid #1a1a1a;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-video-wrap .hero-fallback {
  width: 100%;
  height: 100%;
  background: var(--near-black);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.95) 0%, rgba(8,8,8,.4) 60%, rgba(8,8,8,.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow-line { width: 32px; height: .5px; background: var(--gold); }

.hero-h1 {
  font-size: 64px;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero-h1 em { color: var(--gold); font-style: italic; }

.hero-tagline {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--light);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; align-items: center; }

.hero-scroll {
  position: absolute;
  right: 60px;
  bottom: 64px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-text {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .28em;
  color: var(--muted);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: .5px;
  height: 40px;
  background: var(--muted);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #0d0d0d;
  border: none;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold-pale); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: .5px solid #444;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--light); color: var(--white); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: .5px solid var(--gold-dim);
  padding: 9px 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(201,169,110,.08); }

/* ============================================================
   FILMS GRID
   ============================================================ */
.films-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #111;
  margin-top: 24px;
}

.film-tile {
  background: var(--near-black);
  transition: background .25s;
  cursor: pointer;
}
.film-tile:hover { background: #111; }
.film-tile:hover .film-poster-overlay { opacity: 1; }

.film-poster {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--charcoal);
}
.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
  transition: opacity .4s, transform .6s;
}
.film-tile:hover .film-poster img { opacity: .9; transform: scale(1.03); }

.film-poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
}
.film-poster-placeholder .play-ring {
  width: 48px;
  height: 48px;
  border: .5px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  transition: border-color .3s, color .3s;
}
.film-tile:hover .play-ring { border-color: var(--gold-dim); color: var(--gold); }

.film-poster-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.film-poster-overlay .play-btn {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}

.film-status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: .5px solid;
}
.badge-released  { border-color: var(--gold-dim); color: var(--gold); }
.badge-upcoming  { border-color: #2a2a2a; color: var(--muted); }
.badge-dev       { border-color: #222; color: #333; }

.film-info {
  padding: 20px 24px;
  border-top: .5px solid #161616;
}
.film-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  font-style: italic;
}
.film-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.film-type, .film-dur {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
}
.film-dot { width: 2px; height: 2px; border-radius: 50%; background: #333; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1px;
  background: #111;
  margin-top: 48px;
}

.about-left {
  background: var(--near-black);
  padding: 56px 60px;
}
.about-heading {
  font-size: 34px;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin: 16px 0 18px;
}
.about-body {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--light);
  line-height: 1.9;
  max-width: 480px;
}

.about-stats {
  background: #0d0d0d;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.stat-item {
  padding: 20px 0;
  border-bottom: .5px solid #1a1a1a;
}
.stat-item:last-child { border: none; }
.stat-num {
  font-size: 32px;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: 4px;
}

/* ============================================================
   CREDITS SECTION
   ============================================================ */
.credits-section { padding: 48px 60px; }

.credits-film-selector {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: .5px solid #1a1a1a;
}
.credit-tab {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  padding: 10px 20px;
  border-bottom: 1px solid transparent;
  transition: color .2s;
}
.credit-tab:hover { color: var(--light); }
.credit-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.credits-dept { }
.dept-name {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: .5px solid #1a1a1a;
}
.credit-person { margin-bottom: 10px; }
.person-name { font-size: 14px; color: var(--white); }
.person-role {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .05em;
  margin-top: 2px;
}

/* ============================================================
   FILM DETAIL PAGE
   ============================================================ */
.film-detail-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 48px 60px;
  overflow: hidden;
  border-bottom: .5px solid #1a1a1a;
}
.film-detail-bg {
  position: absolute;
  inset: 0;
  background: var(--near-black);
}
.film-detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
}
.film-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.98) 0%, rgba(8,8,8,.5) 100%);
}
.film-detail-content { position: relative; z-index: 2; }
.film-detail-title {
  font-size: 48px;
  font-style: italic;
  color: var(--white);
  margin: 12px 0 10px;
}
.film-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.detail-meta-item {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}
.detail-meta-sep { color: #2a2a2a; }

.film-detail-body {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 1px;
  background: #111;
}
.film-synopsis-panel { background: var(--near-black); padding: 40px 60px; }
.synopsis-text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--light);
  line-height: 1.9;
  margin-top: 14px;
}

.film-sidebar { background: #0d0d0d; padding: 32px 28px; }
.sidebar-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: .5px solid #1a1a1a; }
.sidebar-block:last-child { border: none; margin: 0; padding: 0; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--light);
  margin-top: 10px;
  transition: color .2s;
}
.sidebar-link:hover { color: var(--gold); }
.sidebar-link i { font-size: 15px; color: var(--gold); }
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: .5px solid #141414;
}
.info-row:last-child { border: none; }
.info-key { font-family: var(--sans); font-size: 10px; color: var(--muted); letter-spacing: .08em; }
.info-val { font-family: var(--sans); font-size: 11px; color: var(--white); }

/* ============================================================
   FULL CREDITS TABLE (detail page)
   ============================================================ */
.full-credits { padding: 40px 60px; border-top: .5px solid #111; }
.credits-dept-block { margin-bottom: 28px; }
.full-credits-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: .5px solid #141414;
}
.full-credits-row:last-child { border: none; }
.fc-role { font-family: var(--sans); font-size: 11px; color: var(--muted); }
.fc-name { font-size: 14px; color: var(--white); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 48px 60px;
  border-bottom: .5px solid #1a1a1a;
  background: var(--near-black);
}
.about-hero-content { position: relative; z-index: 2; }
.about-page-heading {
  font-size: 48px;
  font-style: italic;
  color: var(--white);
  margin-top: 12px;
}
.about-page-heading em { color: var(--gold); }

.about-body-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #111;
  margin-top: 0;
}
.about-col {
  background: var(--near-black);
  padding: 56px 60px;
}
.about-col p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--light);
  line-height: 1.9;
  margin-top: 14px;
}

/* ============================================================
   FILTER BAR (films page)
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  padding: 20px 60px 0;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: .5px solid #1f1f1f;
  padding: 7px 16px;
  transition: color .2s, border-color .2s;
}
.filter-btn:hover { color: var(--light); border-color: #333; }
.filter-btn.active { color: var(--gold); border-color: var(--gold-dim); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 64px 60px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 28px;
}
.contact-intro {
  font-size: 28px;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.contact-body {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--light);
  line-height: 1.9;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: #0d0d0d;
  border: .5px solid #2a2a2a;
  color: var(--white);
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold-dim); }
.form-field textarea { resize: vertical; min-height: 100px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--near-black);
  border-top: .5px solid #1a1a1a;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .28em;
  color: #2a2a2a;
  text-transform: uppercase;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 10px;
  color: #2a2a2a;
  letter-spacing: .06em;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  color: #333;
  text-transform: uppercase;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   ADMIN PANEL STYLES
   ============================================================ */
.admin-body {
  background: #0f0f0f;
  color: var(--white);
  font-family: var(--sans);
  min-height: 100vh;
}
.admin-nav {
  background: #0a0a0a;
  border-bottom: .5px solid #1f1f1f;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-logo {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .22em;
  color: var(--white);
}
.admin-logo span { color: var(--gold); }
.admin-layout { display: grid; grid-template-columns: 200px 1fr; min-height: calc(100vh - 53px); }
.admin-sidebar { background: #0a0a0a; border-right: .5px solid #1a1a1a; padding: 24px 0; }
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: .1em;
  color: #666;
  text-transform: uppercase;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.admin-nav-link:hover { color: var(--light); background: #111; }
.admin-nav-link.active { color: var(--gold); background: #111; border-left: 1px solid var(--gold); }
.admin-nav-link i { font-size: 16px; }
.admin-main { padding: 32px; }
.admin-page-title { font-size: 20px; color: var(--white); margin-bottom: 24px; font-family: var(--serif); font-style: italic; }
.admin-card {
  background: #0d0d0d;
  border: .5px solid #1f1f1f;
  padding: 24px;
  margin-bottom: 20px;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 10px;
  letter-spacing: .15em;
  color: #555;
  text-transform: uppercase;
  border-bottom: .5px solid #1f1f1f;
  font-weight: 400;
}
.admin-table td { padding: 12px 14px; border-bottom: .5px solid #141414; color: var(--light); vertical-align: middle; }
.admin-table tr:last-child td { border: none; }
.admin-table tr:hover td { background: #111; }
.admin-badge {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: .5px solid;
}
.badge-admin-released { border-color: var(--gold-dim); color: var(--gold); }
.badge-admin-dev      { border-color: #2a2a2a; color: #555; }
.admin-action-btn {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: .5px solid #2a2a2a;
  background: transparent;
  color: #666;
  margin-right: 6px;
  transition: color .2s, border-color .2s;
}
.admin-action-btn:hover { color: var(--light); border-color: #444; }
.admin-action-btn.danger:hover { color: #e57373; border-color: #e57373; }

/* Admin form */
.admin-form { display: flex; flex-direction: column; gap: 18px; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form-full { grid-column: 1 / -1; }
.admin-field { display: flex; flex-direction: column; gap: 6px; }
.admin-field label {
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
}
.admin-field input,
.admin-field select,
.admin-field textarea {
  background: #0a0a0a;
  border: .5px solid #2a2a2a;
  color: var(--white);
  padding: 9px 12px;
  font-size: 13px;
  font-family: var(--sans);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus { border-color: var(--gold-dim); }
.admin-field textarea { resize: vertical; min-height: 90px; }
.admin-field select option { background: #0d0d0d; }
.admin-form-actions {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  border-top: .5px solid #1f1f1f;
  margin-top: 4px;
}

/* Credits adder table */
.credits-adder { border: .5px solid #1f1f1f; }
.credits-adder-head {
  background: #0a0a0a;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: .5px solid #1f1f1f;
  font-size: 11px;
  letter-spacing: .1em;
  color: #666;
  text-transform: uppercase;
}
.credit-add-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: .5px solid #141414;
  align-items: center;
}
.credit-add-row:last-child { border: none; }
.credit-add-row input,
.credit-add-row select {
  background: #0a0a0a;
  border: .5px solid #222;
  color: var(--light);
  padding: 7px 10px;
  font-size: 12px;
  font-family: var(--sans);
  outline: none;
  width: 100%;
}
.credit-add-row input:focus,
.credit-add-row select:focus { border-color: var(--gold-dim); }

/* Login page */
.admin-login-wrap {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login-box {
  width: 360px;
  border: .5px solid #1f1f1f;
  background: #0d0d0d;
  padding: 40px 36px;
}
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo .logo-main { font-size: 20px; letter-spacing: .3em; }
.login-error {
  background: rgba(229,115,115,.08);
  border: .5px solid #e57373;
  color: #e57373;
  padding: 10px 14px;
  font-size: 12px;
  margin-bottom: 16px;
}

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash {
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 12px;
  margin-bottom: 16px;
  border: .5px solid;
}
.flash-success { background: rgba(201,169,110,.06); border-color: var(--gold-dim); color: var(--gold); }
.flash-error   { background: rgba(229,115,115,.06); border-color: #e57373; color: #e57373; }

/* ============================================================
   UTILITY
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); font-family: var(--sans); font-size: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-nav { padding: 16px 24px; }
  .hero { padding: 0 24px 48px; min-height: 80vh; }
  .hero-h1 { font-size: 40px; }
  .hero-scroll { display: none; }
  .section-divider { padding: 32px 24px 0; }
  .films-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .credits-grid { grid-template-columns: 1fr 1fr; }
  .film-detail-body { grid-template-columns: 1fr; }
  .about-body-section { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; gap: 16px; text-align: center; }
  .filter-bar { padding: 16px 24px 0; }
  .credits-section { padding: 32px 24px; }
  .full-credits { padding: 32px 24px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .films-grid { grid-template-columns: 1fr; }
  .credits-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .film-detail-title { font-size: 32px; }
  .nav-links { gap: 16px; }
  .credit-add-row { grid-template-columns: 1fr 1fr; }
}
