:root {
  --black: #1b0e16;
  --charcoal: #2b1420;
  --panel: #3a1a2a;
  --line: rgba(255, 138, 61, 0.32);
  --gold: #ff8a3d;
  --gold-soft: #ffc857;
  --ivory: #fff6ec;
  --muted: #dcb2a6;
  --flame: #ff5a36;
  --shadow: 0 28px 80px rgba(18, 8, 14, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 30% 0%, rgba(230, 90, 54, 0.3), transparent 34rem),
    linear-gradient(180deg, #20101a 0%, #140a11 100%);
  font-family: "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(18, 8, 14, 0.86), rgba(18, 8, 14, 0.34));
  box-shadow: 0 12px 30px rgba(8, 4, 7, 0.22);
  backdrop-filter: blur(12px);
}

.brand img {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav a {
  opacity: 0.82;
}

.desktop-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-cta,
.button,
.text-link {
  border-radius: 6px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 10px 14px;
  color: #2a0e12;
  background: var(--gold);
  font-size: 12px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: rgba(255, 205, 178, 0.06);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--ivory);
}

.mobile-menu {
  position: fixed;
  inset: 78px 0 auto 0;
  z-index: 35;
  display: none;
  padding: 18px;
  background: rgba(18, 8, 14, 0.94);
  box-shadow: 0 12px 30px rgba(8, 4, 7, 0.22);
}

.mobile-menu a {
  display: block;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255, 138, 61, 0.07);
  color: var(--ivory);
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mobile-menu.open {
  display: block;
}

.intro-section {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background: #000000;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 22px;
  padding: 88px 24px 28px;
  text-align: center;
}

.intro-media {
  display: block;
  width: auto;
  height: auto;
  max-width: min(80vw, 720px);
  max-height: 54vh;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.97);
  animation:
    intro-reveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    intro-glow 4.2s ease-in-out 0.2s infinite;
}

