:root {
  --gate-black: #0b0b09;
  --blackened-steel: #14130f;
  --deep-plate: #1a1813;
  --bone: #f1ede2;
  --muted-bone: #c9c1b3;
  --silver: #8f897e;
  --hairline: #2b2925;
  --active-hairline: #5a554c;
  --oxide: #b64032;
  --field: #100f0c;
  --max: 1440px;
  --outer: 64px;
  --gutter: 24px;
  --section: 160px;
  --font-display: "Arial Narrow", "Helvetica Neue Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--gate-black);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / calc((100vw - var(--outer) * 2) / 12) 100%,
    var(--gate-black);
  font-family: var(--font-body);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(241, 237, 226, 0.04);
  opacity: 0.8;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - var(--outer) * 2), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 9, 0.86);
  border-color: var(--hairline);
  backdrop-filter: blur(12px);
}

.site-header .shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: grid;
  gap: 3px;
}

.brand-name {
  font: 500 18px/1 var(--font-body);
}

.brand-role,
.meta,
.nav,
.project-label-kicker,
.card-meta,
.eyebrow,
.footer-grid,
.filter-link,
.small-link,
.copy-status {
  font: 500 12px/1.2 var(--font-mono);
  color: var(--silver);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted-bone);
}

.nav a,
.small-link,
.filter-link {
  position: relative;
  padding: 8px 0;
}

.nav a::after,
.small-link::after,
.filter-link::after,
.text-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--oxide);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after,
.small-link:hover::after,
.filter-link:hover::after,
.filter-link.is-active::after,
.text-cta:hover::after {
  transform: scaleX(1);
}

.text-cta {
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  color: var(--bone);
  font: 500 18px/1.1 var(--font-body);
}

.text-cta span {
  transition: transform 180ms ease;
}

.text-cta:hover span {
  transform: translateX(4px);
}

.muted {
  color: var(--muted-bone);
}

.page-main {
  position: relative;
}

.hero-gate {
  min-height: calc(100vh - 72px);
  padding: 48px 0 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  min-height: 740px;
}

.gate-frame {
  position: absolute;
  margin: 0;
  background: var(--blackened-steel);
  border: 1px solid var(--hairline);
  overflow: hidden;
  isolation: isolate;
}

.gate-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(241, 237, 226, 0.12);
  pointer-events: none;
}

.gate-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
  transition: background-color 180ms ease;
}

.gate-frame:hover::after {
  background: rgba(0, 0, 0, 0.08);
}

.gate-frame img,
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.gate-wide {
  left: calc((100% - 1440px) / 2 + 150px);
  top: 132px;
  width: 828px;
  aspect-ratio: 16 / 9;
  animation: wideGate 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gate-vertical {
  left: calc((100% - 1440px) / 2 + 828px);
  top: 72px;
  width: 292px;
  aspect-ratio: 9 / 16;
  animation: verticalGate 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cut-mark {
  position: absolute;
  left: calc((100% - 1440px) / 2 + 796px);
  top: 316px;
  width: 34px;
  height: 34px;
  z-index: 5;
  border-top: 2px solid var(--oxide);
  border-left: 2px solid var(--oxide);
  animation: cutMark 1100ms ease both;
}

.hero-copy {
  position: absolute;
  left: calc((100% - 1440px) / 2 + 754px);
  top: 244px;
  z-index: 6;
  width: 460px;
  animation: revealUp 900ms ease 360ms both;
}

.hero-copy h1 {
  margin: 0;
  max-width: 420px;
  font: 600 88px/0.92 var(--font-display);
  color: var(--bone);
}

.hero-copy p {
  margin: 26px 0 0;
  max-width: 420px;
  color: var(--muted-bone);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}

.hero-labels {
  position: absolute;
  z-index: 7;
  display: grid;
  gap: 14px;
}

.hero-labels-commercial {
  left: calc((100% - 1440px) / 2 + 150px);
  top: 625px;
  width: 640px;
}

.hero-labels-social {
  left: calc((100% - 1440px) / 2 + 1140px);
  top: 102px;
  width: 250px;
}

.project-label-list {
  display: grid;
  gap: 10px;
}

.project-label {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 44px;
  color: rgba(241, 237, 226, 0.52);
  transition: color 120ms ease, opacity 120ms ease;
}

.project-label:hover,
.project-label:focus-visible {
  color: var(--bone);
}

.project-label:hover .project-label-number::before,
.project-label:focus-visible .project-label-number::before {
  opacity: 1;
}

.project-label-number {
  position: relative;
  font: 500 12px/1.2 var(--font-mono);
  color: var(--silver);
}

.project-label-number::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 4px;
  width: 6px;
  height: 18px;
  background: var(--oxide);
  opacity: 0;
  transition: opacity 120ms ease;
}

.project-label-title {
  font-size: 15px;
  line-height: 1.18;
}

.section {
  padding: var(--section) 0;
}

.section-tight {
  padding: 96px 0;
}

.section-kicker {
  margin-bottom: 28px;
}

.section-heading {
  margin: 0;
  font: 600 56px/0.96 var(--font-display);
}

.split-proof {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(260px, 3fr);
  gap: 96px;
  align-items: start;
}

.lane-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}

