:root {
  --bg: #0b0a09;
  --panel: #141210;
  --paper: #f4f0e8;
  --muted: rgba(244, 240, 232, 0.68);
  --faint: rgba(244, 240, 232, 0.16);
  --accent: #e8722e;
  --accent-dark: #2c1207;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-logo: "Orbitron", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--bg); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--bg);
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.72), rgba(11, 10, 9, 0));
  transition: background 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(11, 10, 9, 0.88);
  border-bottom: 1px solid var(--faint);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--font-logo);
  letter-spacing: 0;
  color: #fff;
}
.brand-logo {
  display: block;
  width: 138px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease, opacity 180ms ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--accent); opacity: 1; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 36px 66px;
  overflow: hidden;
}
.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}
.hero__image {
  background-image: url("https://static.wixstatic.com/media/be0609_2d31ed21c88c46ec89abcadc3ca8b833~mv2.jpg/v1/fill/w_1800,h_1100,al_c,q_90,enc_auto/file.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.25) brightness(0.62) contrast(1.05);
  transform: scale(1.02);
}
.hero__shade {
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.55) 0%, rgba(11, 10, 9, 0.08) 34%, rgba(11, 10, 9, 0.9) 100%);
}
.hero__meta {
  position: absolute;
  top: 96px;
  right: 36px;
  margin: 0;
  color: rgba(244, 240, 232, 0.62);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-align: right;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.location,
.section-label,
.card-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(232, 114, 46, 0.55);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #0b0a09;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 9.2ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 7.1vw, 112px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
}
.hero .location {
  margin-top: 14px;
}
.hero__lower {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 26px;
}
.hero__lower p {
  max-width: 34ch;
  margin: 0;
  color: rgba(244, 240, 232, 0.78);
  font-size: 18px;
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .hero__content {
    max-width: 700px;
  }
  .hero__lower {
    max-width: 640px;
  }
}
.scroll-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 240, 232, 0.72);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.scroll-link span {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(244, 240, 232, 0.4);
}
.scroll-link span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.marquee {
  border-block: 1px solid rgba(244, 240, 232, 0.12);
  overflow: hidden;
}
.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee span {
  padding: 18px 0;
  color: rgba(244, 240, 232, 0.5);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.section {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 96px 36px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.14);
}
.section-heading h2,
.capabilities-title,
.about-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}
.section-heading h2 { font-size: clamp(32px, 4vw, 58px); }
.section-heading p {
  margin: 0;
  color: rgba(244, 240, 232, 0.52);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.work-card {
  position: relative;
  display: block;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--panel);
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) brightness(0.86);
  transition: filter 500ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-card:hover img {
  filter: grayscale(0.05) brightness(0.96);
  transform: scale(1.025);
}
.film-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.35) brightness(0.78);
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}
.film-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0) 36%, rgba(11, 10, 9, 0.84) 100%);
}
.film-card:hover .film-card__thumb::before {
  transform: scale(1.045);
  filter: grayscale(0.15) brightness(0.88);
}
.film-card__play,
.film-card__meta {
  position: absolute;
  z-index: 2;
}
.card-label {
  margin: 0 0 5px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
}
.film-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 27px);
  font-weight: 700;
  line-height: 1.05;
}

.film-section {
  padding-top: 84px;
  border-top: 1px solid rgba(244, 240, 232, 0.12);
}
.film-lead {
  max-width: 780px;
  margin: -18px 0 34px;
}
.film-lead p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.film-grid {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.film-group {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 24px;
  align-items: start;
}
.film-group__heading {
  position: sticky;
  top: 96px;
  padding-top: 2px;
}
.film-group__heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.film-group__heading p {
  margin: 10px 0 0;
  color: rgba(244, 240, 232, 0.46);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.film-group__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.film-card {
  border: 1px solid rgba(244, 240, 232, 0.14);
  background: #100f0d;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  padding: 0;
  transition: border-color 200ms ease, transform 200ms ease;
}
.film-card:hover,
.film-card:focus-visible {
  border-color: rgba(232, 114, 46, 0.85);
  transform: translateY(-2px);
}
.film-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
}
.film-card__play {
  inset: auto auto 16px 16px;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(244, 240, 232, 0.58);
  border-radius: 50%;
  background: rgba(11, 10, 9, 0.5);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.film-card__body {
  padding: 12px 14px 14px;
}
.film-card h4 {
  margin: 0;
  color: rgba(244, 240, 232, 0.76);
  font-family: var(--font-display);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}
.film-card__body p:last-child {
  margin: 8px 0 0;
  color: rgba(244, 240, 232, 0.36);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capabilities-title {
  max-width: 20ch;
  margin-top: 14px;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.05;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  background: rgba(244, 240, 232, 0.14);
}
.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg);
  padding: 36px 30px 40px;
}
.service-card > p:first-child {
  margin: 0;
  color: rgba(244, 240, 232, 0.4);
  font-family: var(--font-mono);
  font-size: 12px;
}
.service-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}
.service-card p {
  margin: 0 0 18px;
  color: rgba(244, 240, 232, 0.62);
  font-size: 15px;
  line-height: 1.55;
}
.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(244, 240, 232, 0.45);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

