* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: #111111;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.035), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.025), transparent 28%),
    linear-gradient(135deg, #101010 0%, #141414 45%, #0d0d0d 100%);
  color: #f2f2f2;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 38px 38px;
  mix-blend-mode: overlay;
}

a {
  color: inherit;
}

.site-header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.logo {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: #b5b5b5;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #ffcc4d;
}

.site-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 120px;
  position: relative;
  z-index: 1;
}

.page-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 90px;
}

.eyebrow,
.section-label,
.card-status {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffcc4d;
  font-weight: 800;
}

.page-title {
  max-width: 850px;
  margin-top: 18px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  color: #f2f2f2;
  font-weight: 900;
}

.page-intro {
  max-width: 720px;
  margin-top: 32px;
  color: #bdbdbd;
  font-size: 1.08rem;
}

.content-section {
  padding: 76px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.section-title {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-copy {
  max-width: 720px;
  margin-top: 18px;
  color: #b5b5b5;
}

.text-block {
  max-width: 780px;
  color: #c8c8c8;
}

.text-block p + p {
  margin-top: 1.35rem;
}

.text-block strong {
  color: #f2f2f2;
}

.text-block em {
  color: #f2f2f2;
  font-style: italic;
}

.quote-block {
  max-width: 780px;
  margin-top: 32px;
  padding: 34px;
  border-left: 3px solid #ffcc4d;
  background: rgba(255, 255, 255, 0.025);
  color: #f2f2f2;
  font-size: 1.35rem;
  line-height: 1.45;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.film-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.film-card h4 {
  margin-top: 16px;
  margin-bottom: 12px;
  color: #f2f2f2;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.film-card p {
  color: #c2c2c2;
  font-size: 0.98rem;
}

.film-card p + p {
  margin-top: 14px;
}

.card-status {
  display: inline-block;
  padding: 6px 11px;
  border: 1px solid rgba(255, 204, 77, 0.28);
  border-radius: 999px;
  background: rgba(255, 204, 77, 0.11);
  color: #ffcc4d;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.card-link {
  display: inline-block;
  max-width: 100%;
  margin-top: 22px;
  color: #ffcc4d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card-link::after {
  content: " →";
}

.card-link:hover {
  color: #ffffff;
}

.essay-list {
  margin-top: 1.25rem;
  margin-left: 1.25rem;
  color: #c8c8c8;
}

.essay-list li + li {
  margin-top: 0.7rem;
}

.small-copy {
  margin-top: 14px;
  color: #9f9f9f !important;
  font-size: 0.92rem !important;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  padding: 46px 40px 60px;
  text-align: center;
  color: #858585;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  color: #b5b5b5;
  text-decoration: none;
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: #ffcc4d;
}

.site-footer p + p {
  margin-top: 8px;
}

.not-found-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.not-found-card {
  max-width: 720px;
  text-align: left;
}

.not-found-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.not-found-actions a {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f2f2f2;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.not-found-actions a:hover {
  border-color: #ffcc4d;
  transform: translateY(-1px);
}

.not-found-actions a.primary {
  border-color: #ffcc4d;
  color: #ffcc4d;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px 14px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 18px;
  }

  .site-shell {
    padding: 0 24px 90px;
  }

  .page-hero {
    min-height: auto;
    padding: 70px 0 76px;
  }

  .film-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 62px 0;
  }
}

@media (max-width: 520px) {
  .logo {
    white-space: normal;
    line-height: 1.4;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .page-title {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .page-intro {
    font-size: 1rem;
  }

  .film-card {
    padding: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
