/* ============================================================
   D-Lites Studio — style.css FINAL
   All colors use CSS variables from config.php
   To change colors: edit config.php only
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-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
   ============================================================ */
h1, h2, h3, h4 { font-weight: 400; line-height: 1.15; }

.label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
}
.label-muted {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   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: 1px; background: var(--border); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 64px;
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(8px);
}
.nav-logo { display: flex; align-items: center; }
.logo-main {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--text-white);
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: .5em;
  color: var(--blue);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 8px 14px;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--text-white); }
.nav-links .nav-yt {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff !important;
  font-weight: 700;
  font-family: var(--sans);
  font-size: 11px;
  padding: 8px 16px;
  margin-left: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s;
}
.nav-links .nav-yt:hover { background: var(--red-dim); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  z-index: 3;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-fallback {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.97) 0%, rgba(8,8,8,.5) 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: 10px; margin-bottom: 18px; }
.hero-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.hero-eyebrow .label { color: var(--red); }
.hero-h1 {
  font-size: 62px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero-h1 em { color: var(--blue); font-style: italic; }
.hero-tagline {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; 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: .25em;
  color: var(--muted);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: var(--red);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold, .btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-gold:hover, .btn-primary:hover { background: var(--red-dim); color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 11px 28px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: border-color .2s, background .2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline:hover { background: rgba(27,139,196,.1); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 9px 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(27,139,196,.08); }

/* ============================================================
   FILMS GRID
   ============================================================ */
.films-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 20px;
}
.film-tile {
  background: var(--card-bg);
  transition: background .2s;
  display: block;
  text-decoration: none;
  position: relative;
}
.film-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
  z-index: 3;
}
.film-tile:hover::before { transform: scaleX(1); }
.film-tile:hover { background: #1e1e1e; }

.film-poster {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #1a1a1a;
}
.film-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: opacity .4s, transform .6s;
}
.film-tile:hover .film-poster img { opacity: 1; transform: scale(1.03); }

.film-poster-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #181818, #222);
}
.film-poster-placeholder .play-ring {
  width: 54px; height: 54px;
  border: 1px solid rgba(27,139,196,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(27,139,196,.4);
  font-size: 20px;
  transition: border-color .3s, color .3s;
}
.film-tile:hover .play-ring { border-color: var(--blue); color: var(--blue); }

.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-tile:hover .film-poster-overlay { opacity: 1; }
.film-poster-overlay .play-btn {
  width: 58px; height: 58px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 22px;
}

.film-status-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--sans);
  font-size: 8px; letter-spacing: .16em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid;
}
.badge-released { border-color: var(--red); color: var(--red); background: rgba(232,25,44,.1); }
.badge-upcoming { border-color: #333; color: #555; }

.film-info { padding: 18px 20px; border-top: 1px solid var(--border-sub); background: var(--card-bg); }
.film-title { font-size: 15px; font-style: italic; color: var(--text-white); margin-bottom: 6px; }
.film-meta-row { display: flex; align-items: center; gap: 8px; }
.film-type, .film-dur { font-family: var(--sans); font-size: 10px; letter-spacing: .1em; color: var(--text-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: var(--border);
  margin-top: 40px;
  border: 1px solid var(--border);
}
.about-left {
  background: #141414;
  padding: 48px 60px;
  position: relative;
  overflow: hidden;
}
.about-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), var(--blue), transparent);
}
.about-heading { font-size: 32px; font-style: italic; color: var(--text-white); line-height: 1.2; margin: 14px 0 16px; }
.about-body { font-family: var(--sans); font-size: 13px; color: var(--text-body); line-height: 1.9; max-width: 440px; }
.about-stats { background: #0f0f0f; display: flex; flex-direction: column; }
.stat-item { padding: 24px 28px; border-bottom: 1px solid var(--border-sub); flex: 1; display: flex; flex-direction: column; justify-content: center; }
.stat-item:last-child { border: none; }
.stat-num { font-size: 32px; color: var(--red); font-weight: 400; line-height: 1; margin-bottom: 5px; }

/* ============================================================
   CREDITS SECTION
   ============================================================ */
.credits-section { padding: 40px 60px; background: #111; border-top: 1px solid var(--border); }
.credits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 20px; }
.dept-name { font-family: var(--sans); font-size: 9px; letter-spacing: .3em; color: var(--blue); text-transform: uppercase; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.credit-person { margin-bottom: 10px; }
.person-name { font-size: 14px; color: var(--text-white); }
.person-role { font-family: var(--sans); font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   FILMS PAGE
   ============================================================ */
.films-page-header {
  background: #111;
  padding: 48px 60px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.films-page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), var(--blue), transparent);
}
.fp-eyebrow { font-family: var(--sans); font-size: 10px; letter-spacing: .3em; color: var(--red); text-transform: uppercase; margin-bottom: 12px; }
.fp-title { font-size: 48px; font-style: italic; font-weight: 400; color: var(--text-white); line-height: 1.1; margin-bottom: 28px; }
.fp-title em { color: var(--blue); font-style: italic; }
.filter-bar { display: flex; gap: 8px; padding-bottom: 0; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--sans); font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted); background: transparent; border: 1px solid var(--border);
  padding: 7px 16px; text-decoration: none; display: inline-block; transition: .2s; cursor: pointer;
}
.filter-btn:hover { color: var(--text-body); border-color: #444; }
.filter-btn.active { color: var(--blue); border-color: var(--blue); background: rgba(27,139,196,.07); }

/* ============================================================
   FILM DETAIL
   ============================================================ */
.film-detail-hero {
  position: relative; min-height: 380px;
  display: flex; align-items: flex-end;
  padding: 48px 60px; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.film-detail-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--red), var(--blue), transparent);
}
.film-detail-bg { position: absolute; inset: 0; background: #111; }
.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(--text-white); margin: 12px 0 10px; }
.fd-badge { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 9px; letter-spacing: .22em; color: var(--red); text-transform: uppercase; margin-bottom: 6px; }
.film-detail-meta { display: flex; align-items: center; gap: 14px; }
.detail-meta-item { font-family: var(--sans); font-size: 11px; letter-spacing: .12em; color: var(--text-muted); text-transform: uppercase; }
.detail-meta-sep { color: #333; }

.film-detail-body { display: grid; grid-template-columns: 1fr 260px; gap: 1px; background: var(--border); }
.film-synopsis-panel { background: #141414; padding: 40px 60px; }
.synopsis-text { font-family: var(--sans); font-size: 14px; color: var(--text-body); line-height: 1.9; margin-top: 14px; }
.film-sidebar { background: #0f0f0f; padding: 32px 24px; }
.sidebar-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-sub); }
.sidebar-block:last-child { border: none; margin: 0; padding: 0; }
.info-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; border-bottom: 1px solid #161616; }
.info-row:last-child { border: none; }
.info-key { font-family: var(--sans); font-size: 10px; color: var(--text-muted); }
.info-val { font-family: var(--sans); font-size: 11px; color: var(--text-white); }
.full-credits { padding: 32px 60px; border-top: 1px solid var(--border); background: #111; }
.credits-dept-block { margin-bottom: 24px; }
.full-credits-row { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; border-bottom: 1px solid #161616; }
.full-credits-row:last-child { border: none; }
.fc-role { font-family: var(--sans); font-size: 11px; color: var(--text-muted); }
.fc-name { font-size: 14px; color: var(--text-white); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: flex-end;
  padding: 48px 60px; background: #111;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.about-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--red), var(--blue), transparent);
}
.about-hero-content { position: relative; z-index: 2; }
.about-page-heading { font-size: 48px; font-style: italic; color: var(--text-white); margin-top: 12px; }
.about-page-heading em { color: var(--blue); }
.about-body-section { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.about-col { background: #141414; padding: 48px 60px; }
.about-col p { font-family: var(--sans); font-size: 14px; color: var(--text-body); line-height: 1.9; margin-top: 14px; }

/* ============================================================
   CONTACT
   ============================================================ */
.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(--text-white); line-height: 1.3; margin-bottom: 16px; }
.contact-body { font-family: var(--sans); font-size: 13px; color: var(--text-body); 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(--blue); text-transform: uppercase; }
.form-field input, .form-field textarea, .form-field select {
  background: #141414; border: 1px solid var(--border); color: var(--text-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(--blue); }
.form-field textarea { resize: vertical; min-height: 100px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a0a0a;
  border-top: 3px solid var(--red);
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; color: #aaaaaa; text-transform: uppercase; font-weight: 700; }
.footer-copy { font-family: var(--sans); font-size: 10px; color: #aaaaaa; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-family: var(--sans); font-size: 10px; letter-spacing: .12em; color: #aaaaaa; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--blue); }

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash { padding: 12px 20px; font-family: var(--sans); font-size: 12px; margin-bottom: 16px; border: 1px solid; }
.flash-success { background: rgba(27,139,196,.06); border-color: var(--blue); color: var(--blue); }
.flash-error   { background: rgba(232,25,44,.06); border-color: var(--red); color: var(--red); }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body { background: #080808; color: var(--text-white); font-family: var(--sans); min-height: 100vh; }
.admin-nav { background: #040404; border-bottom: 3px solid var(--red); padding: 0 32px; height: 52px; display: flex; align-items: center; justify-content: space-between; }
.admin-logo { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .16em; color: var(--text-white); text-transform: uppercase; }
.admin-layout { display: grid; grid-template-columns: 200px 1fr; min-height: calc(100vh - 52px); }
.admin-sidebar { background: #040404; border-right: 1px solid var(--border); padding: 20px 0; }
.admin-nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 20px; font-size: 11px; letter-spacing: .1em; color: #555; text-transform: uppercase; transition: .2s; text-decoration: none; }
.admin-nav-link:hover { color: var(--text-body); background: #0d0d0d; }
.admin-nav-link.active { color: var(--blue); background: #0d0d0d; border-left: 2px solid var(--blue); }
.admin-nav-link i { font-size: 16px; }
.admin-main { padding: 32px; background: #080808; }
.admin-page-title { font-size: 22px; color: var(--text-white); margin-bottom: 24px; font-family: var(--serif); font-style: italic; }
.admin-card { background: #0d0d0d; border: 1px solid var(--border); 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: 9px; letter-spacing: .16em; color: #444; text-transform: uppercase; border-bottom: 1px solid var(--border); font-weight: 400; }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid #161616; color: var(--text-body); vertical-align: middle; }
.admin-table tr:last-child td { border: none; }
.admin-table tr:hover td { background: #111; }
.admin-badge { font-size: 8px; letter-spacing: .12em; text-transform: uppercase; padding: 3px 8px; border: 1px solid; }
.badge-admin-released { border-color: var(--red); color: var(--red); background: rgba(232,25,44,.06); }
.badge-admin-dev      { border-color: #333; color: #555; }
.admin-action-btn { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--border); background: transparent; color: #555; margin-right: 6px; transition: .2s; cursor: pointer; text-decoration: none; display: inline-block; }
.admin-action-btn:hover { color: var(--text-body); border-color: #444; }
.admin-action-btn.danger:hover { color: var(--red); border-color: var(--red); }
.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(--blue); text-transform: uppercase; }
.admin-field input, .admin-field select, .admin-field textarea { background: #080808; border: 1px solid var(--border); color: var(--text-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(--blue); }
.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: 1px solid var(--border); }
.credits-adder { border: 1px solid var(--border); }
.credits-adder-head { background: #040404; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); font-size: 10px; letter-spacing: .12em; color: #444; text-transform: uppercase; }
.credit-add-row { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 8px; padding: 10px 14px; border-bottom: 1px solid #111; align-items: center; }
.credit-add-row:last-child { border: none; }
.credit-add-row input, .credit-add-row select { background: #080808; border: 1px solid var(--border); color: var(--text-body); 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(--blue); }
.btn-add, .btn-save { background: var(--red) !important; color: #fff !important; border: none; padding: 8px 18px; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
.btn-add:hover, .btn-save:hover { background: var(--red-dim) !important; }
.btn-cancel { background: transparent; color: var(--text-muted); border: 1px solid var(--border); padding: 8px 18px; font-family: var(--sans); font-size: 10px; cursor: pointer; text-decoration: none; display: inline-block; }
.admin-login-wrap { min-height: 100vh; background: var(--black); display: flex; align-items: center; justify-content: center; }
.admin-login-box { width: 360px; border: 1px solid var(--border); border-top: 3px solid var(--red); background: #0d0d0d; padding: 40px 36px; }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-error { background: rgba(232,25,44,.06); border: 1px solid var(--red); color: var(--red); padding: 10px 14px; font-size: 12px; margin-bottom: 16px; }

/* ============================================================
   UTILITY
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-nav { padding: 0 20px; }
  .hero { padding: 0 24px 48px; height: 85vh; }
  .hero-h1 { font-size: 38px; }
  .hero-scroll { display: none; }
  .section-divider { padding: 28px 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: 14px; text-align: center; padding: 24px; }
  .films-page-header { padding: 32px 24px 0; }
  .credits-section, .full-credits { padding: 28px 24px; }
  .film-synopsis-panel { padding: 28px 24px; }
  .film-detail-hero { padding: 32px 24px; }
  .about-col { padding: 32px 24px; }
  .contact-section { padding: 40px 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: 30px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .film-detail-title { font-size: 30px; }
  .fp-title { font-size: 32px; }
  .credit-add-row { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.nav-yt) { display: none; }
}