/* Dark surface tokens live in static/css/base/tokens-dark.css (linked before
   this file in the template). Do not redefine them here. */
html {
  background: var(--black);
}
body {
  background: var(--black);
  color: var(--off-white);
  font-family: "Lora", serif;
  font-size: 1.125rem;
  line-height: 1.75;
}
.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px;
}
.crumb {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 20px;
}
.crumb a {
  color: var(--cream-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.crumb a:hover {
  color: var(--red-text);
  border-bottom-color: var(--red-text);
}
.crumb-sep {
  margin: 0 6px;
}
.page-kicker {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--cream-dim);
  margin-bottom: 20px;
}
.red-rule {
  height: 2px;
  width: 40px;
  background: var(--red);
  margin-bottom: 16px;
}
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-text);
  margin-bottom: 8px;
}
.years-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 6px;
}
h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.25rem;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.02;
  margin-bottom: 18px;
}
.region-line {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 28px;
}
.movement-characteristics {
  font-size: 15px;
  line-height: 1.8;
  color: var(--off-white);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.films-list .film-row {
  border-left-color: var(--border-strong);
}
.films-list .film-row:first-child {
  border-left-color: var(--red);
}
.background {
  font-family: "Lora", serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--off-white);
  max-width: 720px;
}
.background p {
  margin-bottom: 1em;
}
.source-note {
  font-family: "Inter", sans-serif;
  margin-top: 14px;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.source-note a {
  color: var(--cream-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.source-note a:hover {
  color: var(--red-text);
  border-bottom-color: var(--red-text);
}
.section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-strong);
}
.section-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-text);
  margin-bottom: 14px;
}
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 16px;
}
.dir-card {
  background: var(--black-card);
  padding: 16px 20px;
}
.dir-card-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  line-height: 1.25;
}
.dir-card-name a,
.film-title a {
  color: var(--off-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(227, 218, 201, 0.45);
}
.dir-card-name a:hover,
.film-title a:hover {
  color: var(--red-text);
  border-bottom-color: var(--red-text);
}
.director-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.director-link:hover {
  color: var(--red-text);
}
.dir-card-meta {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 4px;
}
.dir-card-bio {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--off-white);
  margin-top: 8px;
  line-height: 1.6;
}
/* Defining films — clickable poster-tile grid (WS3 surface redesign). */
.mv-film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 22px 18px;
  margin-top: 18px;
}
.mv-film-tile {
  display: block;
  text-decoration: none;
  color: inherit;
}
.mv-film-tile--static {
  cursor: default;
}
.mv-film-poster {
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mv-film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mv-film-tile:hover .mv-film-poster {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}
.mv-film-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  line-height: 1.3;
  color: var(--bone-dim);
}
.mv-film-title {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  line-height: 1.25;
  margin-top: 10px;
  color: var(--off-white);
}
.mv-film-meta {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  color: var(--bone-dim);
  margin-top: 2px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 6px;
}
.related-card {
  background: var(--black-card);
  padding: 14px 18px;
}
.related-card a {
  color: var(--off-white);
  text-decoration: none;
}
.related-card a:hover .related-name {
  color: var(--red-text);
}
.related-name {
  font-family: "Playfair Display", serif;
  font-size: 0.875rem;
}
.related-years {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .wrap {
    padding: 24px 18px;
  }
  h1 {
    font-size: 2rem;
  }
  .directors-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
}
