@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/bebas-neue-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('fonts/barlow-400-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('fonts/barlow-500-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('fonts/barlow-600-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('fonts/barlow-700-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('fonts/ibm-plex-mono-500-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('fonts/ibm-plex-mono-600-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #050505;
  --black-soft: #111111;
  --graphite: #1a1a1a;
  --white: #f5f5f0;
  --paper: #e7e7e1;
  --silver: #b9b9b3;
  --signal: #c8ff2e;
  --white-line: rgba(245, 245, 240, 0.26);
  --black-line: rgba(5, 5, 5, 0.24);
  --shell: min(1380px, calc(100vw - 64px));
  --header-height: 74px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--white) var(--black);
}

section[id] {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  color: var(--black);
  background: var(--signal);
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--black);
  background: var(--signal);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  font-size: clamp(4rem, 7.8vw, 6rem);
}

h2 {
  font-size: clamp(3.8rem, 7vw, 6rem);
}

h3 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--black);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  background: transparent;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms var(--ease-out), background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.button svg,
.service-row a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button-light {
  color: var(--black);
  background: var(--signal);
}

.button-light:hover {
  color: var(--black);
  background: var(--white);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--white);
  border-color: var(--white-line);
}

.button-outline:hover {
  color: var(--black);
  background: var(--white);
  transform: translateY(-2px);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-light {
  padding: clamp(5.5rem, 10vw, 10rem) 0;
  color: var(--black);
  background: var(--white);
}

.section-dark {
  padding: clamp(5.5rem, 10vw, 10rem) 0;
  color: var(--white);
  background: var(--black);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--black-line);
}

.section-intro h2 {
  max-width: 10ch;
}

.section-intro p {
  max-width: 52ch;
  padding-bottom: 0.35rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.section-intro-dark {
  border-color: var(--white-line);
}

.section-intro-dark p {
  color: #c5c5bf;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  border-bottom: 1px solid var(--white-line);
  background: rgba(5, 5, 5, 0.96);
}

.header-inner {
  width: var(--shell);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.42rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.9rem 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a:hover {
  color: var(--signal);
}

.header-quote {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  margin-left: auto;
  display: none;
  place-content: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid var(--white-line);
  background: var(--black);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 220ms var(--ease-out);
}

.menu-toggle[aria-expanded='true'] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu.is-open {
  display: grid;
  padding: 0 24px 24px;
  border-top: 1px solid var(--white-line);
  background: var(--black);
}

.mobile-menu > a:not(.button) {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--white-line);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu .button {
  margin-top: 18px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  border-bottom: 1px solid var(--white-line);
  background: var(--black);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  top: 0;
  bottom: 0;
  left: 24px;
  width: 1px;
  background: var(--white-line);
}

.hero::after {
  top: 0;
  right: 24px;
  bottom: 0;
  width: 1px;
  background: var(--white-line);
}

.registration {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--silver);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.registration i {
  position: relative;
  width: 12px;
  height: 12px;
}

.registration i {
  color: var(--signal);
}

.registration i::before,
.registration i::after {
  content: '';
  position: absolute;
  background: currentColor;
}

.registration i::before {
  top: 5px;
  left: 0;
  width: 12px;
  height: 1px;
}

.registration i::after {
  top: 0;
  left: 5px;
  width: 1px;
  height: 12px;
}

.registration-top {
  top: 18px;
  right: 42px;
}

.hero-layout {
  width: var(--shell);
  min-height: calc(100svh - var(--header-height));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  align-items: stretch;
  gap: clamp(1.5rem, 3.2vw, 3.6rem);
  padding: clamp(3.8rem, 7vw, 6.5rem) 0 2rem;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
  color: var(--silver);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.hero-meta span {
  color: var(--signal);
}

.accent-word {
  color: var(--signal);
}

.hero h1 {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-wrap: balance;
}

.hero-lede {
  max-width: 57ch;
  margin-top: 1.35rem;
  color: #d0d0cb;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.8rem;
}

.hero-contact-sheet {
  max-width: 610px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(2rem, 5vh, 3.8rem);
  border: 1px solid var(--white-line);
}

.hero-contact-sheet figure {
  position: relative;
  height: clamp(100px, 13vw, 155px);
  overflow: hidden;
  border-right: 1px solid var(--white-line);
  background: var(--graphite);
}

.hero-contact-sheet figure:last-child {
  border-right: 0;
}

.hero-contact-sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-contact-sheet figure:first-child img {
  object-position: 50% 68%;
}

.hero-contact-sheet figure:nth-child(2) img {
  object-position: 50% 43%;
}

.hero-contact-sheet figure:nth-child(3) img {
  object-position: 50% 58%;
}

.hero-contact-sheet span {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 8px;
  padding: 0.2rem 0.35rem;
  color: var(--black);
  background: var(--signal);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--white-line);
  background: var(--graphite);
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  transform: scale(1.018);
}

.inspection-scan {
  position: absolute;
  z-index: 3;
  top: -10%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--signal);
  box-shadow: 0 10px 32px rgba(255, 255, 255, 0.18);
  animation: inspection-scan 4.2s 0.5s var(--ease-out) 1 both;
}

@keyframes inspection-scan {
  0% { top: -2%; opacity: 0; }
  10% { opacity: 1; }
  75% { opacity: 0.8; }
  100% { top: 102%; opacity: 0; }
}

.hero-spec {
  position: absolute;
  z-index: 4;
  top: 74px;
  right: 22px;
  min-width: 248px;
  display: grid;
  padding: 1rem 1.1rem;
  color: var(--white);
  border: 1px solid currentColor;
  background: rgba(5, 5, 5, 0.82);
  font-family: 'IBM Plex Mono', monospace;
}

.hero-spec strong {
  margin-bottom: 0.45rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
}

.hero-spec span {
  color: #d0d0cb;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.hero-side-label {
  position: absolute;
  z-index: 4;
  right: -145px;
  bottom: 170px;
  width: 360px;
  color: var(--silver);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  transform: rotate(90deg);
}

.proof-tape {
  overflow: hidden;
  color: var(--black);
  border-block: 1px solid var(--black);
  background: var(--signal);
}

.proof-tape p {
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3rem;
  padding: 0.78rem 2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.proof-tape span {
  position: relative;
  padding-left: 26px;
}

.proof-tape span::before,
.proof-tape span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--black);
  transform: translateY(-50%);
}