.lane-head h2 {
  margin: 7px 0 0;
  font: 600 32px/1 var(--font-display);
}

.project-stack {
  display: grid;
  gap: 80px;
}

.project-card {
  display: block;
}

.project-thumb {
  position: relative;
  overflow: hidden;
  background: var(--blackened-steel);
  border: 1px solid var(--hairline);
  transition: border-color 140ms ease;
}

.project-card:hover .project-thumb {
  border-color: var(--active-hairline);
}

.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  transition: background-color 180ms ease;
}

.project-card:hover .project-thumb::after {
  background: rgba(0, 0, 0, 0.08);
}

.ratio-wide {
  aspect-ratio: 16 / 9;
}

.ratio-vertical {
  aspect-ratio: 9 / 16;
}

.vertical-card {
  width: min(310px, 100%);
}

.card-body {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.card-title {
  margin: 0;
  font: 500 22px/1.08 var(--font-body);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0.62;
  transition: opacity 160ms ease;
}

.project-card:hover .card-meta {
  opacity: 0.88;
}

.view-line {
  color: var(--bone);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.project-card:hover .view-line {
  opacity: 1;
  transform: translateY(0);
}

.statement-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 96px;
  align-items: start;
}

.statement {
  max-width: 900px;
  margin: 0;
  font: 600 56px/1 var(--font-display);
}

.property-list {
  display: grid;
  border-top: 1px solid var(--hairline);
}

.property-row {
  display: grid;
  grid-template-columns: 3fr 6fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 120px;
  border-bottom: 1px solid var(--hairline);
}

.property-row h3 {
  margin: 0;
  font: 600 32px/1 var(--font-display);
}

.property-row p {
  margin: 0;
  max-width: 540px;
  color: var(--muted-bone);
}

.selected-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 96px;
}

.selected-sequence {
  display: grid;
  gap: 112px;
}

.selected-card {
  display: grid;
  gap: 18px;
}

.selected-card.is-wide {
  max-width: 920px;
}

.selected-card.is-right {
  margin-left: auto;
}

.selected-card.is-vertical {
  max-width: 360px;
}

.selected-card p {
  margin: 0;
  max-width: 560px;
  color: var(--muted-bone);
}

.built-for {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 96px;
  align-items: start;
}

.built-for p {
  margin: 0;
  max-width: 760px;
  font: 600 48px/1.03 var(--font-display);
}

.client-list {
  display: grid;
  border-top: 1px solid var(--hairline);
}

.client-list span {
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--muted-bone);
}

.contact-gate {
  margin-bottom: 96px;
}

.contact-box {
  min-height: 420px;
  border: 1px solid var(--hairline);
  background: var(--blackened-steel);
  display: grid;
  align-content: center;
  padding: 72px;
}

.contact-box h2 {
  max-width: 760px;
  margin: 0;
  font: 600 56px/0.98 var(--font-display);
}

.contact-box p {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--muted-bone);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
}

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 40px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

.page-hero {
  padding: 128px 0 80px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 96px;
  align-items: end;
}

.page-hero h1,
.project-hero h1 {
  margin: 16px 0 0;
  font: 600 88px/0.94 var(--font-display);
}

