:root {
  --black: #0b0c0d;
  --black-soft: #131416;
  --paper: #f0eee8;
  --paper-deep: #e5e2da;
  --ink: #141516;
  --muted: #686966;
  --accent: #c56136;
  --line: rgba(20, 21, 22, 0.17);
  --line-light: rgba(255, 255, 255, 0.18);
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --serif: "Iowan Old Style", Baskerville, Georgia, serif;
  --mono: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --page: min(1440px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

.sr-only {
  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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  background: white;
  color: black;
  transform: translateY(-160%);
}

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

.section {
  width: var(--page);
  margin: 0 auto;
}

.page-reveal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  color: white;
  clip-path: inset(0);
  transition: clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.85s;
}

.page-reveal.is-finished {
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}

.page-reveal__brand {
  position: relative;
  z-index: 2;
  color: transparent;
  font-size: clamp(3rem, 11vw, 11rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.32);
}

.page-reveal__brand::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: #f4f2ed;
  -webkit-text-stroke: 0;
  clip-path: inset(-18% 100% -18% 0);
  animation: opening-word 2.55s 0.25s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.page-reveal__film {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  pointer-events: none;
}

.page-reveal__line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 8vw;
  right: 8vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.page-reveal__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: reveal-line 0.8s 0.15s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.page-reveal__meta {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 24px;
  color: #777;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes reveal-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes opening-word {
  0%,
  12% {
    clip-path: inset(-18% 100% -18% 0);
  }

  84%,
  100% {
    clip-path: inset(-18% -3% -18% -3%);
  }
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 92px;
  padding-inline: max(40px, calc((100vw - 1440px) / 2));
  color: white;
  transition: height 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
  height: 70px;
  color: var(--ink);
  background: rgba(240, 238, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.brand span {
  padding-left: 13px;
  border-left: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.49rem;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.main-navigation a {
  position: relative;
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-navigation a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.nav-contact {
  padding: 11px 16px;
  border: 1px solid currentColor;
  transition: background 0.25s, color 0.25s;
}

.nav-contact:hover {
  background: white;
  color: black;
}

.site-header.is-scrolled .nav-contact:hover {
  background: var(--ink);
  color: white;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.reading-progress {
  position: fixed;
  z-index: 85;
  top: 0;
  left: 0;
  width: 2px;
  height: 100vh;
  background: transparent;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
}

.view-cursor {
  position: fixed;
  z-index: 140;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(11, 12, 13, 0.72);
  color: white;
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.45);
  transition: opacity 0.2s, transform 0.3s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.view-cursor span {
  font-family: var(--mono);
  font-size: 0.53rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.view-cursor.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  color: white;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-media {
  position: absolute;
  z-index: -3;
  top: 0;
  right: 0;
  width: 59%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 100%);
  animation: hero-curtain 1.2s 0.75s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 68%;
  transform: scale(1.04);
  transition: transform 0.2s linear, object-position 0.2s ease-out;
}

.hero-media__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(11, 12, 13, 0.55) 12%, transparent 45%),
    linear-gradient(0deg, rgba(11, 12, 13, 0.66), transparent 35%);
}

@keyframes hero-curtain {
  to {
    clip-path: inset(0);
  }
}

.hero-layout {
  position: relative;
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 66%;
  min-height: 100svh;
  padding-top: 68px;
}

.overline,
.section-label,
.case-type {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.overline {
  margin-bottom: 30px;
  color: #9b9b97;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.4rem, 7.7vw, 8.2rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero h1 em {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 0.78em;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 560px;
  margin: 37px 0 0;
  color: #b4b4af;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.button-primary {
  border: 1px solid white;
  background: white;
  color: var(--black);
}

.button-primary:hover {
  background: transparent;
  color: white;
}

.button-quiet {
  gap: 14px;
  padding-inline: 0;
  border-bottom: 1px solid #61615e;
}

.button-quiet span,
.inline-link span,
.contact-email span {
  transition: transform 0.25s ease;
}

.button-quiet:hover span,
.inline-link:hover span,
.contact-email:hover span {
  transform: translate(4px, -4px);
}

.hero-index {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  justify-items: end;
  color: white;
  transform: translateY(-50%);
}

.hero-index span {
  margin-right: 5px;
  font-family: var(--mono);
  font-size: 0.51rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-index strong {
  color: transparent;
  font-size: clamp(6rem, 10vw, 11rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45);
}

.hero-caption {
  position: absolute;
  right: max(40px, calc((100vw - 1440px) / 2));
  bottom: 28px;
  left: max(40px, calc((100vw - 1440px) / 2));
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: #9c9c98;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capabilities {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.capabilities-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--page);
  margin: 0 auto;
}

.capabilities span {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.capabilities span:first-child {
  border-left: 1px solid var(--line);
}

.statement {
  padding-block: clamp(110px, 12vw, 185px);
}

.section-label {
  margin-bottom: 42px;
  color: var(--muted);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.7fr;
  gap: 8vw;
  align-items: end;
}

.statement h2 {
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.statement h2 em {
  display: block;
  margin-top: 20px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 0.66em;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.statement-copy p {
  margin: 0 0 23px;
  color: var(--muted);
}

.statement-copy p:first-child {
  color: var(--ink);
  font-size: 1.08rem;
}

.work {
  border-top: 1px solid var(--line);
}

.work-intro {
  padding-block: clamp(100px, 10vw, 150px) 70px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  overflow: visible;
  clip-path: none;
}

.section-heading h2 {
  display: inline-block;
  margin: 0;
  padding: 0.18em 0 0.2em;
  overflow: visible;
  font-size: clamp(4rem, 8vw, 8.8rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
}

.case-study {
  padding-block: clamp(90px, 9vw, 135px);
}

.case-study-light {
  background: var(--paper-deep);
}

.case-study-mercedes {
  background: #eeeae2;
}

.case-study-mercedes .case-number {
  color: #a22d20;
}

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

.case-study-red {
  background: #b84c2a;
  color: white;
}

.case-header {
  display: grid;
  grid-template-columns: 80px 1.15fr 0.85fr;
  gap: 45px;
  align-items: end;
  margin-bottom: 52px;
}

.case-number {
  align-self: start;
  padding-top: 6px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.case-study-red .case-number,
.case-study-dark .case-number {
  color: rgba(255, 255, 255, 0.65);
}

.case-type {
  margin-bottom: 16px;
  color: var(--muted);
}

.case-study-dark .case-type,
.case-study-red .case-type {
  color: rgba(255, 255, 255, 0.57);
}

.case-header h3 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.case-description {
  max-width: 475px;
  margin: 0;
  color: var(--muted);
}

.case-study-dark .case-description,
.case-study-red .case-description {
  color: rgba(255, 255, 255, 0.64);
}

.image-frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #b9b7b1;
  text-align: left;
  cursor: zoom-in;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(108deg, transparent 40%, rgba(255, 255, 255, 0.13) 49%, transparent 58%);
  pointer-events: none;
  transform: translateX(-65%);
  transition: transform 0.9s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.image-frame:hover::after {
  transform: translateX(65%);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.72, 0.2, 1), filter 0.5s ease;
}

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

.image-frame:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.image-frame-hero {
  height: min(76vh, 880px);
}

.image-frame-hero img {
  object-position: 50% 66%;
}

@media (min-width: 781px) {
  .case-study > .image-frame-hero {
    width: min(1320px, calc(100vw - 80px));
    height: auto;
    aspect-ratio: 4 / 3;
    margin-inline: auto;
  }
}

.image-action {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 13px;
  background: rgba(11, 12, 13, 0.83);
  color: white;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
}

.mercedes-grid {
  display: grid;
  grid-template-columns: 1fr 0.74fr 1fr;
  grid-template-rows: 420px 420px;
  gap: 7px;
  padding-top: 7px;
}

.mercedes-grid .mercedes-architecture {
  grid-column: 1;
  grid-row: 1 / 3;
}

.mercedes-grid .mercedes-hood {
  grid-column: 2;
  grid-row: 1;
}

.mercedes-grid .mercedes-front {
  grid-column: 2;
  grid-row: 2;
}

.mercedes-grid .mercedes-sunset {
  grid-column: 3;
  grid-row: 1;
}

.mercedes-grid .mercedes-rear {
  grid-column: 3;
  grid-row: 2;
}

.mercedes-grid img {
  object-position: 50% 66%;
}

.image-frame:hover .image-action {
  opacity: 1;
  transform: none;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1fr;
  gap: 7px;
  padding-top: 7px;
}

.editorial-grid-renault {
  grid-template-rows: 360px 393px 430px;
}

.editorial-grid-renault .renault-dynamic {
  grid-column: 1;
  grid-row: 1 / 3;
  height: auto;
}

.editorial-grid-renault .renault-rear {
  grid-column: 2;
  grid-row: 1;
}

.editorial-grid-renault .renault-rear-three-quarter {
  grid-column: 2;
  grid-row: 2;
}

.editorial-grid-renault .renault-interior {
  grid-column: 3;
  grid-row: 1 / 3;
  height: auto;
}

.editorial-grid-renault .detail-pair {
  grid-column: 1 / 4;
  grid-row: 3;
  height: auto;
}

.image-portrait {
  height: 760px;
}

.image-portrait img {
  object-position: 50% 68%;
}

.editorial-stack {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 7px;
}

.editorial-note {
  margin: 0;
  padding: 18px 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-pair {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  height: 430px;
}

.lambo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding-top: 7px;
}

.lambo-grid .image-portrait {
  height: 760px;
}

.lambo-grid .image-frame:not(.image-portrait) {
  height: 460px;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  grid-template-rows: 430px 430px;
  gap: 7px;
}

.heritage-main {
  grid-row: 1 / 3;
}

.heritage-wide {
  grid-column: 1 / 3;
  height: 640px;
}

.heritage-grid img {
  object-position: 50% 66%;
}

.selected {
  padding-block: clamp(110px, 12vw, 180px);
}

.selected-heading {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  align-items: end;
  margin-bottom: 50px;
}

.selected-heading .section-label {
  margin: 0;
}

.selected-heading h3 {
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 7.5rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.selected-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 360px;
  gap: 5px;
}

.selected-tall {
  grid-row: span 2;
}

.selected-wide {
  grid-column: span 2;
}

.selected-grid .image-frame span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 45px 15px 14px;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.services .section {
  padding-block: clamp(110px, 11vw, 170px);
}

.services .section-label {
  color: #777;
}

.services-heading > p {
  color: #90908c;
}

.service-list {
  margin-top: 78px;
  border-top: 1px solid var(--line-light);
}

.service-list article {
  display: grid;
  grid-template-columns: 70px 0.85fr 1.15fr 0.65fr;
  gap: 35px;
  align-items: center;
  min-height: 190px;
  border-bottom: 1px solid var(--line-light);
}

.service-list article > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.service-list h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.7rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-list p {
  margin: 0;
  color: #a0a09b;
}

.service-list small {
  color: #686864;
  font-family: var(--mono);
  font-size: 0.52rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process {
  padding-block: clamp(110px, 11vw, 175px);
}

.process .section-heading h2 {
  font-size: clamp(3.5rem, 6.4vw, 7rem);
  line-height: 1.12;
  text-transform: none;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 280px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  border-left: 1px solid var(--line);
}

.process-list span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.process-list h3 {
  margin: 70px 0 18px;
  font-size: 1.45rem;
  font-weight: 500;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.studio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 850px;
  background: var(--paper-deep);
}

.studio-image {
  min-height: 850px;
  overflow: hidden;
}

.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 67%;
  transition: transform 0.2s linear;
}

.studio-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 8vw, 140px);
}

.studio-content h2 {
  margin: 0 0 42px;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.studio-content > p:not(.section-label) {
  max-width: 610px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.03rem;
}

.studio-content > p:nth-of-type(2) {
  color: var(--ink);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 16px;
  margin-top: 25px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  padding-block: clamp(110px, 11vw, 175px);
}

.contact h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.8rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.08em;
}

.contact-copy {
  padding-top: 55px;
}

.contact-copy > p {
  max-width: 560px;
  margin: 0 0 46px;
  color: #9d9d98;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid #666;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: #696965;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px max(40px, calc((100vw - 1440px) / 2));
  border-top: 1px solid var(--line-light);
  background: var(--black);
  color: #777;
}

.brand-footer {
  color: white;
}

.footer p {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox {
  width: min(94vw, 1380px);
  max-width: none;
  height: 92vh;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #08090a;
  color: white;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  width: 100%;
  height: 100%;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.65);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  cursor: pointer;
}

.lightbox-close {
  top: 13px;
  right: 13px;
  font-size: 1.35rem;
}

.lightbox-prev {
  top: 50%;
  left: 13px;
}

.lightbox-next {
  top: 50%;
  right: 13px;
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(38px);
  clip-path: inset(0 0 12% 0);
  transition: opacity 0.85s ease, transform 1s cubic-bezier(0.2, 0.72, 0.2, 1), clip-path 1s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0);
}

/* Tekst potrzebuje miejsca na optyczne wyjścia liter poza wysokość wiersza. */
.motion-ready .reveal-item:not(.image-frame) {
  clip-path: none;
}

.motion-ready .editorial-grid .reveal-item:nth-child(2),
.motion-ready .lambo-grid .reveal-item:nth-child(2),
.motion-ready .selected-grid .reveal-item:nth-child(2) {
  transition-delay: 0.08s;
}

.motion-ready .editorial-grid .reveal-item:nth-child(3),
.motion-ready .lambo-grid .reveal-item:nth-child(3),
.motion-ready .selected-grid .reveal-item:nth-child(3) {
  transition-delay: 0.14s;
}

@media (max-width: 1080px) {
  :root {
    --page: calc(100vw - 48px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .hero-media {
    width: 66%;
  }

  .hero h1 {
    font-size: clamp(4rem, 8.5vw, 6.5rem);
  }

  .case-header {
    grid-template-columns: 55px 1fr 0.8fr;
    gap: 25px;
  }

  .image-portrait,
  .lambo-grid .image-portrait {
    height: 620px;
  }

  .service-list article {
    grid-template-columns: 45px 0.8fr 1.2fr;
  }

  .service-list small {
    display: none;
  }

  .studio {
    min-height: 720px;
  }

  .studio-image {
    min-height: 720px;
  }

  .footer {
    padding-inline: 24px;
  }
}

@media (max-width: 780px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header {
    height: 72px;
    padding-inline: 18px;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: grid;
    gap: 7px;
    width: 43px;
    padding: 12px 7px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    color: white;
    background: var(--black);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .main-navigation a {
    font-size: 0.85rem;
  }

  .menu-open .main-navigation {
    opacity: 1;
    visibility: visible;
  }

  .menu-open .site-header {
    color: white;
    background: transparent;
    border: 0;
  }

  .page-reveal__brand {
    font-size: 14vw;
  }

  .page-reveal__film {
    left: -39%;
    width: 178%;
    max-width: none;
  }

  .view-cursor {
    display: none;
  }

  .page-reveal__meta {
    right: 18px;
    bottom: 18px;
  }

  .hero-media {
    width: 100%;
  }

  .hero-media__veil {
    background:
      linear-gradient(90deg, rgba(11, 12, 13, 0.91), rgba(11, 12, 13, 0.16)),
      linear-gradient(0deg, rgba(11, 12, 13, 0.82), transparent 62%);
  }

  .hero-content {
    width: 100%;
    padding-top: 75px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.5rem);
    line-height: 0.96;
  }

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

  .hero-lead {
    max-width: 360px;
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero-index {
    display: none;
  }

  .hero-caption {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .hero-caption span:last-child {
    display: none;
  }

  .capabilities-inner {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .capabilities span {
    border-bottom: 1px solid var(--line);
  }

  .statement {
    padding-block: 95px;
  }

  .statement-grid,
  .section-heading,
  .contact-layout {
    grid-template-columns: 1fr;
    display: grid;
    gap: 38px;
  }

  .statement h2 {
    font-size: clamp(2.65rem, 11.5vw, 4.1rem);
  }

  .work-intro {
    padding-block: 90px 55px;
  }

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

  .section-heading h2 {
    font-size: clamp(3.6rem, 17vw, 5.8rem);
  }

  .case-study {
    padding-block: 80px;
  }

  .case-header {
    grid-template-columns: 35px 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }

  .case-description {
    grid-column: 2;
  }

  .case-header h3 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .image-frame-hero {
    height: 115vw;
    max-height: 720px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .mercedes-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mercedes-grid .mercedes-architecture,
  .mercedes-grid .mercedes-hood,
  .mercedes-grid .mercedes-front,
  .mercedes-grid .mercedes-sunset,
  .mercedes-grid .mercedes-rear {
    grid-column: auto;
    grid-row: auto;
    height: 105vw;
    max-height: 590px;
  }

  .mercedes-grid .mercedes-architecture {
    height: 125vw;
    max-height: 700px;
  }

  .editorial-grid-renault {
    grid-template-rows: none;
  }

  .editorial-grid-renault .renault-dynamic,
  .editorial-grid-renault .renault-rear,
  .editorial-grid-renault .renault-rear-three-quarter,
  .editorial-grid-renault .renault-interior,
  .editorial-grid-renault .detail-pair {
    grid-column: auto;
    grid-row: auto;
  }

  .editorial-grid-renault .renault-dynamic,
  .editorial-grid-renault .renault-interior {
    height: 125vw;
    max-height: 680px;
  }

  .editorial-grid-renault .renault-rear,
  .editorial-grid-renault .renault-rear-three-quarter {
    height: 105vw;
    max-height: 580px;
  }

  .editorial-grid-renault .detail-pair {
    height: 270px;
  }

  .image-portrait,
  .lambo-grid .image-portrait {
    height: 125vw;
    max-height: 680px;
  }

  .detail-pair {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
    height: 270px;
  }

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

  .lambo-grid .image-frame:not(.image-portrait) {
    height: 95vw;
    max-height: 520px;
  }

  .heritage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .heritage-grid .image-frame {
    height: 110vw;
    max-height: 630px;
  }

  .heritage-main,
  .heritage-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .selected {
    padding-block: 95px;
  }

  .selected-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .selected-heading h3 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .selected-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 310px;
  }

  .selected-wide {
    grid-column: span 2;
  }

  .services .section,
  .process {
    padding-block: 95px;
  }

  .service-list {
    margin-top: 55px;
  }

  .service-list article {
    grid-template-columns: 34px 1fr;
    gap: 15px;
    padding: 30px 0;
  }

  .service-list p {
    grid-column: 2;
  }

  .process .section-heading h2 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    margin-top: 55px;
  }

  .process-list li {
    min-height: 245px;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .process-list h3 {
    margin-top: 48px;
  }

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

  .studio-image {
    min-height: 120vw;
    max-height: 720px;
  }

  .studio-content {
    padding: 80px 18px;
  }

  .studio-content h2 {
    font-size: clamp(3rem, 13vw, 4.7rem);
  }

  .contact-layout {
    padding-block: 95px;
  }

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

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

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 18px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .selected-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 390px;
  }

  .selected-tall,
  .selected-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .detail-pair {
    grid-template-columns: 1fr;
    height: auto;
  }

  .editorial-grid-renault .detail-pair {
    height: auto;
  }

  .detail-pair .image-frame {
    height: 95vw;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .contact-email {
    align-items: flex-start;
    font-size: 0.98rem;
  }
}

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

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

  .page-reveal {
    display: none;
  }

  body.is-loading {
    overflow: auto;
  }

  .hero-media {
    clip-path: none;
  }
}
