@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-500-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Alternates";
  src: url("fonts/montserrat-alternates-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Alternates";
  src: url("fonts/montserrat-alternates-800-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --orange: #fd5a01;
  --white: #ffffff;
  --ink: #0a0a0a;
  --soft: #dedede;
  --gray: #b2b2b2;
  --header-h: 80px;
  --page-pad: clamp(20px, 4vw, 72px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --line: rgba(10, 10, 10, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--orange); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(370px, 1fr) auto;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
}

.brand-signature {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 7px 0 7px var(--page-pad);
}

.brand-logo {
  display: grid;
  flex: 0 0 64px;
  width: 64px;
  height: 66px;
  place-items: center;
}
.brand-logo img { width: 54px; height: 59px; object-fit: contain; }

.icon-arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -.18em;
}

.brand-copy {
  display: grid;
  gap: 1px;
  margin-left: 18px;
  line-height: 1.1;
}
.brand-copy strong {
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 800;
  letter-spacing: -.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-copy span {
  color: #626262;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav { display: flex; align-items: stretch; }
.nav-link {
  position: relative;
  display: grid;
  min-width: 120px;
  padding: 13px 26px 10px;
  align-content: center;
  border-left: 1px solid var(--line);
  transition: color .25s ease, background .25s ease;
}
.nav-link small {
  color: var(--gray);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}
.nav-link span { font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 14px; font-weight: 700; }
.nav-link::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--ink); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  min-width: 176px;
  padding: 0 26px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: background .25s ease;
}
.nav-cta i { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #676767; border-radius: 50%; font-style: normal; }
.nav-cta i .icon-arrow { width: 15px; height: 15px; }
.nav-cta:hover { color: var(--ink); background: var(--orange); }
.menu-button { display: none; }

.page-shell { padding-top: var(--header-h); }

/* Home: horizontal story */
.home-page { --home-height: 100vh; min-height: var(--home-height); }
.home-stage {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.home-track {
  display: flex;
  width: max-content;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.home-page.horizontal-ready .home-track {
  animation: horizontal-pan linear both;
  animation-timeline: scroll(root block);
}
@keyframes horizontal-pan {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--home-travel, 0px)), 0, 0); }
}
.home-panel {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  color: var(--ink);
  background: var(--white);
}
.palette-rail {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  display: grid;
  width: 14px;
  height: auto;
  grid-template-rows: repeat(5, 1fr);
  border-right: 1px solid rgba(10, 10, 10, .1);
}
.palette-rail i:nth-child(1) { background: var(--orange); }
.palette-rail i:nth-child(2) { background: var(--white); }
.palette-rail i:nth-child(3) { background: var(--ink); }
.palette-rail i:nth-child(4) { background: var(--soft); }
.palette-rail i:nth-child(5) { background: var(--gray); }
.home-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  padding: clamp(56px, 7vh, 80px) 4vw clamp(48px, 7vh, 80px) max(var(--page-pad), 7vw);
  flex-direction: column;
  justify-content: center;
}
.kicker {
  margin: 0 0 24px;
  color: inherit;
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.home-hero h1 {
  max-width: 7ch;
  margin: 0;
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: clamp(76px, 9vw, 160px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .78;
  text-transform: uppercase;
}
.home-hero h1 span { color: var(--orange); }
.home-hero__copy > p:not(.kicker) { max-width: 540px; margin: 30px 0 0; font-size: clamp(14px, 1.1vw, 18px); }
.home-hero__media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}
.home-hero__media::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,.1), transparent 35%); }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.home-hero:hover .home-hero__media img { transform: scale(1.025); }
.media-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 22px 26px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(transparent, rgba(10,10,10,.78));
}
.media-caption span { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.media-caption strong { font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 14px; }

.round-link {
  display: inline-flex;
  width: max-content;
  margin-top: 30px;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.round-link b { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 20px; transition: color .3s ease, background .3s ease, transform .3s var(--ease); }
.round-link:hover b { color: var(--white); background: var(--orange); border-color: var(--orange); transform: translateX(5px); }

.work-chapter {
  display: grid;
  padding: clamp(36px, 5vh, 68px) var(--page-pad);
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr);
  gap: 4vw;
  align-items: center;
  color: var(--ink);
  background: var(--white);
}
.work-chapter--ink { color: var(--white); background: var(--ink); }
.work-chapter--soft { background: var(--soft); }
.work-chapter--orange { color: var(--ink); background: var(--orange); }
.chapter-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; padding: 18px 0; }
.chapter-index { display: flex; align-items: baseline; gap: 18px; }
.chapter-index span { color: var(--ink); font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 14px; font-weight: 800; }
.work-chapter--ink .chapter-index span { color: var(--orange); }
.chapter-index p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.chapter-copy h2 {
  margin: 30px 0;
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .86;
  text-transform: uppercase;
}
.chapter-copy > p { max-width: 420px; margin: 0; font-size: 14px; }
.chapter-link { display: inline-flex; width: max-content; margin-top: 24px; padding-bottom: 5px; gap: 14px; align-items: center; border-bottom: 2px solid currentColor; font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 13px; font-weight: 700; }
.chapter-gallery {
  display: grid;
  height: min(68vh, 670px);
  min-height: 430px;
  grid-template-columns: 1.22fr .78fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.chapter-gallery a { position: relative; overflow: hidden; background: var(--gray); }
.chapter-gallery a:first-child { grid-row: 1 / 3; }
.chapter-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .65s var(--ease); }
.chapter-gallery a:hover img { transform: scale(1.035); }
.chapter-gallery strong { position: absolute; right: 14px; bottom: 12px; left: 14px; padding: 10px 12px; color: var(--white); background: rgba(10,10,10,.78); font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 12px; }

