/* =========================================================
   Design tokens
   A dark "theatre" palette with a brass/gold accent —
   nodding to projection rooms and archival film cans
   rather than a generic dark-mode-with-neon look.
   ========================================================= */
:root {
  --bg: #16151a;
  --bg-raised: #1f1e25;
  --text: #ece7dd;
  --text-muted: #9a958d;
  --accent: #c9a24b;
  --accent-dim: #8c7236;
  --rule: #353240;
  --max-width: 1100px;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: rgba(22, 21, 26, 0.92);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-brand:hover {
  text-decoration: none;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  color: var(--text);
  padding: 8px 12px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 16px 0 20px;
    width: 100%;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav {
    flex-wrap: wrap;
  }
}

/* =========================================================
   Sprocket divider — a perforated strip, like 35mm film
   stock. The one decorative signature on the page; used
   sparingly between sections.
   ========================================================= */
.sprocket-divider {
  height: 16px;
  background-color: var(--accent-dim);
  opacity: 0.45;
  background-image: radial-gradient(circle, var(--bg) 3px, transparent 3.5px);
  background-size: 26px 16px;
  background-position: center;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: 96px 0 72px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 16ch;
}

.hero p.lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 2em;
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #16151a;
  font-weight: 600;
}

.btn-primary:hover {
  background: #d8b25f;
  text-decoration: none;
}

.btn-secondary {
  border-color: var(--rule);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* =========================================================
   Sections / cards
   ========================================================= */
section {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 40px;
  max-width: 60ch;
}

.section-head .hero-eyebrow {
  margin-bottom: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--bg-raised);
  border: 1px solid var(--rule);
  padding: 26px;
  border-radius: var(--radius);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card .tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}

/* =========================================================
   Video embeds
   ========================================================= */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
  border: 1px solid var(--rule);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.placeholder-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
