:root {
  --ink: #1c1b18;
  --ink-soft: #383631;
  --paper: #f3efe7;
  --paper-bright: #fbfaf6;
  --stone: #d4ccbf;
  --stone-dark: #918578;
  --clay: #a65f3b;
  --clay-dark: #743f2b;
  --sage: #66706a;
  --line: rgba(28, 27, 24, 0.24);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page-pad: clamp(1.25rem, 3.7vw, 4.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--paper-bright);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.concept-bar {
  position: sticky;
  z-index: 101;
  top: 0;
  min-height: 2rem;
  padding: 0.35rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.concept-bar p {
  margin: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 2rem;
  min-height: 7.2rem;
  padding: 1.5rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 231, 0.94);
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    backdrop-filter: blur(12px);
  }
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.45vw, 1.42rem);
  letter-spacing: -0.02em;
  line-height: 0.97;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3.2vw, 3.7rem);
  font-size: 0.79rem;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

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

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

.nav-contact {
  padding: 0.72rem 1.15rem 0.76rem;
  border: 1px solid var(--ink);
  border-radius: 100vw;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-contact:hover {
  color: var(--paper-bright);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
}

.hero {
  position: relative;
  min-height: calc(100svh - 9.2rem);
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(25rem, 1.07fr);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  min-width: 0;
  padding: clamp(4rem, 8vw, 8.8rem) var(--page-pad) clamp(6rem, 10vw, 9rem);
  align-self: center;
}

.eyebrow,
.section-number {
  margin-bottom: 1.55rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 0 0.55rem;
  color: var(--clay);
}

.hero h1 {
  max-width: 9.8ch;
  margin-bottom: clamp(1.8rem, 3.5vw, 3.1rem);
  font-family: var(--display);
  font-size: clamp(3.25rem, 6.2vw, 7.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 2.6rem;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.14rem, 1.6vw, 1.55rem);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.button {
  min-height: 3.6rem;
  min-width: min(100%, 15.8rem);
  padding: 0.8rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid currentColor;
  border-radius: 100vw;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--paper-bright);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: transparent;
}

.text-link,
.arrow-link {
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: lowercase;
}

.hero-art {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-art:hover img {
  transform: scale(1.018);
}

.hero-art figcaption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.2rem;
  left: 1.4rem;
  padding: 0.8rem 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--paper-bright);
  background: rgba(28, 27, 24, 0.86);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-line {
  width: 4.5rem;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-line::after {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--ink);
  content: "";
  animation: scan 2.4s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(225%); }
}

.craft-line {
  min-height: 31rem;
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(4rem, 0.4fr) minmax(0, 2fr) minmax(16rem, 0.7fr);
  align-items: end;
  gap: 2rem;
  background: var(--paper-bright);
}

.craft-line .section-number,
.craft-line p {
  margin-bottom: 0;
}

.craft-line h2 {
  margin-bottom: -0.04em;
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.72;
}

.craft-line h2 span:nth-child(2) {
  margin-left: 0.68em;
  color: var(--clay);
}

.craft-line h2 span:nth-child(3) {
  margin-left: 1.18em;
}

.craft-line > p:last-child {
  max-width: 23rem;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 1.14rem;
  line-height: 1.5;
}

