:root {
  --ink: #050505;
  --paper: #ffffff;
  --soft: #f3f3f3;
  --muted: #737373;
  --cyan: #c2b6a1;
  --line: #d9d9d9;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand span {
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: var(--cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--ink);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: var(--paper);
  background: #000000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/black-white-background.png") center / cover no-repeat;
  opacity: 0.1;
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 74px 0 52px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-visual {
  align-self: end;
  justify-self: end;
  width: min(100%, 560px);
  position: relative;
  z-index: 3;
  transform: translate3d(var(--hero-parallax-x, 0), var(--hero-parallax-y, 0), 0);
  transition: transform 900ms ease-out;
  will-change: transform;
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  max-height: calc(88vh - 72px);
  object-fit: contain;
  object-position: right bottom;
  animation: hoodieFloat 8s ease-in-out infinite;
  will-change: transform;
}

@keyframes hoodieFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual {
    transform: none;
    transition: none;
  }

  .hero-visual img {
    animation: none;
  }
}

.eyebrow {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 980px;
  margin: 18px 0 18px;
  font-size: clamp(54px, 10vw, 142px);
  line-height: 0.88;
}

.hero h1 {
  font-family: "Google Sans", "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.page-hero h1 {
  text-transform: uppercase;
}

.motion-title {
  font-family: "Google Sans", "Roboto", Arial, Helvetica, sans-serif;
  font-size: 40pt;
  font-weight: 700;
  text-transform: uppercase;
}

.hero p,
.page-hero p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 25px);
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta a {
  background: var(--paper);
  color: var(--ink);
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 3vw, 42px);
}

.section.dark {
  color: var(--paper);
  background: var(--ink);
}

.section.soft {
  background: var(--soft);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.section h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 0.95;
  text-transform: lowercase;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service:last-child {
  border-right: 0;
}

.service h3 {
  margin: 0 0 48px;
  color: var(--cyan);
  font-size: 15px;
  text-transform: uppercase;
}

.service p {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

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

.motion-grid .work-card,
.motion-grid .work-card img {
  min-height: 260px;
}

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

.video-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.video-card::after {
  content: "Play";
  position: absolute;
  inset: auto 14px 14px auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 34px;
  padding: 0 14px;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}


.local-video-grid .local-video-card {
  background: #000;
}

.local-video-card::after {
  content: "Open";
}

.local-video-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-video-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.video-modal__status {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  margin: 0;
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}
.video-card:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.9);
}

.video-modal.is-open {
  display: flex;
}

.video-modal__panel {
  position: relative;
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}


.modal-open {
  overflow: hidden;
}

.local-video-modal__panel {
  width: var(--video-width, min(1320px, calc(100vw - 72px)));
  height: var(--video-height, auto);
  max-width: calc(100vw - 72px);
  max-height: calc(100vh - 116px);
  aspect-ratio: auto;
}

.video-modal__video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}
.video-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0 16px;
  color: var(--paper);
  background: #000;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: var(--ink);
  border-radius: 6px;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 220ms ease, opacity 220ms ease;
}

.work-card:hover img {
  transform: scale(1.04);
  opacity: 0.62;
}

.work-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--paper);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.clients {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.clients span {
  border: 1px solid var(--line);
  padding: 10px 14px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(42px, 8vw, 88px);
  background: var(--cyan);
  color: var(--paper);
}

.cta-band h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 8vw, 110px);
  line-height: 0.92;
  text-transform: lowercase;
}

.cta-band .pill-link {
  border-color: var(--paper);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 34px clamp(18px, 3vw, 42px);
  color: var(--paper);
  background: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--paper);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.social-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.page-hero {
  color: var(--paper);
  background: var(--ink);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 3vw, 42px);
}

.page-hero-inner,
.page-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.page-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 3vw, 42px);
}

.copy-columns {
  columns: 2 340px;
  column-gap: 52px;
  color: #2a2a2a;
  font-size: 18px;
}

.copy-columns p {
  break-inside: avoid;
  margin: 0 0 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 14px 12px;
  font: inherit;
  background: var(--paper);
}

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

.submit {
  justify-self: start;
  min-height: 46px;
  border: 0;
  padding: 0 24px;
  color: var(--paper);
  background: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-success {
  color: #2f7a42;
}

.form-note.is-error {
  color: #b00020;
}

.submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    position: fixed;
    inset: 85px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .split,
  .hero-inner,
  .contact-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

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

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

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

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

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

  .hero {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(48px, 16vw, 74px);
  }

  .services,
  .work-grid,
  .motion-grid,
  .video-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
  }

  .work-card,
  .work-card img {
    min-height: 260px;
  }
}







