:root {
  --ivory: #f3f0ea;
  --mineral: #faf9f6;
  --graphite: #171717;
  --stone: #69645e;
  --sand: #c8c0b5;
  --white: #ffffff;
  --header-h: 82px;
  --gutter: clamp(24px, 5vw, 72px);
  --section-space: clamp(96px, 12vw, 184px);
  --hairline: rgba(23, 23, 23, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; background: var(--ivory); }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--graphite);
  font-family: "Helvetica Neue", "Avenir Next", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin: 0; }
figure { margin: 0; }

.shell { width: 100%; padding-inline: var(--gutter); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--graphite);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  color: var(--graphite);
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(14px);
  transition: color 350ms ease, background 350ms ease, box-shadow 350ms ease;
}

.site-header--over-image:not(.is-scrolled) {
  color: var(--white);
  background: transparent;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  color: var(--graphite);
  background: color-mix(in srgb, var(--ivory) 94%, transparent);
  box-shadow: 0 1px 0 var(--hairline);
}

.brand { display: block; width: clamp(154px, 16vw, 228px); line-height: 0; }
.brand img { width: 100%; height: auto; }
.site-header--over-image:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }

.site-nav { display: flex; align-items: center; gap: clamp(24px, 2.8vw, 48px); font-size: 13px; }
.site-nav a { position: relative; padding-block: 8px; }
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-nav__sample { display: none; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 320ms var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-content: center;
  padding: calc(var(--header-h) + 32px) var(--gutter) 38px;
  background: var(--ivory);
  color: var(--graphite);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; gap: 7px; }
.mobile-menu nav a { width: fit-content; font-size: clamp(36px, 10vw, 62px); font-weight: 300; letter-spacing: -0.045em; line-height: 1.1; }
.mobile-menu nav a[aria-current] { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 8px; }
.mobile-menu > p { position: absolute; right: var(--gutter); bottom: 36px; left: var(--gutter); padding-top: 18px; border-top: 1px solid var(--hairline); font-size: 13px; }

/* Home hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  background: #6f6a64;
  color: var(--white);
}
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 700ms ease, visibility 700ms ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.17), transparent 36%, rgba(0,0,0,.34)); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.018); transition: transform 6s linear; }
.hero-slide.is-active img { transform: scale(1); }
.hero-slide__meta {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 42px;
  left: var(--gutter);
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.hero-slide__meta a { font-size: clamp(30px, 4.5vw, 68px); font-weight: 300; letter-spacing: -0.045em; line-height: 1; }
.hero-slide__meta span { margin-bottom: 4px; font-size: 12px; }

.hero-controls {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: clamp(12px, 2vw, 32px);
  display: grid;
  gap: 3px;
  transform: translateY(-50%);
}
.hero-controls button { width: 38px; height: 28px; padding: 0; border: 0; color: var(--white); background: transparent; cursor: pointer; opacity: .52; }
.hero-controls button span { display: inline-block; font-size: 10px; transition: transform 250ms var(--ease); }
.hero-controls button.is-active { opacity: 1; }
.hero-controls button.is-active span { transform: translateX(-6px); }
.scroll-note { position: absolute; z-index: 3; bottom: 50%; left: -34px; font-size: 10px; transform: rotate(-90deg); opacity: .7; }

.manifesto {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2.2vw, 34px);
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}
.manifesto__title { grid-column: 1 / span 3; padding-top: 12px; border-top: 1px solid var(--graphite); font-size: 13px; }
.manifesto__copy { grid-column: 5 / span 7; max-width: 970px; font-size: clamp(34px, 5vw, 72px); font-weight: 300; letter-spacing: -0.05em; line-height: .98; }

.project-sequence { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(18px, 2.2vw, 34px); row-gap: clamp(100px, 15vw, 220px); padding-bottom: var(--section-space); }
.feature { grid-column: 1 / -1; }
.feature--wide { grid-column: 1 / span 10; }
.feature--right { grid-column: 6 / -1; }
.feature--left { grid-column: 1 / span 7; }
.feature figure { overflow: hidden; background: #ded9d2; }
.feature--wide figure { aspect-ratio: 16 / 9; }
.feature--portrait figure { aspect-ratio: 4 / 5; }
.feature--landscape figure { aspect-ratio: 3 / 2; }
.feature img { height: 100%; object-fit: cover; transition: transform 750ms var(--ease); }
.media-link:hover img { transform: scale(1.015); }
.feature__meta { display: flex; justify-content: space-between; gap: 24px; padding-top: 13px; border-top: 1px solid var(--graphite); margin-top: 13px; }
.feature__meta h2 { font-size: clamp(19px, 2vw, 28px); font-weight: 400; letter-spacing: -0.025em; }
.feature__meta p { color: var(--stone); font-size: 12px; }

.studio-note {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--graphite);
  color: var(--ivory);
}
.studio-note::before { content: ""; grid-column: 1 / span 3; align-self: start; width: 44px; height: 1px; margin-top: 17px; background: currentColor; }
.studio-note p { grid-column: 4 / span 7; max-width: 890px; font-size: clamp(30px, 4.4vw, 62px); font-weight: 300; letter-spacing: -0.045em; line-height: 1.05; }
.studio-note .text-link { grid-column: 11 / -1; align-self: end; justify-self: end; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; }

.selected-projects { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px, 5vw, 72px); padding-top: 13px; border-top: 1px solid var(--graphite); }
.section-heading h2 { font-size: 14px; font-weight: 400; }
.section-heading > a, .section-heading > p { color: var(--stone); font-size: 12px; }
.selected-projects__grid { display: grid; grid-template-columns: 1.45fr 1fr; align-items: start; gap: clamp(24px, 5vw, 88px); }
.project-tile:nth-child(2) { margin-top: 22%; }
.project-tile figure { overflow: hidden; aspect-ratio: 4 / 3; background: #ded9d2; }
.project-tile:nth-child(2) figure { aspect-ratio: 1 / 1; }
.project-tile img { height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.project-tile:hover img { transform: scale(1.015); }
.project-tile > span { display: flex; justify-content: space-between; gap: 18px; margin-top: 12px; }
.project-tile b { font-size: 15px; font-weight: 400; }
.project-tile em { color: var(--stone); font-size: 11px; font-style: normal; }

.contact-band { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; padding-top: 42px; padding-bottom: 50px; border-top: 1px solid var(--graphite); }
.contact-band p { max-width: 780px; font-size: clamp(32px, 6vw, 84px); font-weight: 300; letter-spacing: -0.05em; line-height: .95; }
.contact-band a { flex: none; padding-bottom: 4px; border-bottom: 1px solid var(--graphite); font-size: 14px; }

/* Shared footer */
.site-footer { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; align-items: end; min-height: 260px; padding-top: 50px; padding-bottom: 36px; background: var(--graphite); color: var(--ivory); }
.site-footer__brand { grid-column: 1 / span 4; font-size: clamp(22px, 2.4vw, 34px); font-weight: 300; letter-spacing: -0.035em; }
.site-footer nav { grid-column: 6 / span 3; display: grid; gap: 5px; font-size: 12px; }
.site-footer > p { grid-column: 10 / -1; justify-self: end; color: color-mix(in srgb, var(--ivory) 60%, transparent); font-size: 11px; }

