/* Risling Pictures — design system */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #121212;
  --bg-muted: #161616;
  --text: #f2f2f2;
  --text-muted: #a8adb3;
  --silver: #c8ccd0;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.35);
  --line: rgba(200, 204, 208, 0.18);
  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.splash-active {
  overflow: hidden;
}

body.splash-active .site-header,
body.splash-active .skip-link,
body.splash-active #main,
body.splash-active .site-footer {
  visibility: hidden;
  pointer-events: none;
}

/* Mobile portrait splash */
.mobile-splash {
  display: none;
}

.mobile-splash.is-active {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #050505;
}

.mobile-splash__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.mobile-splash__ui {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: calc(0.85rem + env(safe-area-inset-top)) 1rem 0.85rem;
  pointer-events: none;
}

.mobile-splash__skip,
.mobile-splash__mute {
  pointer-events: auto;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: rgba(10, 10, 10, 0.88);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.mobile-splash__skip:hover,
.mobile-splash__mute:hover,
.mobile-splash__mute[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(20, 16, 6, 0.94);
}

.mobile-splash__start {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  min-height: 3.25rem;
  min-width: min(16rem, 80vw);
  padding: 1rem 1.75rem;
  border: 2px solid var(--gold);
  background: rgba(10, 10, 10, 0.92);
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.mobile-splash.splash-needs-gesture .mobile-splash__start {
  animation: splash-pulse 1.6s var(--ease) infinite;
}

@keyframes splash-pulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(201, 162, 39, 0.35);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 0 8px rgba(201, 162, 39, 0.12);
  }
}

.mobile-splash__skip:focus-visible,
.mobile-splash__mute:focus-visible,
.mobile-splash__start:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .mobile-splash,
  .mobile-splash.is-active {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hero {
    display: none !important;
  }
}

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--gold);
  color: #000;
  padding: 0.6rem 1rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--silver);
}

.brand__tag {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--silver);
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

body.nav-open {
  overflow: hidden;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0;
  transition: color 0.25s var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Hero — full frame, no crop (16:9 stage) */
.hero {
  --hero-ar: 16 / 9;
  --hero-ar-ratio: 1.777777;
  --hero-max-h: calc(100vh - var(--nav-h));
  position: relative;
  width: min(100%, calc(var(--hero-max-h) * var(--hero-ar-ratio)));
  max-height: var(--hero-max-h);
  aspect-ratio: var(--hero-ar);
  margin-inline: auto;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

@supports (height: 100dvh) {
  .hero {
    --hero-max-h: calc(100dvh - var(--nav-h));
  }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  background: #050505;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 58%,
    rgba(10, 10, 10, 0.45) 100%
  );
}

.hero__controls {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero__control {
  min-height: 2.75rem;
  padding: 0.45rem 0.85rem;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--line);
  color: var(--silver);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.hero__control:hover,
.hero__control[aria-pressed="false"] {
  border-color: var(--gold);
  color: var(--gold);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 3;
  transform: translateX(-50%);
  color: var(--silver);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.85rem 0.5rem;
  opacity: 0.75;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.6rem;
  margin: 0.55rem auto 0;
  background: var(--gold);
  opacity: 0.7;
  animation: scrollPulse 1.8s var(--ease) infinite;
}

.hero__scroll:hover {
  color: var(--gold);
  opacity: 1;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.35;
  }
  50% {
    transform: scaleY(1.25);
    opacity: 0.9;
  }
}

/* Intro band below video */
.intro {
  padding: 5rem 0 4.25rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
    var(--bg);
}

.intro__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.intro__logo {
  width: min(280px, 72vw);
  height: auto;
  aspect-ratio: 560 / 373;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.intro__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.intro__rule::before,
.intro__rule::after {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.intro h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4rem);
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--silver);
}

.intro__lead {
  margin: 0 auto 2.25rem;
  max-width: 32rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  justify-content: center;
  align-items: center;
}

.cta-row--start {
  justify-content: flex-start;
}

.text-link {
  color: var(--silver);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200, 204, 208, 0.35);
  padding: 0.35rem 0;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid transparent;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: #111;
}

.btn--gold:hover {
  background: #d8b33a;
}

.btn--ghost {
  background: transparent;
  border-color: var(--silver);
  color: var(--silver);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--tight {
  padding: 3.5rem 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.08), transparent 45%),
    var(--bg);
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.12em;
  font-weight: 400;
}

.page-hero p {
  margin: 0;
  max-width: 38rem;
  color: var(--text-muted);
}

.section-kicker {
  margin: 0 0 0.5rem;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.section-lead {
  margin: 0 0 2rem;
  max-width: 36rem;
  color: var(--text-muted);
}

/* Film grid */
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.75rem 1.25rem;
}

