@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin.woff2?v=20260908-3") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 500;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2?v=20260908-3") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 500;
}

@font-face {
  font-family: "Source Code Pro";
  src: url("../fonts/source-code-pro-latin.woff2?v=20260908-3") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 500;
}

:root {
  --ink: #191818;
  --paper: #f4f1ed;
  --paper-deep: #ded2cb;
  --muted: #7a736d;
  --line: rgba(25, 24, 24, 0.22);
  --line-light: rgba(244, 241, 237, 0.28);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
  --mono: "Source Code Pro", Consolas, monospace;
  --shell: min(100% - 48px, 1440px);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  min-width: min(320px, 100%);
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.5 var(--body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: var(--body);
}

img,
svg {
  display: block;
}

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

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

h1,
h2,
h3,
p,
ul,
ol,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
}

h1 {
  max-width: 12ch;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 7.4vw, 7.5rem);
  line-height: 1;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6.6vw, 7rem);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--body);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.2;
}

p:last-child {
  margin-bottom: 0;
}

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

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

.section-pad {
  padding-block: clamp(96px, 13vw, 208px);
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--muted);
  font: 500 clamp(0.68rem, 0.8vw, 0.78rem)/1.5 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(244, 241, 237, 0.68);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 24px;
  color: var(--paper);
  background: rgba(25, 24, 24, 0.9);
  border-bottom: 1px solid rgba(244, 241, 237, 0.14);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.mini-mark,
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  color: inherit;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.mini-mark span {
  font-size: 1.15rem;
  letter-spacing: 0.11em;
}

.mini-mark small {
  margin-top: 5px;
  font-size: 0.44rem;
  letter-spacing: 0.38em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 44px);
  font-size: 0.84rem;
  font-weight: 500;
}

.site-nav__mobile-only,
.menu-toggle {
  display: none;
}

.site-nav a {
  position: relative;
  padding-block: 5px;
}

.nav-label--mobile {
  display: none;
}

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

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

.hero {
  height: 100vh;
  color: var(--paper);
  background: var(--ink);
}

.hero__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height));
  object-fit: cover;
  object-position: 15% 42%;
  transform: scale(1.03);
}

.hero__sticky::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 24, 24, 0.2) 0%, rgba(25, 24, 24, 0.03) 34%, rgba(25, 24, 24, 0.76) 100%);
  content: "";
}

.photo-veil {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  background: linear-gradient(to bottom, transparent, rgba(25, 24, 24, 0.45));
  pointer-events: none;
}

.photo-veil::before,
.photo-veil::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  pointer-events: none;
}

.photo-veil::before {
  height: 70%;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000);
  mask-image: linear-gradient(to bottom, transparent, #000);
}

.photo-veil::after {
  height: 35%;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 85%);
  mask-image: linear-gradient(to bottom, transparent, #000 85%);
}

.hero__wordmark {
  position: absolute;
  z-index: 3;
  top: clamp(92px, 13vh, 150px);
  left: 50%;
  width: min(90vw, 1100px);
  transform: translateX(-50%);
}

.hero__wordmark span {
  font-size: clamp(4.2rem, 10.2vw, 10rem);
  letter-spacing: 0.1em;
}

.hero__wordmark small {
  margin-top: 18px;
  font-size: clamp(0.9rem, 2.4vw, 2.2rem);
  letter-spacing: 0.48em;
}

.hero__copy {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: clamp(28px, 5.5vh, 64px);
  left: 0;
}

.hero__eyebrow {
  color: rgba(244, 241, 237, 0.72);
}

.hero__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
}

.hero__meta p,
.hero__meta a {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero__meta a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.hero__meta a span {
  font-size: 1.25rem;
}

.why {
  position: relative;
  z-index: 4;
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) 1fr;
  gap: clamp(40px, 7vw, 112px);
}

.statement {
  max-width: 13ch;
}

.statement-note {
  max-width: 690px;
  margin: 42px 0 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.experience {
  color: var(--paper);
  background: var(--ink);
}

.experience__inner {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  grid-template-rows: auto auto;
  gap: 0 clamp(48px, 8vw, 128px);
  align-items: end;
  min-height: min(900px, 100vh);
  padding-block: clamp(80px, 10vw, 160px);
}

.experience .eyebrow {
  grid-column: 1 / -1;
  align-self: start;
}

.experience__figure {
  font-family: var(--display);
  font-size: clamp(11rem, 28vw, 30rem);
  line-height: 0.72;
}

.experience h2 {
  max-width: 9ch;
  margin-bottom: 0;
  padding-bottom: clamp(12px, 3vw, 48px);
  font-family: var(--body);
  font-size: clamp(2rem, 4vw, 4.7rem);
  line-height: 1;
}

.spaces {
  background: var(--paper-deep);
}

.spaces__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
  gap: clamp(56px, 9vw, 150px);
  align-items: start;
}