.work-section {
  padding: clamp(5rem, 9vw, 9.5rem) var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.section-intro {
  margin-bottom: clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: 3rem;
}

.section-intro h2,
.fit-section h2,
.approach-copy h2,
.about-title h2,
.questions-title h2,
.contact-main h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 5.4vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.section-intro h2 {
  max-width: 12ch;
}

.section-intro > p {
  max-width: 32rem;
  margin-bottom: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 31rem 19rem 29rem 21rem 30rem;
  gap: clamp(1.15rem, 2.2vw, 2.4rem);
}

.project-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.project-office { grid-area: 1 / 1 / 2 / 8; }
.project-home { grid-area: 1 / 8 / 3 / 13; }
.project-ben { grid-area: 2 / 1 / 3 / 5; }
.project-flats { grid-area: 2 / 5 / 3 / 8; }
.project-yoga { grid-area: 3 / 1 / 4 / 8; }
.project-classic { grid-area: 3 / 8 / 5 / 13; }
.project-brick { grid-area: 4 / 1 / 5 / 4; }
.project-barn { grid-area: 4 / 4 / 5 / 8; }
.project-factory { grid-area: 5 / 1 / 6 / 13; }

.project-art {
  position: relative;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
  background: var(--stone);
}

.project-art::before,
.project-art::after,
.project-art > span::before,
.project-art > span::after {
  position: absolute;
  display: block;
  content: "";
  transition: transform 500ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.project-card:hover .project-art::before {
  transform: translate3d(2.5%, -2%, 0);
}

.project-card:hover .project-art::after {
  transform: translate3d(-2%, 2%, 0);
}

.project-meta {
  padding: 0.85rem 0 0.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1;
  text-transform: lowercase;
}

.project-meta span:last-child {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.project-note {
  max-width: 30rem;
  padding-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.project-office .project-art {
  background: #c3b8a8;
}

.project-office .project-art::before {
  inset: 9% 41% 17% 9%;
  border: 3px solid var(--ink);
  background: linear-gradient(90deg, transparent 49%, var(--ink) 49%, var(--ink) 50%, transparent 50%), linear-gradient(transparent 58%, var(--ink) 58%, var(--ink) 59%, transparent 59%), #e9e3d9;
}

.project-office .project-art::after {
  inset: 18% 7% 8% 61%;
  background: repeating-linear-gradient(90deg, #322f2a 0 6px, #7a604c 6px 16px);
}

.project-office .project-art > span::before {
  right: 22%;
  bottom: 8%;
  width: 42%;
  height: 3px;
  background: var(--clay);
  transform: rotate(-32deg);
  transform-origin: right;
}

.project-home .project-art {
  background: #a65f3b;
}

.project-home .project-art::before {
  top: 8%;
  right: 10%;
  bottom: 8%;
  left: 10%;
  border: 3px solid #f3eee5;
  border-radius: 48% 48% 0 0;
  background: linear-gradient(90deg, transparent 49.5%, #f3eee5 49.5%, #f3eee5 50.2%, transparent 50.2%), linear-gradient(transparent 56%, #f3eee5 56%, #f3eee5 56.7%, transparent 56.7%);
}

.project-home .project-art::after {
  right: 21%;
  bottom: 8%;
  width: 27%;
  height: 36%;
  background: #1c1b18;
}

.project-home .project-art > span::before {
  bottom: 14%;
  left: 17%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #d7c8ac;
}

.project-ben .project-art {
  background: linear-gradient(143deg, #e7e0d4 0 48%, #a99b8a 48% 100%);
}

.project-ben .project-art::before {
  right: 9%;
  bottom: 0;
  left: 22%;
  height: 66%;
  border: 3px solid var(--ink);
  background: repeating-linear-gradient(90deg, transparent 0 18%, rgba(28,27,24,.52) 18% 19%);
}

.project-ben .project-art::after {
  top: 14%;
  left: 8%;
  width: 32%;
  aspect-ratio: 1;
  border: 3px solid var(--clay);
  border-radius: 50%;
}

.project-flats .project-art {
  background: #69716a;
}

.project-flats .project-art::before {
  inset: 11%;
  background: repeating-linear-gradient(90deg, #d9d3c8 0 18%, #33352f 18% 21%);
  clip-path: polygon(0 19%, 50% 0, 100% 19%, 100% 100%, 0 100%);
}

.project-flats .project-art::after {
  right: 15%;
  bottom: 11%;
  width: 25%;
  height: 48%;
  background: var(--clay);
}

.project-yoga .project-art {
  background: #d9cfbe;
}

.project-yoga .project-art::before {
  inset: 10% 8%;
  background: linear-gradient(90deg, #8f765f 0 3%, transparent 3% 32%, #8f765f 32% 35%, transparent 35% 64%, #8f765f 64% 67%, transparent 67% 97%, #8f765f 97%), linear-gradient(#eee9df 0 68%, #b29572 68% 71%, #aa8b68 71%);
}

.project-yoga .project-art::after {
  right: 12%;
  bottom: 14%;
  left: 12%;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 -1.4rem 0 rgba(28,27,24,.25), 0 -2.8rem 0 rgba(28,27,24,.12);
}

.project-yoga .project-art > span::before {
  bottom: 14%;
  left: 48%;
  width: 0.75rem;
  height: 34%;
  border-radius: 100% 100% 0 0;
  background: var(--sage);
  transform: rotate(17deg);
}

.project-classic .project-art {
  background: #1c1b18;
}

.project-classic .project-art::before {
  inset: 9% 12% 10%;
  border: 2px solid #c5b89f;
  background: linear-gradient(90deg, transparent 65%, #c5b89f 65% 65.6%, transparent 65.6%), linear-gradient(transparent 62%, #c5b89f 62% 62.6%, transparent 62.6%);
}

.project-classic .project-art::after {
  top: 9%;
  right: 12%;
  width: 25%;
  height: 62%;
  background: #a65f3b;
}

.project-classic .project-art > span::before {
  right: 17%;
  bottom: 10%;
  width: 44%;
  height: 28%;
  border: 2px solid #c5b89f;
  border-radius: 80% 0 0;
}

.project-brick .project-art {
  background: #a65f3b;
}

.project-brick .project-art::before {
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 29px, rgba(76,36,24,.75) 29px 33px), repeating-linear-gradient(90deg, transparent 0 57px, rgba(76,36,24,.55) 57px 61px);
}

.project-brick .project-art::after {
  top: 18%;
  right: 22%;
  bottom: 0;
  left: 22%;
  border: 5px solid #292823;
  border-bottom: 0;
  border-radius: 45% 45% 0 0;
  background: #66706a;
}

.project-barn .project-art {
  background: #c6b99f;
}

.project-barn .project-art::before {
  inset: 12% 10% 0;
  background: linear-gradient(90deg, transparent 49%, #2e2d29 49% 51%, transparent 51%), linear-gradient(35deg, transparent 48%, #2e2d29 48% 51%, transparent 51%), linear-gradient(-35deg, transparent 48%, #2e2d29 48% 51%, transparent 51%);
  clip-path: polygon(50% 0, 100% 28%, 100% 100%, 0 100%, 0 28%);
}

.project-barn .project-art::after {
  right: 10%;
  bottom: 0;
  left: 10%;
  height: 16%;
  background: #6f533d;
}

.project-factory .project-art {
  background: #777f78;
}

.project-factory .project-art::before {
  inset: 9% 6% 8%;
  background: repeating-linear-gradient(90deg, #252823 0 2.5%, transparent 2.5% 10%), repeating-linear-gradient(0deg, transparent 0 30%, #252823 30% 31.2%), #b9b8ad;
  clip-path: polygon(0 22%, 12% 6%, 12% 22%, 28% 0, 28% 22%, 44% 8%, 44% 22%, 100% 22%, 100% 100%, 0 100%);
}

.project-factory .project-art::after {
  top: 45%;
  right: 12%;
  bottom: 8%;
  width: 13%;
  background: var(--clay);
}

.project-factory .project-art > span::before {
  top: 48%;
  bottom: 13%;
  left: 12%;
  width: 45%;
  border: 4px solid #252823;
  background: linear-gradient(90deg, transparent 32%, #252823 32% 34%, transparent 34% 66%, #252823 66% 68%, transparent 68%);
}

.fit-section {
  padding: clamp(5rem, 9vw, 10rem) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  column-gap: clamp(3rem, 8vw, 9rem);
  row-gap: 4rem;
  color: var(--paper-bright);
  background: var(--ink);
}

.fit-heading-wrap {
  position: sticky;
  top: 10rem;
  align-self: start;
}

.fit-section h2 {
  max-width: 9ch;
}

.fit-list {
  border-top: 1px solid rgba(255,255,255,.3);
}

.fit-list article {
  padding: 2.4rem 0 2.8rem;
  display: grid;
  grid-template-columns: 3rem minmax(10rem, 0.8fr) minmax(14rem, 1fr);
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.3);
}

.fit-list article > p:first-child {
  color: #bdb4a8;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.fit-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
}

.fit-list article > p:last-child {
  margin: 0;
  color: #d7d1c9;
  font-size: 0.85rem;
  line-height: 1.6;
}

.fit-note {
  grid-column: 2;
  max-width: 41rem;
  margin: 0;
  padding-left: 4rem;
  color: #bdb4a8;
  font-size: 0.73rem;
  line-height: 1.55;
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.approach-art {
  position: relative;
  min-width: 0;
  min-height: 47rem;
  overflow: hidden;
}

.approach-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-art p {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.5rem 0.75rem;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.approach-copy {
  padding: clamp(4rem, 8vw, 9rem) var(--page-pad);
  align-self: center;
}

.approach-copy h2 {
  max-width: 9ch;
  margin-bottom: 3.4rem;
}

.approach-copy > p:not(.section-number) {
  max-width: 34rem;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  line-height: 1.52;
}

.arrow-link {
  margin-top: 1.8rem;
  display: inline-flex;
  gap: 4rem;
}

.about-section {
  position: relative;
  padding: clamp(5rem, 10vw, 11rem) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 1.22fr);
  gap: clamp(3rem, 8vw, 9rem);
  overflow: hidden;
  background: var(--stone);
}

.about-title {
  position: relative;
  z-index: 1;
}

.about-title h2 {
  max-width: 8.5ch;
}

.about-body {
  position: relative;
  z-index: 1;
  align-self: end;
}

.about-lead {
  max-width: 31rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.about-columns {
  margin-bottom: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem;
}

.about-columns p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.67;
}

.about-mark {
  position: absolute;
  right: -0.04em;
  bottom: -0.32em;
  display: flex;
  color: rgba(243,239,231,.32);
  font-family: var(--display);
  font-size: clamp(12rem, 31vw, 37rem);
  letter-spacing: -0.1em;
  line-height: 0.65;
  pointer-events: none;
  text-transform: lowercase;
}

.questions-section {
  padding: clamp(5rem, 9vw, 10rem) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
  gap: clamp(3rem, 8vw, 10rem);
  background: var(--paper-bright);
}

.questions-title h2 {
  max-width: 8ch;
}

.question-list {
  border-top: 1px solid var(--ink);
}

.question-list details {
  border-bottom: 1px solid var(--ink);
}

.question-list summary {
  min-height: 5.8rem;
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.2;
  list-style: none;
}

.question-list summary::-webkit-details-marker {
  display: none;
}

.question-list summary span:last-child {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.question-list details[open] summary span:last-child {
  transform: rotate(45deg);
}

.question-list details p {
  max-width: 39rem;
  margin: -0.2rem 3.5rem 2rem 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.contact-section {
  padding: 1.3rem var(--page-pad) clamp(3rem, 6vw, 6rem);
  color: var(--paper-bright);
  background: var(--clay);
}

.contact-topline {
  padding-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-topline p {
  margin: 0;
}

.contact-main {
  padding: clamp(4rem, 8vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.contact-main h2 {
  font-size: clamp(3.7rem, 8vw, 9rem);
}

.contact-copy > p {
  max-width: 32rem;
  margin-bottom: 3.4rem;
  color: #f0ddd2;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  line-height: 1.48;
}

.contact-email,
.contact-phone {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: var(--paper-bright);
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
}

.contact-email {
  margin-bottom: 1.1rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.45vw, 2.5rem);
  line-height: 1.1;
}

.contact-phone {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.contact-bottom {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr minmax(14rem, 0.7fr);
  align-items: end;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.55);
}

.contact-bottom address,
.contact-bottom p {
  margin: 0;
  color: #f0ddd2;
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.6;
}

.button-light {
  justify-self: end;
  color: var(--paper-bright);
}

.button-light:hover {
  color: var(--clay-dark);
  background: var(--paper-bright);
}

.site-footer {
  padding: clamp(3rem, 6vw, 6rem) var(--page-pad) 4rem;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  align-items: end;
  gap: 3rem;
  color: var(--paper-bright);
  background: var(--ink);
}

.footer-name p:first-child {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 2.3rem);
  line-height: 1;
}

.footer-name p:last-child {
  margin: 0;
  color: #bdb4a8;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 2rem;
  font-size: 0.7rem;
}

.site-footer nav a {
  width: fit-content;
}

.footer-concept {
  justify-self: end;
  text-align: right;
}

.footer-concept p {
  margin: 0;
  font-size: 0.61rem;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-concept p:last-child {
  color: #bdb4a8;
}

.mobile-contact {
  display: none;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.85fr);
  }

  .craft-line {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .craft-line > p:last-child {
    grid-column: 2;
    margin-top: 2rem;
  }

  .project-grid {
    grid-template-rows: 26rem 17rem 24rem 19rem 25rem;
  }

  .fit-section {
    grid-template-columns: 1fr;
  }

  .fit-heading-wrap {
    position: static;
  }

  .fit-section h2 {
    max-width: 12ch;
  }

  .fit-note {
    grid-column: 1;
    padding-left: 4rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 6.2rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 5rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 12vw, 7rem);
  }

  .hero-art {
    height: min(105vw, 48rem);
  }

  .scroll-cue {
    display: none;
  }

  .section-intro,
  .about-section,
  .questions-section {
    grid-template-columns: 1fr;
  }

  .section-intro > p {
    margin-left: 16%;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .project-office,
  .project-home,
  .project-ben,
  .project-flats,
  .project-yoga,
  .project-classic,
  .project-brick,
  .project-barn,
  .project-factory {
    grid-area: auto;
  }

  .project-card .project-art {
    min-height: 25rem;
  }

  .project-home,
  .project-yoga,
  .project-factory {
    grid-column: span 2;
  }

  .project-home .project-art,
  .project-yoga .project-art,
  .project-factory .project-art {
    min-height: 32rem;
  }

  .fit-list article {
    grid-template-columns: 2.5rem minmax(9rem, 0.7fr) minmax(12rem, 1fr);
  }

  .approach-section {
    grid-template-columns: 1fr;
  }

  .approach-art {
    min-height: min(100vw, 42rem);
  }

  .about-title h2,
  .questions-title h2 {
    max-width: 12ch;
  }

  .about-body {
    max-width: 46rem;
    margin-left: 12%;
  }

  .questions-section {
    gap: 4rem;
  }

  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 40rem;
    margin-left: 12%;
  }

  .contact-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button-light {
    margin-top: 1rem;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-concept {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 3.5rem;
  }

  .concept-bar {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    font-size: 0.54rem;
  }

  .concept-bar p:last-child {
    display: none;
  }

  .site-header {
    min-height: 5.4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .menu-toggle {
    z-index: 2;
    min-width: 4.8rem;
    padding: 0.6rem 0;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
    font-size: 0.66rem;
    text-transform: lowercase;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .menu-lines,
  .menu-lines::before {
    width: 1.4rem;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-lines {
    position: relative;
    transform: translateY(-3px);
  }

  .menu-lines::before {
    position: absolute;
    top: 6px;
    content: "";
  }

  .menu-toggle[aria-expanded="true"] .menu-lines {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::before {
    top: 0;
    transform: rotate(90deg);
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem 1.5rem;
  }

  .js .site-nav {
    position: fixed;
    z-index: 1;
    inset: calc(2rem + 5.4rem) 0 0;
    padding: 2rem var(--page-pad) 6rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-1rem);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .js .site-nav a {
    padding: 0.72rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(2.2rem, 12vw, 4.4rem);
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .js .site-nav .nav-contact {
    margin-top: 1rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--ink);
    border-radius: 0;
  }

  .hero-copy {
    padding-top: 4.3rem;
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5.6rem);
  }

  .hero-lead {
    font-size: 1.15rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-actions .text-link {
    padding: 0.7rem 0;
  }

  .hero-art {
    height: 122vw;
    max-height: 39rem;
  }

  .hero-art figcaption {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .craft-line {
    min-height: 34rem;
    grid-template-columns: 1fr;
    align-content: center;
  }

  .craft-line .section-number,
  .craft-line h2,
  .craft-line > p:last-child {
    grid-column: 1;
  }

  .craft-line h2 {
    margin: 1rem 0 2rem;
    font-size: clamp(4.4rem, 21vw, 7rem);
    line-height: 0.78;
  }

  .craft-line h2 span:nth-child(2) {
    margin-left: 0.32em;
  }

  .craft-line h2 span:nth-child(3) {
    margin-left: 0.7em;
  }

  .craft-line > p:last-child {
    margin-top: 0;
    margin-left: 18%;
  }

  .section-intro {
    gap: 2rem;
  }

  .section-intro h2,
  .fit-section h2,
  .approach-copy h2,
  .about-title h2,
  .questions-title h2 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .section-intro > p {
    margin-left: 14%;
  }

  .project-grid {
    display: block;
  }

  .project-card {
    margin-bottom: 3.5rem;
  }

  .project-card .project-art,
  .project-home .project-art,
  .project-yoga .project-art,
  .project-factory .project-art {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .project-home .project-art,
  .project-classic .project-art {
    aspect-ratio: 4 / 5;
  }

  .fit-section {
    row-gap: 3rem;
  }

  .fit-list article {
    padding: 2rem 0;
    grid-template-columns: 2rem 1fr;
  }

  .fit-list article > p:last-child {
    grid-column: 2;
  }

  .fit-note {
    padding-left: 2.9rem;
  }

  .approach-art {
    min-height: 112vw;
  }

  .approach-copy h2 {
    margin-bottom: 2.6rem;
  }

  .arrow-link {
    gap: 2rem;
  }

  .about-body,
  .contact-copy {
    margin-left: 0;
  }

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

  .about-mark {
    font-size: 68vw;
  }

  .questions-section {
    gap: 3rem;
  }

  .question-list summary {
    min-height: 5rem;
    gap: 1rem;
    font-size: 1.12rem;
  }

  .contact-topline {
    align-items: flex-end;
  }

  .contact-main h2 {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .contact-copy > p {
    margin-bottom: 2.4rem;
  }

  .contact-email span {
    display: block;
  }

  .contact-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }

  .footer-concept {
    grid-column: 1;
  }

  .mobile-contact {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 0.42fr;
    color: var(--paper-bright);
    background: var(--ink);
  }

  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #4a4842;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: lowercase;
  }

  .mobile-contact a + a {
    border-left: 1px solid #4a4842;
  }
}

@media (max-width: 430px) {
  .wordmark {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .contact-topline p:last-child {
    text-align: right;
  }
}

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

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