.page-hero p,
.project-hero p {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--muted-bone);
  font-size: 18px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 112px 24px;
}

.work-card-wide {
  grid-column: span 8;
}

.work-card-tall {
  grid-column: span 3;
}

.work-card-offset {
  grid-column-start: 10;
}

.work-card-wide.is-right {
  grid-column: 5 / span 8;
}

.project-hero {
  padding: 128px 0 72px;
}

.project-layout {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 96px;
  align-items: start;
}

.project-rail {
  position: sticky;
  top: 112px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
}

.project-meta {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
}

.project-meta div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--hairline);
  padding: 0 0 12px;
}

.project-meta strong {
  font: 500 12px/1.2 var(--font-mono);
  color: var(--silver);
  text-transform: uppercase;
}

.project-meta span {
  color: var(--muted-bone);
  text-align: right;
}

.project-copy {
  display: grid;
  gap: 42px;
}

.project-block {
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
}

.project-block h2 {
  margin: 0 0 12px;
  font: 500 20px/1 var(--font-body);
}

.project-block p {
  margin: 0;
  max-width: 720px;
  color: var(--muted-bone);
  font-size: 18px;
}

.media-bay {
  grid-column: 1 / -1;
  margin-top: 48px;
  background: var(--field);
  border: 1px solid var(--hairline);
  padding: 28px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--blackened-steel);
}

