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

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --orange: #ff6b10;
  --orange-dark: #d94c00;
  --black: #0a0a0a;
  --ink: #111111;
  --paper: #f2f0ea;
  --white: #ffffff;
  --muted: #b8b8b8;
  --line-dark: rgba(255, 255, 255, 0.17);
  --line-light: rgba(10, 10, 10, 0.18);
  --shell: min(88vw, 1500px);
  --shell-wide: min(96vw, 1900px);
  --header-height: 82px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --section-space: clamp(6rem, 11vw, 11rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
picture {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
  background: var(--orange);
  color: var(--black);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.section {
  position: relative;
  padding-block: var(--section-space);
}

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

.section--dark {
  background: var(--black);
  color: var(--white);
}

.display {
  max-width: 18ch;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(4.4rem, 8.2vw, 9.4rem);
  font-weight: 900;
  letter-spacing: -0.018em;
  line-height: 0.92;
  text-transform: uppercase;
}

.display--large {
  font-size: clamp(5rem, 10vw, 11.5rem);
}

.display--xl {
  font-size: clamp(5.6rem, 12vw, 13.5rem);
}

.display em {
  color: var(--orange);
  font-style: normal;
}

.display--orange {
  color: var(--orange);
}

.display--work {
  max-width: 15ch;
  font-size: clamp(4.5rem, 6.6vw, 7.8rem);
  line-height: 0.9;
}

.eyebrow,
.section-marker {
  margin: 0 0 1.2rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.section-marker::before {
  display: inline-block;
  width: 2.6rem;
  height: 2px;
  margin-right: 0.8rem;
  vertical-align: 0.25em;
  background: var(--orange);
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 29rem);
  align-items: end;
  gap: 5vw;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.section-heading__aside {
  max-width: 36ch;
  margin: 0 0 0.5rem;
  color: #4a4a4a;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.section-heading--dark .section-heading__aside {
  color: #bcbcbc;
}

.button {
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

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

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

.button--orange:hover {
  background: var(--white);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

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

.button--black:hover {
  background: var(--white);
  color: var(--black);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 4vw;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  transition: height 260ms var(--ease), background-color 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 68px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 7, 7, 0.91);
  backdrop-filter: blur(16px);
}

.wordmark {
  position: relative;
  z-index: 5;
  display: flex;
  width: clamp(8rem, 10vw, 9.25rem);
  height: clamp(2.5rem, 3vw, 3.05rem);
  align-items: center;
  overflow: visible;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3rem);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-cta {
  position: relative;
}

.desktop-nav a::after,
.header-cta::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.header-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta span {
  color: var(--orange);
  font-size: 1rem;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: #24180f;
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.035);
  object-fit: cover;
  object-position: 56% 50%;
  will-change: transform;
}

.hero__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.88) 0%, rgba(9, 9, 9, 0.74) 32%, rgba(9, 9, 9, 0.42) 54%, rgba(9, 9, 9, 0.09) 78%, rgba(9, 9, 9, 0.06) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, transparent 38%);
}