.spaces__portrait {
  position: sticky;
  top: 11vh;
  height: 78vh;
  min-height: 560px;
  overflow: hidden;
}

.spaces__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.spaces__content h2 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 5.8vw, 6.7rem);
}

.spaces__list {
  margin: clamp(64px, 8vw, 120px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.spaces__list li {
  padding: 17px 0 15px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  line-height: 1.2;
}

.spaces__aside {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.85rem;
}

.difference {
  color: var(--paper);
  background: var(--ink);
}

.difference__heading {
  display: grid;
  grid-template-columns: 0.25fr 0.75fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(80px, 12vw, 180px);
}

.difference__heading h2 {
  max-width: 11ch;
}

.role-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.role {
  min-height: 330px;
  padding: 28px clamp(18px, 2vw, 34px) 36px;
  border-right: 1px solid var(--line-light);
}

.role:last-child {
  border-right: 0;
}

.role__number {
  margin-bottom: clamp(80px, 9vw, 140px);
  color: rgba(244, 241, 237, 0.5);
  font: 400 0.72rem/1.5 var(--mono);
}

.role h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
}

.role p:last-child {
  max-width: 34ch;
  color: rgba(244, 241, 237, 0.68);
}

.role--featured {
  color: var(--ink);
  background: var(--paper-deep);
}

.role--featured .role__number,
.role--featured p:last-child {
  color: var(--muted);
}

.project {
  position: relative;
  height: 920vh;
  color: var(--paper);
  background: var(--ink);
}

.project__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.project__frames,
.project__frame,
.project__frame img,
.project__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project__frame {
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 520ms ease, transform 900ms ease;
}

.project__frame.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.project__frame img {
  object-fit: cover;
}

.project__scrim {
  z-index: 3;
  background: linear-gradient(180deg, rgba(25, 24, 24, 0.16), transparent 40%, rgba(25, 24, 24, 0.68));
  pointer-events: none;
}

.project__copy {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: clamp(28px, 6vh, 70px);
  left: 0;
}

.project__copy h2 {
  max-width: 10ch;
  margin-bottom: 12px;
  font-size: clamp(4.2rem, 10vw, 11rem);
}

.project__copy > p:last-child {
  font-size: 0.9rem;
}

.project__counter {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 32px;
  margin: 0;
  font: 400 0.76rem/1.5 var(--mono);
}

.process {
  background: var(--paper);
}

.process__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(64px, 10vw, 170px);
  align-items: start;
}

.process__intro {
  position: sticky;
  top: 18vh;
}

.process__intro h2 {
  max-width: 9ch;
}

.process__intro > p:last-child {
  max-width: 38ch;
  color: var(--muted);
}

.process__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process__steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: clamp(28px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--line);
}

.process__steps li > span {
  color: var(--muted);
  font: 400 0.7rem/1.5 var(--mono);
}

.process__steps h3 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 3.5rem);
}

.process__steps p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
}

.proof {
  position: relative;
  min-height: 100vh;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.proof__image,
.proof__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.proof__image {
  object-fit: cover;
}

.proof__veil {
  background: rgba(25, 24, 24, 0.7);
}

.proof__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-block: 96px;
}

.proof__quote {
  width: min(100%, 1300px);
  margin: 0;
}

.proof__quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 7rem);
  line-height: 1;
}

.enquire {
  height: 135vh;
  color: var(--paper);
  background: var(--ink);
}

.enquire__sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: center;
  height: 100vh;
  min-height: 700px;
  padding-top: clamp(80px, 10vh, 120px);
}

.enquire__heading {
  display: grid;
  grid-template-columns: 1fr 0.35fr;
  gap: 40px;
  align-items: end;
}

.enquire__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.enquire__heading h2 {
  max-width: 11ch;
  margin: 0;
}

.enquire__heading > p:last-child {
  max-width: 38ch;
  margin-bottom: 8px;
  color: rgba(244, 241, 237, 0.66);
}

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