@keyframes intro-reveal {
  from {
    opacity: 0;
    transform: scale(0.97);
    filter: brightness(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
}

@keyframes intro-glow {
  0%,
  100% {
    filter:
      brightness(1)
      drop-shadow(0 0 0 rgba(255, 178, 100, 0))
      drop-shadow(0 0 0 rgba(255, 138, 61, 0));
  }
  50% {
    filter:
      brightness(1.12)
      drop-shadow(0 0 46px rgba(255, 178, 100, 0.55))
      drop-shadow(0 0 92px rgba(255, 138, 61, 0.32));
  }
}

.intro-tagline {
  margin: 0;
  max-width: 640px;
  color: var(--gold-soft);
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-size: clamp(14px, 1.9vw, 18px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.7;
  opacity: 0;
  animation: intro-tagline-in 1.2s ease-out 1.1s forwards;
}

@keyframes intro-tagline-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-scroll {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.intro-scroll svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  animation: intro-bounce 1.8s ease-in-out infinite;
}

@keyframes intro-bounce {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-media,
  .intro-tagline,
  .intro-scroll svg {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.button-yellow {
  color: #2a1e0a;
  background: linear-gradient(180deg, #ffe066, #f4c430);
  border-color: rgba(255, 219, 92, 0.85);
  box-shadow: 0 10px 24px rgba(244, 196, 48, 0.18);
}

.button-yellow:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(244, 196, 48, 0.3);
}

.hero-actions--compact {
  flex-wrap: nowrap;
  gap: 10px;
}

.hero-actions--compact .button {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 11px;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  .intro-section {
    padding: 84px 20px 44px;
    gap: 18px;
  }

  .intro-media {
    max-width: min(88vw, 520px);
    max-height: 64vh;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #170b13;
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0.72;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(18, 8, 14, 0.9), rgba(18, 8, 14, 0.48) 48%, rgba(18, 8, 14, 0.18)),
    linear-gradient(180deg, rgba(18, 8, 14, 0.36), rgba(18, 8, 14, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(720px, calc(100% - 36px));
  min-height: 100vh;
  padding: 140px 0 140px clamp(18px, 5vw, 80px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  font-size: clamp(48px, 7vw, 96px);
}

h2 {
  font-size: clamp(34px, 4.7vw, 64px);
}

.hero-content p:not(.eyebrow),
.section-copy p,
.film-copy p,
.contact-section p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  font-size: 13px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.button.primary {
  color: #2a0e12;
  background: linear-gradient(180deg, #ffb15c, var(--gold));
  border-color: rgba(255, 138, 61, 0.72);
  box-shadow: 0 10px 24px rgba(255, 138, 61, 0.16);
}

.button.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(255, 138, 61, 0.28);
}

.button.secondary {
  color: var(--ivory);
  background: rgba(255, 205, 178, 0.04);
}

.button.secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 205, 178, 0.1);
  border-color: rgba(255, 178, 100, 0.55);
}

.button:active {
  transform: translateY(0);
}

.about-band,
.featured-film,
.projects-section,
.why-section,
.screenings-section,
.contact-section {
  padding: clamp(36px, 4.5vw, 64px) clamp(18px, 5vw, 80px);
}

.why-section {
  background: #20101a;
}

.awards-section {
  padding: clamp(36px, 4.5vw, 64px) clamp(18px, 5vw, 80px);
}

.awards-subtitle {
  margin: 4px 0 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.awards-subtitle strong {
  color: var(--gold-soft);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.award-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 205, 178, 0.055), rgba(255, 205, 178, 0.015));
  box-shadow: 0 14px 40px rgba(18, 8, 14, 0.28);
}

.award-logo-wrap {
  display: grid;
  place-items: center;
  flex: none;
  width: 128px;
  height: 108px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff9f2;
}

.award-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.award-copy strong {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.award-copy span {
  color: var(--muted);
  font-size: 13px;
}

.section-heading--center {
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.why-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 14px 18px 6px;
  text-align: center;
}

.why-index {
  position: absolute;
  top: -4px;
  right: 8px;
  color: rgba(255, 138, 61, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.why-icon-badge {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 178, 100, 0.28), rgba(255, 138, 61, 0.06) 70%),
    rgba(255, 205, 178, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 138, 61, 0.3);
}

.why-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.why-grid strong {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.why-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.why-intro {
  max-width: 620px;
  margin: 6px auto 0;
  color: var(--muted);
  font-size: 16px;
}

@media (min-width: 1051px) {
  .why-grid article:not(:first-child) {
    border-left: 1px solid rgba(255, 138, 61, 0.1);
  }
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-band {
  padding-top: clamp(20px, 2.5vw, 36px);
  padding-bottom: clamp(20px, 2.5vw, 36px);
  background:
    linear-gradient(90deg, rgba(18, 8, 14, 0.92), rgba(18, 8, 14, 0.62)),
    url("assets/images/trailer-still-3.jpg") center/cover;
}

.about-band .section-copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-band .section-copy p {
  margin-left: auto;
  margin-right: auto;
}

.gallery-section {
  padding: clamp(24px, 3.5vw, 44px) clamp(18px, 5vw, 80px) clamp(36px, 4.5vw, 64px);
  background: #20101a;
}

.gallery-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  margin: 0 -4px;
}

.gallery-item {
  flex: 0 0 min(360px, 78vw);
  scroll-snap-align: start;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-item figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  padding: 0;
  color: var(--gold);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  font: inherit;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.logo-reel video,
.trailer-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.featured-film {
  display: grid;
  justify-items: center;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 138, 61, 0.16), transparent 26rem),
    #20101a;
}

.featured-film .film-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.featured-film .film-copy p:not(.eyebrow):not(.tagline) {
  margin: 0 auto;
}

.featured-film .poster-wrap,
.featured-film .film-details {
  width: 100%;
}

.featured-film .film-details {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.featured-film .film-meta {
  justify-content: center;
}

.poster-wrap img {
  width: min(460px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tagline {
  color: var(--gold-soft) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px !important;
}

.film-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}

.film-meta span {
  padding: 8px 10px;
  color: var(--gold-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 205, 178, 0.04);
  font-size: 13px;
  font-weight: 800;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 32px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 205, 178, 0.055), rgba(255, 205, 178, 0.015));
  box-shadow: 0 14px 40px rgba(18, 8, 14, 0.28);
}

.project-card {
  overflow: hidden;
}

.project-card-link {
  display: block;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.project-card--poster img {
  height: 250px;
  padding: 10px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 138, 61, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(46, 18, 14, 0.96), rgba(24, 10, 12, 0.98));
}

.project-card div {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.project-card strong {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
}

.project-card span {
  color: var(--muted);
  line-height: 1.35;
}

.screenings-section {
  background: #20101a;
}

.booking-hero {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 80px) clamp(36px, 4.5vw, 64px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 138, 61, 0.14), transparent 42rem),
    var(--black);
}

.booking-hero h1 {
  margin: 6px 0 10px;
}

.booking-hero > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.venue-select-wrap {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 420px;
  margin: 32px auto 0;
}

.venue-select-wrap label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.venue-select-wrap select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 138, 61, 0.4);
  border-radius: 8px;
  background: rgba(26, 11, 18, 0.72);
  color: var(--ivory);
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
}

.venue-panels {
  padding: 0 clamp(18px, 5vw, 80px) clamp(56px, 7vw, 104px);
  background: #20101a;
  min-height: 30vh;
}

.venue-panel {
  max-width: 460px;
  margin: 0 auto;
}

.venue-panel .screening-card {
  scroll-margin-top: 100px;
}

.coming-soon-note {
  margin: 4px 0 0;
  padding-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px dashed rgba(255, 138, 61, 0.2);
}

.screening-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.screening-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 205, 178, 0.055), rgba(255, 205, 178, 0.015));
  box-shadow: 0 14px 40px rgba(18, 8, 14, 0.28);
}