.proof-tape span::before {
  width: 10px;
  height: 1px;
}

.proof-tape span::after {
  left: 4.5px;
  width: 1px;
  height: 10px;
}

/* Services */
.service-list {
  border-bottom: 1px solid var(--black-line);
}

.service-row {
  min-height: 180px;
  display: grid;
  grid-template-columns: 90px minmax(250px, 0.9fr) minmax(280px, 1fr) minmax(170px, auto);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 2rem 0;
  border-bottom: 1px solid var(--black-line);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-index {
  align-self: start;
  color: #555551;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.service-row p {
  max-width: 48ch;
  color: #40403d;
}

.service-row a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--black);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-row a svg {
  transition: transform 220ms var(--ease-out);
}

.service-row a:hover svg {
  transform: translateX(6px);
}

/* Work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 72px;
  gap: 10px;
  padding-top: 12px;
}

.work-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--white-line);
  background: var(--graphite);
}

.work-shot-a { grid-column: span 4; grid-row: span 7; }
.work-shot-b { grid-column: span 3; grid-row: span 4; }
.work-shot-c { grid-column: span 5; grid-row: span 6; }
.work-shot-d { grid-column: span 3; grid-row: span 5; }
.work-shot-e { grid-column: span 5; grid-row: span 5; }
.work-shot-f { grid-column: span 4; grid-row: span 6; }
.work-shot-g { grid-column: span 4; grid-row: span 5; }
.work-shot-h { grid-column: span 4; grid-row: span 5; }

.work-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.work-shot:hover img {
  transform: scale(1.035);
}

.work-shot figcaption {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.62rem;
  color: var(--black);
  background: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-shot figcaption span {
  color: #60605d;
}

/* Reels */
.reels {
  background: var(--paper);
}

.reels-intro {
  margin-bottom: 12px;
}

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

.reel-card {
  min-width: 0;
  display: grid;
  gap: 0;
  padding: 0;
  color: var(--black);
  border: 1px solid var(--black);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
}

.reel-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--black);
  background: var(--black);
}

.reel-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 12px solid transparent;
  transition: border-color 260ms var(--ease-out);
  pointer-events: none;
}