.film-tile {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.4s var(--ease);
}

.film-tile:hover {
  transform: translateY(-6px);
}

.film-poster {
  aspect-ratio: 2 / 3;
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 162, 39, 0.22), transparent 42%),
    linear-gradient(165deg, #1a1a1a 0%, #0c0c0c 48%, #151515 100%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 8px,
      rgba(201, 162, 39, 0.05) 8px,
      rgba(201, 162, 39, 0.05) 9px
    );
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(200, 204, 208, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.film-poster::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
}

.film-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.film-poster__mark {
  position: absolute;
  top: 1.15rem;
  left: 0;
  right: 0;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(200, 204, 208, 0.55);
}

.film-poster__num {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 3.4rem;
  letter-spacing: 0.08em;
  color: var(--silver);
  text-shadow: 0 0 24px rgba(201, 162, 39, 0.25);
}

.film-poster__label {
  position: absolute;
  bottom: 1.1rem;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.film-tile h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.film-meta {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.film-tile p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.film-actions {
  margin-top: auto;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: grayscale(0.15) contrast(1.05);
}

.about-copy h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.about-role {
  margin: 0 0 1.25rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.about-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.about-video-wrap {
  margin-top: 3rem;
}

.about-video-wrap video {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #000;
}

.mission {
  margin-top: 3rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}

/* News */
.news-list {
  display: grid;
  gap: 0.25rem;
  max-width: 40rem;
}

.news-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.news-item:first-child {
  padding-top: 0;
}

.news-date {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-item h2 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.news-item p {
  margin: 0;
  color: var(--text-muted);
  max-width: 40rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--gold-soft);
}

.contact-block h2 {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.contact-block a,
.contact-block p {
  margin: 0;
  color: var(--silver);
  font-size: 1.05rem;
}

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

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  margin-top: 0.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  opacity: 0.92;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg-muted);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  border-radius: 0;
}

.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.contact-note {
  margin: 0 0 2rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.form-note {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-status {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--gold);
}

/* Store */
.coming-soon {
  text-align: center;
  padding: 4rem 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.06), transparent 60%),
    var(--bg-elevated);
}

.coming-soon h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.coming-soon p {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  color: var(--text-muted);
}

/* Home / films development slate */
.home-strip {
  border-top: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

.section--services {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

.dev-slate {
  max-width: 38rem;
  padding: 1.75rem 0 0.25rem;
  border-top: 1px solid var(--gold-soft);
}

.dev-slate .section-lead:last-of-type {
  margin-bottom: 1.75rem;
}

.services-block {
  margin-top: 3rem;
}

.video-transcript {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.video-transcript h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}

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

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0 0 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-item {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--gold-soft);
}

.service-item h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.5rem;
}

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.footer-nav a,
.footer-legal a {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
}

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

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.35rem;
}

.footer-teaser {
  margin: 0;
  padding-top: 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
}

.footer-teaser a {
  border-bottom: 1px solid transparent;
}

.footer-teaser a:hover {
  border-color: var(--gold);
}

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

@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .intro {
    padding: 5.5rem 0 5rem;
  }

  .section {
    padding: 5.5rem 0;
  }
}

@media (max-width: 1024px) {
  .intro {
    padding: 4rem 0 3.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-layout,
  .contact-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .page-hero {
    padding: 2.75rem 0 1.75rem;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--nav-h));
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0;
    min-height: 2.75rem;
  }

  .brand__text {
    display: none;
  }

  .hero__controls {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .hero__scroll {
    left: 0.85rem;
    right: auto;
    bottom: 0.75rem;
    transform: none;
    font-size: 0.62rem;
  }

  .intro {
    padding: 3rem 0 2.75rem;
  }

  .intro__logo {
    margin-bottom: 1.15rem;
  }

  .intro h1 {
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
  }

  .intro__rule {
    letter-spacing: 0.22em;
    font-size: 0.68rem;
    margin-bottom: 0.85rem;
  }

  .intro__rule::before,
  .intro__rule::after {
    width: 1.75rem;
  }

  .intro__lead {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .cta-row .btn,
  .cta-row .text-link {
    width: 100%;
    justify-content: center;
  }

  .cta-row--start {
    align-items: stretch;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

@media (max-width: 480px) {
  .coming-soon {
    padding: 2.5rem 1rem;
  }

  .dev-slate {
    padding-top: 1.5rem;
  }
}

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

  .hero__scroll::after,
  .film-tile,
  .btn,
  .site-nav a::after,
  .reveal,
  .mobile-splash.splash-needs-gesture .mobile-splash__start {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .film-tile:hover,
  .btn:hover {
    transform: none;
  }
}
