@font-face {
  font-family: "inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "inter";
  src: url("assets/fonts/inter-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "archivo black";
  src: url("assets/fonts/archivo-black-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "archivo black";
  src: url("assets/fonts/archivo-black-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --blue: #153fdc;
  --red: #d10b1c;
  --wine: #8e1115;
  --orange: #ff9f06;
  --cream: #f2efe6;
  --paper: #e7e2d6;
  --ink: #171717;
  --muted: #6a685f;
  --mint: #8ef2d2;
  --blue-inverse: #eac023;
  --red-inverse: #2ef4e3;
  --wine-inverse: #71eeea;
  --orange-inverse: #0060f9;
  --cream-inverse: #0d1019;
  --paper-inverse: #181d29;
  --ink-inverse: #e8e8e8;
  --mint-inverse: #710d2d;
  --line: rgba(23, 23, 23, 0.22);
  --display: "archivo black", "Arial Black", sans-serif;
  --body: "inter", system-ui, sans-serif;
  --wrap: min(1440px, calc(100% - 56px));
  --radius: 4px;
  --selection-bg: var(--cream-inverse);
  --selection-fg: var(--cream);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: text;
  user-select: text;
}

:where(body, body *) {
  -webkit-user-select: text;
  user-select: text;
}

main {
  background: #0f0f0f;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

figure,
p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--selection-fg);
  background: var(--selection-bg);
  text-shadow: none;
}

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

.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: 12px 18px;
  color: var(--cream);
  background: var(--ink);
  --selection-bg: var(--ink-inverse);
  --selection-fg: var(--ink);
  transform: translateY(-160%);
}

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

.progress {
  position: fixed;
  z-index: 110;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 3px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 76px;
  padding: 0 max(28px, calc((100% - 1440px) / 2));
  color: var(--ink);
  background: rgba(242, 239, 230, 0.94);
  --selection-bg: var(--cream-inverse);
  --selection-fg: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  box-shadow: 0 8px 30px rgba(20, 20, 20, 0.08);
}

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

.brand-name {
  font-size: 13px;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-social {
  padding: 10px 15px;
  color: var(--cream);
  background: var(--ink);
  --selection-bg: var(--ink-inverse);
  --selection-fg: var(--ink);
  border-radius: 99px;
}

.site-nav .nav-social::after {
  display: none;
}

.lang-toggle {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  padding: 0 11px;
  color: var(--ink);
  background: var(--mint);
  --selection-bg: var(--mint-inverse);
  --selection-fg: var(--mint);
  border: 1px solid var(--ink);
  border-radius: 99px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.section {
  padding: clamp(90px, 10vw, 160px) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 79px;
  overflow: hidden;
  color: var(--cream);
  background: var(--blue);
  --selection-bg: var(--blue-inverse);
  --selection-fg: var(--blue);
}

.hero::before {
  position: absolute;
  top: 20%;
  left: -10vw;
  width: 45vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(30px, 4vw, 62px);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(26px, 5vw, 86px);
  align-items: center;
  min-height: calc(100svh - 205px);
  padding: clamp(48px, 5vw, 78px) 0 90px;
}

.hero-title h1 {
  max-width: 760px;
  margin-top: 20px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(68px, 8vw, 138px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero-owner {
  font-size: clamp(14px, 1.15vw, 18px);
}

.hero-owner::before {
  width: clamp(28px, 3vw, 48px);
  background: var(--mint);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 210px;
  padding: 15px 18px;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--blue);
  background: var(--cream);
  --selection-bg: var(--cream-inverse);
  --selection-fg: var(--cream);
  transform: translateY(-2px);
}

.button span {
  font-size: 18px;
}

.text-link {
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.hero-art {
  position: relative;
  min-height: 590px;
}

.portrait-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78%, 470px);
  aspect-ratio: 1;
  border: 2px solid var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.portrait-orbit::before {
  position: absolute;
  inset: -18px;
  border: 9px solid var(--mint);
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(-36deg);
}

.portrait-frame {
  position: absolute;
  inset: 13px;
  overflow: hidden;
  background: #0a2bb1;
  border-radius: 50%;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 31%;
  filter: saturate(0.88) contrast(1.04);
}

.ticker {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--mint);
  --selection-bg: var(--mint-inverse);
  --selection-fg: var(--mint);
  border-block: 2px solid var(--ink);
  transform: rotate(-1deg);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 10px 0;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  animation: ticker 30s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.ticker-track span {
  margin: 0 22px;
}

.ticker-track i {
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-33.333333%); }
}

.work-index {
  background: var(--cream);
  --selection-bg: var(--cream-inverse);
  --selection-fg: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 8vw;
  align-items: end;
}

.section-heading h2 {
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 126px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

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

.section-heading-single h2,
.section-heading-about h2 {
  margin-top: 0;
}

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

.project-card {
  --card-shield: var(--cream);
  position: relative;
  display: block;
  min-height: 540px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  isolation: isolate;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.project-card::after {
  position: absolute;
  z-index: 3;
  inset: 1px;
  background: linear-gradient(90deg, var(--card-shield) 0%, var(--card-shield) 28%, transparent 70%);
  content: "";
  pointer-events: none;
}

.project-card:hover,
.project-card:focus-visible {
  z-index: 4;
  box-shadow: 10px 10px 0 var(--ink);
  transform: translate(-5px, -5px);
}

.project-card[hidden] {
  display: none;
}

.card-index {
  position: absolute;
  z-index: 6;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 760;
}

.card-copy {
  position: relative;
  z-index: 5;
  max-width: 90%;
}

.card-type,
.card-arrow {
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-copy h3 {
  max-width: 740px;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 66px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.card-arrow {
  position: static;
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.project-card-vans {
  --card-shield: var(--red);
  grid-column: span 7;
  color: var(--cream);
  background: var(--red);
  --selection-bg: var(--red-inverse);
  --selection-fg: var(--red);
}

.vans-fan {
  position: absolute;
  right: -2%;
  bottom: -19%;
  width: 65%;
  height: 92%;
}

.vans-fan img {
  position: absolute;
  bottom: 0;
  width: 39%;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
}

.vans-fan img:nth-child(1) { left: 5%; transform: rotate(-9deg); }
.vans-fan img:nth-child(2) { left: 31%; z-index: 2; transform: translateY(-8%) rotate(1deg); }
.vans-fan img:nth-child(3) { right: 2%; transform: rotate(8deg); }

.project-card-book {
  --card-shield: #e8e4db;
  grid-column: span 5;
  background: #e8e4db;
  --selection-bg: #171b24;
  --selection-fg: #e8e4db;
}

.project-card-book::after {
  background: linear-gradient(90deg, var(--card-shield) 0%, var(--card-shield) 42%, transparent 86%);
}

.project-card-book .card-copy {
  max-width: 72%;
}

.project-card-book .card-copy h3 {
  font-size: clamp(32px, 3.3vw, 54px);
}

.book-cover-card {
  position: absolute;
  right: -9%;
  bottom: -9%;
  width: 78%;
  box-shadow: 0 22px 50px rgba(24, 24, 24, 0.17);
  transform: rotate(-2deg);
}

.project-card-f4w {
  --card-shield: var(--wine);
  grid-column: span 8;
  min-height: 480px;
  color: var(--cream);
  background: var(--wine);
  --selection-bg: var(--wine-inverse);
  --selection-fg: var(--wine);
}

.wide-art {
  position: absolute;
  right: -5%;
  bottom: 7%;
  width: 83%;
  border: 2px solid var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.project-card-patates {
  --card-shield: var(--blue);
  grid-column: span 4;
  min-height: 480px;
  color: var(--cream);
  background: var(--blue);
  --selection-bg: var(--blue-inverse);
  --selection-fg: var(--blue);
}

.patates-card-art {
  position: absolute;
  right: -13%;
  bottom: -2%;
  width: 106%;
  border: 2px solid var(--cream);
  transform: rotate(3deg);
}

.project-card-next {
  --card-shield: var(--orange);
  grid-column: span 5;
  color: var(--cream);
  background: var(--orange);
  --selection-bg: var(--orange-inverse);
  --selection-fg: var(--orange);
}

.next-card-art {
  position: absolute;
  right: 7%;
  bottom: -18%;
  width: 53%;
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(5deg);
}

.project-card-active {
  --card-shield: #222;
  grid-column: span 7;
  color: var(--cream);
  background: #222;
  --selection-bg: #ddd;
  --selection-fg: #222;
}

.active-stack {
  position: absolute;
  right: 2%;
  bottom: -17%;
  width: 60%;
  height: 82%;
}

.active-stack img {
  position: absolute;
  bottom: 0;
  width: 38%;
  border: 2px solid var(--cream);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

.active-stack img:nth-child(1) { left: 3%; transform: rotate(-7deg); }
.active-stack img:nth-child(2) { left: 31%; z-index: 2; transform: translateY(-7%); }
.active-stack img:nth-child(3) { right: 1%; transform: rotate(7deg); }

.case {
  position: relative;
  padding: clamp(90px, 10vw, 160px) 0;
  overflow: hidden;
}

.poster,
.f4w-gallery figure,
.patates-gallery figure,
.next-gallery figure,
.active-gallery figure {
  min-width: 0;
  overflow: hidden;
}

.poster img,
.book-stage img,
.social-phone-showcase img,
.f4w-gallery img,
.patates-gallery img,
.next-gallery img,
.active-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.case h2 {
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(66px, 9vw, 150px);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.case-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.55fr);
  gap: 9vw;
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 100px);
}

.case-head-phone {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.case-copy-stack {
  max-width: 780px;
}

.case-copy-stack .case-notes {
  margin-top: clamp(30px, 4vw, 54px);
}

.case-notes > p,
.book-copy > p:not(.eyebrow),
.next-copy > p:not(.eyebrow) {
  margin-bottom: 34px;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.case dl,
.book-copy dl,
.next-copy dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  gap: 14px;
  padding: 13px 0;
  border-block: 1px solid currentColor;
  font-size: 12px;
}

.case dl > div,
.book-copy dl > div,
.next-copy dl > div {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
}

.case dt,
.book-copy dt,
.next-copy dt {
  opacity: 1;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case dd,
.book-copy dd,
.next-copy dd {
  margin-top: 4px;
  font-weight: 700;
  line-height: 1.35;
}

.case-vans {
  color: var(--cream);
  background: var(--red);
  --selection-bg: var(--red-inverse);
  --selection-fg: var(--red);
}

.case-vans::after {
  position: absolute;
  right: -8vw;
  top: 2vw;
  width: 34vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.case-vans .case-head,
.case-vans .poster-rail,
.case-vans .next-project {
  position: relative;
  z-index: 1;
}

.case-vans .case-notes,
.case-vans .case-notes *,
.case-vans .case-rationale,
.case-vans .case-rationale * {
  cursor: text;
  -webkit-user-select: text !important;
  user-select: text !important;
}

.poster-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.poster {
  position: relative;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.24);
}

.poster:nth-child(2n) {
  margin-top: 45px;
}

.zoomable {
  cursor: zoom-in;
}

.case-book {
  background: var(--cream);
  --selection-bg: var(--cream-inverse);
  --selection-fg: var(--cream);
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

.book-copy {
  max-width: 760px;
}

.book-copy h2,
.next-copy h2 {
  margin-bottom: 40px;
}

.mobile-title-break {
  display: none;
}

.book-stage {
  position: relative;
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 58px);
  background: var(--paper);
  --selection-bg: var(--paper-inverse);
  --selection-fg: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(1deg);
}

.case-f4w {
  color: var(--cream);
  background: var(--wine);
  --selection-bg: var(--wine-inverse);
  --selection-fg: var(--wine);
}

.case-f4w::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.12) 50%);
  content: "";
  pointer-events: none;
}

.social-phone-showcase {
  width: min(360px, 78vw);
  margin: 0 auto clamp(34px, 5vw, 62px);
}

.social-phone-showcase img {
  display: block;
  filter: drop-shadow(18px 22px 28px rgba(0, 0, 0, 0.28));
}

.case-f4w .social-phone-showcase {
  margin-right: 8%;
}

.case-patates .social-phone-showcase,
.case-active .social-phone-showcase {
  margin-top: clamp(34px, 5vw, 56px);
}

.case-next .social-phone-showcase {
  width: min(320px, 78vw);
}

.case-head-phone .social-phone-showcase {
  align-self: start;
  width: min(100%, 340px);
  margin: 0 0 0 auto;
}

.f4w-gallery {
  position: relative;
  display: grid;
  gap: 25px;
}

.f4w-gallery figure {
  padding: 0;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.25);
}

.f4w-gallery figure:nth-child(2) {
  width: 90%;
  margin-left: auto;
}

.f4w-gallery figure:nth-child(3) {
  width: 83%;
}

.case-patates {
  background: var(--cream);
  --selection-bg: var(--cream-inverse);
  --selection-fg: var(--cream);
}

.case-patates .case-head {
  color: var(--blue);
}

.patates-gallery {
  display: block;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.patates-posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.patates-gallery figure {
  padding: 9px;
  background: var(--blue);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.patates-gallery .patates-wide {
  width: 100%;
  margin: 0 auto 36px;
  padding: 13px;
}

.case-next {
  color: var(--cream);
  background: var(--orange);
  --selection-bg: var(--orange-inverse);
  --selection-fg: var(--orange);
}

.next-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 430px));
  gap: 22px;
  justify-content: center;
  align-items: start;
}

.next-gallery figure {
  padding: 10px;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.24);
}

.next-gallery figure:first-child {
  transform: none;
}

.next-gallery .next-profile {
  align-self: start;
  margin-bottom: 0;
  padding: 10px;
}

.next-gallery figure:first-child,
.next-gallery figure:last-child {
  justify-self: center;
  width: min(100%, 430px);
  transform: none;
}

.case-active {
  color: var(--cream);
  background: #222;
  --selection-bg: #ddd;
  --selection-fg: #222;
}

.active-gallery {
  display: block;
}

.active-posts {
  columns: 3;
  column-gap: 20px;
}

.active-gallery figure {
  padding: 9px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.active-posts figure {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
}

.active-gallery .active-banner {
  width: min(760px, 78%);
  margin: 30px auto 0;
}

.about {
  color: var(--cream);
  background: var(--blue);
  --selection-bg: var(--blue-inverse);
  --selection-fg: var(--blue);
}

.section-heading-about {
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.about-lead {
  max-width: 520px;
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  gap: 8vw;
}

.about-photo {
  position: relative;
  align-self: start;
  padding: 12px;
  background: var(--mint);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-2deg);
}

.about-photo img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.85);
}

.about-photo figcaption {
  padding: 10px 4px 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-details {
  display: grid;
}

.detail-block {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 30px;
  align-items: center;
  min-height: 230px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.detail-block:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.detail-block-bio {
  align-items: start;
}

.about-bio {
  max-width: 58ch;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
}

.about-bio p + p {
  margin-top: 16px;
}

.detail-block h3 {
  font-family: var(--body);
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 860;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
  justify-content: center;
}

.tag-list li {
  display: grid;
  place-items: center;
  min-width: clamp(148px, 10.5vw, 185px);
  min-height: 62px;
  padding: 12px 18px;
  border: 1.5px solid currentColor;
  border-radius: 99px;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 690;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: center;
  text-transform: uppercase;
}

.tool-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.tool-list span {
  font-weight: 760;
}

.tool-list em {
  color: var(--cream);
  font-style: normal;
}

.detail-block > p {
  font-size: 14px;
}

.detail-block > p + p {
  margin-top: 18px;
  grid-column: 2;
}

.contact {
  padding: clamp(100px, 11vw, 180px) 0;
  color: var(--ink);
  background: var(--mint);
  --selection-bg: var(--mint-inverse);
  --selection-fg: var(--mint);
}

.contact-inner h2 {
  margin: 26px 0 35px;
  font-family: var(--display);
  font-size: clamp(58px, 8.4vw, 132px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.contact-inner h2 span {
  color: var(--blue);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 6px 6px 0 var(--ink);
}

.contact-note {
  max-width: 520px;
  margin-bottom: 54px;
  font-size: clamp(17px, 1.5vw, 23px);
}

.contact-links {
  border-top: 2px solid var(--ink);
}

.contact-links a {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 30px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 2px solid var(--ink);
  transition: padding 180ms ease, color 180ms ease, background 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  padding-inline: 18px;
  color: var(--cream);
  background: var(--blue);
  --selection-bg: var(--blue-inverse);
  --selection-fg: var(--blue);
}

.contact-links span {
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links strong {
  font-family: var(--display);
  font-size: clamp(22px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 24px 0;
  color: var(--cream);
  background: var(--ink);
  --selection-bg: var(--ink-inverse);
  --selection-fg: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
}

.lightbox {
  width: min(94vw, 1200px);
  max-width: none;
  height: min(92vh, 940px);
  max-height: none;
  padding: 54px 24px 24px;
  color: var(--cream);
  background: rgba(18, 18, 18, 0.98);
  --selection-bg: #ededed;
  --selection-fg: #121212;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.lightbox img {
  width: 100%;
  height: calc(100% - 34px);
  object-fit: contain;
}

.lightbox p {
  padding-top: 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 13px;
  right: 15px;
  padding: 7px 12px;
  color: var(--cream);
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 99px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  }

  .hero-art { min-height: 500px; }

  .project-card { min-height: 460px; }

  .card-copy h3 { font-size: clamp(32px, 4.8vw, 56px); }

  .project-card-vans,
  .project-card-f4w,
  .project-card-active { grid-column: span 7; }

  .project-card-book,
  .project-card-patates,
  .project-card-next { grid-column: span 5; }

  .active-gallery figure { grid-column: span 4; }

  .active-gallery .active-banner { grid-column: 4 / span 6; }
}

@media (max-width: 820px) {
  :root { --wrap: min(100% - 34px, 720px); }

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

  html.js .menu-toggle { display: block; }

  html.js .site-nav {
    position: fixed;
    top: 69px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 28px 17px 35px;
    color: var(--cream);
    background: var(--ink);
    --selection-bg: var(--ink-inverse);
    --selection-fg: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 240ms ease, visibility 0s linear 240ms;
  }

  html.js .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
  }

  html.js .site-nav .nav-social {
    margin-top: 18px;
    padding: 13px 16px;
    color: var(--ink);
    background: var(--mint);
    border: 0;
    border-radius: 0;
    font-family: var(--body);
    font-size: 13px;
  }

  html.js body.menu-open .site-nav {
    transform: translateY(0);
    visibility: visible;
    transition: transform 240ms ease, visibility 0s;
  }

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

  html:not(.js) .site-header {
    gap: 14px;
    overflow: hidden;
  }

  html:not(.js) .site-nav {
    flex: 1;
    justify-content: flex-start;
    min-width: 0;
    gap: clamp(10px, 2.5vw, 20px);
    overflow-x: auto;
    white-space: nowrap;
  }

  html:not(.js) .site-nav .nav-social {
    padding: 8px 10px;
  }

  .hero { min-height: auto; }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 110px;
  }

  .hero-title h1 { font-size: clamp(62px, 15vw, 108px); }

  .hero-art { min-height: min(120vw, 610px); }

  .portrait-orbit { width: min(68vw, 430px); }

  .section-heading,
  .section-heading-about,
  .case-head,
  .book-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-lead { margin-top: 38px; }

  .project-card-vans,
  .project-card-book,
  .project-card-f4w,
  .project-card-patates,
  .project-card-next,
  .project-card-active {
    grid-column: 1 / -1;
  }

  .project-card { min-height: 510px; }

  .vans-fan { width: 67%; }

  .poster-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .poster:nth-child(2n) { margin-top: 30px; }

  .book-copy { max-width: 600px; }

  .book-stage { margin-top: 0; }

  .patates-gallery { grid-template-columns: repeat(2, 1fr); }

  .patates-gallery .patates-wide { width: 100%; }

  .next-copy { max-width: 620px; }

  .next-gallery { margin-top: 20px; }

  .next-gallery .next-profile { margin-bottom: 38px; padding: 12px; }

  .active-gallery figure { grid-column: span 6; }

  .active-gallery .active-banner { grid-column: 2 / span 10; }

  .about-photo { max-width: 500px; }
}

@media (max-width: 560px) {
  :root { --wrap: calc(100% - 28px); }

  .brand-name {
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .hero-meta { font-size: 9px; }

  .hero-grid { padding-top: 38px; }

  .hero-title h1 {
    margin-top: 15px;
    font-size: clamp(55px, 17.5vw, 92px);
    line-height: 0.88;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 30px;
  }

  .hero-art { min-height: 118vw; }

  .portrait-orbit { width: 74vw; }

  .ticker-track { font-size: 14px; }

  .section-heading h2,
  .case h2 { font-size: clamp(52px, 16vw, 88px); }

  .case-book h2 {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    font-size: clamp(42px, 12.8vw, 60px);
    line-height: 0.9;
    letter-spacing: -0.025em;
    text-align: left;
  }

  .mobile-title-break {
    display: block;
  }

  .project-grid { gap: 12px; }

  .project-card {
    min-height: 430px;
    padding: 18px;
  }

  .card-copy h3 { font-size: 36px; }
  .project-card-book .card-copy { max-width: 100%; }
  .project-card-book .card-copy h3 {
    max-width: 10.5ch;
    font-size: clamp(32px, 9.5vw, 36px);
    overflow-wrap: normal;
  }
  .card-arrow { top: 104px; }

  .vans-fan { right: -11%; width: 96%; height: 75%; }

  .book-cover-card { right: -14%; bottom: -11%; width: 92%; }

  .wide-art { right: -20%; bottom: 10%; width: 122%; }

  .patates-card-art { right: -27%; bottom: 2%; width: 140%; }

  .next-card-art { right: 3%; bottom: -10%; width: 63%; }

  .active-stack { right: -16%; width: 93%; height: 72%; }

  .case-head { gap: 45px; }

  .poster-rail { gap: 10px; }
  .poster:nth-child(2n) { margin-top: 18px; }

  .book-stage { margin-top: 0; padding: 12px; box-shadow: 7px 7px 0 var(--ink); }

  .f4w-gallery { gap: 15px; }
  .f4w-gallery figure { width: 100% !important; padding: 0; box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25); }

  .patates-gallery { gap: 10px; }
  .patates-gallery figure { padding: 5px; box-shadow: 4px 4px 0 var(--ink); }
  .patates-gallery figure:nth-child(3),
  .patates-gallery figure:nth-child(5) { margin-top: 18px; }

  .next-gallery { gap: 11px; }

  .active-gallery { gap: 10px; }
  .active-gallery figure { padding: 5px; }
  .active-gallery figure:nth-child(2),
  .active-gallery figure:nth-child(4),
  .active-gallery figure:nth-child(6) { margin-top: 20px; }
  .active-gallery .active-banner { grid-column: 1 / -1; }

  .detail-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .detail-block > p + p { grid-column: 1; }

  .contact-inner h2 span {
    -webkit-text-stroke-width: 1px;
    text-shadow: 3px 3px 0 var(--ink);
  }

  .contact-links a { grid-template-columns: 1fr; gap: 6px; }

  .site-footer .wrap { flex-direction: column; gap: 10px; }
}

/* 2026 editorial refinement */

body {
  overflow-x: clip;
}

body.lightbox-open {
  overflow: hidden;
}

body::after {
  position: fixed;
  z-index: 95;
  inset: 0;
  background: rgba(8, 8, 8, 0.54);
  backdrop-filter: blur(3px);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

body.menu-open::after {
  opacity: 1;
  pointer-events: auto;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.brand:focus-visible,
.menu-toggle:focus-visible {
  outline-color: var(--blue);
}

.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: calc(100svh - 190px);
  padding: clamp(42px, 4.5vw, 68px) 0 118px;
}

.hero-title h1 {
  font-size: clamp(64px, 7.35vw, 126px);
}

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

.hero-art {
  min-height: 520px;
}

.work-meta {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr auto;
  gap: 24px;
  margin: 58px 0 24px;
  padding: 17px 0;
  border-block: 1px solid var(--line);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.work-meta span:last-child {
  text-align: right;
}

.project-card {
  min-height: 500px;
}

.project-card:focus-visible {
  outline-color: var(--blue);
  outline-offset: 5px;
}

.project-card-next,
.case-next {
  color: var(--ink);
}

.project-card-next .next-card-art {
  border-color: var(--ink);
}

.case {
  padding: clamp(94px, 9vw, 150px) 0;
}

.case-head > *,
.book-layout > * {
  min-width: 0;
}

.case-rationale {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid currentColor;
}

.case-rationale span {
  display: block;
  margin-bottom: 8px;
  opacity: 1;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-rationale p {
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.next-project {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 30px;
  margin-top: clamp(68px, 8vw, 112px);
  padding-top: 20px;
  border-top: 1px solid currentColor;
}

.next-project span {
  opacity: 0.68;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.next-project strong {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-align: right;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.next-project:hover strong,
.next-project:focus-visible strong {
  transform: translateY(4px);
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

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

.impact-list li {
  min-width: 0;
  padding: 13px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid currentColor;
}

.case-patates .impact-list li,
.case-next .impact-list li {
  background: rgba(21, 63, 220, 0.07);
}

.impact-list strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.impact-list span {
  display: block;
  margin-top: 5px;
  opacity: 1;
  font-size: 9px;
  font-weight: 720;
  line-height: 1.3;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.metric-note {
  margin-top: 9px !important;
  margin-bottom: 0 !important;
  opacity: 1;
  font-size: 10px !important;
  line-height: 1.45 !important;
  letter-spacing: 0.02em !important;
}

.project-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px !important;
  margin-bottom: 0 !important;
  font-size: 10px !important;
  font-weight: 780;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
}

.project-status span {
  width: 9px;
  height: 9px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(23, 23, 23, 0.14);
}

.gallery-hint {
  display: none;
}

.zoomable:focus-visible {
  outline: 4px solid var(--mint);
  outline-offset: -7px;
}

.work-disclaimer {
  max-width: 760px;
  margin-top: 42px;
  opacity: 0.68;
  font-size: 11px;
  line-height: 1.55;
}

.site-footer .wrap {
  align-items: center;
  gap: 24px;
}

.site-footer .wrap > span:nth-child(2) {
  opacity: 0.55;
}

.back-to-top {
  position: fixed;
  z-index: 88;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: var(--cream);
  background: rgba(23, 23, 23, 0.92);
  --selection-bg: var(--ink-inverse);
  --selection-fg: var(--ink);
  border: 1px solid rgba(142, 242, 210, 0.65);
  border-radius: 99px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(14px) scale(0.94);
  transition: opacity 240ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, visibility 0s linear 420ms;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition: opacity 240ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, visibility 0s;
}

.menu-open .back-to-top {
  opacity: 0;
  pointer-events: none;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--ink);
  background: var(--mint);
  --selection-bg: var(--mint-inverse);
  --selection-fg: var(--mint);
}

.back-to-top span {
  font-size: 18px;
  line-height: 1;
}

.back-to-top em {
  font-size: 9px;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 821px) {
  .project-card-vans,
  .project-card-active,
  .project-card-patates {
    grid-column: span 7;
  }

  .project-card-f4w,
  .project-card-book,
  .project-card-next {
    grid-column: span 5;
  }
}

@media (max-width: 1100px) and (min-width: 821px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  }

  .hero-art {
    min-height: 470px;
  }

  .hero-title h1 {
    font-size: clamp(58px, 7.5vw, 86px);
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 62px;
    padding: 0 8px 0 14px;
    background: rgba(242, 239, 230, 0.92);
    border: 1px solid rgba(23, 23, 23, 0.18);
    border-radius: 18px;
    box-shadow: 0 12px 38px rgba(20, 20, 20, 0.1);
  }

  html.js .menu-toggle {
    border: 1px solid rgba(23, 23, 23, 0.28);
    border-radius: 50%;
    transition: color 220ms ease, background 220ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  html.js body.menu-open .menu-toggle {
    background: var(--mint);
    transform: rotate(90deg);
  }

  html.js .site-nav {
    top: 80px;
    right: 10px;
    left: 10px;
    max-height: calc(100dvh - 90px);
    padding: 20px 18px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px 18px 26px 26px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
    opacity: 0;
    clip-path: inset(0 0 100% 0 round 18px);
    transform: translateY(-10px) scale(0.98);
    transform-origin: 50% 0;
    transition: clip-path 460ms cubic-bezier(0.16, 1, 0.3, 1), transform 460ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease, visibility 0s linear 460ms;
  }

  html.js body.menu-open .site-nav {
    opacity: 1;
    clip-path: inset(0 round 18px);
    transform: translateY(0) scale(1);
    transition: clip-path 460ms cubic-bezier(0.16, 1, 0.3, 1), transform 460ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease, visibility 0s;
  }

  html.js .site-nav .nav-social {
    border-radius: 14px;
  }

  .hero {
    padding-top: 88px;
  }

  .back-to-top {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
  }

  .back-to-top em {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 38px 0 96px;
  }

  .hero-title h1 {
    font-size: clamp(58px, 14.5vw, 102px);
  }

  .hero-art {
    min-height: min(80vw, 410px);
    margin-top: 10px;
  }

  .portrait-orbit {
    width: min(58vw, 350px);
  }

  .work-meta {
    grid-template-columns: 1fr auto;
    margin-top: 42px;
  }

  .work-meta span:nth-child(2) {
    display: none;
  }

  .project-card {
    min-height: 450px;
  }

  .next-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .case {
    padding: 88px 0;
  }

  .case-rationale p {
    font-size: 13px;
  }

  .next-project {
    margin-top: 68px;
  }

  .gallery-hint {
    display: block;
    margin: -16px 0 14px;
    opacity: 0.68;
    font-size: 10px;
    font-weight: 760;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .patates-posts,
  .active-posts {
    display: flex;
    columns: auto;
    gap: 12px;
    align-items: flex-start;
    margin-inline: -17px;
    padding: 4px 17px 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 17px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .patates-posts figure,
  .active-posts figure {
    flex: 0 0 min(74vw, 460px);
    width: auto;
    margin: 0 !important;
    scroll-snap-align: start;
    transform: none !important;
  }

  .active-gallery .active-banner {
    width: 100%;
    margin: 22px 0 0;
  }

  .next-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin: 20px 0 0;
    padding: 0;
    overflow: visible;
  }

  .next-gallery figure,
  .next-gallery .next-profile {
    width: 100%;
    margin: 0;
    padding: 10px;
    transform: none;
  }

  .case-next .gallery-hint {
    display: none;
  }

  .site-footer .wrap > span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-grid {
    padding-top: 34px;
    padding-bottom: 86px;
  }

  .hero-title h1 {
    font-size: clamp(52px, 15vw, 82px);
    line-height: 0.87;
  }

  .section-heading-single h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-art {
    min-height: 76vw;
  }

  .portrait-orbit {
    width: 57vw;
  }

  .work-meta {
    font-size: 9px;
  }

  .detail-block {
    align-items: start;
    min-height: 0;
  }

  .tag-list li {
    flex: 1 1 140px;
    min-width: 140px;
    min-height: 54px;
  }

  .project-card {
    min-height: 410px;
  }

  .card-type,
  .card-index {
    font-size: 10px;
  }

  .case {
    padding: 76px 0;
  }

  .next-project {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .next-project strong {
    text-align: left;
  }

  .patates-posts,
  .active-posts {
    margin-inline: -14px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .patates-posts figure,
  .active-posts figure {
    flex-basis: 76vw;
  }

  .contact-note {
    margin-bottom: 42px;
  }
}

@media (min-width: 821px) and (max-width: 959px) {
  .project-card-vans,
  .project-card-f4w,
  .project-card-active,
  .project-card-book,
  .project-card-patates,
  .project-card-next {
    grid-column: span 6;
  }
}

@media (max-width: 360px) {
  .impact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-list:not(.impact-list-four) li:last-child {
    grid-column: 1 / -1;
  }
}

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

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

  .ticker-track {
    animation: none !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