.hero__grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 12.5vw 100%, 100% 25vh;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 5rem;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(4.8rem, 9.2vw, 10.8rem);
  font-weight: 900;
  letter-spacing: -0.018em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 em {
  display: inline-block;
  margin-top: 0.14em;
  color: var(--orange);
  font-size: 0.57em;
  font-style: normal;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero__lede {
  max-width: 46rem;
  margin: clamp(2rem, 3vw, 3.4rem) 0 0;
  color: #e1e1e1;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__location {
  margin: 1.8rem 0 0;
  color: #a4a4a4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__location span {
  margin-inline: 0.65rem;
  color: var(--orange);
}

.hero__index {
  position: absolute;
  z-index: 3;
  right: 3vw;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__index span:first-child {
  color: var(--orange);
  font-size: 0.75rem;
}

.statement {
  background: var(--black);
}

.statement__grid {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(0, 4fr);
  gap: 5vw;
}

.statement__copy {
  max-width: 62rem;
  margin: 3rem 0 0;
  color: #cacaca;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.55;
}

.work {
  overflow: hidden;
}

.portfolio-grid {
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: clamp(4.5rem, 6vw, 7rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas:
    "one one one one one two two two two two two two"
    "one one one one one two two two two two two two"
    "one one one one one two two two two two two two"
    "one one one one one two two two two two two two"
    "one one one one one three three three three four four four"
    "one one one one one three three three three four four four"
    "one one one one one three three three three four four four"
    "one one one one one three three three three four four four"
    "five five five five six six six six six four four four"
    "five five five five six six six six six four four four"
    "five five five five six six six six six four four four"
    "five five five five six six six six six four four four"
    "five five five five seven seven seven eight eight eight eight eight"
    "five five five five seven seven seven eight eight eight eight eight"
    "five five five five seven seven seven eight eight eight eight eight"
    "five five five five seven seven seven eight eight eight eight eight";
  gap: clamp(0.45rem, 0.8vw, 1rem);
}

.portfolio-card {
  position: relative;
  display: block;
  min-height: 18rem;
  overflow: hidden;
  background: #1a1a1a;
  color: var(--white);
}

.portfolio-card:nth-child(1) { grid-area: one; }
.portfolio-card:nth-child(2) { grid-area: two; }
.portfolio-card:nth-child(3) { grid-area: three; }
.portfolio-card:nth-child(4) { grid-area: four; }
.portfolio-card:nth-child(5) { grid-area: five; }
.portfolio-card:nth-child(6) { grid-area: six; }
.portfolio-card:nth-child(7) { grid-area: seven; }
.portfolio-card:nth-child(8) { grid-area: eight; }

.portfolio-card picture,
.portfolio-card img {
  width: 100%;
  height: 100%;
}

.portfolio-card img {
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.portfolio-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.82) 100%);
  content: "";
  opacity: 0.72;
  transition: opacity 350ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.035);
}

.portfolio-card:hover::after {
  opacity: 1;
}

.portfolio-card__tag,
.portfolio-card__caption {
  position: absolute;
  z-index: 2;
}

.portfolio-card__tag {
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.55rem;
  background: var(--orange);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-card__caption {
  right: 1.2rem;
  bottom: 1.1rem;
  left: 1.2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.portfolio-card__caption strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 3rem);
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-card__caption small {
  max-width: 12ch;
  color: #d4d4d4;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.work__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.2rem;
}

.work__footer p {
  max-width: 38rem;
  margin: 0;
  color: #5d5d5d;
  font-size: 0.85rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services {
  overflow: hidden;
}

.service-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  color: #8a8a8a;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-controls p {
  margin: 0;
}

.service-controls div {
  display: flex;
}

.service-controls button {
  width: 3.3rem;
  height: 3.3rem;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.service-controls button + button {
  border-left: 0;
}

.service-controls button:hover {
  background: var(--orange);
  color: var(--black);
}

.service-rail {
  display: flex;
  gap: 1px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-inline: 6vw;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  scroll-padding-inline: 6vw;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #242424;
  scrollbar-width: thin;
}

.service-panel {
  position: relative;
  flex: 0 0 clamp(21rem, 39vw, 38rem);
  min-height: min(48rem, 78vh);
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background: #171717;
  scroll-snap-align: start;
}

.service-panel picture,
.service-panel img,
.service-panel__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-panel img {
  object-fit: cover;
  transition: transform 750ms var(--ease), filter 500ms ease;
}

.service-panel__scrim {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.95) 76%);
}

.service-panel__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.5rem, 3vw, 2.8rem);
}

.service-panel:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.service-panel__content > span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-panel h3 {
  margin: 0.35rem 0 0.8rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.012em;
  line-height: 0.94;
  text-transform: uppercase;
}

.service-panel p {
  max-width: 39rem;
  margin: 0;
  color: #d6d6d6;
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  color: #c4c4c4;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.service-panel li::before {
  margin-right: 0.45rem;
  color: var(--orange);
  content: "+";
}