.screening-poster {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(18, 8, 14, 0.4);
}

.screening-poster img {
  width: 100%;
  aspect-ratio: 1024 / 960;
  object-fit: cover;
  display: block;
}

.screening-date-badge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 6px;
  background: rgba(18, 8, 14, 0.82);
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.screening-body {
  display: grid;
  gap: 8px;
  align-content: start;
}

.screening-badge {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 219, 92, 0.85);
  border-radius: 6px;
  color: #2a1e0a;
  background: linear-gradient(180deg, #ffe066, #f4c430);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.screening-badge--plain {
  color: var(--muted);
  background: rgba(220, 178, 166, 0.06);
  border-color: rgba(220, 178, 166, 0.35);
}

.screening-card h3 {
  margin: 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.screening-address {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.screening-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.screening-card .film-meta {
  margin: 2px 0;
  gap: 6px;
}

.screening-card .film-meta span {
  padding: 5px 8px;
  font-size: 11px;
}

.film-meta--details span {
  color: var(--muted);
  border-color: rgba(220, 178, 166, 0.28);
  background: rgba(220, 178, 166, 0.04);
  font-weight: 600;
  text-transform: none;
}

.screening-card .button {
  margin-top: 6px;
  width: 100%;
  min-height: 40px;
  padding: 9px 14px;
  font-size: 12px;
}

.booking-widget {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.booking-availability {
  margin: 0;
  min-height: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-controls {
  display: flex;
  gap: 10px;
}

.booking-qty {
  display: grid;
  gap: 4px;
  flex: none;
}

.booking-qty span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-qty select {
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(255, 138, 61, 0.24);
  border-radius: 8px;
  background: rgba(26, 11, 18, 0.72);
  color: var(--ivory);
  font: inherit;
  font-size: 13px;
}

.booking-controls .button {
  flex: 1;
  margin-top: 0;
}

.booking-status {
  margin: 0;
  min-height: 16px;
  color: var(--flame);
  font-size: 13px;
}

.booking-widget.is-sold-out .booking-availability {
  color: var(--muted);
}

.contact-section {
  background: #20101a;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 32px;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-panel::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.14), transparent 70%);
  pointer-events: none;
}

.hidden-field {
  display: none;
}

.form-row {
  position: relative;
  display: grid;
  gap: 8px;
}

.form-row--wide,
.form-submit {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 138, 61, 0.24);
  border-radius: 8px;
  background: rgba(26, 11, 18, 0.72);
  color: var(--ivory);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-row input {
  min-height: 48px;
  padding: 12px 14px;
}

.form-row textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(255, 209, 98, 0.78);
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.14);
}

.word-count {
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
}

.word-count.limit-reached {
  color: var(--gold);
}

.site-footer {
  position: relative;
  padding: clamp(48px, 6vw, 72px) clamp(18px, 5vw, 80px) 24px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 138, 61, 0.1), transparent 46rem),
    #170b13;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.4), transparent);
}

.footer-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 138, 61, 0.1);
}

.footer-brand img {
  width: 130px;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 18px rgba(255, 138, 61, 0.16));
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact strong {
  margin-bottom: 2px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-contact a:hover {
  color: var(--gold-soft);
}

.footer-contact svg {
  flex: none;
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.footer-social {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.thanks-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 48px 18px;
  background:
    linear-gradient(180deg, rgba(18, 8, 14, 0.62), rgba(18, 8, 14, 0.96)),
    url("assets/images/nayki-poster.webp") center/cover;
  text-align: center;
}

.thanks-page img {
  width: 130px;
  margin-bottom: 26px;
}

.thanks-page h1 {
  margin-bottom: 16px;
}

.thanks-page p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1050px) {
  .project-grid,
  .why-grid,
  .awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screening-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand img {
    height: 44px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    margin-left: auto;
  }

  .mobile-menu {
    inset: 70px 0 auto 0;
  }

  .hero-content {
    width: 100%;
    padding: 112px 18px 96px;
  }

  .hero-video {
    object-position: center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(18, 8, 14, 0.34), rgba(18, 8, 14, 0.96)),
      linear-gradient(90deg, rgba(18, 8, 14, 0.54), rgba(18, 8, 14, 0.24));
  }

  .hero-content p:not(.eyebrow),
  .section-copy p,
  .film-copy p,
  .contact-section p {
    font-size: 16px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .why-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .award-card {
    flex-direction: column;
    text-align: center;
  }

  .award-copy {
    text-align: center;
  }

  .project-card {
    display: grid;
    grid-template-columns: 118px 1fr;
  }

  .project-card img {
    height: 100%;
    min-height: 150px;
  }

  .project-card--poster img {
    aspect-ratio: auto;
    min-height: 190px;
    padding: 8px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

}