.video-frame.is-vertical {
  width: min(420px, 100%);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.project-next {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
  margin-top: 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 96px;
  align-items: start;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 96px;
  align-items: start;
}

.email-line {
  display: inline-block;
  margin-top: 42px;
  color: var(--bone);
  font: 500 36px/1.05 var(--font-body);
  word-break: break-word;
}

.checklist {
  display: grid;
  border-top: 1px solid var(--hairline);
}

.checklist span {
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--muted-bone);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

@keyframes wideGate {
  0% {
    clip-path: inset(0 50% 0 50%);
  }
  42%,
  100% {
    clip-path: inset(0);
  }
}

@keyframes verticalGate {
  0%,
  16% {
    clip-path: inset(50% 0 50% 0);
  }
  52%,
  100% {
    clip-path: inset(0);
  }
}

@keyframes cutMark {
  0%,
  56% {
    opacity: 0;
    transform: scale(0.86);
  }
  70%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 1320px) {
  :root {
    --outer: 48px;
    --gutter: 20px;
    --section: 128px;
  }

  .gate-wide {
    left: 72px;
    top: 126px;
    width: 720px;
  }

  .gate-vertical {
    left: 676px;
    top: 78px;
    width: 254px;
  }

  .cut-mark {
    left: 646px;
    top: 300px;
  }

  .hero-copy {
    left: 610px;
    top: 238px;
  }

  .hero-copy h1 {
    font-size: 76px;
  }

  .hero-labels-commercial {
    left: 72px;
    top: 565px;
  }

  .hero-labels-social {
    left: 982px;
    top: 110px;
    width: 220px;
  }
}

@media (max-width: 980px) {
  :root {
    --outer: 32px;
    --section: 104px;
  }

  .site-header {
    height: 64px;
  }

  .nav {
    gap: 16px;
  }

  .hero-gate {
    min-height: auto;
    padding: 72px 0 96px;
  }

  .hero-grid {
    min-height: auto;
    display: grid;
    gap: 28px;
  }

  .hero-copy,
  .gate-wide,
  .gate-vertical,
  .hero-labels,
  .cut-mark {
    position: static;
  }

  .hero-copy {
    width: auto;
    order: 1;
  }

  .hero-copy h1,
  .page-hero h1,
  .project-hero h1 {
    font-size: 64px;
  }

  .gate-wide {
    order: 2;
    width: 100%;
  }

  .hero-labels-commercial {
    order: 3;
    width: auto;
  }

  .gate-vertical {
    order: 4;
    width: 244px;
    justify-self: end;
    margin-top: -90px;
  }

  .hero-labels-social {
    order: 5;
    width: auto;
  }

  .cut-mark {
    order: 4;
    z-index: 6;
    width: 28px;
    height: 28px;
    margin-left: auto;
    margin-right: 230px;
    margin-bottom: -48px;
  }

  .split-grid,
  .statement-grid,
  .built-for,
  .page-hero-grid,
  .about-grid,
  .contact-page-grid,
  .project-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .selected-wrap {
    grid-template-columns: 1fr;
  }

  .sticky-heading,
  .project-rail {
    position: static;
  }

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

  .work-card-wide,
  .work-card-wide.is-right {
    grid-column: 1 / -1;
  }

  .work-card-tall,
  .work-card-offset {
    grid-column: span 4;
  }
}

@media (max-width: 620px) {
  :root {
    --outer: 20px;
    --gutter: 16px;
    --section: 80px;
  }

  body {
    background: var(--gate-black);
  }

  .site-header {
    height: 60px;
  }

  .site-header .shell {
    gap: 16px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-role {
    font-size: 10px;
  }

  .nav {
    gap: 12px;
    font-size: 11px;
  }

  .hero-gate {
    padding: 44px 0 72px;
  }

  .page-hero {
    padding: 82px 0 52px;
  }

  .page-hero + .section {
    padding-top: 36px;
  }

  .hero-copy h1,
  .page-hero h1,
  .project-hero h1 {
    font-size: 46px;
  }

  .hero-copy p,
  .page-hero p,
  .project-hero p,
  .project-block p {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions,
  .filters {
    display: grid;
    gap: 12px;
    justify-items: start;
  }

  .gate-vertical {
    width: 238px;
    justify-self: center;
    margin-top: 0;
  }

  .cut-mark {
    justify-self: center;
    margin: 0;
  }

  .section-heading,
  .statement,
  .contact-box h2 {
    font-size: 32px;
  }

  .property-row {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 28px 0;
  }

  .selected-sequence {
    gap: 72px;
  }

  .vertical-card,
  .selected-card.is-vertical,
  .work-card-tall .project-thumb,
  .work-card-offset .project-thumb {
    width: 238px;
    margin-left: auto;
    margin-right: auto;
  }

  .view-line {
    opacity: 1;
    transform: none;
  }

  .work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .work-card-wide,
  .work-card-wide.is-right,
  .work-card-tall,
  .work-card-offset {
    grid-column: auto;
  }

  .contact-box {
    min-height: auto;
    padding: 36px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .email-line {
    font-size: 24px;
  }

  .project-next {
    display: grid;
  }

  .media-bay {
    padding: 16px;
  }

  .video-frame.is-vertical {
    width: min(272px, 100%);
  }
}

/* QC pass: stable Format Gate layout and hosted 9:16 posters. */
.hero-gate {
  min-height: calc(100vh - 72px);
  padding: 72px 0 80px;
  align-items: flex-start;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px 24px;
  min-height: 650px;
  align-items: start;
}

.gate-composition {
  position: relative;
  grid-column: 1 / 9;
  grid-row: 1;
  width: 100%;
  max-width: 920px;
  align-self: center;
  margin-top: 64px;
}

.gate-wide {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  max-width: 828px;
}

.gate-vertical {
  position: absolute;
  left: auto;
  top: -58px;
  right: -92px;
  width: min(32%, 292px);
}

.cut-mark {
  left: auto;
  top: 176px;
  right: 72px;
}

.hero-copy {
  position: relative;
  left: auto;
  top: auto;
  grid-column: 8 / 13;
  grid-row: 1;
  z-index: 8;
  width: auto;
  max-width: 520px;
  align-self: start;
  margin-top: 164px;
  padding: 22px 0 22px 28px;
  border-left: 1px solid var(--hairline);
  background: linear-gradient(90deg, rgba(11, 11, 9, 0.96), rgba(11, 11, 9, 0.72), rgba(11, 11, 9, 0));
}

.hero-copy h1 {
  max-width: 500px;
  font-size: clamp(54px, 5vw, 68px);
  hyphens: none;
  overflow-wrap: normal;
}

.hero-labels {
  position: relative;
  z-index: 4;
}

.hero-labels-commercial {
  left: auto;
  top: auto;
  width: auto;
  grid-column: 1 / 6;
  grid-row: 1;
  align-self: end;
  margin-bottom: -112px;
}

.hero-labels-social {
  left: auto;
  top: auto;
  width: auto;
  grid-column: 9 / 13;
  grid-row: 1;
  align-self: start;
  margin-top: 18px;
}

.hero-labels-social .project-label-list {
  gap: 6px;
}

.hero-labels-social .project-label {
  min-height: 34px;
}

.text-cta.is-disabled,
.text-cta.is-disabled:hover {
  color: rgba(201, 193, 179, 0.42);
  cursor: not-allowed;
}

.text-cta.is-disabled::after {
  display: none;
}

button.text-cta {
  border: 0;
  background: transparent;
  padding: 0;
}

.profile-card {
  position: relative;
  min-height: 512px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(182, 64, 50, 0.08), transparent 42%),
    linear-gradient(135deg, var(--blackened-steel), var(--field));
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(241, 237, 226, 0.1);
  pointer-events: none;
}

.profile-card::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-top: 2px solid var(--oxide);
  border-right: 2px solid var(--oxide);
  pointer-events: none;
}

.profile-card strong {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  font: 600 42px/0.94 var(--font-display);
  letter-spacing: -0.025em;
  hyphens: none;
  overflow-wrap: normal;
}

.profile-card p,
.profile-card .eyebrow {
  position: relative;
  z-index: 1;
}

.profile-card p {
  margin: 0;
  color: var(--muted-bone);
}

.video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  color: var(--bone);
  background: var(--blackened-steel);
  cursor: pointer;
  overflow: hidden;
}

.video-poster img {
  width: 100%;
  height: 100%;
}

.video-poster img {
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: filter 180ms ease, transform 180ms ease;
}

.video-poster > span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 3;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--bone);
  font: 500 18px/1.1 var(--font-body);
}

