@font-face {
  font-family: "DIN Engschrift";
  src:
    local("DIN Engschrift LT Pro"),
    local("DIN 1451 LT Pro Engschrift"),
    local("DINEngschriftLTPro"),
    url("assets/fonts/din-engschrift.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "DIN Mittelschrift";
  src:
    local("DIN Mittelschrift LT Pro"),
    local("DIN 1451 LT Pro Mittelschrift"),
    local("DINMittelschriftLTPro"),
    url("assets/fonts/din-mittelschrift.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "Bitter WG";
  src:
    local("Bitter Regular"),
    local("Bitter-Regular"),
    url("assets/fonts/bitter-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root {
  --black: #0a0a0a;
  --ink: #24262b;
  --red: #d7182a;
  --white: #ffffff;
  --paper: #f7f7f4;
  --mist: #dedede;
  --silver: #bfbfbf;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.86);
  --grid: rgba(10, 10, 10, 0.105);
  --hairline: rgba(10, 10, 10, 0.34);
  --shadow: 0 24px 70px rgba(10, 10, 10, 0.14);
  --shadow-hover: 0 30px 86px rgba(10, 10, 10, 0.2);
  --max: 1440px;
  --pad: 28px;
  --header: 64px;
  --header-compact: 44px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-synthesis: none;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  padding-top: var(--header);
  background: var(--paper);
  color: var(--ink);
  font-family: "Bitter WG", Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image:
    linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.058) 1px, transparent 1px);
  background-size: 12.5vw 100%, 100% 96px;
}

body::after {
  z-index: -1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent 34%);
}

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

a {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-180%);
  background: var(--black);
  color: var(--white);
  padding: 8px 12px;
}

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

