:root {
  --bg: #10110f;
  --surface: #181a16;
  --surface-light: #22251f;
  --text: #f4f0e8;
  --muted: #b8b0a4;
  --accent: #e5bc4d;
  --accent-strong: #f0cf66;
  --line: rgba(244, 240, 232, 0.14);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(16, 17, 15, 0.86), rgba(16, 17, 15, 0.96)),
    url("/assets/images/stills/web/in-the-draft-still-01.jpg") center top / cover fixed;
}

body,
input,
button {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header,
.site-footer,
main {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  font-size: 1rem;
  font-weight: 800;
}

.brand small,
.eyebrow {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav a {
  min-height: 36px;
  padding: 9px 12px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(244, 240, 232, 0.08);
}

.hero {
  min-height: calc(100vh - 190px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  padding: 34px 0 56px;
}

.hero__content {
  max-width: 720px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.logline {
  max-width: 720px;
  color: var(--text);
  font-size: clamp(1.22rem, 2.1vw, 1.65rem);
  line-height: 1.45;
}

.hero__actions,
.form-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent);
  color: #15120a;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button--secondary {
  background: transparent;
  color: var(--text);
}

.button:hover,
button:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button--secondary:hover {
  color: #15120a;
}

.poster-panel {
  justify-self: end;
  width: min(100%, 390px);
}

.poster-panel img {
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.page-hero {
  max-width: 860px;
  padding: clamp(52px, 9vw, 110px) 0 36px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.section {
  padding: clamp(34px, 6vw, 70px) 0;
  border-top: 1px solid var(--line);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.prose {
  max-width: 790px;
}

.prose p {
  color: var(--text);
  font-size: 1.12rem;
}

.placeholder-block,
.media-feature {
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  background: rgba(24, 26, 22, 0.78);
}

.crew-list {
  display: grid;
  gap: clamp(80px, 10vw, 120px);
  max-width: 860px;
}

.crew-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(42px, 6vw, 64px);
  padding: clamp(30px, 6vw, 56px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(34, 37, 31, 0.9), rgba(24, 26, 22, 0.84));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.crew-card__content {
  max-width: 640px;
}

.crew-card h2 {
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 0.95;
}

.crew-responsibilities {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text);
}

.crew-responsibilities li {
  padding-left: 0.35rem;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.crew-responsibilities li::marker {
  color: var(--accent);
}

.crew-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.crew-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(229, 188, 77, 0.58);
  border-radius: 999px;
  background: rgba(229, 188, 77, 0.1);
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.crew-links a:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #15120a;
}

.crew-links a:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.crew-card:hover {
  border-color: rgba(229, 188, 77, 0.34);
}

.crew-card:hover .crew-links a:not(:hover) {
  color: var(--accent-strong);
}

.media-feature > div {
  max-width: 960px;
}

.video-embed {
  overflow: hidden;
  width: 100%;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form label {
  font-weight: 800;
}

.newsletter-form input[type="email"] {
  width: min(100%, 360px);
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
}

.newsletter-form small {
  color: var(--muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.newsletter-success {
  color: var(--accent);
  font-weight: 800;
}

.section-heading {
  margin-bottom: 24px;
}

.still-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.still-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.still-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .section--split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .poster-panel {
    justify-self: start;
    width: min(100%, 320px);
  }

  .form-row {
    align-items: stretch;
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }
}