/* Projects index */
.projects-main { padding-top: calc(var(--header-h) + clamp(72px, 10vw, 145px)); }
.page-intro { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; padding-bottom: clamp(90px, 12vw, 170px); }
.page-intro h1 { grid-column: 1 / span 5; font-size: clamp(58px, 10vw, 148px); font-weight: 300; letter-spacing: -0.07em; line-height: .8; }
.page-intro p { grid-column: 7 / span 4; align-self: end; max-width: 440px; font-size: 16px; line-height: 1.6; }
.page-intro > span { grid-column: 12; align-self: end; justify-self: end; color: var(--stone); font-size: 11px; }

.project-index { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(18px, 2.2vw, 34px); row-gap: clamp(88px, 13vw, 190px); padding-bottom: var(--section-space); }
.index-project { grid-column: span 5; display: block; }
.index-project--hero { grid-column: 1 / -1; }
.index-project--medium { grid-column: span 6; }
.index-project--small { grid-column: span 4; }
.index-project--wide { grid-column: span 8; }
.index-project--end { justify-self: end; }
.index-project--middle { grid-column-start: 6; }
.index-project figure { overflow: hidden; background: #ded9d2; aspect-ratio: 4 / 3; }
.index-project--hero figure { aspect-ratio: 16 / 8.8; }
.index-project--small figure { aspect-ratio: 4 / 5; }
.index-project img { height: 100%; object-fit: cover; transition: transform 750ms var(--ease); }
.index-project:hover img { transform: scale(1.015); }
.index-project > span { display: flex; justify-content: space-between; gap: 24px; padding-top: 12px; border-top: 1px solid var(--graphite); margin-top: 12px; }
.index-project b { font-size: clamp(16px, 1.6vw, 24px); font-weight: 400; letter-spacing: -.02em; }
.index-project em { color: var(--stone); font-size: 11px; font-style: normal; text-align: right; }

.archive-list { padding-top: 18px; padding-bottom: var(--section-space); border-top: 1px solid var(--graphite); }
.archive-list h2 { margin-bottom: 42px; font-size: 14px; font-weight: 400; }
.archive-list a { display: grid; grid-template-columns: 1fr 100px 160px; padding: 15px 0; border-bottom: 1px solid var(--hairline); font-size: 13px; }
.archive-list a span:nth-child(n+2) { color: var(--stone); }

/* Project story */
.project-hero { position: relative; height: 92svh; min-height: 620px; color: var(--white); overflow: hidden; background: #766f68; }
.project-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12), transparent 45%, rgba(0,0,0,.34)); }
.project-hero > img { width: 100%; height: 100%; object-fit: cover; }
.project-hero > div { position: absolute; z-index: 2; right: var(--gutter); bottom: 40px; left: var(--gutter); display: flex; justify-content: space-between; align-items: end; }
.project-hero h1 { font-size: clamp(46px, 8vw, 120px); font-weight: 300; letter-spacing: -0.06em; line-height: .86; }
.project-hero p { margin-bottom: 4px; font-size: 12px; }