.contact-list a {
  display: grid;
  grid-template-columns: 0.24fr 0.76fr;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-list span {
  color: rgba(244, 241, 237, 0.55);
  font: 400 0.7rem/1.5 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  transition: opacity 180ms ease;
}

.contact-list a:hover strong {
  opacity: 0.6;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: end;
  padding: 22px 0;
}

.site-footer p {
  margin: 0;
  color: rgba(244, 241, 237, 0.55);
  font-size: 0.7rem;
}

.wordmark--footer span {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

.wordmark--footer small {
  margin-top: 5px;
  font-size: 0.58rem;
  letter-spacing: 0.42em;
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  padding: 0.14em 0.08em 0.18em;
  margin: -0.14em 0.14em -0.18em -0.08em;
  vertical-align: bottom;
}

.word-mask:last-child {
  margin-right: -0.08em;
}

.word-mask > span {
  display: inline-block;
  will-change: transform;
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 1440px);
    --header-height: 65px;
  }

  .site-header {
    align-items: center;
    padding: 14px 16px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--paper);
    background: transparent;
    border: 1px solid rgba(244, 241, 237, 0.32);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - var(--header-height));
    padding: 16px;
    overflow-y: auto;
    color: var(--paper);
    background: rgba(25, 24, 24, 0.98);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: clamp(1.45rem, 7vw, 2rem);
    font-weight: 400;
    line-height: 1.1;
  }

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

  .site-nav__mobile-only {
    display: block;
  }

  .nav-label--desktop {
    display: none;
  }

  .nav-label--mobile {
    display: inline;
  }

  .site-nav__enquire {
    position: static;
    display: block;
    margin-top: 10px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--paper);
  }

  .hero {
    height: 100svh;
  }

  .hero__sticky {
    height: 100svh;
    min-height: 560px;
  }

  .hero__image {
    object-position: 36% center;
  }

  .hero__wordmark {
    top: calc(var(--header-height) + 46px);
    width: 94vw;
  }

  .hero__wordmark span {
    font-size: clamp(3.1rem, 15vw, 6rem);
    letter-spacing: 0.06em;
  }

  .hero__wordmark small {
    margin-top: 10px;
    font-size: clamp(0.72rem, 3.7vw, 1.15rem);
    letter-spacing: 0.34em;
  }

  .hero__meta a {
    font-size: 0;
  }

  .hero__meta a span {
    font-size: 1.3rem;
  }

  .statement-grid,
  .difference__heading,
  .spaces__grid,
  .process__grid,
  .enquire__heading {
    grid-template-columns: 1fr;
  }

  .statement-grid,
  .difference__heading {
    gap: 24px;
  }

  .statement-note {
    margin-top: 30px;
  }

  .experience__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 760px;
  }

  .experience .eyebrow {
    grid-column: 1;
  }

  .experience__figure {
    align-self: end;
    font-size: clamp(13rem, 55vw, 24rem);
  }

  .experience h2 {
    max-width: 12ch;
  }

  .spaces__portrait {
    position: relative;
    top: auto;
    height: min(115vw, 720px);
    min-height: 0;
  }

  .spaces__content h2 {
    max-width: 11ch;
  }

  .role-list {
    grid-template-columns: 1fr;
  }

  .role {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .role:last-child {
    border-bottom: 0;
  }

  .role__number {
    margin-bottom: 56px;
  }

  .project {
    height: 760vh;
  }

  .project__sticky {
    height: 100svh;
    min-height: 560px;
  }

  .project__frame img {
    object-position: center;
  }

  .project__copy h2 {
    max-width: 8ch;
  }

  .process__intro {
    position: relative;
    top: auto;
  }

  .enquire {
    height: auto;
  }

  .enquire__sticky {
    position: relative;
    display: block;
    height: auto;
    min-height: 100svh;
    padding-block: 100px 0;
  }

  .enquire__heading {
    gap: 28px;
  }

  .enquire__heading .eyebrow {
    grid-column: 1;
  }

  .enquire__heading > p:last-child {
    margin-bottom: 50px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    margin-top: 76px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.8rem, 13.2vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .section-pad {
    padding-block: 88px;
  }

  .hero__wordmark {
    display: none;
  }

  .hero__copy {
    bottom: 44px;
  }

  .experience__inner {
    min-height: 680px;
    padding-block: 72px;
  }

  .experience__figure {
    font-size: clamp(12rem, 61vw, 18rem);
  }

  .project__copy h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .project__counter {
    right: 16px;
    bottom: 24px;
  }

  .process__steps li {
    grid-template-columns: 44px 1fr;
  }

  .proof__quote p {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .contact-list a {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 0;
  }

  .contact-list strong {
    font-size: clamp(1.35rem, 6.5vw, 2rem);
  }

  .contact-list a[href^="mailto:"] strong {
    font-size: clamp(0.88rem, 4.3vw, 1.25rem);
    white-space: nowrap;
  }
}

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

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

  .word-mask {
    overflow: visible;
  }
}