.service-panel__content > a {
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--orange);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-panel--type {
  background: var(--orange);
  color: var(--black);
}

.service-panel--type::before {
  position: absolute;
  top: 2rem;
  right: -0.04em;
  color: rgba(0, 0, 0, 0.09);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 20rem;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.7;
  content: "4K";
}

.service-panel--type .service-panel__content > span,
.service-panel--type p,
.service-panel--type ul {
  color: var(--black);
}

.service-panel--type .service-panel__kicker {
  max-width: 8ch;
  margin-bottom: 6rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-panel--type .service-panel__content > a {
  border-color: var(--black);
}

.media-day {
  overflow: hidden;
  background: var(--orange);
  color: var(--black);
}

.media-day__backdrop {
  position: absolute;
  top: 0.18em;
  right: -0.06em;
  color: rgba(0, 0, 0, 0.07);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(12rem, 30vw, 35rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.7;
  white-space: nowrap;
}

.media-day__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.95fr);
  align-items: center;
  gap: 7vw;
}

.media-day .section-marker::before {
  background: var(--black);
}

.media-day .display em {
  color: var(--white);
}

.media-day__intro {
  max-width: 48rem;
  margin: 2.6rem 0 0;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.55;
}

.media-day__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 2.5rem;
  margin: 3.2rem 0;
}

.media-day__points div {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.32);
}

.media-day__points dt {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.media-day__points dd {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.media-day__collage {
  position: relative;
  min-height: 55rem;
}

.media-day__image {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);
}

.media-day__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-day__image--one {
  top: 0;
  right: 6%;
  width: 61%;
  height: 72%;
  transform: rotate(2.2deg);
}

.media-day__image--two {
  right: 45%;
  bottom: 0;
  width: 50%;
  height: 54%;
  transform: rotate(-3.2deg);
}

.media-day__image--three {
  right: 0;
  bottom: 3%;
  width: 36%;
  height: 42%;
  transform: rotate(4deg);
}

.visual-break {
  position: relative;
  min-height: clamp(34rem, 72vw, 70rem);
  overflow: hidden;
  background: var(--black);
}

.visual-break picture,
.visual-break img,
.visual-break__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-break img {
  object-fit: cover;
  object-position: center 36%;
}

.visual-break__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.48));
}

.visual-break__branding {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 3vw;
  left: 4vw;
  display: grid;
  gap: clamp(0.8rem, 1.6vw, 1.5rem);
}

.visual-break__logo-frame {
  position: relative;
  width: min(82vw, 92rem);
  overflow: visible;
}

.visual-break__logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0.75rem 2rem rgba(0, 0, 0, 0.5));
}

.visual-break__copy {
  display: flex;
  width: min(92rem, 82vw);
  justify-content: space-between;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-transform: uppercase;
}

.visual-break__copy span:last-child {
  color: var(--orange);
}

.why__heading {
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) minmax(0, 4fr);
  gap: 4vw;
}

.why__heading .display {
  max-width: 12ch;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(5rem, 8vw, 9rem);
  border-top: 1px solid var(--line-light);
}

.why__item {
  min-height: 24rem;
  padding: 1.5rem 1.5rem 2rem;
  border-right: 1px solid var(--line-light);
}

.why__item:first-child {
  padding-left: 0;
}

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