.project-story { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(22px, 2.4vw, 38px); padding-top: clamp(80px, 10vw, 150px); padding-bottom: var(--section-space); }
.project-facts { grid-column: 1 / span 3; align-self: start; position: sticky; top: calc(var(--header-h) + 30px); }
.project-facts__name { margin-bottom: 54px; font-size: 25px; font-weight: 300; letter-spacing: -.035em; }
.project-facts dl { margin: 0; }
.project-facts dl div { display: grid; grid-template-columns: 1fr 1.2fr; gap: 15px; padding: 10px 0; border-top: 1px solid var(--hairline); font-size: 11px; }
.project-facts dt { color: var(--stone); }
.project-facts dd { margin: 0; text-align: right; }
.project-narrative { grid-column: 5 / -1; display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: clamp(22px, 2.2vw, 34px); align-items: start; }
.story-image { grid-column: 1 / -1; margin-bottom: clamp(50px, 8vw, 110px); }
.story-image img { width: 100%; }
.project-description { grid-column: 1 / span 6; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 70px); margin-bottom: clamp(70px, 10vw, 150px); font-size: 16px; line-height: 1.72; }
.story-image--portrait { grid-column: 3 / -1; }
.story-image--right img { aspect-ratio: 4 / 5; object-fit: cover; }
.story-pair { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 32px); margin-bottom: clamp(60px, 10vw, 150px); }
.story-pair figure:first-child { margin-top: 18%; }
.story-pair img { aspect-ratio: 4 / 5; object-fit: cover; }
.story-image--full { margin-right: calc(var(--gutter) * -1); }
.story-image--detail { grid-column: 1 / span 5; }

.project-next { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding-top: 1px; padding-bottom: 1px; background: var(--hairline); }
.project-next a { display: grid; gap: 9px; min-height: 210px; align-content: center; padding: 32px; background: var(--ivory); }
.project-next a:last-child { text-align: right; }
.project-next span { color: var(--stone); font-size: 11px; }
.project-next b { font-size: clamp(22px, 3vw, 42px); font-weight: 300; letter-spacing: -.04em; }

/* Studio */
.studio-main { padding-top: calc(var(--header-h) + clamp(80px, 10vw, 150px)); }
.studio-intro { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; padding-bottom: clamp(90px, 14vw, 210px); }
.studio-intro h1 { grid-column: 1 / span 9; max-width: 1180px; font-size: clamp(58px, 9vw, 132px); font-weight: 300; letter-spacing: -0.065em; line-height: .88; }
.studio-intro > p { grid-column: 9 / -1; align-self: end; padding-top: 12px; border-top: 1px solid var(--graphite); font-size: 13px; }
.studio-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(20px, 2.3vw, 36px); align-items: start; padding-bottom: var(--section-space); }
.studio-layout__main { grid-column: 1 / span 8; }
.studio-layout__main img { aspect-ratio: 4 / 3; object-fit: cover; }
.studio-layout__copy { grid-column: 9 / -1; padding-top: 12px; border-top: 1px solid var(--graphite); }
.studio-layout__copy h2 { margin-bottom: 48px; font-size: 14px; font-weight: 400; }
.studio-layout__copy p { margin-bottom: 20px; font-size: 15px; line-height: 1.7; }
.studio-layout__detail { grid-column: 5 / span 5; margin-top: clamp(70px, 12vw, 180px); }
.studio-layout__detail img { aspect-ratio: 4 / 5; object-fit: cover; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: clamp(70px, 10vw, 145px) 0; border-top: 1px solid var(--graphite); border-bottom: 1px solid var(--graphite); }
.values p { font-size: clamp(27px, 3.7vw, 54px); font-weight: 300; letter-spacing: -.045em; }
.team { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 38px); }
.team article:nth-child(2) { margin-top: 9vw; }
.team article:nth-child(3) { margin-top: 4vw; }
.team img { aspect-ratio: 2 / 3; object-fit: cover; filter: grayscale(1); }
.team h3 { margin-top: 13px; font-size: 16px; font-weight: 400; }
.team article p { color: var(--stone); font-size: 11px; }

/* Contact */
.contact-main { min-height: 100svh; padding-top: calc(var(--header-h) + clamp(70px, 8vw, 120px)); padding-bottom: 60px; }
.contact-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(22px, 2.4vw, 38px); align-items: end; }
.contact-layout__copy { grid-column: 1 / span 6; padding-bottom: 20px; }
.contact-layout__copy h1 { max-width: 760px; font-size: clamp(58px, 8vw, 118px); font-weight: 300; letter-spacing: -.065em; line-height: .86; }
.contact-layout__intro { max-width: 480px; margin: clamp(38px, 5vw, 70px) 0; font-size: 17px; line-height: 1.65; }
.contact-layout address { display: grid; gap: 5px; margin-bottom: 34px; font-size: 14px; font-style: normal; }
.contact-layout address a { width: fit-content; border-bottom: 1px solid transparent; }
.contact-layout address a:hover { border-color: currentColor; }
.location-link { display: inline-block; padding-bottom: 3px; border-bottom: 1px solid var(--graphite); font-size: 13px; }
.contact-layout__image { grid-column: 8 / -1; }
.contact-layout__image img { aspect-ratio: 4 / 5; height: min(68svh, 810px); object-fit: cover; }
.contact-footer-note { display: flex; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 15px; border-top: 1px solid var(--graphite); color: var(--stone); font-size: 11px; }