.video-poster > span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 12px;
  background: var(--oxide);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.video-poster:hover img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.01);
}

.video-poster:focus-visible,
.text-cta:focus-visible,
.project-label:focus-visible,
.project-card:focus-visible,
.small-link:focus-visible,
.filter-link:focus-visible,
.nav a:focus-visible {
  outline: 2px solid var(--oxide);
  outline-offset: 3px;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1320px) {
  .hero-grid {
    min-height: 620px;
  }

  .gate-composition {
    grid-column: 1 / 8;
    max-width: 760px;
  }

  .gate-vertical {
    right: -76px;
    width: min(34%, 254px);
  }

  .cut-mark {
    top: 158px;
    right: 52px;
  }

  .hero-copy {
    grid-column: 7 / 13;
    margin-top: 142px;
  }

  .hero-copy h1 {
    font-size: clamp(50px, 5.1vw, 62px);
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    min-height: auto;
    align-items: start;
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 780px;
    margin-top: 0;
    padding: 0;
    border-left: 0;
    background: none;
  }

  .gate-composition {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: min(100%, 780px);
    margin-top: 32px;
  }

  .gate-vertical {
    right: 24px;
    top: -70px;
    width: 220px;
  }

  .cut-mark {
    top: 20px;
    right: 232px;
  }

  .hero-labels-commercial {
    grid-column: 1 / 7;
    grid-row: 3;
  }

  .hero-labels-social {
    grid-column: 7 / 13;
    grid-row: 3;
  }
}

