:root {
  --paper: #f7f7f5;
  --paper-deep: #ecece8;
  --ink: #161715;
  --muted: #686a64;
  --line: #d2d3ce;
  --white: #ffffff;
  --coral: #f05236;
  --blue: #3767ee;
  --lime: #b7ef59;
  --header-height: 68px;
  --side: clamp(20px, 3.3vw, 56px);
  --radius: 4px;
  --project-accent: #b7ef59;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 19px; height: 19px; stroke-width: 1.8; }

.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: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.eyebrow {
  margin: 0;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(22, 23, 21, 0.16);
  background: rgba(247, 247, 245, 0.94);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 var(--side);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
}
.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  align-items: end;
  gap: 3px;
  width: 22px;
  height: 22px;
  padding: 4px 3px;
  border: 1px solid currentColor;
}
.brand-mark span { display: block; width: 5px; background: currentColor; }
.brand-mark span:nth-child(1) { height: 7px; }
.brand-mark span:nth-child(2) { height: 13px; background: var(--coral); }
.brand-mark span:nth-child(3) { height: 9px; }
.brand-name { font-size: 13px; font-weight: 850; }
.brand-caption {
  margin-left: 3px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.desktop-nav { display: flex; align-items: center; gap: 32px; height: 100%; }
.desktop-nav a {
  display: grid;
  place-items: center;
  height: 100%;
  border-bottom: 2px solid transparent;
  font-size: 13px;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { border-color: var(--coral); }
.header-contact, .back-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}
.header-contact svg, .back-link svg { width: 16px; height: 16px; }
.back-link { justify-self: center; font-weight: 600; }
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}
.menu-button, .mobile-nav { display: none; }

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(520px, 1.16fr);
  height: 360px;
  border-bottom: 1px solid var(--line);
}
.intro-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px var(--side);
}
.intro-copy h1 {
  margin: 20px 0 16px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 850;
}
.intro-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.intro-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.intro-link svg { width: 15px; height: 15px; }
.intro-feature {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: white;
}
.intro-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.intro-feature:hover img { transform: scale(1.025); }
.intro-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 8, 7, 0.66), rgba(7, 8, 7, 0.1) 70%);
}
.feature-label, .intro-feature strong, .feature-open { position: absolute; z-index: 1; }
.feature-label {
  top: 30px;
  left: 34px;
  color: var(--lime);
  font-family: Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}
.intro-feature strong {
  bottom: 34px;
  left: 34px;
  max-width: 70%;
  font-size: 40px;
  line-height: 0.96;
}
.feature-open {
  right: 30px;
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.works-section { padding: 72px var(--side) 110px; }
.works-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}
.works-head h2 { margin: 8px 0 0; font-size: 54px; line-height: 1; }
.works-head > p { margin: 0; color: var(--muted); font-size: 12px; }
.discovery-bar {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 245, 0.96);
  backdrop-filter: blur(12px);
}
.search-field {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  height: 38px;
}
.search-field svg { flex: 0 0 auto; width: 17px; height: 17px; }
.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}
.search-field input::placeholder { color: #8b8d86; }
.search-field kbd {
  flex: 0 0 auto;
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper-deep);
  color: var(--muted);
  font-family: inherit;
  font-size: 9px;
}
.filter-group { display: flex; align-items: center; gap: 3px; }
.filter-button {
  min-width: 48px;
  height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}