.glass-panel {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(1.24);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(10, 10, 10, 0.22);
  background: rgba(247, 247, 244, 0.72);
  backdrop-filter: blur(22px) saturate(1.2);
  transition: height 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-compact {
  height: var(--header-compact);
  border-color: rgba(10, 10, 10, 0.28);
  background: rgba(247, 247, 244, 0.86);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "DIN Engschrift", Arial Narrow, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(3px);
  transition: gap 180ms ease, font-size 180ms ease, transform 180ms ease;
}

.site-header.is-compact .brand-lockup {
  gap: 9px;
  font-size: 22px;
  transform: translateY(2px);
}

.brand-lockup span {
  display: inline-block;
  transform: translateY(2px);
}

.brand-glyph {
  width: 34px;
  height: 36px;
  object-fit: contain;
  transition: width 180ms ease, height 180ms ease;
}

.site-header.is-compact .brand-glyph {
  width: 25px;
  height: 27px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "DIN Mittelschrift", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  transform: translateY(3px);
  transition: gap 180ms ease, font-size 180ms ease, transform 180ms ease;
}

.site-header.is-compact .site-nav {
  gap: 22px;
  font-size: 15px;
  transform: translateY(2px);
}

.site-nav a {
  display: inline-block;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transform: translateY(2px);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  padding: 0;
  transform: translateY(3px);
  transition: width 180ms ease, height 180ms ease, padding 180ms ease, transform 180ms ease;
}

.site-header.is-compact .nav-toggle {
  width: 36px;
  height: 36px;
  transform: translateY(2px);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  margin: 0;
}

main > section,
.case-study {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

main > section {
  scroll-margin-top: 28px;
}

.hero {
  min-height: calc(100svh - var(--header));
  display: flex;
  align-items: stretch;
  padding-top: clamp(18px, 2.8vh, 30px);
  padding-bottom: clamp(26px, 3.2vh, 40px);
}

.hero-grid {
  position: relative;
  width: 100%;
  min-height: calc(100svh - var(--header) - 70px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.hero-kicker {
  position: absolute;
  top: 0;
  left: calc(46px - ((100vw - min(100vw, var(--max))) / 2));
  width: min(calc(100vw - var(--pad) - 46px), 760px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  text-align: center;
}

.eyebrow,
.section-kicker,
.project-meta,
.filter-button,
.button,
.contact-link,
.project-cta,
.form-row label,
.contact-form button,
.case-overview,
.case-nav,
.brand-values dt {
  font-family: "DIN Mittelschrift", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 18px;
  line-height: 1.1;
}

h1,
h2,
h3,
.project-title {
  margin: 0;
  color: var(--black);
  font-family: "DIN Engschrift", Arial Narrow, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: 124px;
}

h2 {
  max-width: 920px;
  font-size: 76px;
}

.hero-tagline {
  margin: 0;
  color: var(--red);
  font-family: "DIN Mittelschrift", Arial, sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 650px;
  margin: clamp(10px, 1.6vh, 18px) 0 0;
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(18px, 2.5vh, 28px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px 10px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 19px;
  line-height: 1;
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.58);
  color: var(--black);
}

.button:hover,
.button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red);
  color: var(--white);
}

.error-page {
  min-height: 100svh;
  padding-top: 0;
}

.error-shell {
  min-height: 100svh;
  width: min(760px, calc(100% - var(--pad) * 2));
  margin: 0 auto;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  text-align: center;
}

.error-shell .section-kicker {
  margin: 0;
  color: var(--red);
  font-size: clamp(44px, 9vw, 104px);
  line-height: 0.9;
}

.error-shell img {
  width: min(560px, 86vw);
  height: auto;
}

.error-shell h1 {
  margin: 10px 0 0;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.92;
}

.error-shell p:not(.section-kicker) {
  max-width: 520px;
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: clamp(-64px, -5svh, -24px);
  min-height: 0;
  overflow: clip;
  border-radius: var(--radius);
}

.hero-logo-card {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 0;
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.075) 34%,
    rgba(255, 255, 255, 0.04) 58%,
    rgba(255, 255, 255, 0.015) 76%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-logo-card img {
  position: relative;
  z-index: 1;
  width: min(76vw, 1360px);
  height: auto;
  max-width: 100%;
  max-height: min(72svh, 640px);
  object-fit: contain;
  margin: 0 auto;
  transform: none;
}

@media (min-width: 721px) and (min-height: 860px) {
  .hero-logo-card img {
    width: min(73vw, 1160px);
    max-height: min(68svh, 640px);
  }
}

.work-section,
.about-section,
.services-section,
.contact-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-heading {
  display: flex;
  max-width: 920px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 34px;
}

.section-heading .section-kicker {
  margin-bottom: 12px;
}

.section-heading h2 {
  text-align: left;
}

.work-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-bar {
  flex: 1 1 520px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button,
.project-search-toggle,
.project-search-clear {
  appearance: none;
  -webkit-appearance: none;
  min-height: 38px;
  padding: 9px 13px 7px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  color: var(--black);
  -webkit-text-fill-color: currentColor;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  backdrop-filter: blur(16px);
}

.filter-button.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.project-search {
  flex: 0 1 auto;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  min-width: 38px;
}

.project-search-toggle,
.project-search-clear {
  width: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0;
}

.search-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}

.search-icon::before,
.search-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.search-icon::before {
  inset: 1px 4px 4px 1px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  width: 8px;
  height: 2px;
  right: 0;
  bottom: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.project-search input {
  width: 0;
  min-width: 0;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font: 400 16px/1 "DIN Mittelschrift", Arial, sans-serif;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(16px);
  transition: width 180ms ease, padding 180ms ease, opacity 160ms ease, border-color 180ms ease;
}

.project-search.is-open input {
  width: min(260px, 42vw);
  padding: 9px 12px 7px;
  border: 1px solid var(--hairline);
  opacity: 1;
  pointer-events: auto;
}

.project-search input:focus {
  outline: 2px solid rgba(215, 24, 42, 0.34);
  outline-offset: 2px;
}

.project-search-clear {
  display: none;
  font-size: 22px;
  line-height: 1;
}

.project-search.has-query .project-search-clear {
  display: inline-grid;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}

.project-card {
  grid-column: span 4;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(215, 24, 42, 0.55);
  box-shadow: var(--shadow-hover);
}

.project-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.project-image {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: rgba(222, 222, 222, 0.5);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.project-card:hover img,
.project-card:focus-within img {
  transform: scale(1.035);
}

.project-content {
  display: flex;
  flex: 1;
  min-height: 270px;
  flex-direction: column;
  padding: 18px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--red);
  font-size: 16px;
}

.project-title {
  display: block;
  margin-top: 14px;
  font-size: 44px;
}

.project-summary {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.45;
}

.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--black);
  font-size: 17px;
}

.project-cta::after,
.case-nav a:first-child::before,
.case-nav a:last-child::after,
.contact-link::after {
  color: var(--red);
}

.project-cta::after,
.case-nav a:last-child::after,
.contact-link::after {
  content: ">";
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
}

.about-media,
.about-copy {
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about-logo-panel {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(28px, 5vw, 72px);
}

.about-logo-panel img {
  width: min(100%, 780px);
  height: auto;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
}

.about-copy {
  align-self: center;
  padding: 34px;
}

.about-copy p:not(.section-kicker) {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 20px;
}

.brand-values {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
}

.brand-values div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 10, 10, 0.16);
}

.brand-values dt {
  color: var(--red);
}

.brand-values dd {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  min-height: 204px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 20px 18px;
}

.service span {
  display: block;
  width: 42px;
  height: 4px;
  background: var(--red);
}

.service h3 {
  margin-top: clamp(28px, 3vw, 40px);
  font-size: 42px;
  transform: translateY(2px);
}

.service p {
  margin: 14px 0 0;
  font-size: 17px;
  transform: translateY(2px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  grid-template-rows: auto 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-copy {
  grid-column: 1;
  grid-row: 1;
  padding: 34px;
}

.contact-copy p:not(.section-kicker) {
  max-width: 620px;
  font-size: 21px;
}

.contact-panel {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  display: grid;
  overflow: hidden;
}

.contact-link {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 13px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.16);
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
}

.contact-link:last-child {
  border-bottom: 0;
}

.contact-form {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 18px;
  padding: 26px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--red);
  font-size: 16px;
  line-height: 1;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid rgba(10, 10, 10, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  backdrop-filter: blur(12px);
}

.form-row textarea {
  min-height: 180px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 24, 42, 0.14);
}

.contact-form .button {
  width: fit-content;
}

.form-note {
  margin: 0;
  color: rgba(36, 38, 43, 0.78);
  font-size: 15px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px var(--pad) 42px;
  font-family: "DIN Mittelschrift", Arial, sans-serif;
  text-transform: uppercase;
}

.site-footer img {
  width: 28px;
}

.case-study {
  padding-top: 16px;
  padding-bottom: 36px;
}

.case-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  padding-top: 22px;
}