.services-panel {
  display: grid;
  padding: clamp(40px, 6vh, 80px) var(--page-pad);
  grid-template-columns: minmax(300px, .8fr) minmax(540px, 1.2fr);
  gap: 6vw;
  align-items: center;
  background: var(--white);
}
.services-panel h2, .studio-panel h2 {
  max-width: 9ch;
  margin: 0;
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: clamp(58px, 6.8vw, 96px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .86;
  text-transform: uppercase;
}
.services-panel h2 span { color: var(--orange); }
.service-list { margin: 0; padding: 0; list-style: none; counter-reset: service; }
.service-list li { position: relative; display: grid; padding: 22px 0; grid-template-columns: 58px minmax(180px, .7fr) 1fr; gap: 18px; align-items: baseline; border-bottom: 1px solid var(--line); counter-increment: service; }
.service-list li::before { content: "0" counter(service); color: var(--orange); font-size: 11px; font-weight: 700; }
.service-list strong { font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: clamp(18px, 1.5vw, 25px); }
.service-list span { color: #555; font-size: 13px; }

.studio-panel {
  display: grid;
  padding: clamp(44px, 6vh, 78px) var(--page-pad);
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  color: var(--white);
  background: var(--ink);
}
.studio-panel h2 { max-width: 14ch; font-size: clamp(48px, 5.1vw, 88px); letter-spacing: -.04em; text-transform: none; line-height: .98; text-wrap: balance; }
.studio-panel h2 span { color: var(--orange); }
.studio-portrait { position: relative; width: min(100%, 410px); height: auto; margin: 0; padding: 42px 24px 0; justify-self: center; overflow: visible; background: transparent; }
.studio-portrait::before { content: ""; position: absolute; z-index: 0; top: 18px; left: 50%; width: min(84%, 330px); aspect-ratio: 1; border-radius: 50%; background: var(--orange); transform: translateX(-43%); }
.studio-portrait img { position: relative; z-index: 1; width: min(100%, 320px); height: auto; margin: 0 auto; object-fit: contain; }
.studio-portrait figcaption { position: relative; z-index: 2; display: grid; margin-top: 24px; padding: 16px 20px; gap: 4px; color: var(--ink); background: var(--orange); line-height: 1.35; }
.studio-portrait figcaption strong { font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 13px; font-weight: 800; }
.studio-portrait figcaption span { font-size: 10px; font-weight: 700; letter-spacing: .04em; }

.contact-panel {
  display: flex;
  padding: clamp(46px, 7vh, 90px) var(--page-pad);
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: var(--orange);
}
.contact-panel p { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-panel > a {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .84;
}
.contact-panel > a span { display: grid; width: clamp(70px, 8vw, 120px); height: clamp(70px, 8vw, 120px); place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: .35em; transition: transform .35s var(--ease), color .3s ease, background .3s ease; }
.contact-panel > a span .icon-arrow { width: 38%; height: 38%; transition: transform .35s var(--ease); }
.contact-panel > a:hover span { color: var(--ink); background: var(--white); }
.contact-panel > a:hover span .icon-arrow { transform: translate(4px, -4px); }
.contact-panel footer { display: flex; gap: 30px; justify-content: space-between; font-size: 11px; }

.home-progress { position: fixed; z-index: 55; right: 0; bottom: 0; left: 0; height: 3px; background: transparent; }
.home-progress i { display: block; width: 100%; height: 100%; background: var(--orange); transform: scaleX(0); transform-origin: left; }
.home-page.horizontal-ready .home-progress i { animation: home-progress linear both; animation-timeline: scroll(root block); }
@keyframes home-progress { to { transform: scaleX(1); } }

.home-page.home-fallback { min-height: 0 !important; }
.home-page.home-fallback .home-stage { position: relative; top: 0; height: auto; padding-top: var(--header-h); overflow: visible; }
.home-page.home-fallback .home-track { display: block; width: 100%; height: auto; transform: none; }
.home-page.home-fallback .home-panel { width: 100%; height: auto; min-height: calc(100dvh - var(--header-h)); }
.home-page.home-fallback .home-progress { display: none; }

/* Shared page heroes */
.page-hero {
  display: grid;
  min-height: clamp(580px, calc(100dvh - var(--header-h)), 900px);
  padding: clamp(60px, 8vw, 120px) var(--page-pad) clamp(40px, 6vw, 90px);
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: 5vw;
  align-items: end;
  overflow: hidden;
}
.page-hero--orange { color: var(--ink); background: var(--orange); }
.page-hero--ink { color: var(--white); background: var(--ink); }
.page-hero--soft { background: var(--soft); }
.page-hero__copy { min-width: 0; }
.page-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .86;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.page-hero__copy > p:not(.kicker) { max-width: 570px; margin: 30px 0 0; font-size: clamp(15px, 1.25vw, 19px); }
.page-hero__meta { align-self: end; display: grid; gap: 24px; }
.page-hero__meta p { margin: 0; padding-top: 15px; border-top: 1px solid currentColor; }
.page-hero__meta strong { display: block; margin-bottom: 4px; font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 12px; }
.page-hero__meta span { font-size: 13px; }

/* Portfolio */
.page-hero--portfolio { min-height: clamp(620px, 76vh, 760px); }
.filter-bar {
  position: sticky;
  z-index: 50;
  top: var(--header-h);
  display: grid;
  min-height: 88px;
  padding: 0 var(--page-pad);
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr) minmax(120px, 180px);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.filter-bar__heading {
  display: flex;
  padding-right: 28px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.filter-bar__heading strong { font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 14px; }
.filter-bar__heading span { margin-top: 2px; color: #595959; font-size: 10px; }
.filter-bar__options {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.filter-bar__options::-webkit-scrollbar { display: none; }
.filter-button {
  position: relative;
  flex: 1 0 112px;
  display: flex;
  min-width: clamp(112px, 8.6vw, 164px);
  min-height: 88px;
  padding: 16px clamp(16px, 1.6vw, 30px);
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  scroll-snap-align: start;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color .3s ease, background .3s ease;
}
.filter-button small { color: #666; font-size: 9px; transition: color .3s ease; }
.filter-button:hover { background: var(--soft); }
.filter-button[aria-pressed="true"] { color: var(--white); background: var(--ink); }
.filter-button[aria-pressed="true"] small { color: var(--orange); }
.filter-button:active { background: var(--orange); }
.filter-bar__status {
  display: grid;
  padding-left: clamp(18px, 2.2vw, 40px);
  align-content: center;
  justify-items: end;
  border-left: 1px solid var(--line);
  color: var(--ink);
  line-height: 1;
}
.filter-bar__status span, .filter-bar__status small { color: #595959; font-size: 9px; }
.filter-bar__status strong { margin: 4px 0 2px; font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 22px; }

.portfolio-grid {
  display: grid;
  padding: clamp(48px, 4.2vw, 72px) var(--page-pad) clamp(80px, 8vw, 128px);
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 48px) clamp(14px, 2vw, 30px);
  background: var(--white);
}
.portfolio-card { grid-column: span 4; min-width: 0; }
.portfolio-card:nth-child(7n + 1), .portfolio-card:nth-child(7n + 5) { grid-column: span 7; }
.portfolio-card:nth-child(7n + 2), .portfolio-card:nth-child(7n + 6) { grid-column: span 5; }
.portfolio-card[hidden] { display: none; }
.portfolio-card__link { display: block; }
.portfolio-card__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--soft); }
.portfolio-card:nth-child(7n + 1) .portfolio-card__media { aspect-ratio: 16 / 10; }
.portfolio-card:nth-child(7n + 5) .portfolio-card__media { aspect-ratio: 16 / 9; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .65s var(--ease); }
.portfolio-card:hover img { transform: scale(1.035); filter: saturate(1.05); }
.portfolio-card__caption { display: flex; min-height: 92px; padding: 16px 0 22px; gap: 20px; align-items: flex-end; justify-content: space-between; border-bottom: 1px solid var(--line); }
.portfolio-card__caption > span { display: grid; min-width: 0; gap: 5px; }
.portfolio-card__caption strong { font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: clamp(17px, 1.35vw, 23px); line-height: 1.16; }
.portfolio-card__caption small { color: #5f5f5f; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-card__caption i { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; color: var(--ink); font-style: normal; transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s var(--ease); }
.portfolio-card__caption i .icon-arrow { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.portfolio-card__link:hover .portfolio-card__caption i { color: var(--white); background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.portfolio-card__link:hover .portfolio-card__caption i .icon-arrow { transform: translate(1px, -1px); }

.portfolio-archive { padding: 0 var(--page-pad) clamp(80px, 10vw, 150px); }
.portfolio-archive h2 { margin: 0 0 24px; font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: clamp(36px, 4vw, 66px); letter-spacing: -.04em; }
.archive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.archive-grid a { display: flex; min-height: 130px; padding: 20px; flex-direction: column; justify-content: space-between; background: var(--soft); transition: color .25s ease, background .25s ease; }
.archive-grid a:nth-child(4n + 2) { background: var(--gray); }
.archive-grid a:hover { color: var(--ink); background: var(--orange); }
.archive-grid strong { font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 17px; }
.archive-grid span { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.archive-grid i { align-self: flex-end; color: var(--ink); font-style: normal; }
.archive-grid i .icon-arrow { width: 17px; height: 17px; }

/* Case studies */
.case-hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, calc(100dvh - var(--header-h)), 920px);
  padding: clamp(45px, 6vw, 90px) var(--page-pad);
  grid-template-columns: minmax(310px, .8fr) minmax(0, 1.2fr);
  gap: 5vw;
  align-items: center;
  overflow: hidden;
  background: var(--soft);
}
.case-hero--ink { color: var(--white); background: var(--ink); }
.case-hero--orange { color: var(--ink); background: var(--orange); }
.case-hero__copy { position: relative; z-index: 2; min-width: 0; }
.case-hero h1 {
  margin: 0;
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: clamp(54px, 6.4vw, 96px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .88;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.case-hero__copy > p:not(.kicker) { max-width: 500px; margin: 28px 0 0; font-size: clamp(14px, 1.1vw, 18px); }
.case-hero__media { position: relative; height: min(69vh, 690px); min-height: 420px; margin: 0; overflow: hidden; background: var(--white); }
.case-hero__media img { width: 100%; height: 100%; object-fit: contain; }
.case-hero__media figcaption { position: absolute; right: 0; bottom: 0; padding: 11px 15px; color: var(--white); background: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.case-summary {
  display: grid;
  padding: clamp(70px, 9vw, 140px) var(--page-pad);
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 8vw;
  align-items: start;
}
.case-summary h2 { max-width: 16ch; margin: 0; font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: clamp(39px, 5.2vw, 86px); letter-spacing: -.04em; line-height: .98; text-wrap: balance; }
.case-summary h2 span { color: var(--orange); }
.case-facts { display: grid; gap: 22px; margin: 0; }
.case-facts div { padding-top: 16px; border-top: 1px solid var(--line); }
.case-facts dt { margin-bottom: 6px; color: #686868; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.case-facts dd { margin: 0; font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 15px; font-weight: 700; }
.case-resources { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.case-download { display: inline-flex; margin-top: 30px; padding-bottom: 5px; gap: 10px; border-bottom: 2px solid var(--orange); font-size: 13px; font-weight: 700; }
.case-download .icon-arrow { width: 14px; height: 14px; }

.case-gallery { display: grid; padding: 0 var(--page-pad) clamp(80px, 10vw, 150px); grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 2vw, 30px); }
.gallery-item { grid-column: span 6; margin: 0; overflow: hidden; background: var(--soft); }
.gallery-item:nth-child(5n + 1) { grid-column: span 12; }
.gallery-item:nth-child(5n + 4) { grid-column: span 5; }
.gallery-item:nth-child(5n + 5) { grid-column: span 7; }
.gallery-item img, .gallery-item video { width: 100%; height: auto; }
.gallery-item img { transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.012); }

.case-navigation { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.case-navigation a { min-height: 250px; padding: clamp(28px, 4vw, 64px) var(--page-pad); transition: color .3s ease, background .3s ease; }
.case-navigation a + a { border-left: 1px solid var(--line); text-align: right; }
.case-navigation a:hover { color: var(--ink); background: var(--orange); }
.case-navigation span { display: block; margin-bottom: 30px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.case-navigation strong { font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: clamp(25px, 3vw, 52px); letter-spacing: -.04em; }

/* Contact */
.contact-layout {
  display: grid;
  min-height: calc(100dvh - var(--header-h));
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
}
.contact-intro { display: flex; padding: clamp(54px, 7vw, 110px) var(--page-pad); flex-direction: column; justify-content: space-between; color: var(--ink); background: var(--orange); }
.contact-intro h1 { max-width: 8ch; margin: 0; font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: clamp(66px, 7vw, 96px); font-weight: 800; letter-spacing: -.04em; line-height: .86; text-transform: uppercase; }
.contact-intro > p { max-width: 570px; margin: 34px 0; font-size: clamp(16px, 1.2vw, 20px); }
.contact-details { display: grid; gap: 8px; }
.contact-details a { width: max-content; max-width: 100%; border-bottom: 1px solid currentColor; overflow-wrap: anywhere; font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: clamp(15px, 1.3vw, 20px); font-weight: 700; }
.contact-details a .icon-arrow { width: .85em; height: .85em; margin-left: .2em; }
.contact-form-wrap { padding: clamp(54px, 7vw, 110px) var(--page-pad); background: var(--white); }
.contact-form-wrap h2 { margin: 0 0 40px; font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: clamp(32px, 3.5vw, 58px); letter-spacing: -.04em; line-height: 1; text-wrap: balance; }
.contact-form { display: grid; gap: 24px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; color: var(--ink); background: transparent; outline: 0; }
.field textarea { min-height: 115px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-width: 3px; border-color: var(--orange); }
.field small { color: #555; font-size: 11px; }
.submit-button { width: max-content; min-width: 190px; padding: 15px 24px; border: 0; border-radius: 999px; color: var(--white); background: var(--ink); font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .25s ease, transform .25s var(--ease); }
.submit-button:hover { color: var(--ink); background: var(--orange); }
.submit-button:active { transform: scale(.98); }
.form-status { min-height: 24px; margin: 0; color: #424242; font-size: 12px; }

.site-footer {
  display: block;
  min-height: 0;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}
.site-footer a { border-bottom: 0; }
.site-footer__lead {
  display: grid;
  min-height: clamp(330px, 36vw, 520px);
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, .38fr);
  border-bottom: 1px solid #353535;
}
.site-footer__statement {
  display: flex;
  padding: clamp(54px, 7vw, 118px) var(--page-pad);
  flex-direction: column;
  justify-content: space-between;
}
.site-footer__statement p {
  display: flex;
  margin: 0;
  gap: 10px;
  align-items: center;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}
.site-footer__statement p i { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }
.site-footer__statement h2 {
  max-width: 13ch;
  margin: 54px 0 0;
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: clamp(50px, 6.2vw, 96px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .88;
  text-wrap: balance;
}
.site-footer__statement h2 span { color: var(--orange); }
.site-footer__cta {
  display: flex;
  min-width: 0;
  padding: clamp(30px, 3vw, 58px);
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: var(--orange);
  border-left: 1px solid #353535;
  font-family: "Montserrat Alternates", Montserrat, sans-serif;
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 800;
  line-height: 1.05;
  transition: color .35s var(--ease), background .35s var(--ease);
}
.site-footer__cta span { max-width: 9ch; }
.site-footer__cta b {
  display: grid;
  width: clamp(62px, 6vw, 92px);
  height: clamp(62px, 6vw, 92px);
  margin-left: auto;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: clamp(27px, 2.6vw, 42px);
  font-style: normal;
  transition: transform .4s var(--ease);
}
.site-footer__cta b .icon-arrow { width: 38%; height: 38%; transition: transform .4s var(--ease); }
.site-footer__cta:hover { color: var(--white); background: #171717; }
.site-footer__cta:hover b .icon-arrow { transform: translate(4px, -4px); }
.site-footer__utility {
  display: grid;
  min-height: 154px;
  padding: 28px var(--page-pad);
  grid-template-columns: minmax(190px, .9fr) minmax(230px, .8fr) minmax(360px, 1.2fr) auto;
  gap: clamp(28px, 4vw, 76px);
  align-items: center;
}
.site-footer__brand { display: flex; width: max-content; gap: 12px; align-items: center; }
.site-footer__brand img { width: 46px; height: 50px; object-fit: contain; }
.site-footer__brand span { display: grid; gap: 1px; }
.site-footer__brand strong { font-family: "Montserrat Alternates", Montserrat, sans-serif; font-size: 17px; }
.site-footer__brand small { color: var(--gray); font-size: 10px; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.site-footer__nav a, .site-footer__meta a { padding-bottom: 3px; border-bottom: 1px solid transparent; font-size: 12px; font-weight: 700; transition: color .25s ease, border-color .25s ease; }
.site-footer__meta a .icon-arrow { width: 12px; height: 12px; margin-left: 3px; }
.site-footer__nav a:hover, .site-footer__meta a:hover { color: var(--orange); border-color: currentColor; }
.site-footer__contact { display: flex; margin: 0; gap: clamp(22px, 3vw, 54px); font-style: normal; }
.site-footer__contact a { display: grid; min-width: 0; gap: 5px; }
.site-footer__contact small { color: var(--gray); font-size: 10px; }
.site-footer__contact span { padding-bottom: 3px; border-bottom: 1px solid var(--white); font-size: 12px; font-weight: 700; overflow-wrap: anywhere; transition: color .25s ease, border-color .25s ease; }
.site-footer__contact a:hover span { color: var(--orange); border-color: var(--orange); }
.site-footer__meta { display: grid; gap: 12px; justify-items: end; font-size: 11px; white-space: nowrap; }
.site-footer__meta > span { color: var(--gray); }
.contact-panel .footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}
.contact-panel .footer-contact a { font: inherit; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .brand-copy span { display: none; }
  .nav-link { min-width: 106px; padding-right: 18px; padding-left: 18px; }
  .nav-cta { min-width: 152px; padding: 0 18px; }
  .chapter-gallery { height: min(62vh, 610px); }
  .filter-bar { grid-template-columns: 190px minmax(0, 1fr) 104px; }
  .filter-button { min-width: 112px; }
  .site-footer__utility { grid-template-columns: 1fr 1fr; }
  .site-footer__meta { justify-items: start; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; --page-pad: 20px; }
  .site-header { grid-template-columns: 1fr 72px; }
  .brand-signature { padding-left: 14px; }
  .brand-logo { flex-basis: 55px; width: 55px; height: 58px; }
  .brand-logo img { width: 48px; height: 52px; }
  .brand-copy { margin-left: 11px; }
  .brand-copy strong { font-size: 13px; white-space: normal; }
  .menu-button {
    position: relative;
    z-index: 72;
    display: grid;
    padding: 0;
    place-items: center;
    border: 0;
    border-left: 1px solid var(--line);
    background: var(--white);
    font-size: 0;
    cursor: pointer;
  }
  .menu-button::before, .menu-button::after { content: ""; position: absolute; width: 25px; height: 2px; background: var(--ink); transition: transform .3s var(--ease); }
  .menu-button::before { transform: translateY(-5px); }
  .menu-button::after { transform: translateY(5px); }
  .menu-button[aria-expanded="true"]::before { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"]::after { transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: flex;
    padding: 96px 20px 28px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s var(--ease);
  }
  .site-nav[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
  .nav-link { min-width: 0; padding: 17px 0; border: 0; border-bottom: 1px solid #313131; }
  .nav-link small { color: var(--orange); font-size: 10px; }
  .nav-link span { font-size: clamp(28px, 8vw, 48px); line-height: 1; }
  .nav-link[aria-current="page"] { color: var(--white); }
  .nav-link::after { display: none; }
  .nav-cta { min-width: 0; margin-top: 24px; padding: 0; color: var(--white); background: transparent; font-size: 20px; }

  .home-page { min-height: 0 !important; }
  .home-stage { position: relative; top: 0; height: auto; padding-top: var(--header-h); overflow: visible; }
  .home-track { display: block; width: 100%; height: auto; transform: none !important; }
  .home-panel { width: 100%; height: auto; min-height: 100dvh; overflow: hidden; }
  .home-progress { display: none; }
  .home-hero { grid-template-columns: 1fr; grid-template-rows: auto minmax(320px, 48vh); }
  .home-hero__copy { padding: 76px 25px 42px 24px; }
  .home-hero h1 { font-size: clamp(60px, 16.5vw, 96px); line-height: .8; }
  .home-hero__copy > p:not(.kicker) { margin-top: 22px; font-size: 14px; }
  .round-link { margin-top: 22px; }
  .home-hero__media { min-height: 330px; }
  .media-caption { padding: 16px 14px; gap: 12px; }
  .media-caption span { font-size: 9px; }
  .media-caption strong { font-size: 11px; white-space: nowrap; }
  .work-chapter { padding: 72px 20px; grid-template-columns: 1fr; gap: 36px; }
  .chapter-copy { min-height: 380px; }
  .chapter-copy h2 { font-size: clamp(52px, 17vw, 86px); }
  .chapter-gallery { height: 620px; min-height: 0; grid-template-columns: 1fr 1fr; grid-template-rows: 1.2fr .8fr; }
  .chapter-gallery a:first-child { grid-column: 1 / 3; grid-row: auto; }
  .services-panel, .studio-panel { min-height: 0; padding: 80px 20px; grid-template-columns: 1fr; gap: 56px; }
  .services-panel h2, .studio-panel h2 { font-size: clamp(52px, 16vw, 84px); }
  .studio-panel h2 { font-size: clamp(42px, 12vw, 56px); overflow-wrap: normal; word-break: normal; }
  .service-list li { grid-template-columns: 40px 1fr; gap: 10px; }
  .service-list li span { grid-column: 2; }
  .studio-portrait { width: min(100%, 390px); min-height: 0; padding-top: 38px; }
  .contact-panel { min-height: 78vh; padding: 74px 20px 34px; }
  .contact-panel > a { font-size: clamp(58px, 18vw, 100px); }
  .contact-panel footer { flex-direction: column; gap: 5px; }

  .page-hero { min-height: 650px; padding-top: 72px; grid-template-columns: 1fr; gap: 55px; }
  .page-hero--portfolio { min-height: min(620px, calc(100dvh - var(--header-h))); }
  .page-hero h1 { font-size: clamp(58px, 18vw, 102px); }
  .page-hero__meta { grid-template-columns: 1fr 1fr; }
  .filter-bar { min-height: 0; padding: 0; grid-template-columns: 1fr auto; }
  .filter-bar__heading { min-height: 56px; padding: 8px 20px; grid-column: 1; grid-row: 1; border-right: 0; }
  .filter-bar__status { min-width: 104px; min-height: 56px; padding: 8px 20px; grid-column: 2; grid-row: 1; }
  .filter-bar__options { grid-column: 1 / -1; grid-row: 2; border-top: 1px solid var(--line); }
  .filter-button { flex: 0 0 auto; min-width: 128px; min-height: 54px; padding: 12px 18px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card, .portfolio-card:nth-child(n) { grid-column: auto; }
  .portfolio-card:nth-child(n) .portfolio-card__media { aspect-ratio: 4 / 3; }
  .portfolio-card:nth-child(5n + 1) { grid-column: 1 / 3; }
  .archive-grid { grid-template-columns: 1fr 1fr; }

  .case-hero { min-height: 0; padding-top: 70px; grid-template-columns: 1fr; }
  .case-hero h1 { font-size: clamp(52px, 17vw, 96px); }
  .case-hero__media { height: 62vh; min-height: 430px; }
  .case-summary { grid-template-columns: 1fr; gap: 56px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 6; }
  .gallery-item:nth-child(3n + 1) { grid-column: span 12; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-intro, .contact-form-wrap { min-height: 70vh; }
  .site-footer__lead { grid-template-columns: 1fr; }
  .site-footer__statement { min-height: 360px; }
  .site-footer__cta { min-height: 180px; border-top: 1px solid #353535; border-left: 0; flex-direction: row; align-items: flex-end; }
  .site-footer__utility { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .brand-copy strong { max-width: 180px; font-size: 11px; }
  .home-hero__copy { padding-top: 45px; }
  .chapter-gallery { height: auto; grid-template-columns: 1fr; grid-template-rows: none; }
  .chapter-gallery a, .chapter-gallery a:first-child { grid-column: auto; aspect-ratio: 4 / 3; }
  .services-panel h2 { font-size: clamp(46px, 14vw, 66px); }
  .studio-panel h2 { font-size: clamp(40px, 11vw, 52px); }
  .page-hero { min-height: 570px; }
  .page-hero--portfolio { min-height: min(600px, calc(100dvh - var(--header-h))); }
  .page-hero h1 { font-size: clamp(50px, 15vw, 76px); }
  .page-hero__meta { grid-template-columns: 1fr; gap: 16px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .filter-bar__heading span { display: none; }
  .filter-bar__heading strong { font-size: 12px; }
  .filter-bar__status { min-width: 96px; }
  .filter-bar__status > span { display: none; }
  .filter-bar__status strong { margin-top: 0; font-size: 18px; }
  .filter-button { min-width: 108px; padding-right: 14px; padding-left: 14px; }
  .portfolio-card__caption { min-height: 86px; }
  .portfolio-card, .portfolio-card:nth-child(n) { grid-column: auto; }
  .archive-grid { grid-template-columns: 1fr; }
  .case-hero__media { height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .case-summary h2 { font-size: 40px; }
  .case-gallery { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: auto; }
  .case-navigation { grid-template-columns: 1fr; }
  .case-navigation a { min-height: 180px; }
  .case-navigation a + a { border-top: 1px solid var(--line); border-left: 0; }
  .contact-intro h1 { font-size: clamp(58px, 18vw, 84px); }
  .site-footer__statement { min-height: 330px; padding: 46px 20px; }
  .site-footer__statement h2 { margin-top: 44px; font-size: clamp(45px, 13vw, 64px); }
  .site-footer__cta { min-height: 154px; padding: 28px 20px; }
  .site-footer__utility { padding: 34px 20px; grid-template-columns: 1fr; gap: 30px; }
  .site-footer__contact { flex-direction: column; gap: 18px; }
  .site-footer__meta { justify-items: start; }
  .contact-panel .footer-contact { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .home-stage { position: relative; top: 0; height: auto; padding-top: var(--header-h); overflow: visible; }
  .home-page { min-height: 0 !important; }
  .home-track { display: block; width: 100%; height: auto; transform: none !important; }
  .home-panel { width: 100%; height: auto; min-height: calc(100dvh - var(--header-h)); }
  .home-progress { display: none; }
  .reveal { opacity: 1; transform: none; }
}