@media (max-width: 980px) {
  :root { --header-h: 74px; }
  .site-nav { display: none; }
  .menu-toggle { display: block; }
  .manifesto, .project-sequence, .studio-note, .site-footer, .page-intro, .project-index, .project-story, .studio-intro, .studio-layout, .contact-layout {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .manifesto__title { grid-column: 1 / span 2; }
  .manifesto__copy { grid-column: 3 / -1; }
  .feature--wide { grid-column: 1 / -1; }
  .feature--right { grid-column: 3 / -1; }
  .feature--left { grid-column: 1 / span 5; }
  .studio-note::before { grid-column: 1; }
  .studio-note p { grid-column: 2 / span 4; }
  .studio-note .text-link { grid-column: 6; }
  .site-footer__brand { grid-column: 1 / span 2; }
  .site-footer nav { grid-column: 3 / span 2; }
  .site-footer > p { grid-column: 5 / -1; }
  .page-intro h1 { grid-column: 1 / span 3; }
  .page-intro p { grid-column: 4 / span 2; }
  .page-intro > span { grid-column: 6; }
  .index-project--hero { grid-column: 1 / -1; }
  .index-project--medium { grid-column: span 4; }
  .index-project--small { grid-column: span 3; }
  .index-project--wide { grid-column: span 5; }
  .index-project--middle { grid-column-start: 2; }
  .project-facts { grid-column: 1 / span 2; }
  .project-narrative { grid-column: 3 / -1; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .studio-intro h1 { grid-column: 1 / -1; }
  .studio-intro > p { grid-column: 4 / -1; }
  .studio-layout__main { grid-column: 1 / span 4; }
  .studio-layout__copy { grid-column: 5 / -1; }
  .studio-layout__detail { grid-column: 3 / span 3; }
  .contact-layout__copy { grid-column: 1 / span 3; }
  .contact-layout__image { grid-column: 4 / -1; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; --gutter: 20px; --section-space: 92px; }
  .site-header { padding-inline: var(--gutter); }
  .brand { width: 156px; }
  .hero { min-height: 560px; }
  .hero-slide img { object-position: center; }
  .hero-slide__meta { bottom: 30px; display: grid; gap: 8px; }
  .hero-slide__meta a { font-size: 39px; }
  .hero-controls { top: auto; right: 13px; bottom: 26px; transform: none; }
  .hero-controls button { display: none; }
  .hero-controls button.is-active { display: block; }
  .scroll-note { display: none; }
  .manifesto, .project-sequence, .studio-note, .site-footer, .page-intro, .project-index, .project-story, .studio-intro, .studio-layout, .contact-layout {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .manifesto { row-gap: 46px; }
  .manifesto__title, .manifesto__copy { grid-column: 1 / -1; }
  .manifesto__copy { font-size: 37px; }
  .project-sequence { row-gap: 92px; }
  .feature--wide, .feature--right, .feature--left { grid-column: 1 / -1; }
  .feature--portrait figure { aspect-ratio: 4 / 5; }
  .feature--landscape figure, .feature--wide figure { aspect-ratio: 4 / 3; }
  .feature__meta { align-items: end; }
  .feature__meta h2 { font-size: 20px; }
  .studio-note { row-gap: 46px; }
  .studio-note::before { grid-column: 1 / -1; }
  .studio-note p { grid-column: 1 / -1; font-size: 35px; }
  .studio-note .text-link { grid-column: 1 / -1; justify-self: start; }
  .selected-projects__grid { grid-template-columns: 1fr; gap: 72px; }
  .project-tile:nth-child(2) { margin-top: 0; }
  .contact-band { display: grid; }
  .site-footer { min-height: 420px; align-content: end; row-gap: 36px; }
  .site-footer__brand, .site-footer nav, .site-footer > p { grid-column: 1 / -1; justify-self: start; }
  .projects-main { padding-top: calc(var(--header-h) + 70px); }
  .page-intro { row-gap: 40px; }
  .page-intro h1 { grid-column: 1 / -1; font-size: 64px; }
  .page-intro p { grid-column: 1 / span 3; }
  .page-intro > span { grid-column: 4; }
  .project-index { row-gap: 90px; }
  .index-project, .index-project--hero, .index-project--medium, .index-project--small, .index-project--wide, .index-project--middle { grid-column: 1 / -1; width: 100%; justify-self: stretch; }
  .index-project figure, .index-project--hero figure, .index-project--small figure { aspect-ratio: 4 / 3; }
  .index-project:nth-child(3n) { width: 78%; justify-self: end; }
  .index-project:nth-child(3n) figure { aspect-ratio: 4 / 5; }
  .index-project > span { display: grid; gap: 4px; }
  .index-project em { text-align: left; }
  .archive-list a { grid-template-columns: 1fr auto; }
  .archive-list a span:last-child { display: none; }
  .project-hero { height: 84svh; min-height: 550px; }
  .project-hero > img { object-position: center; }
  .project-hero > div { bottom: 28px; display: grid; gap: 8px; }
  .project-hero h1 { font-size: 54px; }
  .project-facts { grid-column: 1 / -1; position: static; padding-bottom: 62px; }
  .project-facts__name { margin-bottom: 34px; }
  .project-narrative { grid-column: 1 / -1; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .project-description { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .story-image--portrait, .story-image--detail { grid-column: 1 / -1; }
  .story-image--full { margin-right: 0; }
  .story-pair { grid-template-columns: 1fr; }
  .story-pair figure:first-child { margin-top: 0; }
  .story-pair figure:last-child { width: 82%; justify-self: end; }
  .project-next { grid-template-columns: 1fr; }
  .project-next a { min-height: 150px; }
  .project-next a:last-child { text-align: left; }
  .studio-main { padding-top: calc(var(--header-h) + 72px); }
  .studio-intro { row-gap: 48px; }
  .studio-intro h1 { grid-column: 1 / -1; font-size: 61px; }
  .studio-intro > p { grid-column: 2 / -1; }
  .studio-layout__main, .studio-layout__copy, .studio-layout__detail { grid-column: 1 / -1; }
  .studio-layout__copy { margin-top: 44px; }
  .studio-layout__detail { width: 78%; justify-self: end; }
  .values { grid-template-columns: 1fr; gap: 8px; }
  .team__grid { grid-template-columns: 1fr; gap: 70px; }
  .team article:nth-child(n) { width: 86%; margin-top: 0; }
  .team article:nth-child(even) { justify-self: end; }
  .contact-main { padding-top: calc(var(--header-h) + 68px); }
  .contact-layout { row-gap: 70px; }
  .contact-layout__copy, .contact-layout__image { grid-column: 1 / -1; }
  .contact-layout__copy h1 { font-size: 62px; }
  .contact-layout__image { width: calc(100% + var(--gutter)); }
  .contact-layout__image img { height: auto; }
  .contact-footer-note { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-slide img, .feature img, .project-tile img, .index-project img { transform: none !important; }
}

/* Revision 2: a shared baseline, deliberate pairings and a quieter type scale. */
:root { --section-space: clamp(76px, 7.5vw, 112px); }
.manifesto { padding-block: 96px; align-items: start; }
.manifesto__title { grid-column: 1 / span 3; }
.manifesto__copy { grid-column: 6 / -1; font-size: clamp(26px, 2.8vw, 40px); line-height: 1.22; letter-spacing: -.035em; }
.project-sequence { row-gap: 56px; column-gap: 32px; }
.feature--wide { grid-column: 1 / -1; }
.feature--right { grid-column: 1 / span 6; }
.feature--left { grid-column: 7 / span 6; }
.feature--wide figure { aspect-ratio: 16 / 9; }
.feature--portrait figure, .feature--landscape figure { aspect-ratio: 4 / 3; }
.feature__meta { margin-top: 0; border-top: 0; padding-top: 16px; align-items: baseline; }
.feature__meta h2 { font-size: 20px; letter-spacing: -.02em; }
.feature__meta p { font-size: 12px; }
.studio-note { background: var(--ivory); color: var(--graphite); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.studio-note::before { display: none; }
.studio-note p { grid-column: 1 / span 7; max-width: 780px; font-size: clamp(26px, 2.8vw, 40px); line-height: 1.25; letter-spacing: -.035em; }
.studio-note .text-link { grid-column: 10 / -1; }
.selected-projects__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
.project-tile:nth-child(2) { margin-top: 0; }
.project-tile figure, .project-tile:nth-child(2) figure { aspect-ratio: 4 / 3; }
.project-tile > span { margin-top: 16px; align-items: baseline; }
.project-tile b { font-size: 20px; }
.project-tile em { font-size: 12px; }
.section-heading { margin-bottom: 32px; }
.contact-band { padding-block: 44px; }
.contact-band p { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.15; letter-spacing: -.035em; }
.projects-main, .studio-main { padding-top: calc(var(--header-h) + 68px); }
.page-intro { padding-bottom: 56px; align-items: end; }
.page-intro h1 { grid-column: 1 / span 5; font-size: clamp(38px, 4.2vw, 60px); line-height: 1.05; letter-spacing: -.045em; }
.page-intro p { grid-column: 7 / span 5; max-width: 430px; font-size: 15px; line-height: 1.65; }
.project-index { row-gap: 64px; column-gap: 32px; }
.index-project, .index-project--medium, .index-project--small, .index-project--wide, .index-project--middle { grid-column: span 6; width: 100%; justify-self: stretch; }
.index-project--hero { grid-column: 1 / -1; }
.index-project figure, .index-project--small figure { aspect-ratio: 4 / 3; }
.index-project--hero figure { aspect-ratio: 2 / 1; }
.index-project > span { margin-top: 0; padding-top: 16px; border-top: 0; align-items: baseline; }
.index-project b { font-size: 20px; }
.index-project em { font-size: 12px; }
.archive-list { padding-top: 24px; }
.project-hero h1 { font-size: clamp(38px, 4.5vw, 64px); line-height: 1; letter-spacing: -.04em; }
.project-story { padding-top: 80px; }
.project-facts__name { font-size: 23px; margin-bottom: 32px; }
.project-facts dl div { font-size: 12px; }
.project-narrative { gap: 40px 24px; }
.story-image { margin-bottom: 0; }
.project-description { grid-column: 1 / -1; gap: 32px; margin-block: 12px 20px; font-size: 15px; }
.story-image--portrait, .story-image--detail { grid-column: 1 / -1; }
.story-image--right img { aspect-ratio: auto; height: auto; }
.story-pair { margin-bottom: 0; gap: 24px; }
.story-pair figure:first-child { margin-top: 0; }
.story-pair img { aspect-ratio: 4 / 5; }
.story-image--full { margin-right: 0; }
.project-next a { min-height: 160px; }
.project-next b { font-size: 28px; }
.studio-intro { padding-bottom: 64px; align-items: end; }
.studio-intro h1 { grid-column: 1 / span 7; max-width: 650px; font-size: clamp(38px, 4.2vw, 60px); line-height: 1.1; letter-spacing: -.045em; }
.studio-intro > p { grid-column: 9 / -1; font-size: 13px; }
.studio-layout__detail { grid-column: 1 / span 5; margin-top: 48px; }
.studio-layout__copy h2 { margin-bottom: 24px; }
.values { padding-block: 48px; }
.values p { font-size: clamp(23px, 2.3vw, 32px); }
.team article:nth-child(n) { margin-top: 0; }
.team img { aspect-ratio: 4 / 5; object-position: center 28%; }
.contact-layout { align-items: center; }
.contact-layout__copy h1 { max-width: 530px; font-size: clamp(38px, 4.2vw, 60px); line-height: 1.1; letter-spacing: -.045em; }
.contact-layout__intro { margin-block: 32px; font-size: 16px; }
.contact-layout__image img { height: auto; max-height: 660px; }
.menu-open .site-header { color: var(--graphite); background: var(--ivory); }
.menu-open .site-header .brand img { filter: none; }

@media (max-width: 980px) {
  .manifesto__title { grid-column: 1 / span 2; }
  .manifesto__copy { grid-column: 3 / -1; }
  .feature--right { grid-column: 1 / span 3; }
  .feature--left { grid-column: 4 / span 3; }
  .studio-note p { grid-column: 1 / span 4; }
  .studio-note .text-link { grid-column: 5 / -1; }
  .page-intro h1 { grid-column: 1 / span 3; }
  .page-intro p { grid-column: 4 / span 2; }
  .index-project, .index-project--medium, .index-project--small, .index-project--wide, .index-project--middle { grid-column: span 3; }
  .index-project--hero { grid-column: 1 / -1; }
  .index-project > span, .feature__meta, .project-tile > span { display: grid; gap: 5px; }
  .index-project em { text-align: left; }
  .studio-intro h1 { grid-column: 1 / span 4; }
  .studio-intro > p { grid-column: 5 / -1; }
  .studio-layout__detail { grid-column: 1 / span 3; }
}

@media (max-width: 640px) {
  .manifesto { padding-block: 64px; row-gap: 28px; }
  .manifesto__title, .manifesto__copy { grid-column: 1 / -1; }
  .manifesto__copy { font-size: 27px; }
  .project-sequence, .project-index { row-gap: 40px; }
  .feature--right, .feature--left { grid-column: 1 / -1; }
  .feature--wide figure, .feature--portrait figure, .feature--landscape figure { aspect-ratio: 4 / 3; }
  .feature__meta h2, .index-project b, .project-tile b { font-size: 18px; }
  .studio-note p { grid-column: 1 / -1; font-size: 27px; }
  .studio-note .text-link { grid-column: 1 / -1; }
  .studio-note { row-gap: 28px; }
  .selected-projects__grid { grid-template-columns: 1fr; gap: 40px; }
  .projects-main, .studio-main { padding-top: calc(var(--header-h) + 42px); }
  .page-intro { row-gap: 22px; padding-bottom: 36px; }
  .page-intro h1 { grid-column: 1 / -1; font-size: 38px; }
  .page-intro p { grid-column: 1 / span 3; font-size: 14px; }
  .index-project, .index-project--medium, .index-project--small, .index-project--wide, .index-project--middle, .index-project:nth-child(3n) { grid-column: 1 / -1; width: 100%; justify-self: stretch; }
  .index-project figure, .index-project--hero figure, .index-project:nth-child(3n) figure { aspect-ratio: 4 / 3; }
  .project-hero h1 { font-size: 38px; }
  .project-story { padding-top: 48px; }
  .project-facts { padding-bottom: 24px; }
  .project-description { grid-template-columns: 1fr; gap: 20px; }
  .story-pair { grid-template-columns: 1fr 1fr; gap: 12px; }
  .story-pair figure:last-child { width: 100%; }
  .studio-intro { row-gap: 28px; padding-bottom: 40px; }
  .studio-intro h1 { grid-column: 1 / -1; font-size: 38px; }
  .studio-intro > p { grid-column: 1 / -1; }
  .studio-layout__detail { grid-column: 1 / -1; width: 100%; margin-top: 28px; }
  .studio-layout__detail img { aspect-ratio: 4 / 3; }
  .team article:nth-child(n) { width: 100%; }
  .team__grid { gap: 40px; }
  .contact-layout__copy h1 { font-size: 38px; }
  .contact-layout__image { width: 100%; }
}

/* Third visual trial: warmer typography and composed studio/contact spreads. */
:root { --graphite: #454540; --stone: #686860; --hairline: rgba(69,69,64,.2); }
body { font-family: 'Avenir Next', Avenir, 'Segoe UI', sans-serif; font-weight: 400; }
h1, .page-intro h1, .studio-intro h1, .contact-layout__copy h1 { font-weight: 400; letter-spacing: -.04em; }
.site-nav { font-weight: 400; }
.site-footer { background: #373a36; }
.studio-intro { grid-template-columns: 7fr 5fr; gap: 64px; padding-bottom: 48px; }
.studio-intro h1 { grid-column: auto; font-size: clamp(32px,3.5vw,48px); line-height: 1.18; max-width: 520px; }
.studio-intro > p { grid-column: auto; justify-self: start; border: 0; padding: 0; font-size: 13px; line-height: 1.8; color: var(--stone); }
.studio-layout { grid-template-columns: 7fr 5fr; gap: 64px; align-items: center; padding-bottom: 88px; }
.studio-layout__main { grid-column: auto; }
.studio-layout__main img { aspect-ratio: 5 / 4; }
.studio-layout__copy { grid-column: auto; border: 0; padding: 0; max-width: 410px; }
.studio-layout__copy h2 { font-size: 22px; font-weight: 400; letter-spacing: -.025em; margin-bottom: 26px; }
.studio-layout__copy p { font-size: 15px; line-height: 1.85; color: var(--stone); }
.studio-method { display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: center; border-top: 1px solid var(--hairline); padding-block: 80px; }
.studio-method > figure { grid-column: 1; grid-row: 1; }
.studio-method__copy { grid-column: 2; grid-row: 1; }
.studio-method__copy { max-width: 420px; }
.studio-method h2 { font-size: 25px; line-height: 1.3; font-weight: 400; letter-spacing: -.025em; margin-bottom: 20px; }
.studio-method__intro { font-size: 15px; line-height: 1.8; color: var(--stone); }
.studio-method dl { margin: 30px 0 0; }
.studio-method dl div { padding-block: 18px; border-top: 1px solid var(--hairline); }
.studio-method dt { font-size: 14px; margin-bottom: 7px; }
.studio-method dd { margin: 0; color: var(--stone); font-size: 13px; line-height: 1.75; max-width: 360px; }
.studio-method figure img { aspect-ratio: 5 / 4; object-fit: cover; }
.studio-method figcaption { margin-top: 12px; color: var(--stone); font-size: 12px; }
.team { padding-top: 48px; }
.team .section-heading { margin-bottom: 32px; }
.team__grid { gap: 32px; }
.team img { aspect-ratio: 4 / 5; }
.team h3 { margin-top: 18px; }
.contact-main { min-height: auto; padding-top: calc(var(--header-h) + 64px); padding-bottom: 48px; }
.contact-heading { display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: end; padding-bottom: 48px; }
.contact-heading h1 { font-size: clamp(32px,3.5vw,48px); line-height: 1.18; max-width: 550px; }
.contact-heading > p { max-width: 390px; font-size: 14px; line-height: 1.8; color: var(--stone); }
.contact-layout { grid-template-columns: 7fr 5fr; gap: 64px; align-items: center; }
.contact-layout__copy { grid-column: 2; grid-row: 1; width: 100%; max-width: 420px; }
.contact-layout__copy h2 { font-size: 22px; font-weight: 400; margin-bottom: 30px; letter-spacing: -.025em; }
.contact-appointment { font-size: 12px; color: var(--stone); margin: 28px 0 0 125px; }
.contact-layout__copy { padding: 0; }
.contact-layout__copy h1 { font-size: clamp(32px,3.3vw,46px); line-height: 1.2; max-width: 560px; }
.contact-layout__intro { margin: 26px 0 36px; max-width: 390px; font-size: 15px; color: var(--stone); line-height: 1.8; }
.contact-layout address { gap: 0; margin-bottom: 22px; }
.contact-layout address > div { display: grid; grid-template-columns: 105px 1fr; gap: 20px; padding-block: 18px; border-top: 1px solid var(--hairline); font-size: 14px; }
.contact-layout address > div > span:first-child { color: var(--stone); font-size: 12px; }
.contact-layout address a { overflow-wrap: anywhere; }
.contact-layout__image { grid-column: 1; grid-row: 1; }
.contact-layout__image img { aspect-ratio: 5 / 4; width: 100%; height: auto; max-height: 680px; object-fit: cover; }
.location-link { margin-left: 125px; font-size: 12px; }
.contact-footer-note { margin-top: 48px; }
@media (max-width:980px) {
  .studio-intro, .studio-layout, .studio-method { gap: 32px; }
  .contact-layout, .contact-heading { gap: 32px; }
  .contact-layout address > div { grid-template-columns: 1fr; gap: 5px; }
  .location-link { margin-left: 0; }
  .contact-appointment { margin-left: 0; }
}
@media (max-width:640px) {
  .studio-intro, .studio-layout, .studio-method, .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-heading { grid-template-columns: 1fr; gap: 18px; padding-bottom: 32px; }
  .contact-heading h1 { font-size: 32px; }
  .studio-method > figure, .studio-method__copy { grid-column: 1; grid-row: auto; }
  .studio-method__copy { order: 0; }
  .studio-method > figure { order: 1; }
  .contact-layout__copy { grid-row: 1; }
  .contact-layout__image { grid-row: 2; }
  .studio-intro h1, .studio-intro > p, .studio-layout__main, .studio-layout__copy, .contact-layout__copy, .contact-layout__image { grid-column: 1; }
  .studio-intro { gap: 18px; padding-bottom: 32px; }
  .studio-intro h1, .contact-layout__copy h1 { font-size: 32px; }
  .studio-layout { padding-bottom: 48px; }
  .studio-layout__copy { margin-top: 0; }
  .studio-layout__copy h2 { margin-bottom: 18px; }
  .studio-method { padding-block: 44px; }
  .studio-method dl { margin-top: 22px; }
  .team { padding-top: 28px; }
  .contact-main { padding-top: calc(var(--header-h) + 38px); }
  .contact-layout { gap: 38px; }
  .contact-layout address > div { grid-template-columns: 82px 1fr; gap: 12px; font-size: 13px; }
  .location-link { margin-left: 94px; }
  .contact-appointment { margin-left: 94px; }
  .contact-layout__image { width: 100%; }
  .contact-layout__image img { aspect-ratio: 4 / 3; }
  .contact-footer-note { gap: 8px; margin-top: 32px; }
}

/* Production adjustments for responsive picture elements and accessible controls. */
.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; }
picture { display: block; }
.hero-slide > picture,.project-hero > picture { width: 100%; height: 100%; }
.project-hero > picture > img { height: 100%; width: 100%; object-fit: cover; }
.feature figure > picture,.project-tile figure > picture,.index-project figure > picture { height: 100%; }
.feature img,.project-tile img,.index-project img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide__meta a { font-size: clamp(30px,4vw,60px); }
.hero-slide__meta { align-items: end; gap: 36px; }
.hero-slide__meta a { max-width: 70%; }
.hero-controls button { width: 44px; height: 44px; opacity: .85; }
.hero-controls button.is-active { opacity: 1; }
.hero-controls .hero-pause { font-size: 14px; opacity: 1; }
.hero-controls { right: 16px; padding: 6px 0; border-radius: 24px; background: rgba(20,20,20,.24); }
.hero-controls button:focus-visible { outline-offset: -4px; }
.hero-slide[aria-hidden=true] { pointer-events: none; }
.page-intro > span { white-space: nowrap; }
.project-narrative { grid-template-columns: 1fr; gap: 32px; }
.project-narrative > * { grid-column: 1 / -1; min-width: 0; }
.project-description { display: block; max-width: 760px; margin-bottom: 20px; }
.project-description p + p { margin-top: 20px; }
.story-image { width: 100%; }
.story-image img { width: 100%; height: auto; }
.project-hero h1 { max-width: 75%; }
.project-facts { min-width: 0; }
.project-facts dd { overflow-wrap: anywhere; }
.project-facts dl div { grid-template-columns: .85fr 1.15fr; gap: 12px; }
.back-projects { display: inline-block; margin-top: 28px; padding-block: 12px; border-bottom: 1px solid var(--hairline); font-size: 12px; }
.gallery-open { display: block; position: relative; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.image-expand { position: absolute; bottom: 14px; right: 14px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(250,249,246,.9); color: #454540; font-size: 21px; opacity: 0; transition: opacity .2s; }
.gallery-open:hover .image-expand,.gallery-open:focus-visible .image-expand { opacity: 1; }
.lightbox-open { overflow: hidden; }
.lightbox { inset: 0; width: 100%; height: 100%; max-width: none; max-height: none; margin: 0; border: 0; padding: 24px; background: #242622; color: #faf9f6; }
.lightbox[open] { display: grid; grid-template-rows: 48px minmax(0,1fr) 68px; gap: 12px; }
.lightbox::backdrop { background: #242622; }
.lightbox-toolbar,.lightbox-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.lightbox button { background: transparent; color: inherit; padding: 12px; min-height: 44px; border: 1px solid #787c74; cursor: pointer; }
.lightbox p { font-size: 12px; }
.lightbox-image { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox-bottom p { max-width: 60%; text-align: center; }
.footer-contact { grid-column: 9 / -1; display: grid; gap: 8px; font-size: 12px; color: #e0e0d8; }
.footer-contact span:last-child { padding-top: 16px; font-size: 11px; }
.site-footer nav { grid-column: 6 / span 2; }
.site-footer a { width: fit-content; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.legal-page { padding-top: calc(var(--header-h) + 64px); padding-bottom: 96px; max-width: 980px; margin-inline: auto; }
.legal-page h1 { font-size: clamp(32px,4vw,48px); font-weight: 400; margin-bottom: 44px; }
.legal-page h2 { font-weight: 400; font-size: 21px; margin: 32px 0 14px; }
.legal-page p,.legal-page li { color: var(--stone); font-size: 15px; line-height: 1.85; }
.legal-page p + p { margin-top: 16px; }
.legal-page a { text-decoration: underline; text-underline-offset: 3px; }
.contact-layout address a { min-height: 28px; }
@media (max-width:980px) {
 .footer-contact { grid-column: 5 / -1; }
 .site-footer nav { grid-column: 3 / span 2; }
 .archive-list a { min-height: 48px; }
}
@media (max-width:640px) {
 .hero-slide__meta a { font-size: 32px; max-width: 100%; }
 .hero-slide__meta { display: grid; gap: 8px; }
 .hero-controls { top: auto; bottom: 112px; right: 20px; display: flex; transform: none; padding: 0 4px; }
 .hero-controls button,.hero-controls button.is-active { display: block; width: 36px; height: 44px; }
 .hero-controls button.is-active span { transform: none; text-decoration: underline; text-underline-offset: 5px; }
 .project-hero h1 { font-size: 34px; max-width: 100%; }
 .project-hero p { font-size: 12px; }
 .project-description { font-size: 15px; }
 .project-next b { font-size: 23px; }
 .site-footer nav,.footer-contact { grid-column: 1 / -1; }
 .site-footer nav a { padding-block: 5px; }
 .site-footer { padding-top: 40px; }
 .lightbox { padding: 12px; }
 .lightbox-bottom { gap: 8px; }
 .lightbox-bottom p { font-size: 10px; }
 .image-expand { opacity: 1; }
}