@media (max-width: 620px) {
  .hero-gate {
    padding: 52px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy,
  .gate-composition,
  .hero-labels-commercial,
  .hero-labels-social {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-copy {
    order: 1;
  }

  .gate-composition {
    order: 2;
  }

  .hero-labels-commercial {
    order: 3;
  }

  .hero-labels-social {
    order: 4;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 48px);
  }

  .gate-composition {
    display: grid;
    gap: 22px;
    width: 100%;
    margin-top: 8px;
  }

  .gate-wide,
  .gate-vertical,
  .cut-mark {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
  }

  .gate-wide {
    width: 100%;
  }

  .gate-vertical {
    width: 238px;
    justify-self: center;
  }

  .cut-mark {
    justify-self: center;
    margin: -8px 0 -10px;
  }

  .profile-card {
    min-height: 373px;
    max-width: 280px;
  }

  .profile-card strong {
    font-size: 32px;
  }

  .video-poster > span {
    left: 18px;
    bottom: 16px;
    font-size: 16px;
  }
}

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

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

/* v12 stability pass: keep the format idea, remove fragile overlap geometry. */
body {
  background:
    radial-gradient(circle at 82% 18%, rgba(182, 64, 50, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / calc((100vw - var(--outer) * 2) / 12) 100%,
    var(--gate-black);
}

.hero-gate {
  min-height: auto;
  display: block;
  padding: clamp(72px, 8vw, 112px) 0 clamp(88px, 10vw, 136px);
  overflow: clip;
}

.hero-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 52px) 24px;
  align-items: start;
}

.hero-copy {
  position: relative;
  left: auto;
  top: auto;
  grid-column: 1 / 7;
  grid-row: 1;
  z-index: 5;
  width: auto;
  max-width: 660px;
  margin-top: clamp(18px, 4vw, 54px);
  padding: 0;
  border-left: 0;
  background: none;
  animation: none;
}

.hero-copy h1 {
  max-width: 660px;
  font-size: clamp(52px, 4.8vw, 72px);
  line-height: 0.91;
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 500px;
  margin-top: 24px;
  font-size: clamp(16px, 1.25vw, 18px);
}

.gate-composition {
  position: relative;
  grid-column: 7 / 13;
  grid-row: 1;
  width: 100%;
  max-width: none;
  min-height: clamp(390px, 34vw, 520px);
  display: block;
  margin-top: clamp(18px, 4.5vw, 58px);
}

.gate-wide,
.gate-vertical,
.cut-mark {
  left: auto;
  top: auto;
  right: auto;
}

.gate-wide,
.gate-vertical {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  animation: none;
}

.gate-wide {
  width: min(86%, 620px);
  margin-top: clamp(112px, 12vw, 160px);
  aspect-ratio: 16 / 9;
}

.gate-vertical {
  position: absolute;
  right: 0;
  top: 0;
  width: min(36%, 220px);
  aspect-ratio: 9 / 16;
  transform: none;
}

.cut-mark {
  position: absolute;
  z-index: 8;
  width: 28px;
  height: 28px;
  left: auto;
  right: min(34%, 208px);
  top: 52px;
  animation: none;
}

.hero-labels {
  position: relative;
  z-index: 4;
  width: auto;
  margin: 0;
}

.hero-labels-commercial {
  left: auto;
  top: auto;
  grid-column: 1 / 7;
  grid-row: 2;
  align-self: start;
}

.hero-labels-social {
  left: auto;
  top: auto;
  grid-column: 8 / 13;
  grid-row: 2;
  align-self: start;
}

.project-label-list {
  gap: 8px;
}

.project-label {
  min-height: 40px;
}

.statement-grid {
  gap: clamp(48px, 7vw, 96px);
}

.selected-wrap {
  grid-template-columns: 190px 1fr;
  gap: clamp(36px, 6vw, 72px);
}

.selected-sequence {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(54px, 8vw, 92px) 24px;
}

.selected-card {
  min-width: 0;
}

.selected-card.is-wide,
.selected-card.is-vertical {
  max-width: none;
}

.selected-card.is-right {
  margin-left: 0;
}

.selected-card:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1;
}

.selected-card:nth-child(2) {
  grid-column: 5 / 13;
  grid-row: 1;
}

.selected-card:nth-child(3) {
  grid-column: 1 / 9;
  grid-row: 2;
}

.selected-card:nth-child(4) {
  grid-column: 9 / 13;
  grid-row: 2;
}

.selected-card:nth-child(5) {
  grid-column: 1 / 9;
  grid-row: 3;
}

.selected-card:nth-child(6) {
  grid-column: 9 / 13;
  grid-row: 3;
}

.work-grid {
  gap: clamp(58px, 8vw, 96px) 24px;
}

@media (min-width: 1021px) {
  .work-card-tall,
  .work-card-wide,
  .work-card-wide.is-right,
  .work-card-offset {
    grid-column-start: auto;
  }

  .work-grid .project-card:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1;
  }

  .work-grid .project-card:nth-child(2) {
    grid-column: 5 / 13;
    grid-row: 1;
  }

  .work-grid .project-card:nth-child(3) {
    grid-column: 1 / 9;
    grid-row: 2;
  }

  .work-grid .project-card:nth-child(4) {
    grid-column: 9 / 13;
    grid-row: 2;
  }

  .work-grid .project-card:nth-child(5) {
    grid-column: 1 / 9;
    grid-row: 3;
  }

  .work-grid .project-card:nth-child(6) {
    grid-column: 9 / 13;
    grid-row: 3;
  }
}

