:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #64706c;
  --paper: #f7f3ec;
  --surface: #ffffff;
  --line: #d9ded8;
  --teal: #124c49;
  --teal-dark: #0a302f;
  --gold: #b08d4a;
  --rust: #8e4b34;
  --shadow: 0 24px 60px rgba(9, 19, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid rgba(23, 33, 31, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--teal);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(680px, calc(100vh - 72px));
  isolation: isolate;
  overflow: hidden;
  background: var(--teal-dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("/assets/film-production-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 18, 18, 0.88) 0%, rgba(10, 38, 37, 0.7) 44%, rgba(10, 38, 37, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 18, 18, 0.36), rgba(4, 18, 18, 0.08));
}

.hero-inner {
  align-self: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 104px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  line-height: 1.02;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.12;
}

h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.intro {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: #f3efe5;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 76px clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.section-muted {
  background: #e9eee8;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 30px;
}

.section-heading p {
  color: var(--muted);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fact,
.record,
.source-note,
.address-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 33, 31, 0.05);
}

.fact {
  min-height: 134px;
  padding: 22px;
}

.fact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.address-panel {
  margin-top: 14px;
  padding: 24px;
}

.address-panel p {
  margin-bottom: 0;
  font-size: 22px;
}

.records-layout,
.business-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 36px;
  align-items: start;
}

.records {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.record {
  padding: 24px;
}

dl {
  margin: 0;
}

.record dl {
  display: grid;
  gap: 18px;
}

.record dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.record dd {
  margin: 4px 0 0;
  font-size: 19px;
  font-weight: 800;
}

.business-layout {
  grid-template-columns: 1.3fr 0.8fr;
}

.business-layout > div > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.source-note {
  padding: 24px;
  border-top: 4px solid var(--rust);
}

.source-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--teal-dark);
  font-size: 14px;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-inner {
    padding: 72px 0 86px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 31px;
  }

  .facts-grid,
  .records-layout,
  .business-layout,
  .records {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 13px;
  }

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

  .hero {
    min-height: 560px;
  }

  .hero-inner {
    width: min(100% - 32px, 1120px);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .intro,
  .business-layout > div > p {
    font-size: 17px;
  }

  .address-panel p {
    font-size: 19px;
  }

  .site-footer {
    flex-direction: column;
  }
}