.about-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 {
  margin-top: 22px;
  font-size: clamp(25px, 2.7vw, 42px);
  line-height: 1.17;
}
.about-copy h2 span { color: var(--accent); }
.about-copy > p:not(.section-label) {
  max-width: 54ch;
  margin: 30px 0 0;
  color: rgba(244, 240, 232, 0.7);
  font-size: 17px;
  line-height: 1.6;
}
.stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}
.stats span {
  color: rgba(244, 240, 232, 0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.about-image {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--panel);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.85);
}
.about-image figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: rgba(244, 240, 232, 0.75);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.contact-section {
  border-top: 1px solid rgba(244, 240, 232, 0.14);
}
.contact-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.contact-main a {
  display: inline-block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 150px);
  font-weight: 800;
  line-height: 0.95;
  transition: color 200ms ease;
}
.contact-main a:hover,
.contact-main a:focus-visible { color: var(--accent); }
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 64px;
}
.contact-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  color: rgba(244, 240, 232, 0.6);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.contact-links a {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-links span {
  color: rgba(244, 240, 232, 0.4);
  text-transform: uppercase;
}
.footer-brand { font-family: var(--font-logo); }
.copyright {
  margin: 40px 0 0;
  color: rgba(244, 240, 232, 0.35);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 36px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 4, 0.94);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100svh - 72px);
  overflow: auto;
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border: 1px solid rgba(244, 240, 232, 0.35);
  border-radius: 999px;
  background: rgba(11, 10, 9, 0.72);
  color: var(--paper);
  cursor: pointer;
  padding: 9px 15px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.video-shell {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.15);
  border-radius: 6px;
  background: #000;
}
.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.modal__meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
}
.modal__meta p {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.modal__meta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
}
.modal__meta a {
  align-self: flex-start;
  flex: 0 0 auto;
  border: 1px solid rgba(244, 240, 232, 0.35);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 1; }
  60% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

@media (max-width: 960px) {
  .site-header { padding: 18px 22px; }
  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 34px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(244, 240, 232, 0.22);
    border-radius: 999px;
    background: rgba(11, 10, 9, 0.45);
    color: var(--paper);
    padding: 0 11px;
  }
  .nav-toggle span {
    height: 1px;
    width: 100%;
    background: currentColor;
  }
  .site-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    display: none;
    min-width: 210px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border: 1px solid rgba(244, 240, 232, 0.16);
    background: rgba(11, 10, 9, 0.96);
    padding: 12px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; padding: 12px; }
  .hero {
    min-height: 650px;
    padding: 0 22px 56px;
  }
  .hero__meta { right: 22px; }
  .hero__lower { align-items: flex-start; flex-direction: column; }
  .section { padding: 76px 22px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading p { text-align: left; }
  .work-grid,
  .film-group,
  .service-grid,
  .about-section {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .film-group__heading {
    position: static;
  }
  .film-group__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .film-grid { gap: 16px; }
  .about-section { gap: 36px; }
}

@media (max-width: 560px) {
  .hero {
    min-height: 610px;
    padding-bottom: 42px;
  }
  .hero__meta {
    top: 86px;
    font-size: 10px;
  }
  .location,
  .section-label { font-size: 10.5px; }
  .hero h1 { font-size: clamp(46px, 16vw, 76px); }
  .hero__lower p,
  .film-lead p { font-size: 16px; }
  .contact-links,
  .footer,
  .modal__meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal { padding: 18px; }
  .modal__panel { max-height: calc(100svh - 36px); }
  .work-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .film-group__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