.project-thumb,
.gate-frame,
.contact-box,
.profile-card,
.media-bay {
  box-shadow: none;
}

@media (min-width: 1181px) {
  .hero-gate {
    padding-top: clamp(56px, 6.2vw, 88px);
    padding-bottom: 72px;
  }

  .hero-grid {
    gap: clamp(24px, 3vw, 36px) 24px;
  }

  .hero-copy {
    margin-top: clamp(14px, 3.6vw, 48px);
  }

  .gate-composition {
    min-height: clamp(340px, 30vw, 440px);
    margin-top: clamp(8px, 2.8vw, 38px);
  }

  .gate-wide {
    width: min(84%, 590px);
    margin-top: clamp(86px, 9vw, 128px);
  }

  .gate-vertical {
    width: min(34%, 214px);
  }

  .project-label {
    min-height: 36px;
  }
}

@media (max-width: 1180px) {
  .hero-gate {
    padding-top: 36px;
    padding-bottom: 84px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 820px;
    margin-top: 0;
  }

  .hero-copy h1 {
    max-width: 820px;
    font-size: clamp(46px, 6.2vw, 64px);
    line-height: 0.92;
  }

  .hero-copy p {
    max-width: 560px;
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .gate-composition {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 244px);
    min-height: 0;
    max-width: 860px;
    margin-top: 2px;
  }

  .gate-wide {
    width: 100%;
    margin-top: 0;
  }

  .gate-vertical {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: translateY(0);
  }

  .cut-mark {
    left: auto;
    right: 254px;
    top: 14px;
  }

  .hero-labels-commercial {
    grid-column: 1 / 7;
    grid-row: 3;
  }

  .hero-labels-social {
    grid-column: 7 / 13;
    grid-row: 3;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .shell {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    min-width: 0;
  }

  .page-main,
  .hero-grid,
  .hero-copy,
  .gate-composition,
  .hero-labels,
  .selected-wrap,
  .selected-sequence {
    min-width: 0;
    max-width: 100%;
  }

  .hero-gate {
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brand,
  .small-link,
  .filter-link {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header .shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    gap: 10px;
  }

  .brand {
    min-width: 0;
    display: grid;
    justify-content: start;
  }

  .brand-name {
    font-size: 15px;
    white-space: nowrap;
  }

  .brand-role {
    font-size: 9px;
  }

  .nav {
    flex: 0 0 auto;
    gap: 8px;
    font-size: 10px;
  }

  .nav a {
    min-width: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.2vw, 46px);
    line-height: 0.94;
  }

  .hero-copy p {
    max-width: 100%;
    margin-top: 18px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-copy,
  .gate-composition,
  .hero-labels-commercial,
  .hero-labels-social {
    grid-column: 1;
    grid-row: auto;
  }

  .gate-composition {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: none;
  }

  .gate-wide {
    width: 100%;
    margin-top: 0;
  }

  .gate-wide,
  .gate-vertical,
  .cut-mark {
    position: relative;
  }

  .gate-vertical {
    width: min(238px, 72vw);
    justify-self: center;
  }

  .cut-mark {
    justify-self: center;
    left: auto;
    right: auto;
    top: auto;
    margin: -4px 0 -6px;
  }

  .hero-labels {
    gap: 10px;
  }

  .project-label-list {
    gap: 4px;
  }

  .project-label,
  .hero-labels-social .project-label {
    min-height: 44px;
    align-items: center;
  }

  .selected-wrap {
    grid-template-columns: 1fr;
  }

  .selected-sequence {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .selected-card:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .selected-card.is-vertical {
    width: min(238px, 72vw);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .shell {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .site-header .shell {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
    gap: 8px;
  }

  .brand-name {
    font-size: 14px;
  }

  .nav {
    gap: 7px;
    font-size: 9.5px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 9.8vw, 42px);
  }
}
