:root {
  color: #111111;
  background: #fbfaf9;
  font-family: "DM Sans", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  --paper: #fbfaf9;
  --ink: #111111;
  --muted: #7d7d7d;
  --line: rgba(17, 17, 17, 0.12);
  --dark: #111111;
  --light: #fbfaf9;
}

.brand-mark {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Noto Serif Display", serif;
  font-size: 21px;
  height: 36px;
  justify-content: center;
  line-height: 1;
  width: 36px;
}

.menu-brand .brand-mark {
  font-size: 30px;
  height: 52px;
  width: 52px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  background: currentColor;
  display: block;
  height: 1px;
  width: 18px;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  left: 0;
  position: absolute;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.icon {
  display: inline-flex;
  font-size: 1.15em;
  line-height: 1;
}

.press-more {
  margin-top: 40px;
  padding: 0 clamp(24px, 3vw, 44px) 60px;
}

.contact-close-grid {
  border-top: 1px solid var(--line);
}

.map-image {
  filter: grayscale(100%) contrast(1.2);
}

.brand .brand-mark,
.menu-brand .brand-mark {
  align-items: center;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
}

* {
  box-sizing: border-box;
  cursor: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

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

body::selection {
  background: var(--ink);
  color: var(--paper);
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(247, 246, 241, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  min-height: 64px;
  padding: 13px clamp(24px, 3vw, 44px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

@media (min-width: 841px) {
  .hero {
    height: calc(100vh - 64px);
  }
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  width: max-content;
}

.brand img {
  display: block;
  height: 36px;
  object-fit: contain;
  width: 24px;
}

.brand span,
.menu-brand span {
  display: inline-flex;
  flex-direction: column;
}

.brand strong,
.menu-brand strong {
  font: inherit;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  justify-self: center;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  border-bottom-color: currentColor;
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: none;
  height: 38px;
  justify-content: center;
  justify-self: end;
  width: 38px;
}

.desktop-menu-button {
  align-items: center;
  background: rgba(247, 246, 241, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: none;
  height: 44px;
  justify-content: center;
  position: fixed;
  right: 28px;
  top: 28px;
  width: 44px;
  z-index: 80;
}

.main-menu {
  background: rgba(247, 246, 241, 0.98);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.2fr);
  grid-template-rows: auto 1fr auto;
  inset: 18px;
  opacity: 0;
  padding: clamp(24px, 3vw, 46px);
  pointer-events: none;
  position: fixed;
  transform: translateY(-10px);
  transition: opacity 240ms ease, transform 240ms ease;
  z-index: 90;
}

.main-menu-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.menu-brand img {
  display: block;
  height: 52px;
  object-fit: contain;
  width: 34px;
}

.menu-brand small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
}

.menu-close {
  align-self: start;
  background: transparent;
  border: 1px solid var(--line);
  justify-self: end;
  padding: 12px 18px;
  text-transform: uppercase;
}

.menu-links {
  align-self: center;
  display: grid;
  gap: clamp(12px, 2vh, 24px);
  grid-column: 2;
}

.menu-links a {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(54px, 8vw, 132px);
  line-height: 1.04;
  width: max-content;
}

.menu-links a::before {
  color: var(--muted);
  content: "→";
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 0.18em;
  margin-right: 0.22em;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  vertical-align: middle;
}

.menu-links a:hover::before,
.menu-links a:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.menu-footer {
  align-self: end;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 36px;
  grid-column: 1 / -1;
  justify-content: space-between;
  text-transform: uppercase;
}

/* ── Custom cursor – mix-blend-mode: difference ── */
.cursor-dot {
  left: 0;
  mix-blend-mode: difference;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 220ms ease;
  will-change: transform;
  z-index: 9999;
}

.cursor-dot-visible { opacity: 1; }

.cursor-inner {
  background: #ffffff;
  border-radius: 50%;
  display: block;
  transition:
    width  0.52s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Default – small dot ── */
.cursor-dot[data-state="default"] .cursor-inner,
.cursor-dot:not([data-state]) .cursor-inner {
  height: 12px;
  width: 12px;
}

/* ── Nav links – large circle → text inverts to white ── */
.cursor-dot[data-state="nav"] .cursor-inner {
  height: 56px;
  width: 56px;
}

/* ── Image – large lens → image colours invert ── */
.cursor-dot[data-state="image"] .cursor-inner {
  height: 72px;
  width: 72px;
}

/* ── Row – medium-large circle ── */
.cursor-dot[data-state="row"] .cursor-inner {
  height: 56px;
  width: 56px;
}

/* ── Link – medium circle ── */
.cursor-dot[data-state="link"] .cursor-inner {
  height: 44px;
  width: 44px;
}

/* ── Menu – large (for oversized menu links) ── */
.cursor-dot[data-state="menu"] .cursor-inner {
  height: 56px;
  width: 56px;
}

/* ── Button ── */
.cursor-dot[data-state="button"] .cursor-inner {
  height: 48px;
  width: 48px;
}


.hero {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 36.5% 63.5%;
  height: calc(100vh - 64px);
  min-height: 720px;
  padding: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 98px clamp(24px, 2.4vw, 48px) 50px;
}

.hero-image {
  position: relative;
  width: 100%;
}

.hero-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-caption {
  align-items: center;
  background: rgba(247, 246, 241, 0.94);
  bottom: 50px;
  display: inline-flex;
  gap: 12px;
  left: auto;
  right: 48px;
  padding: 11px 15px;
  position: absolute;
}

.hero-caption span {
  color: var(--ink);
  font-size: 15px;
}

.hero-caption span + span::before {
  content: "·";
  margin-right: 12px;
}

.hero-kicker,
.section-label,
.statement > p,
.process-heading p,
.feature-copy > p {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-kicker {
  padding: 0;
}

.hero h1 {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(70px, 10.5vw, 138px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 38px 0 0;
  max-width: 560px;
  padding: 0;
}

.hero h1 span {
  display: block;
}

.feature-copy p,
.process-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.text-link,
.outline-link {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-self: start;
  text-transform: uppercase;
  width: max-content;
}

.selected {
  border-top: 1px solid var(--line);
  padding: 26px clamp(24px, 3vw, 44px);
}

.project-index {
  border-top: 1px solid var(--line);
  padding: 0;
}

.project-list {
  margin: 0;
}

.project-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(18px, 2.1vw, 40px);
  grid-template-columns: 48px 1fr 74px 34px;
  min-height: clamp(88px, 9vh, 108px);
  padding: 0 clamp(24px, 3vw, 54px);
  position: relative;
  transition: background 180ms ease, padding-left 180ms ease;
}

.project-row:hover {
  background: rgba(17, 17, 17, 0.025);
  padding-left: calc(clamp(24px, 3vw, 54px) + 10px);
}

.project-row > span {
  color: #5e5d5a;
  font-size: 15px;
  line-height: 1;
}

.project-row strong {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 24px);
  font-family: "Noto Serif Display", serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.16;
  transition: transform 180ms ease;
}

.project-row:hover strong {
  transform: translateX(4px);
}

.project-tags {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.project-row:hover .project-tags {
  opacity: 1;
  transform: translateY(0);
}

.project-tags span {
  border: 1px solid rgba(17, 17, 17, 0.35);
  color: #3e3d3a;
  display: inline-flex;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 6px 10px 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-row em,
.project-row small {
  color: #5f5d5a;
  font-size: 17px;
  font-style: normal;
  line-height: 1.2;
}

.project-row-arrow {
  color: var(--ink);
  justify-self: end;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.project-row:hover .project-row-arrow {
  opacity: 1;
  transform: translateX(0);
}

.featured {
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: 0;
  grid-template-columns: 66.7% 33.3%;
  min-height: 150vh;
  overflow: clip;
  padding: 0;
  position: relative;
  z-index: 1;
}

.featured-reverse {
  grid-template-columns: 33.3% 66.7%;
}

.featured-reverse .feature-media {
  grid-column: 2;
}

.featured-reverse .feature-copy {
  border-left: 0;
  border-right: 1px solid var(--line);
  grid-column: 1;
  grid-row: 1;
}

.feature-copy {
  border-left: 1px solid var(--line);
  min-height: 100vh;
  padding: clamp(58px, 9vh, 112px) clamp(30px, 4vw, 62px) 44px;
  position: sticky;
  top: 0;
}

.feature-copy-inner {
  --feature-shift: 0px;
  transform: translateY(var(--feature-shift));
  transition: transform 80ms linear;
}

.feature-copy h2,
.process h2,
.selected h2 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.feature-copy h3 {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(42px, 4.4vw, 76px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 34px 0 28px;
}

.feature-copy .outline-link {
  border: 1px solid var(--line);
  border-radius: 0;
  bottom: 48px;
  left: clamp(30px, 4vw, 62px);
  padding: 17px 22px;
  position: absolute;
}

.feature-media {
  min-height: 100vh;
  position: sticky;
  top: 0;
}

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

.statement {
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 56vh;
  padding: clamp(72px, 10vw, 132px) clamp(24px, 3vw, 44px);
  text-align: center;
}

.statement blockquote {
  font-family: "Noto Serif Display", serif;
  color: #4c4b48;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 46px 0 42px;
  max-width: 860px;
  text-wrap: balance;
}

.statement blockquote em {
  color: #11110f;
  font-style: italic;
}

.statement cite {
  color: var(--muted);
  font-style: normal;
  font-size: 15px;
}

.process {
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: block;
  padding: 0;
}

.process-heading {
  padding: clamp(56px, 6vw, 86px) clamp(24px, 3vw, 48px) clamp(52px, 6vw, 82px);
}

.process-heading h2 {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 700;
  line-height: 1.12;
  margin: 36px 0 0;
  max-width: 860px;
  text-wrap: balance;
}

.process-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  border-right: 1px solid var(--line);
  min-height: 350px;
  padding: clamp(48px, 7vw, 104px) clamp(24px, 3vw, 48px) 56px;
}

.process-grid span {
  color: var(--ink);
  display: block;
  font-family: "Noto Serif Display", serif;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 26px;
}

.process-grid h3 {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 24px;
}

.selected h2 {
  margin: 0;
}

.selected-gallery {
  margin: 24px clamp(-44px, -3vw, -24px) -26px;
}

.work-pair {
  display: grid;
  grid-template-columns: 66.7% 33.3%;
  min-height: 86vh;
}

.work-pair-reverse {
  grid-template-columns: 33.3% 66.7%;
}

.work-pair-reverse .work-tile-large {
  grid-column: 2;
}

.work-pair-reverse .work-tile-small {
  grid-column: 1;
  grid-row: 1;
}

.work-tile {
  display: block;
  min-height: 86vh;
  overflow: hidden;
  position: relative;
}

.work-tile img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.work-caption {
  background: rgba(247, 246, 241, 0.9);
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 0;
  padding: 18px 34px 20px;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  transition: transform 260ms ease;
}

.work-caption strong {
  display: block;
  width: 100%;
  font-family: "Noto Serif Display", serif;
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1.14;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-caption small {
  color: var(--muted);
  font-size: 16px;
}

.work-tile:hover img,
.work-tile:focus-visible img {
  transform: scale(1.025);
}

.work-tile:hover .work-caption,
.work-tile:focus-visible .work-caption {
  transform: translateY(0);
}

.site-close {
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.press-block h2,
.close-cell h2,
.footer-bottom {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.press-block h2 {
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 24px clamp(24px, 3vw, 44px);
}

.press-block .press-article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 180px;
  min-height: 112px;
  padding: 28px clamp(24px, 3vw, 44px);
  text-decoration: none;
  color: inherit;
  transition: background 180ms ease, padding-left 180ms ease;
}
.press-block .press-article:hover {
  background: rgba(17, 17, 17, 0.025);
  opacity: 1;
  padding-left: calc(clamp(24px, 3vw, 44px) + 10px);
}

.press-block p {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  max-width: 1120px;
}

.press-block span {
  color: #3c3b38;
  font-size: 16px;
  line-height: 1.25;
  text-align: right;
}

.press-block span br {
  display: block;
}

.close-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.close-cell {
  border-bottom: 1px solid var(--line);
  min-height: 260px;
  padding: 36px clamp(24px, 3vw, 44px);
}

.close-cell:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.close-cell h2 {
  margin: 0 0 28px;
}

.close-process p,
.close-contact address,
.close-services li,
.stat-grid span {
  color: #4f4d49;
  font-size: 18px;
  line-height: 1.45;
}

.close-process p {
  margin: 0 0 24px;
  max-width: 850px;
}

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

.close-services li {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.stat-grid {
  display: grid;
  gap: 42px 72px;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  max-width: 560px;
}

.stat-grid strong {
  color: var(--ink);
  display: block;
  font-family: "Noto Serif Display", serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
}

.close-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.close-contact address {
  display: grid;
  font-style: normal;
  gap: 6px;
}

.new-enquiry {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  margin-top: 48px;
  text-transform: uppercase;
  width: max-content;
}

.footer-bottom {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 58px;
  padding: 0 clamp(24px, 3vw, 44px);
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom span:nth-child(3) {
  display: flex;
  gap: 34px;
  justify-content: flex-end;
}

.studio-intro {
  border-bottom: 1px solid var(--line);
  padding: clamp(58px, 6vw, 86px) clamp(24px, 3vw, 44px) clamp(42px, 5vw, 62px);
}

.studio-intro > p:first-child,
.studio-section-heading p,
.studio-approach-copy > p:first-child {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.studio-intro h1,
.studio-section-heading h2 {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(46px, 4.5vw, 72px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 42px 0 34px;
}

.studio-intro > p:last-child {
  color: #4f4d49;
  font-size: 18px;
  line-height: 1.32;
  margin: 0;
  max-width: 560px;
}

.studio-approach {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64.4% 35.6%;
  min-height: 100vh;
}

.studio-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.studio-approach-copy {
  align-self: end;
  padding: clamp(42px, 6vw, 72px) clamp(32px, 3.6vw, 68px);
}

.studio-approach-copy p:not(:first-child) {
  color: #4f4d49;
  font-size: 17px;
  line-height: 1.38;
  margin: 26px 0 0;
  max-width: 620px;
}

.studio-statement {
  min-height: 48vh;
}

.studio-services {
  border-bottom: 1px solid var(--line);
}

.studio-section-heading {
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 6vw, 82px) clamp(24px, 3vw, 44px) clamp(48px, 5vw, 68px);
}

.studio-section-heading h2 {
  margin-bottom: 0;
}

.studio-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.studio-service-grid article {
  border-right: 1px solid var(--line);
  min-height: 210px;
  padding: clamp(48px, 6vw, 86px) clamp(24px, 3vw, 44px);
}

.studio-service-grid article:last-child {
  border-right: 0;
}

.studio-service-grid h3 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 22px;
}

.studio-service-grid p {
  color: #55534f;
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}

.studio-stats {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 126px;
  padding: 0 clamp(24px, 3vw, 44px);
  text-align: center;
}

.studio-stats span {
  color: #55534f;
  font-size: 16px;
  line-height: 1.22;
}

.studio-stats strong {
  color: var(--ink);
  display: block;
  font-family: "Noto Serif Display", serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
}

.studio-team {
  border-bottom: 1px solid var(--line);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid article {
  border-right: 1px solid var(--line);
}

.team-grid article:last-child {
  border-right: 0;
}

.team-grid img {
  aspect-ratio: 1.18 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.team-grid article > div {
  border-top: 1px solid var(--line);
  padding: 24px clamp(18px, 2vw, 34px) 28px;
}

.team-grid h3 {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.14;
  margin: 0 0 14px;
}

.team-grid p,
.team-grid span {
  color: #4f4d49;
  display: block;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.studio-bottom {
  border-top: 0;
}

.projects-intro {
  border-bottom: 1px solid var(--line);
  padding: clamp(58px, 6vw, 86px) clamp(24px, 3vw, 44px) clamp(42px, 5vw, 62px);
}

.projects-intro > p:first-child {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.projects-intro h1 {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(46px, 4.5vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  margin: 42px 0 34px;
}

.projects-intro > p:last-child {
  color: #4f4d49;
  font-size: 17px;
  line-height: 1.32;
  margin: 0;
  max-width: 620px;
}

.project-filters {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  padding: 22px clamp(24px, 3vw, 44px);
}

.project-filters button {
  background: transparent;
  border: 1px solid var(--line);
  color: #4f4d49;
  min-width: 88px;
  padding: 12px 18px;
}

.project-filters button.active {
  border-color: var(--ink);
  color: var(--ink);
}

.projects-gallery {
  padding-top: 0;
}

.projects-gallery .selected-gallery {
  margin-top: 0;
}

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

.projects-table-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 54px minmax(280px, 1fr) 180px 160px 100px;
  min-height: 108px;
  padding: 0 clamp(24px, 3vw, 44px);
}

.projects-table-row span,
.projects-table-row em,
.projects-table-row small,
.projects-table-row time {
  color: #625f5a;
  font-size: 17px;
  font-style: normal;
}

.projects-table-row strong {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.16;
}

.projects-table-row {
  transition: background 180ms ease, padding-left 180ms ease;
}

.projects-table-row:hover {
  background: rgba(17, 17, 17, 0.035);
  padding-left: calc(clamp(24px, 3vw, 44px) + 12px);
}

.article-pagination {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 30px clamp(24px, 3vw, 44px);
}

.page-link {
  align-items: center;
  border: 1px solid var(--line);
  color: #4f4d49;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  min-width: 42px;
  padding: 0 14px;
  text-transform: uppercase;
}

.page-link:hover,
.page-link:focus-visible,
.page-link.is-current,
.page-link.current {
  border-color: var(--ink);
  color: var(--ink);
}

.page-next {
  margin-left: 6px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-page-intro {
  border-bottom: 1px solid var(--line);
  padding: clamp(58px, 6vw, 86px) clamp(24px, 3vw, 44px) clamp(42px, 5vw, 62px);
}

.process-page-intro > p:first-child {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.process-page-intro h1 {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(46px, 4.5vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  margin: 42px 0 34px;
}

.process-page-intro > p:last-child {
  color: #4f4d49;
  font-size: 17px;
  line-height: 1.32;
  margin: 0;
  max-width: 620px;
}

.process-hero-image {
  border-bottom: 1px solid var(--line);
}

.process-hero-image img {
  display: block;
  height: min(78vh, 900px);
  object-fit: cover;
  width: 100%;
}

.process-step {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 41.5% 58.5%;
  min-height: 138vh;
}

.process-step-copy {
  border-right: 1px solid var(--line);
  min-height: 100vh;
  padding: clamp(88px, 12vh, 140px) clamp(24px, 3vw, 44px) 56px;
  position: sticky;
  top: 64px;
}

.process-step-copy-inner {
  --process-shift: 0px;
  transform: translateY(var(--process-shift));
  transition: transform 80ms linear;
}

.process-step-copy span,
.process-step-copy h2 {
  font-family: "Noto Serif Display", serif;
  font-weight: 700;
}

.process-step-copy span {
  display: block;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1;
  margin-bottom: 36px;
}

.process-step-copy h2 {
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.1;
  margin: 0 0 34px;
}

.process-step-copy p {
  color: #4f4d49;
  font-size: 16px;
  line-height: 1.36;
  margin: 0;
  max-width: 650px;
}

.process-step-media {
  align-self: end;
  padding-top: 42vh;
}

.process-step-media img {
  display: block;
  height: min(72vh, 760px);
  object-fit: cover;
  width: 100%;
}

.process-step-media p {
  border-top: 1px solid var(--line);
  color: #6b6965;
  font-size: 15px;
  line-height: 1.34;
  margin: 0;
  padding: 28px clamp(28px, 3vw, 56px) 42px;
}

.ready-section {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 46vh;
  padding: clamp(78px, 10vw, 132px) 24px;
  text-align: center;
}

.ready-section h2 {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin: 0 0 30px;
}

.ready-section p {
  color: #5d5a56;
  font-size: 16px;
  line-height: 1.38;
  margin: 0 0 36px;
}

.ready-section .outline-link {
  border: 1px solid var(--line);
  padding: 16px 24px;
}

@media (max-width: 840px) {
  .desktop-menu-button {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-menu {
    inset: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 20px 24px;
  }

  .menu-brand {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 21px;
    line-height: 0.92;
  }

  .menu-brand img {
    height: 44px;
    width: 29px;
  }

  .menu-brand small {
    font-size: 12px;
    letter-spacing: 0.08em;
    margin-top: 8px;
  }

  .menu-close {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    font-size: 0;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 40px;
  }

  .menu-close::before {
    content: "×";
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
  }

  .menu-links {
    align-content: start;
    align-self: start;
    gap: 34px;
    margin-top: 34px;
  }

  .menu-links a {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .menu-links a::before {
    display: none;
  }

  .menu-links a:first-child {
    border-bottom: 1px solid currentColor;
    width: max-content;
  }

  .menu-footer {
    border-top: 1px solid var(--line);
    color: #4f4d49;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 -24px -24px;
    padding: 24px;
    text-transform: none;
  }

  .studio-intro {
    padding: 24px 24px 34px;
  }

  .studio-intro h1 {
    font-size: clamp(34px, 11vw, 48px);
    margin: 24px 0 22px;
  }

  .studio-intro > p:last-child {
    font-size: 15px;
    line-height: 1.42;
  }

  .studio-approach,
  .studio-service-grid,
  .studio-stats,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .studio-approach {
    min-height: auto;
  }

  .studio-image {
    min-height: 46vh;
  }

  .studio-approach-copy {
    padding: 30px 24px 36px;
  }

  .studio-approach-copy p:not(:first-child) {
    font-size: 15px;
    line-height: 1.44;
    margin-top: 20px;
  }

  .studio-service-grid article,
  .team-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-section-heading {
    padding: 34px 24px 30px;
  }

  .studio-section-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
    margin-top: 22px;
  }

  .studio-service-grid article {
    min-height: auto;
    padding: 28px 24px;
  }

  .studio-stats {
    gap: 28px;
    padding: 30px 24px;
  }

  .team-grid img {
    aspect-ratio: 0.82 / 1;
    max-height: 560px;
    object-position: center top;
  }

  .team-grid article > div {
    padding: 20px 24px 24px;
  }

  .projects-intro {
    padding: 24px 24px 30px;
  }

  .projects-intro h1 {
    font-size: clamp(34px, 11vw, 48px);
    margin: 24px 0 22px;
  }

  .projects-intro > p:last-child {
    font-size: 15px;
    line-height: 1.42;
  }

  .project-filters {
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: visible;
    padding: 16px 24px;
  }

  .project-filters button {
    min-width: 0;
    padding: 10px 14px;
  }

  .projects-table-row {
    gap: 12px;
    grid-template-columns: 42px 1fr;
    min-height: auto;
    padding: 22px 24px;
  }

  .projects-table-row span,
  .projects-table-row em,
  .projects-table-row small,
  .projects-table-row time {
    font-size: 13px;
  }

  .projects-table-row strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .projects-table-row em,
  .projects-table-row small,
  .projects-table-row time {
    grid-column: 2;
  }

  .process-page-intro {
    padding: 24px 24px 30px;
  }

  .process-page-intro h1 {
    font-size: clamp(34px, 11vw, 48px);
    margin: 24px 0 22px;
  }

  .process-page-intro > p:last-child {
    font-size: 15px;
    line-height: 1.42;
  }

  .process-hero-image img {
    height: 34vh;
    min-height: 220px;
  }

  .process-step {
    display: block;
    min-height: auto;
  }

  .process-step-copy {
    border-right: 0;
    min-height: auto;
    padding: 42px 24px 26px;
    position: static;
  }

  .process-step-copy-inner {
    transform: none;
  }

  .process-step-media {
    padding-top: 0;
  }

  .process-step-media img {
    height: 36vh;
    min-height: 240px;
  }

  .process-step-media p {
    font-size: 14px;
    padding: 18px 24px 28px;
  }

  .ready-section {
    min-height: auto;
    padding: 42px 24px;
  }

  .ready-section h2 {
    font-size: clamp(30px, 9vw, 42px);
    margin-bottom: 18px;
  }

  .ready-section p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .menu-close { grid-row: 1; justify-self: end; }
  .menu-links { grid-column: 1; }
  .menu-footer { align-items: start; flex-direction: column; gap: 10px; grid-column: 1; }


  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .hero-copy {
    order: 2;
    padding: 30px 24px 28px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
    line-height: 1.02;
    margin-top: 22px;
  }

  .hero-kicker {
    font-size: 10px;
  }

  .hero-image {
    order: 1;
    height: 58vh;
    min-height: 380px;
  }

  .hero-caption {
    bottom: 18px;
    left: 18px;
    right: auto;
    max-width: calc(100% - 36px);
    padding: 9px 11px;
  }

  .hero-caption span {
    font-size: 11px;
  }

  .featured,
  .process,
  .selected {
    grid-template-columns: 1fr;
  }

  .featured {
    display: block;
    min-height: auto;
  }

  .feature-media,
  .feature-copy {
    min-height: auto;
    position: static;
  }

  .feature-media {
    height: 58vh;
    min-height: 360px;
  }

  .feature-copy {
    border-left: 0;
    padding: 32px 24px 104px;
  }

  .feature-copy h3 {
    font-size: clamp(32px, 10vw, 46px);
    margin: 22px 0 18px;
  }

  .feature-copy-inner {
    transform: none;
  }

  .feature-copy .outline-link {
    bottom: 34px;
    left: 24px;
  }

  .text-link,
  .outline-link {
    justify-self: start;
  }

  .project-index {
    padding: 0;
  }

  .project-row {
    gap: 8px 14px;
    grid-template-columns: 34px 1fr auto;
    min-height: auto;
    padding: 24px;
  }

  .project-row:hover {
    padding-left: 24px;
  }

  .project-row > span {
    font-size: 14px;
    padding-top: 3px;
  }

  .project-row strong {
    font-size: clamp(24px, 7vw, 32px);
    grid-column: 2 / 4;
  }

  .project-row:hover strong {
    transform: none;
  }

  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0 0;
    opacity: 1;
    transform: none;
  }

  .project-tags span {
    font-size: 10px;
    padding: 6px 8px 5px;
  }

  .project-row small {
    font-size: 13px;
    grid-column: 2;
    margin-top: 6px;
  }

  .project-row-arrow {
    align-self: end;
    grid-column: 3;
    grid-row: 2;
    opacity: 1;
    transform: none;
  }

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

  .feature-media img:nth-child(2) {
    display: none;
  }

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

  .process-heading {
    padding: 42px 24px 38px;
  }

  .process-heading h2 {
    font-size: clamp(36px, 12vw, 54px);
    margin-top: 26px;
  }

  .process-grid article {
    border-right: 0;
    border-top: 1px solid var(--line);
    min-height: auto;
    padding: 30px 24px 36px;
  }

  .process-grid span {
    margin-bottom: 22px;
  }

  .selected-gallery {
    margin: 18px -24px -26px;
  }

  .work-pair,
  .work-pair-reverse {
    display: block;
    min-height: auto;
  }

  .work-tile,
  .work-tile-small,
  .work-tile-large {
    min-height: 52vh;
  }

  .work-tile-small {
    min-height: 38vh;
  }

  .work-caption {
    padding: 16px 24px 18px;
    transform: translateY(0);
  }

  .press-block .press-article {
    align-items: start;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 24px;
    padding-top: 24px;
  }

  .press-block span {
    text-align: left;
  }

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

  .close-cell,
  .close-cell:nth-child(odd) {
    border-right: 0;
    min-height: auto;
    padding: 34px 28px;
    text-align: center;
  }

  .stat-grid {
    gap: 28px 44px;
    margin: 0 auto;
  }

  .close-process p {
    margin-left: auto;
    margin-right: auto;
  }

  .close-contact {
    align-items: center;
  }

  .close-contact address {
    justify-items: center;
  }

  .close-services li {
    text-align: center;
  }

  .footer-bottom {
    align-items: center;
    gap: 16px;
    grid-template-columns: 1fr;
    padding-bottom: 22px;
    padding-top: 22px;
    text-align: center;
  }

  .footer-bottom span:nth-child(2) {
    text-align: center;
  }

  .footer-bottom span:nth-child(3) {
    justify-content: center;
  }
}

/* =========================================
   Project Detail Page
   ========================================= */
.project-detail-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-detail-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.project-detail-header-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, var(--paper) 100%);
  height: min-content;
  overflow: clip;
  z-index: 1;
  flex-flow: column;
  flex: none;
  place-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  padding: 40px clamp(24px, 3vw, 44px) 60px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.project-detail-kicker {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.project-detail-header-overlay h1 {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  margin: 0;
  line-height: 1.14;
  color:#111111;
}
.project-detail-lead {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(16px, 1.5vw, 18px);
  max-width: 700px;
  line-height: 1.5;
  color: var(--ink);
}

.project-detail-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 3vw, 44px);
}
.project-text-block {
  margin-bottom: 60px;
  max-width: 720px;
}
.project-text-block h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--ink);
}
.project-text-block p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}
.project-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meta-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.meta-value {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .project-detail-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .project-detail-meta {
    order: -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 40px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 40px;
  }
}

/* =========================================
   Contact Page
   ========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}
.contact-sidebar {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.contact-header {
  margin-bottom: 80px;
}
.contact-header h1 {
  font-family: "Noto Serif Display", serif;
  font-size: clamp(60px, 8vw, 110px);
  margin: 16px 0 32px;
  font-weight: 400;
}
.contact-intro {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.5;
}
.contact-details {
  display: grid;
  gap: 40px;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-label {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.contact-block a, .contact-block address {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
  font-style: normal;
}
.contact-social-links {
  display: flex;
  gap: 24px;
}
.contact-social-links a {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: var(--ink);
}

.contact-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 60vh;
}
.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-landmark {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--paper);
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  min-width: 280px;
}
.landmark-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.landmark-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.landmark-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
}
.map-landmark strong {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}
.map-landmark p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.map-landmark small {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .contact-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 24px;
  }
  .contact-header {
    margin-bottom: 34px;
  }
  .contact-header h1 {
    font-size: clamp(42px, 14vw, 64px);
    margin: 18px 0 18px;
  }
  .contact-intro {
    font-size: 15px;
    line-height: 1.42;
  }
  .contact-details {
    gap: 28px;
  }
  .contact-block {
    gap: 10px;
  }
  .contact-block a,
  .contact-block address {
    font-size: 18px;
    line-height: 1.35;
  }
  .contact-social-links {
    gap: 28px;
  }
  .contact-map {
    height: 34vh;
    min-height: 260px;
  }
  .map-landmark {
    bottom: 18px;
    left: 18px;
    min-width: 0;
    padding: 16px;
    right: 18px;
  }
}

@media (min-width: 841px) and (max-width: 1180px) {
  .desktop-menu-button {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 15px 38px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    height: 42px;
    width: 28px;
  }

  .brand small {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    height: 44px;
    width: 44px;
  }

  .main-menu {
    inset: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 38px;
  }

  .menu-brand {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 28px;
    line-height: 0.92;
  }

  .menu-brand img {
    height: 62px;
    width: 40px;
  }

  .menu-brand small {
    font-size: 16px;
    letter-spacing: 0.08em;
    margin-top: 9px;
  }

  .menu-close {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    font-size: 0;
    grid-row: 1;
    height: 48px;
    justify-content: center;
    justify-self: end;
    padding: 0;
    width: 48px;
  }

  .menu-close::before {
    content: "×";
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
  }

  .menu-links {
    align-content: start;
    align-self: start;
    gap: 36px;
    grid-column: 1;
    margin-top: 42px;
  }

  .menu-links a {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .menu-links a::before {
    display: none;
  }

  .menu-links a:first-child {
    border-bottom: 1px solid currentColor;
    width: max-content;
  }

  .menu-footer {
    align-items: start;
    border-top: 1px solid var(--line);
    color: #4f4d49;
    flex-direction: column;
    font-size: 20px;
    gap: 12px;
    grid-column: 1;
    line-height: 1.5;
    margin: 0 -38px -38px;
    padding: 30px 38px;
    text-transform: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .hero-image {
    height: 62vh;
    min-height: 520px;
    order: 1;
  }

  .hero-copy {
    order: 2;
    padding: 48px 38px 42px;
  }

  .hero h1 {
    font-size: clamp(76px, 13vw, 132px);
    line-height: 1.02;
    margin-top: 30px;
  }

  .selected {
    padding: 30px 38px;
  }

  .project-index {
    padding: 0;
  }

  .project-row {
    gap: 6px 12px;
    grid-template-columns: 30px 1fr auto;
    min-height: auto;
    padding: 20px 18px;
  }

  .project-row > span {
    font-size: 13px;
  }

  .project-row strong {
    font-size: clamp(20px, 5.5vw, 28px);
    grid-column: 2 / 4;
  }

  .project-row small {
    font-size: 13px;
    grid-column: 2;
    margin-top: 4px;
  }

  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 8px 0 0;
    opacity: 1;
    transform: none;
  }

  .project-tags span {
    font-size: 9px;
    padding: 5px 7px 4px;
  }

  .project-row-arrow {
    align-self: end;
    grid-column: 3;
    grid-row: 2;
    opacity: 1;
    transform: none;
  }

  .featured {
    display: block;
    min-height: auto;
  }

  .feature-media,
  .feature-copy {
    min-height: auto;
    position: static;
  }

  .feature-media {
    height: 58vh;
    min-height: 460px;
  }

  .feature-copy {
    border-left: 0;
    padding: 46px 38px 118px;
  }

  .feature-copy-inner {
    transform: none;
  }

  .feature-copy .outline-link {
    bottom: 42px;
    left: 38px;
  }

  .process-grid,
  .studio-service-grid,
  .studio-stats,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid article,
  .studio-service-grid article,
  .team-grid article {
    border-bottom: 1px solid var(--line);
  }

  .selected-gallery {
    margin: 24px -38px -30px;
  }

  .work-pair,
  .work-pair-reverse {
    display: block;
    min-height: auto;
  }

  .work-tile,
  .work-tile-small,
  .work-tile-large {
    min-height: 56vh;
  }

  .press-block .press-article {
    grid-template-columns: 1fr 160px;
    padding: 30px 38px;
  }

  .studio-intro,
  .projects-intro,
  .process-page-intro {
    padding: 34px 38px 42px;
  }

  .studio-intro h1,
  .projects-intro h1,
  .process-page-intro h1,
  .studio-section-heading h2 {
    font-size: clamp(48px, 7vw, 72px);
    margin: 30px 0 24px;
  }

  .studio-intro > p:last-child,
  .projects-intro > p:last-child,
  .process-page-intro > p:last-child {
    font-size: 17px;
    line-height: 1.42;
  }

  .studio-approach,
  .process-step,
  .contact-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .studio-image {
    min-height: 52vh;
  }

  .studio-approach-copy,
  .contact-sidebar {
    border-right: 0;
    padding: 42px 38px;
  }

  .studio-section-heading {
    padding: 44px 38px 38px;
  }

  .team-grid img {
    aspect-ratio: 0.88 / 1;
    object-position: center top;
  }

  .project-filters {
    flex-wrap: wrap;
    padding: 20px 38px;
  }

  .projects-table-row {
    gap: 14px;
    grid-template-columns: 56px 1fr;
    min-height: auto;
    padding: 28px 38px;
  }

  .projects-table-row em,
  .projects-table-row small,
  .projects-table-row time {
    grid-column: 2;
  }

  .process-hero-image img {
    height: 42vh;
    min-height: 360px;
  }

  .process-step-copy {
    border-right: 0;
    min-height: auto;
    padding: 70px 38px 36px;
    position: static;
  }

  .process-step-copy-inner {
    transform: none;
  }

  .process-step-media {
    padding-top: 0;
  }

  .process-step-media img {
    height: 46vh;
    min-height: 380px;
  }

  .ready-section {
    min-height: auto;
    padding: 64px 38px;
  }

  .contact-header {
    margin-bottom: 44px;
  }

  .contact-header h1 {
    font-size: clamp(64px, 10vw, 100px);
  }

  .contact-details {
    gap: 34px;
  }

  .contact-map {
    height: 42vh;
    min-height: 360px;
  }

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

  .close-cell {
    min-height: auto;
    padding: 40px 38px;
    text-align: center;
  }

  .close-contact {
    align-items: center;
  }

  .close-contact address {
    justify-items: center;
  }

  .stat-grid {
    margin: 0 auto;
  }

  .footer-bottom {
    gap: 16px;
    grid-template-columns: 1fr;
    padding: 24px 38px;
    text-align: center;
  }

  .footer-bottom span:nth-child(2) {
    text-align: center;
  }

  .footer-bottom span:nth-child(3) {
    justify-content: center;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot {
    display: none;
  }
}

/* Detail Page Hero Styles */
.project-detail-hero {
    position: relative;
    color: white;
}
.project-detail-hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    filter: brightness(0.6);
}
.project-detail-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 44px;
}
.project-detail-kicker {
    font-family: var(--mono-font);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.project-detail-header-overlay h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    max-width: 900px;
    margin-bottom: 16px;
}
.project-detail-lead {
    max-width: 700px;
}

/* Detail Page Content Styles */
.project-detail-content {
    padding: 44px;
}
.project-text-block {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.project-text-block h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.project-detail-meta {
    padding-top: 24px;
}
.meta-item {
    margin-bottom: 16px;
}
.meta-label {
    display: block;
    font-family: var(--mono-font);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

@media(min-width: 1024px) {
    .project-detail-content {
        display: grid;
        grid-template-columns: 3fr 1fr;
        gap: 44px;
    }
    .project-detail-meta {
        padding-top: 0;
        border-left: 1px solid var(--line);
        padding-left: 44px;
    }
}