.filter-button:hover, .filter-button:focus-visible { background: var(--paper-deep); }
.filter-button.is-active { background: var(--ink); color: white; }
.sort-control {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}
.sort-control svg { width: 15px; height: 15px; }
.sort-control select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  cursor: pointer;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 18px;
}
.project-card { min-width: 0; }
.project-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #292a27;
}
.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}
.project-cover:hover img, .project-cover:focus-visible img { transform: scale(1.035); }
.project-cover:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.project-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-top: 13px;
}
.project-meta {
  margin: 0 0 6px;
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: 9px;
  text-transform: uppercase;
}
.project-info h3 { margin: 0; font-size: 16px; line-height: 1.35; }
.project-title-link:hover, .project-title-link:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.project-tags { margin: 7px 0 0; color: var(--muted); font-size: 11px; }
.favorite-button { width: 34px; height: 34px; }
.favorite-button svg { width: 16px; height: 16px; }
.favorite-button:hover, .favorite-button:focus-visible, .favorite-button.is-favorite {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.favorite-button.is-favorite svg { fill: currentColor; }
.empty-state { place-items: center; min-height: 330px; border-bottom: 1px solid var(--line); text-align: center; }
.empty-state:not([hidden]) { display: grid; }
.empty-state h3 { margin: 10px 0 18px; }
.load-error, .project-error { display: grid; place-items: center; align-content: center; min-height: 360px; padding: 40px; text-align: center; }
.load-error h3, .project-error h1 { margin: 0 0 12px; }
.load-error p { margin: 0; color: var(--muted); }
.project-error a { margin-top: 22px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 700; }
.text-link { padding: 0 0 5px; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; }

.studio-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.8fr) minmax(260px, 0.7fr);
  gap: 60px;
  padding: 78px var(--side);
  background: var(--ink);
  color: white;
}
.studio-section .eyebrow { color: var(--lime); }
.studio-section h2 { max-width: 560px; margin: 16px 0 0; font-size: 42px; line-height: 1.15; }
.studio-copy { align-self: end; margin: 0; color: #b8bab5; font-size: 15px; line-height: 1.85; }
.studio-services { align-self: end; margin: 0; border-top: 1px solid #4a4b46; }
.studio-services div { display: grid; grid-template-columns: 34px 1fr; padding: 14px 0; border-bottom: 1px solid #4a4b46; }
.studio-services dt { color: #83857f; font-family: Consolas, monospace; font-size: 10px; }
.studio-services dd { margin: 0; font-size: 14px; }
.contact-section { padding: 82px var(--side) 94px; background: var(--project-accent); color: var(--ink); }
.contact-section h2 { max-width: 900px; margin: 18px 0 38px; font-size: 54px; line-height: 1.08; }
.contact-section a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 2px solid currentColor;
  font-size: 21px;
  font-weight: 750;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 94px;
  padding: 0 var(--side);
  background: var(--ink);
  color: white;
}
.site-footer p { color: #8f918b; font-family: Consolas, monospace; font-size: 9px; }
.site-footer > a:last-child { display: inline-flex; align-items: center; justify-self: end; gap: 7px; font-size: 11px; }
.site-footer > a:last-child svg { width: 14px; height: 14px; }

/* Project detail */
.project-page { background: #ededeb; }
.case-study { --case-pad: var(--side); }
.case-hero {
  position: relative;
  height: min(620px, calc(100svh - var(--header-height)));
  min-height: 480px;
  overflow: hidden;
  background: #222;
  color: white;
}
.case-hero > img, .showcase-closing > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 7, 6, 0.86), rgba(6, 7, 6, 0.18) 72%);
}
.case-hero.is-light { color: var(--ink); }
.case-hero.is-light .case-hero-shade {
  background: linear-gradient(90deg, rgba(251, 251, 248, 0.93), rgba(251, 251, 248, 0.08) 76%);
}
.case-hero-copy { position: absolute; z-index: 1; top: 50%; left: var(--case-pad); transform: translateY(-50%); }
.case-hero-copy p { margin: 0 0 22px; color: var(--project-accent); font-family: Consolas, monospace; font-size: 10px; font-weight: 700; }
.case-hero.is-light .case-hero-copy p { color: var(--ink); }
.case-hero-copy h1 { max-width: 780px; margin: 0 0 24px; font-size: 78px; line-height: 0.92; }
.case-hero-copy > span { font-size: 14px; font-weight: 700; }
.case-index { position: absolute; z-index: 1; right: var(--case-pad); bottom: 34px; margin: 0; font-family: Consolas, monospace; font-size: 9px; }
.case-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 100px;
  padding: 82px var(--case-pad) 92px;
  background: var(--paper);
}
.case-intro h2 { margin: 16px 0 20px; font-size: 48px; line-height: 1.12; }
.case-intro > p:not(.eyebrow) { max-width: 760px; margin: 0; color: #50524d; font-size: 18px; line-height: 1.85; }
.case-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.case-tags span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 3px; color: var(--muted); font-size: 10px; }
.case-facts { align-self: end; margin: 0; border-top: 1px solid var(--line); }
.case-facts div { display: grid; grid-template-columns: 95px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.case-facts dt { color: var(--muted); font-size: 11px; }
.case-facts dd { margin: 0; font-size: 12px; font-weight: 700; }
.case-gallery { display: grid; gap: 18px; padding: 18px; }
.showcase-frame, .showcase-image {
  position: relative;
  width: 100%;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.showcase-statement {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 70px;
  background: var(--ink);
  color: white;
  text-align: center;
}
.showcase-statement::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 8px;
  background: var(--project-accent);
  content: "";
}
.showcase-number { position: absolute; top: 34px; left: 38px; color: #777a73; font-family: Consolas, monospace; font-size: 10px; }
.showcase-statement > p { margin: 0 0 30px; color: var(--project-accent); font-family: Consolas, monospace; font-size: 10px; font-weight: 700; }
.showcase-statement h2 { margin: 0; font-size: 76px; line-height: 0.95; }
.showcase-statement > span { max-width: 620px; margin-top: 34px; color: #afb1ac; font-size: 15px; line-height: 1.8; }
.showcase-metrics {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  padding: 70px 8%;
  background: var(--project-accent);
  color: #11120f;
}
.showcase-title span, .showcase-system > span { font-family: Consolas, monospace; font-size: 9px; font-weight: 700; }
.showcase-title h2 { margin: 22px 0 0; font-size: 44px; line-height: 1.14; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(0, 0, 0, 0.45); }
.metric-grid div { display: grid; align-content: space-between; min-height: 180px; padding: 22px 16px; border-bottom: 1px solid rgba(0, 0, 0, 0.45); border-right: 1px solid rgba(0, 0, 0, 0.45); }
.metric-grid div:last-child { border-right: 0; }
.metric-grid strong { font-size: 38px; }
.metric-grid span { font-size: 11px; }
.showcase-image { background: #242522; }
.showcase-image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.showcase-wide img { filter: saturate(0.8) contrast(1.04); }
.showcase-wide::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.15);
  content: "";
  pointer-events: none;
}
.showcase-image figcaption { position: absolute; right: 28px; bottom: 24px; padding: 8px 10px; background: rgba(15,16,14,0.74); color: white; font-family: Consolas, monospace; font-size: 8px; }
.case-thinking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  min-height: 430px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.case-thinking > div { display: flex; flex-direction: column; justify-content: center; padding: 70px 10%; background: var(--paper); }
.case-thinking > div:last-child { background: #e1e2dd; }
.case-thinking h2 { margin: 15px 0 24px; font-size: 42px; }
.case-thinking div > p:last-child { max-width: 580px; margin: 0; color: #565852; font-size: 16px; line-height: 1.9; }
.showcase-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.showcase-duo .showcase-image, .showcase-duo .showcase-frame { min-height: 620px; }
.showcase-duo .showcase-image img { min-height: 620px; filter: saturate(0.5); }
.showcase-system { display: flex; flex-direction: column; justify-content: center; padding: 68px 10%; background: #fbfbf8; }
.showcase-system h2 { max-width: 620px; margin: 42px 0; font-size: 38px; line-height: 1.3; }
.system-lines { display: grid; gap: 12px; width: 75%; margin-top: 44px; }
.system-lines i { display: block; height: 2px; background: var(--ink); }
.system-lines i:nth-child(2) { width: 84%; }
.system-lines i:nth-child(3) { width: 62%; background: var(--project-accent); }
.system-lines i:nth-child(4) { width: 38%; }
.system-colors { display: flex; gap: 8px; }
.system-colors b { width: 42px; height: 42px; background: var(--ink); }
.system-colors b:nth-child(2) { background: var(--project-accent); }
.system-colors b:nth-child(3) { border: 1px solid var(--line); background: white; }
.showcase-process { padding: 70px 7%; background: #292a27; color: white; }
.showcase-process > p { margin: 0; color: var(--project-accent); font-family: Consolas, monospace; font-size: 9px; }
.showcase-process h2 { margin: 16px 0 62px; font-size: 48px; }
.showcase-process ol { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid #61635d; list-style: none; }
.showcase-process li { display: grid; gap: 90px; min-height: 190px; padding: 20px; border-right: 1px solid #61635d; font-size: 17px; }
.showcase-process li:last-child { border-right: 0; }
.showcase-process li span { color: #8f918b; font-family: Consolas, monospace; font-size: 9px; }
.showcase-closing { display: grid; color: white; }
.showcase-closing > * { grid-area: 1 / 1; }
.showcase-closing .case-hero-shade { z-index: 1; background: rgba(5,6,5,0.62); }
.showcase-closing p, .showcase-closing h2 { z-index: 2; align-self: center; justify-self: center; }
.showcase-closing p { margin-bottom: 145px; color: var(--project-accent); font-family: Consolas, monospace; font-size: 9px; font-weight: 700; }
.showcase-closing h2 { margin: 0; font-size: 62px; text-align: center; }
.project-pager {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  min-height: 180px;
  margin-top: 18px;
  background: var(--paper);
}
.project-pager > a:not(.pager-grid) { display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 34px var(--side); }
.project-pager > a:last-child { align-items: flex-end; text-align: right; }
.project-pager span { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 11px; }
.project-pager strong { font-size: 20px; }
.pager-grid { display: grid; place-items: center; align-self: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: var(--radius); }
.detail-footer { margin-top: 0; }

@media (max-width: 1180px) {
  .portfolio-intro { grid-template-columns: 0.9fr 1.1fr; }
  .works-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .discovery-bar { grid-template-columns: 1fr auto; }
  .filter-group { grid-row: 2; grid-column: 1 / -1; justify-content: center; }
  .studio-section { grid-template-columns: 1fr 1fr; }
  .studio-services { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); }
  .studio-services div { border-top: 1px solid #4a4b46; border-bottom: 0; }
  .case-hero-copy h1 { font-size: 64px; }
  .showcase-statement h2 { font-size: 62px; }
}

@media (max-width: 820px) {
  :root { --header-height: 64px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-contact, .brand-caption { display: none; }
  .menu-button { display: inline-grid; justify-self: end; }
  .mobile-nav {
    position: fixed;
    z-index: 49;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    padding: 8px var(--side) 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-header.menu-open .mobile-nav { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .detail-header .header-inner { grid-template-columns: 1fr auto; }
  .detail-header .back-link { justify-self: end; }
  .portfolio-intro { grid-template-columns: 1fr; }
  .portfolio-intro { height: auto; }
  .intro-copy { min-height: 310px; }
  .intro-copy h1 { font-size: 42px; }
  .intro-feature { min-height: 310px; }
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 14px; }
  .works-head h2 { font-size: 46px; }
  .studio-section { grid-template-columns: 1fr; gap: 38px; }
  .studio-services { grid-column: auto; grid-template-columns: 1fr; }
  .contact-section h2 { font-size: 44px; }
  .case-hero { min-height: 470px; }
  .case-hero-copy h1 { font-size: 52px; }
  .case-overview { grid-template-columns: 1fr; gap: 44px; padding-top: 58px; padding-bottom: 64px; }
  .case-intro h2 { font-size: 40px; }
  .showcase-frame, .showcase-image { min-height: 480px; }
  .showcase-statement h2 { font-size: 50px; }
  .showcase-metrics { grid-template-columns: 1fr; gap: 44px; padding: 54px 8%; }
  .metric-grid div { min-height: 140px; }
  .case-thinking { grid-template-columns: 1fr; }
  .case-thinking > div { min-height: 360px; padding: 54px 8%; }
  .showcase-duo { grid-template-columns: 1fr; }
  .showcase-duo .showcase-image, .showcase-duo .showcase-frame, .showcase-duo .showcase-image img { min-height: 500px; }
  .showcase-process ol { grid-template-columns: 1fr 1fr; }
  .showcase-process li { gap: 50px; min-height: 150px; border-bottom: 1px solid #61635d; }
  .showcase-closing h2 { font-size: 48px; }
}

@media (max-width: 560px) {
  .intro-copy { min-height: 285px; padding-top: 36px; padding-bottom: 36px; }
  .intro-copy h1 { margin-top: 16px; font-size: 36px; }
  .intro-copy > p:not(.eyebrow) { font-size: 13px; }
  .intro-feature { min-height: 260px; }
  .intro-feature strong { left: 22px; bottom: 24px; font-size: 32px; }
  .feature-label { top: 22px; left: 22px; }
  .feature-open { right: 20px; bottom: 20px; }
  .works-section { padding-top: 56px; padding-bottom: 80px; }
  .works-head { margin-bottom: 22px; }
  .discovery-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .search-field { flex: 1 0 100%; }
  .search-field kbd { display: none; }
  .filter-group { justify-content: flex-start; max-width: 100%; overflow-x: auto; scrollbar-width: none; }
  .filter-group::-webkit-scrollbar { display: none; }
  .filter-button { flex: 0 0 auto; }
  .sort-control { margin-left: auto; }
  .works-grid { grid-template-columns: 1fr; gap: 42px; }
  .studio-section h2 { font-size: 34px; }
  .contact-section { padding-top: 66px; padding-bottom: 72px; }
  .contact-section h2 { font-size: 36px; }
  .contact-section a { font-size: 17px; }
  .site-footer { grid-template-columns: 1fr auto; min-height: 84px; }
  .site-footer p { display: none; }
  .case-hero { height: 500px; min-height: 0; }
  .case-hero-copy { right: var(--side); }
  .case-hero-copy h1 { font-size: 44px; }
  .case-index { bottom: 22px; }
  .case-intro h2 { font-size: 34px; }
  .case-intro > p:not(.eyebrow) { font-size: 15px; }
  .case-facts div { grid-template-columns: 78px 1fr; }
  .case-gallery { gap: 10px; padding: 10px; }
  .showcase-frame, .showcase-image { min-height: 420px; }
  .showcase-statement { padding: 50px 22px; }
  .showcase-statement h2 { font-size: 38px; }
  .showcase-statement > span { font-size: 13px; }
  .showcase-title h2 { font-size: 34px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid div { grid-template-columns: 1fr auto; align-items: center; min-height: 84px; border-right: 0; }
  .metric-grid strong { font-size: 30px; }
  .showcase-image img { min-height: 420px; }
  .case-thinking > div { min-height: 330px; }
  .case-thinking h2 { font-size: 34px; }
  .case-thinking div > p:last-child { font-size: 14px; }
  .showcase-duo .showcase-image, .showcase-duo .showcase-frame, .showcase-duo .showcase-image img { min-height: 430px; }
  .showcase-system { padding: 48px 8%; }
  .showcase-system h2 { font-size: 30px; }
  .showcase-process { padding: 52px 8%; }
  .showcase-process h2 { font-size: 36px; margin-bottom: 44px; }
  .showcase-process li { gap: 34px; min-height: 124px; padding: 15px; font-size: 14px; }
  .showcase-closing h2 { padding: 0 20px; font-size: 38px; }
  .project-pager { grid-template-columns: 1fr 1fr; min-height: 150px; }
  .project-pager > a:not(.pager-grid) { padding: 26px 20px; }
  .project-pager strong { font-size: 15px; }
  .pager-grid { display: none; }
}

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