.case-hero-copy {
  order: 1;
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  margin: 18px auto 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}

.case-hero:not(.is-logo-hero) .case-hero-copy,
.case-hero:not(.is-logo-hero) .case-hero-text {
  display: contents;
}

.case-hero-copy.glass-panel {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.case-hero > .section-kicker {
  position: absolute;
  top: 0;
  left: calc(46px - ((100vw - min(100vw, var(--max))) / 2));
  width: min(calc(100vw - var(--pad) - 46px), 760px);
  margin: 0;
  text-align: left;
}

.case-hero-copy h1 {
  order: 1;
  justify-self: center;
  width: min(100%, 1280px);
  font-size: clamp(72px, 7.2vw, 112px);
  text-align: center;
}

.case-hero-text {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.case-hero.is-logo-hero {
  grid-template-columns: 1fr;
}

.case-hero.is-logo-hero .case-hero-copy {
  min-height: 420px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.case-hero.is-logo-hero .case-hero-media {
  display: none;
}

.case-hero-logo {
  display: block;
  width: min(760px, 72vw);
  max-height: 240px;
  object-fit: contain;
}

.case-summary {
  order: 3;
  justify-self: center;
  width: min(100%, 1280px);
  max-width: 900px;
  margin: 18px 0 0;
  padding: 24px 34px 26px;
  font-size: 22px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(1.24);
}

.case-hero-media {
  order: 2;
  margin-top: 18px;
  min-height: clamp(440px, 50vw, 760px);
  overflow: hidden;
}

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

.case-overview,
.case-story {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.case-overview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
}

.case-story {
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
}

.case-overview {
  padding: 24px 28px;
}

.case-overview > div:nth-child(3) {
  grid-column: 1 / -1;
}

.case-overview p,
.case-story p {
  margin: 0;
}

.case-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-overview li {
  padding: 7px 10px 5px;
  border: 1px solid rgba(10, 10, 10, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.case-story article {
  min-height: 280px;
  padding: 24px;
}

.case-story article .section-kicker {
  margin-bottom: 10px;
}

.case-story article p:not(.section-kicker) {
  font-size: 18px;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1.06fr) minmax(320px, 0.94fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
}

.case-feature.is-reversed {
  grid-template-columns: minmax(320px, 0.94fr) minmax(320px, 1.06fr);
}

.case-feature.is-reversed .case-feature-media {
  order: 2;
}

.case-feature-media {
  min-height: 580px;
  overflow: hidden;
}

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

.case-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 34px 30px;
}

.case-feature-copy .section-kicker {
  margin-bottom: 10px;
}

.case-feature-copy p:not(.section-kicker) {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 20px;
}

.case-feature-full {
  grid-template-columns: 1fr;
}

.case-feature-full .case-feature-copy {
  align-items: flex-start;
  text-align: left;
}

.case-feature-full .case-feature-copy p:not(.section-kicker) {
  max-width: none;
}

.case-feature-full .case-feature-media,
.case-brand-pair .case-feature-media {
  min-height: auto;
  display: grid;
  place-items: center;
  padding: 16px;
}

.case-feature-full .case-feature-media img,
.case-brand-pair .case-feature-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.case-brand-logo .case-feature-media img {
  width: min(720px, 100%);
}

.case-brand-identity .case-feature-media {
  gap: 18px;
}

.case-feature-full .case-feature-media .case-brand-identity-logo {
  display: block;
  width: min(720px, 80%);
  max-height: 220px;
  object-fit: contain;
}

.case-brand-identity-grid,
.case-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.case-brand-identity-grid img,
.case-comparison-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 2px);
}

.case-brand-stack {
  display: grid;
  gap: 16px;
  width: 100%;
}

.case-brand-stack img,
.case-typography-grid img {
  display: block;
  border-radius: calc(var(--radius) - 2px);
}

.case-brand-pair .case-feature-copy {
  min-height: 420px;
}

.case-typography-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.case-carousel-section .case-feature-media {
  display: grid;
  gap: 16px;
  align-items: start;
  place-items: stretch;
  overflow: hidden;
}

.case-carousel-section .section-kicker {
  margin: 4px 4px 0;
}

.case-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 4px;
}

.case-carousel-header .section-kicker {
  margin: 0;
}

.case-carousel-controls {
  display: inline-flex;
  gap: 7px;
}

.case-carousel-control {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(10, 10, 10, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--black);
  line-height: 1;
  cursor: pointer;
}

.case-carousel-control::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.case-carousel-control.is-prev::before {
  transform: translateX(1px) rotate(-135deg);
}

.case-carousel-control.is-next::before {
  transform: translateX(-1px) rotate(45deg);
}

.case-carousel-control:hover,
.case-carousel-control:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.case-carousel-control:disabled {
  border-color: rgba(10, 10, 10, 0.18);
  color: rgba(36, 38, 43, 0.32);
  cursor: default;
  opacity: 1;
}

.case-carousel-control:disabled:hover,
.case-carousel-control:disabled:focus-visible {
  border-color: rgba(10, 10, 10, 0.18);
  color: rgba(36, 38, 43, 0.32);
}

.case-image-carousel {
  --carousel-image-height: clamp(340px, 34vw, 560px);
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.case-image-carousel::-webkit-scrollbar {
  display: none;
}

.case-image-carousel figure {
  flex: 0 0 auto;
  width: max-content;
  height: var(--carousel-image-height);
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  scroll-snap-align: start;
}

.case-carousel-section.is-short-carousel .case-image-carousel {
  display: flex;
  justify-content: center;
}

.case-carousel-section.is-short-carousel .case-image-carousel figure {
  flex: 0 0 auto;
}

.case-carousel-section.is-short-carousel .case-image-carousel figure:only-child {
  flex-basis: auto;
}

.case-carousel-button {
  display: grid;
  place-items: center;
  width: max-content;
  height: var(--carousel-image-height);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.case-carousel-button:focus-visible {
  outline: 3px solid rgba(215, 24, 42, 0.58);
  outline-offset: -3px;
}

.case-carousel-section .case-image-carousel img {
  display: block;
  width: auto;
  max-width: none;
  height: var(--carousel-image-height);
  max-height: var(--carousel-image-height);
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.case-gallery-image .case-feature-media img {
  max-height: 980px;
}

.case-gallery-image .case-carousel-button img {
  display: block;
}

.case-gallery-image .case-carousel-button {
  width: 100%;
  height: auto;
}

.case-embed-panel {
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.case-feature-full .case-embed-panel,
.case-embed-full .case-embed-panel {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  place-items: stretch;
  padding: 10px;
}

.case-embed-full .case-embed-panel {
  min-height: 720px;
}

.case-embed-full .case-embed-toolbar > span {
  color: var(--red);
}

.case-embed-toolbar,
.embed-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: "DIN Mittelschrift", Arial Narrow, sans-serif;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.case-embed-toolbar {
  align-items: flex-start;
  width: 100%;
  justify-self: stretch;
  min-height: 28px;
  padding: 4px 0 10px 6px;
}

.case-embed-toolbar > span {
  margin-right: auto;
  color: var(--red);
  transform: translateY(2px);
}

.case-embed-open,
.embed-lightbox-toolbar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border: 1px solid rgba(10, 10, 10, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--black);
  cursor: pointer;
  font-family: "DIN Mittelschrift", Arial Narrow, sans-serif;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.case-embed-open {
  margin-left: auto;
  padding: 5px 9px;
  transform: translateY(-3px);
}

.case-embed-open-label {
  display: block;
  color: var(--black);
  transform: translateY(2px);
}

.case-embed-open:hover,
.case-embed-open:focus-visible,
.embed-lightbox-toolbar button:hover,
.embed-lightbox-toolbar button:focus-visible {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.case-embed-frame,
.embed-lightbox-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(10, 10, 10, 0.22);
  border-radius: var(--radius);
  background: var(--white);
}

.case-embed-frame {
  flex: 1 1 auto;
  min-height: 540px;
}

.embed-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.embed-lightbox[hidden] {
  display: none;
}

.embed-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.12);
}

.embed-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1440px, calc(100vw - 48px));
  height: min(900px, calc(100svh - 48px));
  max-height: calc(100svh - 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(247, 247, 244, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.embed-lightbox-toolbar {
  padding: 7px 10px 6px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}

.embed-lightbox-toolbar button {
  padding: 5px 10px;
}

.embed-lightbox-frame {
  min-height: 0;
  border: 0;
  border-radius: 0;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-nav[hidden] {
  display: none;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(18px) saturate(1.12);
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1320px, calc(100vw - 48px));
  height: min(900px, calc(100svh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(247, 247, 244, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.image-lightbox-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.18);
  font-family: "DIN Mittelschrift", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.image-lightbox-toolbar button,
.image-lightbox-nav {
  border: 1px solid rgba(10, 10, 10, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  color: var(--black);
  cursor: pointer;
  font-family: "DIN Mittelschrift", Arial, sans-serif;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.image-lightbox-toolbar button {
  min-height: 42px;
  padding: 10px 14px 8px;
  font-size: 18px;
}

.image-lightbox-toolbar button:hover,
.image-lightbox-toolbar button:focus-visible,
.image-lightbox-nav:hover,
.image-lightbox-nav:focus-visible {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.image-lightbox-panel img {
  align-self: center;
  justify-self: center;
  max-width: calc(100% - 112px);
  max-height: calc(100% - 36px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.image-lightbox-nav::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.image-lightbox-nav.is-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.image-lightbox-nav.is-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.image-lightbox-nav.is-prev {
  left: 18px;
}

.image-lightbox-nav.is-next {
  right: 18px;
}

.case-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
}

.case-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transform: translateY(2px);
}

.project-nav-short {
  display: none;
}

.case-nav a:nth-child(2) {
  color: var(--red);
}

.case-nav a:last-child {
  justify-self: end;
}

.case-nav a:first-child::before {
  content: "<";
  margin-right: 8px;
}

.case-nav a:last-child::after {
  margin-left: 8px;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 92px;
  }

  h2 {
    font-size: 58px;
  }

  .about-section,
  .contact-section,
  .case-hero,
  .case-feature,
  .case-feature.is-reversed {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    margin-top: clamp(12px, 3svh, 24px);
  }

  .hero-copy {
    min-height: auto;
  }

  .contact-form {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-copy,
  .contact-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .project-card {
    grid-column: span 6;
  }

  .service-grid,
  .case-overview,
  .case-story {
    grid-template-columns: 1fr;
  }

  .case-feature.is-reversed .case-feature-media {
    order: 0;
  }

  .case-feature-embed.is-reversed .case-feature-copy {
    order: 2;
  }

  .case-typography-grid {
    grid-template-columns: 1fr;
  }

  .case-brand-identity-grid,
  .case-comparison-grid {
    grid-template-columns: 1fr;
  }

  .case-image-carousel {
    align-items: stretch;
  }
}

@media (min-width: 721px) and (max-height: 850px),
  (min-width: 721px) and (max-width: 2100px) and (min-height: 851px) and (max-height: 900px) {
  .hero {
    padding-top: 14px;
    padding-bottom: 24px;
  }

  .hero-grid {
    min-height: calc(100svh - var(--header) - 38px);
  }

  .hero-mark {
    margin-top: 6px;
  }

  .hero-logo-card img {
    width: min(64vw, 980px);
    max-height: 54svh;
  }

  .hero-summary {
    margin-top: 8px;
  }

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

@media (max-width: 980px) and (orientation: landscape) {
  .hero-kicker {
    left: 0;
    width: min(300px, calc(100vw - (var(--pad) * 2)));
  }

  .hero-kicker .eyebrow {
    margin-bottom: 0;
    font-size: clamp(12px, 2.1vw, 14px);
    line-height: 1.08;
    text-align: left;
  }

  .hero-logo-card img {
    max-height: 46svh;
  }

  .project-image {
    display: grid;
    place-items: center;
  }

  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .project-card:hover img,
  .project-card:focus-within img {
    transform: none;
  }

  .case-hero-media,
  .case-feature:not(.case-feature-embed):not(.case-carousel-section) .case-feature-media {
    min-height: 0;
  }

  .case-hero-media img,
  .case-feature:not(.case-feature-embed):not(.case-carousel-section) .case-feature-media img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .case-feature-embed .case-embed-panel,
  .case-embed-full .case-embed-panel {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 10px;
  }

  .case-embed-toolbar {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    flex: 0 0 auto;
    gap: 14px;
    min-height: 28px;
    padding: 4px 0 10px 6px;
    margin-bottom: 0;
  }

  .case-embed-open {
    width: auto;
    margin: 0 0 0 auto;
    background: rgba(247, 247, 244, 0.94);
    box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
  }

  .case-embed-frame {
    flex: 1 1 auto;
    min-height: 380px;
    height: 100%;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .case-feature-embed .case-embed-panel,
  .case-embed-full .case-embed-panel {
    display: flex;
    flex-direction: column;
    min-height: 560px;
    padding: 10px;
  }

  .case-embed-toolbar {
    align-items: flex-start;
    flex: 0 0 auto;
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
    min-height: 28px;
    margin-bottom: 0;
    padding: 4px 0 10px 6px;
  }

  .case-embed-open {
    width: auto;
    margin: 0 0 0 auto;
    background: rgba(247, 247, 244, 0.94);
    box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
  }

  .case-embed-frame {
    flex: 1 1 auto;
    min-height: 420px;
    height: 100%;
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 16px;
    --header: 64px;
    --header-compact: 52px;
  }

  body {
    font-size: 16px;
  }

  body::before {
    background-size: 25vw 100%, 100% 80px;
  }

  .brand-lockup {
    font-size: 24px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transform: none;
    border-bottom: 1px solid rgba(10, 10, 10, 0.22);
    background: rgba(247, 247, 244, 0.9);
    backdrop-filter: blur(22px);
  }

  .site-header.is-compact .site-nav {
    top: var(--header-compact);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 18px var(--pad) 15px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.14);
  }

  .hero,
  .work-section,
  .about-section,
  .services-section,
  .contact-section,
  .case-study {
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .about-copy,
  .contact-copy,
  .case-hero-copy,
  .case-feature-copy {
    padding: 22px;
  }

  .hero-copy {
    padding: 20px 10px 22px;
  }

  .hero-kicker {
    left: 0;
    width: min(260px, calc(100vw - (var(--pad) * 2)));
  }

  .hero-kicker .eyebrow {
    margin-bottom: 0;
    font-size: clamp(13px, 3.7vw, 15px);
    line-height: 1.08;
    text-align: left;
  }

  .hero-mark {
    margin-top: 28px;
  }

  .hero-logo-card img {
    width: min(90vw, 680px);
    max-height: 50svh;
    transform: none;
  }

  .hero-copy {
    min-height: auto;
  }

  .case-hero-copy {
    min-height: auto;
    margin-top: 14px;
    padding: 0;
  }

  .case-hero > .section-kicker {
    left: var(--pad);
    width: calc(100vw - (var(--pad) * 2));
  }

  .case-hero.is-logo-hero .case-hero-copy {
    min-height: 300px;
  }

  .case-hero-logo {
    width: min(560px, 84vw);
    max-height: 180px;
  }

  h1,
  .case-hero-copy h1 {
    font-size: 68px;
  }

  h2,
  .case-feature-copy h2 {
    font-size: 46px;
  }

  .hero-tagline {
    font-size: 28px;
  }

  .hero-summary,
  .case-summary {
    font-size: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .work-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .project-search {
    order: -1;
    width: 100%;
    justify-content: stretch;
  }

  .project-search-toggle {
    display: none;
  }

  .project-search input {
    width: 100%;
    height: 42px;
    padding: 10px 12px 8px;
    border: 1px solid var(--hairline);
    opacity: 1;
    pointer-events: auto;
  }

  .project-search.is-open input {
    width: 100%;
  }

  .project-search-clear {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .filter-bar {
    flex: 1 1 auto;
    width: 100%;
  }

  .project-card {
    grid-column: 1 / -1;
  }

  .project-image {
    aspect-ratio: 16 / 11;
    display: grid;
    place-items: center;
  }

  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .project-card:hover img,
  .project-card:focus-within img {
    transform: none;
  }

  .project-content {
    min-height: 240px;
  }

  .brand-values div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .about-media img,
  .case-hero-media,
  .case-feature-media {
    min-height: 360px;
  }

  .case-hero-media,
  .case-feature:not(.case-feature-embed):not(.case-carousel-section) .case-feature-media {
    min-height: 0;
  }

  .case-hero-media img,
  .case-feature:not(.case-feature-embed):not(.case-carousel-section) .case-feature-media img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .about-logo-panel {
    min-height: 360px;
  }

  .about-logo-panel img {
    min-height: 0;
  }

  .case-feature-full .case-feature-media,
  .case-brand-pair .case-feature-media {
    min-height: auto;
    padding: 10px;
  }

  .case-feature-embed .case-embed-panel,
  .case-embed-full .case-embed-panel {
    display: flex;
    flex-direction: column;
    min-height: 560px;
    padding: 10px;
  }

  .case-embed-full .case-embed-panel {
    min-height: 560px;
  }

  .case-embed-toolbar {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 14px;
    flex: 0 0 auto;
    min-height: 28px;
    padding: 4px 0 10px 6px;
    margin-bottom: 0;
  }

  .embed-lightbox-toolbar {
    align-items: center;
    flex-direction: row;
  }

  .case-embed-open,
  .embed-lightbox-toolbar button {
    width: auto;
  }

  .embed-lightbox-toolbar button {
    margin-left: auto;
  }

  .case-embed-open {
    width: auto;
    margin: 0 0 0 auto;
    background: rgba(247, 247, 244, 0.94);
    box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
  }

  .case-embed-frame {
    flex: 1 1 auto;
    min-height: 440px;
    height: 100%;
    margin-top: 0;
  }

  .case-carousel-section.is-short-carousel .case-image-carousel {
    justify-content: center;
  }

  .case-carousel-section.is-short-carousel .case-image-carousel figure {
    flex-basis: auto;
  }

  .embed-lightbox {
    padding: 12px;
  }

  .image-lightbox {
    padding: 12px;
  }

  .embed-lightbox-panel {
    width: calc(100vw - 24px);
    height: calc(100svh - 24px);
    max-height: calc(100svh - 24px);
  }

  .image-lightbox-panel {
    width: calc(100vw - 24px);
    height: calc(100svh - 24px);
  }

  .image-lightbox-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-lightbox-toolbar button {
    width: 100%;
  }

  .image-lightbox-panel img {
    max-width: calc(100% - 24px);
    max-height: calc(100% - 116px);
  }

  .image-lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .case-overview,
  .case-story article,
  .case-nav {
    padding: 18px;
  }

  .case-nav {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .case-nav a:nth-child(2) {
    display: none;
  }

  .project-nav-full {
    display: none;
  }

  .project-nav-short {
    display: inline;
  }

  .case-nav a:last-child {
    justify-self: end;
    text-align: right;
  }

  .contact-link {
    font-size: 18px;
  }
}