.why__item > span {
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.why__item h3 {
  max-width: 9ch;
  margin: 9rem 0 1rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.008em;
  line-height: 0.98;
  text-transform: uppercase;
}

.why__item p {
  max-width: 30ch;
  margin: 0;
  color: #5d5d5d;
  font-size: 0.83rem;
}

.about {
  overflow: hidden;
  background: #101010;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(32rem, 1.1fr);
  align-items: center;
  gap: 8vw;
}

.about__copy > p:not(.section-marker):not(.about__subhead):not(.about__closing) {
  max-width: 54ch;
  color: #b8b8b8;
}

.about__subhead {
  margin: 1.8rem 0 2.8rem;
  color: var(--orange);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.about__closing {
  max-width: 48ch;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  font-weight: 700;
}

.about__images {
  position: relative;
  min-height: 50rem;
}

.about__image {
  position: absolute;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image--one {
  top: 5%;
  left: 0;
  width: 66%;
  height: 48%;
}

.about__image--two {
  right: 0;
  bottom: 8%;
  width: 60%;
  height: 40%;
}

.about__image--three {
  top: 0;
  right: 2%;
  width: 31%;
  height: 44%;
  border: 0.5rem solid #101010;
}

.final-cta {
  position: relative;
  display: flex;
  min-height: 94svh;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.final-cta > picture,
.final-cta > picture img,
.final-cta__overlay {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
}

.final-cta > picture img {
  width: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.final-cta__overlay {
  width: 100%;
  background: linear-gradient(90deg, #090909 0%, #090909 44%, rgba(9, 9, 9, 0.76) 60%, rgba(9, 9, 9, 0.05) 100%);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  padding-block: 8rem;
}

.final-cta__content > p:not(.section-marker):not(.final-cta__services) {
  max-width: 34rem;
  margin: 2.3rem 0 0;
  color: #d1d1d1;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.final-cta__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.final-cta__services {
  margin: 3.5rem 0 0;
  color: #878787;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.final-cta__services span {
  margin-inline: 0.45rem;
  color: var(--orange);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(36rem, 1.18fr);
  align-items: start;
  gap: 9vw;
}

.contact__intro {
  position: sticky;
  top: 7rem;
}

.contact__intro > p:not(.section-marker) {
  max-width: 38rem;
  color: #a9a9a9;
  font-size: 1.05rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 3.2rem;
  font-style: normal;
}

.contact__details a {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.contact__details a:hover {
  color: var(--orange);
}

.contact__details span {
  margin-top: 1rem;
  color: #737373;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.2rem;
  padding-top: 0.6rem;
}

.form-field {
  grid-column: 1 / -1;
}

.form-field--half {
  grid-column: span 1;
}

.form-field label {
  display: block;
  margin-bottom: 0.55rem;
  color: #aaa;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #3c3c3c;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  caret-color: var(--orange);
  transition: border-color 180ms ease;
}

.form-field input,
.form-field select {
  height: 3.2rem;
}

.form-field textarea {
  min-height: 10rem;
  padding-block: 0.8rem;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--orange) 50%),
    linear-gradient(135deg, var(--orange) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #646464;
}

.form-submit {
  width: max-content;
  margin-top: 1rem;
  border: 0;
  cursor: pointer;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.75;
}

.form-note {
  align-self: center;
  margin: 1rem 0 0;
  color: #777;
  font-size: 0.65rem;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-status {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--orange);
  background: rgba(255, 107, 16, 0.1);
  color: #f7d9c8;
  font-size: 0.85rem;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__top {
  min-height: 13rem;
  border-bottom: 1px solid var(--line-dark);
}

.wordmark--footer {
  width: clamp(12rem, 24vw, 22rem);
  height: clamp(4rem, 7.5vw, 7rem);
}

.site-footer__top p {
  color: #808080;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.site-footer__top p span {
  margin-inline: 0.35rem;
  color: var(--orange);
}

.site-footer__bottom {
  min-height: 6rem;
  color: #787878;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.3rem;
}

.site-footer__bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.site-footer__bottom a:hover,
.site-footer__bottom button:hover {
  color: var(--white);
}

.legal-dialog {
  width: min(90vw, 42rem);
  max-height: min(85vh, 52rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid #323232;
  background: #111;
  color: var(--white);
}

.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.legal-dialog h2 {
  margin: 0 0 2rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  letter-spacing: -0.015em;
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-dialog p:not(.section-marker) {
  color: #bcbcbc;
}

.legal-dialog a {
  color: var(--orange);
}

.legal-dialog__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid #383838;
  background: transparent;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 1.8rem, 0);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(90vw, 1200px);
  }

  .display {
    font-size: clamp(4.2rem, 9vw, 7.4rem);
  }

  .desktop-nav {
    gap: 1.4rem;
  }

  .hero__media {
    width: 100%;
  }

  .hero__content {
    width: 90vw;
  }

  .portfolio-grid {
    grid-auto-rows: minmax(7rem, 7vw);
  }

  .media-day__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
  }

  .media-day__collage {
    min-height: 44rem;
  }

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

  .why__item:nth-child(2) {
    border-right: 0;
  }

  .why__item:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .about__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }

  .about__images {
    min-height: 42rem;
  }

  .contact__grid {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 4rem;
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 68px;
    --section-space: clamp(5.5rem, 16vw, 8rem);
    --shell: 90vw;
    --shell-wide: 94vw;
  }

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

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 5vw;
  }

  .site-header.is-open {
    backdrop-filter: none;
  }

  .wordmark {
    width: 8.75rem;
  }

  .wordmark--footer {
    width: 14rem;
    height: 4.5rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 5;
    display: flex;
    width: 3rem;
    height: 3rem;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.42rem;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 1.8rem;
    height: 1px;
    background: var(--white);
    transition: transform 220ms var(--ease), width 220ms ease;
  }

  .menu-toggle span:last-child {
    width: 1.2rem;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    width: 1.8rem;
    transform: translateY(0.22rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    width: 1.8rem;
    transform: translateY(-0.22rem) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 4;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.15rem;
    overflow-y: auto;
    padding: 7.5rem 8vw 2rem;
    transform: translateY(-1rem);
    background: #0a0a0a;
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease, transform 240ms var(--ease), visibility 240ms;
  }

  .mobile-menu.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu > a:not(.button) {
    width: max-content;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(4rem, 18vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.012em;
    line-height: 0.92;
    text-transform: uppercase;
  }

  .mobile-menu > .button {
    width: max-content;
    margin-top: 2rem;
  }

  .mobile-menu__meta {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    padding-bottom: 1rem;
    color: #8f8f8f;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero__media {
    width: 100%;
  }

  .hero__media img {
    object-position: 57% 50%;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.18) 30%, rgba(8, 8, 8, 0.9) 72%, #080808 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 70%);
  }

  .hero__grid {
    background-size: 25vw 100%, 100% 25vh;
    mask-image: linear-gradient(0deg, black, transparent 80%);
  }

  .hero__content {
    width: 90vw;
    padding-top: 8rem;
    padding-bottom: 2.4rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.75rem, 16vw, 6.4rem);
  }

  .hero h1 em {
    font-size: 0.53em;
  }

  .hero__lede {
    max-width: 34rem;
    margin-top: 1.6rem;
    font-size: 0.92rem;
  }

  .hero__actions {
    margin-top: 1.5rem;
  }

  .hero__location {
    max-width: 30rem;
    margin-top: 1.4rem;
    font-size: 0.58rem;
  }

  .hero__index {
    display: none;
  }

  .statement__grid,
  .section-heading,
  .why__heading,
  .media-day__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .statement__grid,
  .section-heading,
  .why__heading {
    gap: 2.5rem;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading__aside {
    max-width: 35rem;
  }

  .statement__copy {
    margin-top: 2rem;
    font-size: 1.1rem;
  }

  .display,
  .display--large,
  .display--xl {
    font-size: clamp(4.1rem, 15vw, 7.4rem);
  }

  .portfolio-grid {
    grid-auto-rows: minmax(10.5rem, 45vw);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "one three"
      "one four"
      "two two"
      "five seven"
      "six six"
      "eight eight";
  }

  .portfolio-card__caption {
    display: block;
  }

  .portfolio-card__caption strong {
    font-size: 1.6rem;
  }

  .portfolio-card__caption small {
    display: block;
    margin-top: 0.35rem;
    text-align: left;
  }

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

  .service-rail {
    padding-inline: 5vw;
    scroll-padding-inline: 5vw;
  }

  .service-panel {
    flex-basis: min(88vw, 34rem);
    min-height: 43rem;
  }

  .media-day__grid {
    gap: 5rem;
  }

  .media-day__collage {
    min-height: min(42rem, 110vw);
  }

  .visual-break {
    min-height: 82svh;
  }

  .visual-break img {
    object-position: 48% center;
  }

  .visual-break__branding {
    right: 5vw;
    bottom: 6vw;
    left: 5vw;
  }

  .visual-break__logo-frame,
  .visual-break__copy {
    width: 90vw;
  }

  .visual-break__copy {
    font-size: clamp(1.1rem, 4.5vw, 1.8rem);
  }

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

  .why__item {
    min-height: 20rem;
  }

  .why__item h3 {
    margin-top: 6rem;
  }

  .about__grid {
    gap: 5rem;
  }

  .about__images {
    min-height: min(47rem, 130vw);
  }

  .final-cta {
    min-height: 94svh;
    align-items: flex-end;
  }

  .final-cta > picture,
  .final-cta > picture img {
    width: 100%;
  }

  .final-cta__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 8%, rgba(0, 0, 0, 0.35) 38%, rgba(8, 8, 8, 0.96) 78%, #080808 100%);
  }

  .final-cta__content {
    padding: 6rem 0 3rem;
  }

  .contact__grid {
    gap: 5rem;
  }

  .contact__intro {
    position: static;
  }
}

@media (min-width: 801px) and (max-height: 900px) {
  .hero__content {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 6.8vw, 7.2rem);
  }

  .hero__lede {
    max-width: 40rem;
    margin-top: 1.35rem;
    font-size: 0.98rem;
  }

  .hero__actions {
    margin-top: 1.25rem;
  }

  .hero__location {
    margin-top: 1.25rem;
  }
}

@media (max-width: 540px) {
  .eyebrow,
  .section-marker {
    font-size: 0.61rem;
  }

  .button {
    min-height: 3.35rem;
    padding-inline: 1rem;
    font-size: 0.68rem;
  }

  .hero__actions {
    gap: 0.45rem;
  }

  .hero__location span {
    margin-inline: 0.35rem;
  }

  .portfolio-grid {
    gap: 0.34rem;
  }

  .portfolio-card {
    min-height: 12rem;
  }

  .portfolio-card__tag {
    top: 0.65rem;
    left: 0.65rem;
    font-size: 0.5rem;
  }

  .portfolio-card__caption {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .portfolio-card__caption strong {
    font-size: 1.25rem;
  }

  .portfolio-card__caption small {
    display: none;
  }

  .service-controls p {
    max-width: 18ch;
  }

  .service-panel {
    min-height: 40rem;
  }

  .service-panel__content {
    padding: 1.4rem;
  }

  .service-panel h3 {
    font-size: 3rem;
  }

  .media-day__points {
    grid-template-columns: 1fr;
  }

  .media-day__collage {
    min-height: 35rem;
  }

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

  .why__item,
  .why__item:first-child {
    min-height: auto;
    padding: 1.5rem 0 2.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .why__item h3 {
    margin-top: 3.5rem;
  }

  .about__images {
    min-height: 33rem;
  }

  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
    width: max-content;
  }

  .final-cta__services {
    max-width: 35ch;
    line-height: 1.8;
  }

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

  .form-field--half {
    grid-column: 1 / -1;
  }

  .form-submit {
    width: 100%;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .site-footer__top {
    padding-block: 3rem;
  }

  .site-footer__top p {
    max-width: 28rem;
    text-align: left;
  }

  .site-footer__bottom {
    padding-block: 2rem;
  }

  .site-footer__bottom nav {
    justify-content: flex-start;
  }
}

@media (min-width: 1700px) {
  .hero__content {
    width: var(--shell);
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: min(7vw, 8.5rem);
  }

  .hero__lede {
    margin-top: 1.6rem;
  }

  .hero__actions {
    margin-top: 1.4rem;
  }

  .hero__location {
    margin-top: 1.2rem;
  }

  .service-rail {
    padding-inline: max(6vw, calc((100vw - 1680px) / 2));
  }
}

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

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

  .hero__media img {
    transform: none;
  }

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