.reel-card:hover .reel-frame::after {
  border-color: rgba(200, 255, 46, 0.58);
}

.reel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out);
}

.reel-card:hover .reel-frame img {
  transform: scale(1.025);
}

.play-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--black);
  border: 1px solid var(--signal);
  border-radius: 50%;
  background: var(--signal);
  transform: translate(-50%, -50%);
  transition: color 220ms var(--ease-out), background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.play-mark svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reel-card:hover .play-mark {
  color: var(--signal);
  background: var(--black);
  transform: translate(-50%, -50%) scale(1.06);
}

.reel-code {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 0.35rem 0.45rem;
  color: var(--black);
  background: var(--signal);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.reel-copy {
  display: grid;
  padding: 1rem;
}

.reel-copy strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.reel-copy small {
  margin-top: 0.5rem;
  color: #53534f;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.noscript-note {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Process */
.process {
  border-top: 1px solid var(--white-line);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.process-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.process-heading p {
  max-width: 49ch;
  margin-top: 1.5rem;
  color: #c5c5bf;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--white-line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--white-line);
}

.process-list li > span {
  padding-top: 0.35rem;
  color: var(--signal);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
}

.process-list h3 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.process-list p {
  max-width: 50ch;
  margin-top: 0.65rem;
  color: #bdbdb8;
}

/* Quote request */
.quote {
  border-top: 1px solid var(--white-line);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.quote-copy h2 {
  max-width: 9ch;
}

.quote-copy p {
  max-width: 47ch;
  margin-top: 1.5rem;
  color: #c5c5bf;
}

.quote-form {
  border-top: 1px solid var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
}

.quote-field {
  min-width: 0;
  display: grid;
  align-content: start;
  padding: 1rem 0 0.75rem;
  border-bottom: 1px solid var(--white-line);
  transition: box-shadow 180ms var(--ease-out);
}

.quote-field:focus-within {
  box-shadow: inset 0 -3px 0 var(--signal);
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-field > span {
  color: var(--signal);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.62rem 0 0.25rem;
  color: var(--white);
  border: 0;
  outline: 0;
  background: var(--black);
  caret-color: var(--signal);
  font-size: 1.05rem;
  line-height: 1.45;
}

.quote-field select {
  color-scheme: dark;
  cursor: pointer;
}

.quote-field textarea {
  min-height: 130px;
  resize: vertical;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: #969690;
  opacity: 1;
}

.quote-form.was-validated .quote-field:has(:invalid) {
  outline: 2px solid #ff9c9c;
  outline-offset: -2px;
}

.quote-actions {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.quote-actions p,
.form-status {
  color: #bdbdb8;
  font-size: 0.86rem;
}

.form-status {
  margin-top: 1rem;
  color: var(--signal);
}

.form-status.is-error {
  color: #ffb0b0;
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 10rem);
}

.contact-layout h2 {
  max-width: 9ch;
}

.contact-layout > div:first-child > p {
  max-width: 48ch;
  margin-top: 1.5rem;
}

.contact-stack {
  border-top: 1px solid var(--black);
}

.contact-line {
  min-height: 110px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid var(--black);
  text-decoration: none;
  transition: box-shadow 220ms var(--ease-out);
}

.contact-line:hover {
  box-shadow: inset 0 -5px 0 var(--signal);
}

.contact-line > span {
  color: #555551;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-line strong {
  overflow-wrap: anywhere;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.contact-arrow {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 220ms var(--ease-out);
}

.contact-line:hover .contact-arrow {
  transform: translate(5px, -5px);
}

/* Footer and mobile CTA */
.site-footer {
  width: var(--shell);
  min-height: 145px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  color: var(--white);
  background: var(--black);
}

.site-footer p {
  color: var(--silver);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.mobile-cta {
  display: none;
}

/* Reel modal */
.reel-dialog {
  width: min(450px, calc(100vw - 28px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 0;
  background: var(--black);
}

.reel-dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.dialog-head {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--white-line);
}

.dialog-head p {
  overflow: hidden;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.dialog-head button {
  min-height: 34px;
  padding: 0.35rem 0.65rem;
  color: var(--white);
  border: 1px solid var(--white-line);
  background: var(--black);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.dialog-video {
  height: min(680px, calc(100dvh - 150px));
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}

.dialog-video video {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--black);
  object-fit: contain;
}

.dialog-fallback {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--white-line);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.dialog-fallback:hover {
  color: var(--black);
  background: var(--signal);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 44px, 1120px);
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .hero-side-label {
    display: none;
  }

  .service-row {
    grid-template-columns: 62px minmax(210px, 0.85fr) minmax(250px, 1fr);
  }

  .service-row a {
    grid-column: 2 / -1;
    width: min(100%, 330px);
    margin-top: -1rem;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .desktop-nav,
  .header-quote {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 4.5rem;
  }

  .hero-copy {
    padding-top: 1.5rem;
  }

  .hero-lede {
    max-width: 64ch;
  }

  .hero-media {
    min-height: 680px;
  }

  .hero-contact-sheet {
    max-width: none;
  }

  .service-row {
    grid-template-columns: 58px 1fr;
  }

  .service-row h3,
  .service-row p,
  .service-row a {
    grid-column: 2;
  }

  .service-row p {
    margin-top: -0.75rem;
  }

  .work-grid {
    grid-auto-rows: 62px;
  }

  .work-shot-a,
  .work-shot-c,
  .work-shot-e,
  .work-shot-f { grid-column: span 7; }

  .work-shot-b,
  .work-shot-d,
  .work-shot-g,
  .work-shot-h { grid-column: span 5; }

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

  .process-layout,
  .contact-layout,
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .process-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  body {
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 5.5rem);
  }

  h2 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .section-light,
  .section-dark {
    padding: 5.5rem 0;
  }

  .site-header::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: var(--white-line);
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .registration-top {
    right: 22px;
  }

  .registration-top span {
    display: none;
  }

  .hero::before {
    left: 8px;
  }

  .hero::after {
    right: 8px;
  }

  .hero-layout {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-meta {
    max-width: 32ch;
    font-size: 0.7rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    padding-inline: 0.7rem;
  }

  .hero-contact-sheet {
    margin-top: 2.3rem;
  }

  .hero-contact-sheet figure {
    height: 118px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-spec {
    top: 18px;
    right: 14px;
    min-width: 220px;
  }

  .proof-tape p {
    justify-content: flex-start;
  }

  .proof-tape span:nth-child(n + 3) {
    display: none;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .section-intro h2 {
    max-width: 8ch;
  }

  .service-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  .service-row h3,
  .service-row p,
  .service-row a {
    grid-column: 1;
  }

  .service-row p,
  .service-row a {
    margin-top: 0;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 78px;
    gap: 7px;
  }

  .work-shot-a,
  .work-shot-c,
  .work-shot-e,
  .work-shot-f,
  .work-shot-b,
  .work-shot-d,
  .work-shot-g,
  .work-shot-h {
    grid-column: span 1;
    grid-row: span 4;
  }

  .work-shot-a,
  .work-shot-d,
  .work-shot-f,
  .work-shot-h {
    grid-row: span 5;
  }

  .work-shot figcaption {
    right: 6px;
    bottom: 6px;
    left: 6px;
    display: grid;
    gap: 0.1rem;
    padding: 0.4rem;
    font-size: 0.7rem;
  }

  .reels {
    overflow: hidden;
  }

  .reel-grid {
    width: auto;
    margin-right: calc((100vw - var(--shell)) / -2);
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-right: 15px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .reel-card {
    width: min(75vw, 300px);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .play-mark {
    width: 58px;
    height: 58px;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 1rem;
  }

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

  .quote-field-full {
    grid-column: auto;
  }

  .quote-actions {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quote-actions .button {
    width: 100%;
  }

  .contact-stack {
    min-width: 0;
  }

  .contact-line {
    min-height: 92px;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 0.7rem;
  }

  .contact-line strong {
    font-size: clamp(1.5rem, 7.6vw, 2.15rem);
  }

  .contact-line[href^='mailto'] strong {
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: none;
  }

  .site-footer {
    min-height: 210px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1rem;
    padding-block: 2rem;
  }

  .site-footer p {
    line-height: 1.4;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 58px;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    color: var(--white);
    border-top: 1px solid var(--white);
    background: var(--black);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    border-right: 1px solid var(--white-line);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-cta a:last-child {
    color: var(--black);
    border-right: 0;
    background: var(--signal);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
