:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --fg: #f2f0ec;
  --fg-dim: #a8a6a1;
  --fg-faint: #6e6c68;
}

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

html {
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

@media (prefers-reduced-motion: no-preference) {
  .page {
    animation: reveal 1.4s ease-out;
  }
  @keyframes reveal {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  padding: 12vh 8vw 8vh;
}

/* Intro */

.intro {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.wordmark {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--fg);
}

.tagline {
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  font-weight: 400;
  color: var(--fg-faint);
  letter-spacing: 0.01em;
}

/* Filmography */

.filmography {
  margin-top: 18vh;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.films-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.film-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.film-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: 0.04em;
}

.film-credit {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--fg-faint);
  letter-spacing: 0.01em;
  margin-top: 0.7rem;
}

.film-year {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--fg-faint);
  margin-top: 0.2rem;
}

/* Inscription */

.inscription {
  margin-top: auto;
  padding-top: 24vh;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--fg-dim);
  align-self: center;
}

/* Footer */

.site-footer {
  margin-top: 8vh;
  text-align: center;
}

.copyright {
  font-size: 0.62rem;
  color: var(--fg-faint);
  letter-spacing: 0.02em;
}

/* Mobile art direction */

@media (max-width: 640px) {
  .page {
    padding: 9vh 7vw 6vh;
  }

  .intro {
    gap: 0.9rem;
  }

  .wordmark {
    font-size: 1.75rem;
    letter-spacing: 0.005em;
  }

  .filmography {
    margin-top: 13vh;
    gap: 1.8rem;
  }

  .film-title {
    font-size: 1.7rem;
  }

  .inscription {
    padding-top: 16vh;
  }

  .site-footer {
    margin-top: 6vh;
  }
}

@media (min-width: 1600px) {
  .page {
    max-width: 1400px;
    margin: 0 auto;
  }
}
