:root {
  --paper: #f3f2ee;
  --paper-cool: #edf0ef;
  --ink: #151714;
  --muted: #62655f;
  --line: rgba(21, 23, 20, 0.25);
  --line-soft: rgba(21, 23, 20, 0.12);
  --terracotta: #bf5e3d;
  --mist: #b9cad1;
  --sage: #6d7d70;
  --sage-deep: #344b3d;
  --header-h: 72px;
  --page: clamp(28px, 5.4vw, 92px);
  --section-y: clamp(76px, 8vw, 138px);
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 2%, rgba(185, 202, 209, 0.15), transparent 22rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--paper);
  background: var(--sage-deep);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 var(--page);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 242, 238, 0.88);
  backdrop-filter: blur(18px);
  transition: height 260ms ease, background 260ms ease;
}

.site-header.is-compact {
  height: 58px;
  background: rgba(243, 242, 238, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 42px;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 28px;
  height: 28px;
  gap: 2px;
}

.brand-mark i {
  display: block;
  background: var(--ink);
  transition: transform 360ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.brand-mark i:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, 100% 48%, 0 100%);
}

.brand-mark i:nth-child(2) {
  clip-path: polygon(0 0, 100% 52%, 100% 100%, 0 100%);
}

.brand-mark i:nth-child(3) {
  clip-path: polygon(0 0, 100% 52%, 100% 100%, 0 100%);
  transform: rotate(180deg);
}

.brand-mark i:nth-child(4) {
  clip-path: polygon(0 0, 100% 0, 100% 48%, 0 100%);
  transform: rotate(180deg);
}

.brand:hover .brand-mark i:nth-child(1) {
  transform: translate(-2px, -2px);
}

.brand:hover .brand-mark i:nth-child(2) {
  transform: translate(2px, -2px);
}

.brand:hover .brand-mark i:nth-child(3) {
  transform: rotate(180deg) translate(-2px, -2px);
}

.brand:hover .brand-mark i:nth-child(4) {
  transform: rotate(180deg) translate(2px, -2px);
}

.primary-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin-left: 25px;
}

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 clamp(15px, 1.8vw, 30px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

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

.header-status {
  justify-self: end;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

main {
  padding-top: var(--header-h);
}

.numbered-section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(14px, 1.8vw, 30px);
  padding: var(--section-y) var(--page);
  border-top: 1px solid var(--line);
}

.numbered-section:first-child {
  border-top: 0;
}

.section-rail {
  position: absolute;
  top: var(--section-y);
  bottom: var(--section-y);
  left: max(12px, calc(var(--page) * 0.32));
  width: 24px;
  border-right: 1px solid var(--line);
}

.section-rail span {
  position: absolute;
  top: -1px;
  right: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.section-rail span::after {
  position: absolute;
  top: 22px;
  right: 0;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--ink);
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--condensed);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(5.2rem, 8.5vw, 10.2rem);
}

h2 {
  font-size: clamp(4rem, 6.2vw, 7.8rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  min-height: 58px;
  padding: 0 18px 0 22px;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease;
}

.button i {
  color: var(--terracotta);
  font-size: 1.35rem;
  font-style: normal;
  transition: transform 240ms ease;
}

.button:hover i,
.button:focus-visible i {
  transform: translateX(5px);
}

.button--primary {
  color: #f7f7f2;
  border-color: var(--sage-deep);
  background: var(--sage-deep);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #273a2e;
}

.button--placeholder {
  cursor: not-allowed;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

/* Hero */
.hero {
  min-height: calc(100svh - var(--header-h));
  padding-top: clamp(80px, 9vw, 150px);
  padding-bottom: clamp(50px, 6vw, 100px);
  overflow: hidden;
}

.hero .section-rail {
  top: clamp(80px, 9vw, 150px);
  bottom: clamp(50px, 6vw, 100px);
}

.hero-copy {
  z-index: 4;
  grid-column: 1 / span 5;
  grid-row: 1;
  align-self: center;
  padding-left: clamp(20px, 2vw, 34px);
}

.hero-copy .eyebrow {
  display: inline-block;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--ink);
}

.hero-intro {
  max-width: 440px;
  margin: clamp(32px, 4vw, 60px) 0 34px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-gallery {
  position: relative;
  z-index: 2;
  grid-column: 5 / -1;
  grid-row: 1;
  min-height: clamp(590px, 54vw, 830px);
  margin: -30px calc(var(--page) * -1) -10px 0;
}

.hero-gallery::before,
.hero-gallery::after {
  position: absolute;
  z-index: -1;
  content: "";
  background: var(--paper-cool);
}

.hero-gallery::before {
  right: 0;
  bottom: 0;
  width: 74%;
  height: 67%;
}

.hero-gallery::after {
  top: 12%;
  left: 9%;
  width: 39%;
  height: 80%;
  background: #e5e2dc;
}

.hero-piece {
  position: absolute;
  margin: 0;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), z-index 0s;
}

.hero-piece:hover {
  z-index: 7;
  transform: translateY(-8px);
}

.hero-piece .image-frame {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 20, 0.18);
  background: #e8e5de;
}

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

.hero-piece:hover img {
  transform: scale(1.025);
}

.object-index {
  position: absolute;
  top: 9px;
  left: 10px;
  z-index: 2;
  padding: 3px 6px;
  color: var(--ink);
  background: rgba(243, 242, 238, 0.88);
  font-size: 0.67rem;
  font-weight: 600;
}

.hero-piece--a {
  top: 2%;
  left: 8%;
  z-index: 3;
  width: 41%;
  height: 84%;
}

.hero-piece--a img {
  object-position: 52% center;
}

.hero-piece--b {
  top: 5%;
  right: 14%;
  z-index: 4;
  width: 36%;
  height: 37%;
}

.hero-piece--b img {
  object-position: center 61%;
}

.hero-piece--c {
  right: 27%;
  bottom: 1%;
  z-index: 5;
  width: 34%;
  height: 48%;
}

.hero-piece--c img {
  object-position: center 54%;
}

.hero-piece--d {
  right: 0;
  bottom: 6%;
  z-index: 6;
  width: 27%;
  height: 45%;
}

.hero-piece--d img {
  object-position: center 60%;
}

.reference-note {
  position: absolute;
  right: 5%;
  bottom: 0;
  margin: 0;
  padding-left: 34px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reference-note::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 1px;
  content: "";
  background: var(--ink);
}

.hero-measure {
  position: absolute;
  z-index: 8;
  width: 1px;
  background: var(--line);
}

.hero-measure span {
  position: absolute;
  top: -17px;
  left: 8px;
  width: 60px;
  font-size: 0.55rem;
  text-transform: uppercase;
}

.hero-measure--one {
  top: 14%;
  left: 49%;
  height: 70px;
}

.hero-measure--two {
  top: 20%;
  right: 7%;
  height: 50px;
}

/* Selected directions */
.selected {
  background: rgba(255, 255, 255, 0.24);
}

.section-heading {
  grid-column: 1 / span 4;
  grid-row: 1;
  padding-left: clamp(20px, 2vw, 34px);
  padding-right: 8%;
}

.section-heading h2 {
  font-size: clamp(4rem, 6.3vw, 7.3rem);
}

.section-heading > p:last-child {
  max-width: 420px;
  margin: 36px 0 0;
  color: var(--muted);
}

.study-grid {
  display: grid;
  grid-column: 4 / -1;
  grid-row: 1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(12px, 1.4vw, 24px);
}

.study {
  margin: 0;
}

.study--a {
  grid-column: 1 / span 3;
  padding-top: 86px;
}

.study--b {
  grid-column: 4 / span 3;
  padding-top: 168px;
}

.study--c {
  grid-column: 7 / span 3;
}

.study--d {
  grid-column: 10 / span 3;
  padding-top: 112px;
}

.study figure {
  position: relative;
  height: clamp(310px, 27vw, 520px);
  margin: 0;
  overflow: hidden;
  background: #e5e4df;
}

.study figure::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(21, 23, 20, 0.12);
  pointer-events: none;
}

.study img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 400ms ease;
}

.study--a img {
  object-position: center 48%;
}

.study--b img {
  object-position: center 56%;
}

.study--c img {
  object-position: center 44%;
}

.study--d img {
  object-position: center 54%;
}

.study:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.035);
}

.study-meta {
  position: relative;
  min-height: 104px;
  padding: 13px 8px 0 17px;
  border-left: 1px solid var(--ink);
}

.study-meta > span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--condensed);
  font-size: 1.25rem;
}

.study-meta h3 {
  margin: 0 0 6px;
  font-family: var(--condensed);
  font-size: clamp(1.25rem, 1.45vw, 1.75rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.study-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* What we make */
.make-index {
  align-items: end;
  padding-top: clamp(58px, 6vw, 94px);
  padding-bottom: clamp(58px, 6vw, 94px);
}

.make-index .section-rail {
  top: clamp(58px, 6vw, 94px);
  bottom: clamp(58px, 6vw, 94px);
}

.make-index h2 {
  grid-column: 1 / span 3;
  grid-row: 1;
  padding-left: clamp(20px, 2vw, 34px);
  font-size: clamp(3.6rem, 5.3vw, 6rem);
}

.make-list {
  display: grid;
  grid-column: 4 / -1;
  grid-row: 1;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.make-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  min-height: 144px;
  padding: 18px 17px;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.make-item::before {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.make-item:hover::before,
.make-item:focus-visible::before {
  transform: scaleX(1);
}

.make-item > span {
  align-self: start;
  font-family: var(--condensed);
  font-size: clamp(3.5rem, 4vw, 5rem);
  line-height: 0.85;
}

.make-item strong {
  align-self: end;
  padding-left: 15px;
  font-size: clamp(0.65rem, 0.85vw, 0.8rem);
  line-height: 1.3;
  text-transform: uppercase;
}

.make-item i {
  font-size: 1rem;
  font-style: normal;
  transition: transform 250ms ease;
}

.make-item:hover i {
  transform: translate(3px, 3px);
}

/* Process */
.process {
  background: var(--paper-cool);
}

.process-heading {
  grid-column: 1 / span 4;
  grid-row: 1;
  padding-left: clamp(20px, 2vw, 34px);
  padding-right: 10%;
}

.process-heading h2 {
  font-size: clamp(4rem, 5.7vw, 6.8rem);
}

.process-heading > p:last-child {
  max-width: 380px;
  margin-top: 36px;
  color: var(--muted);
}

.process-track {
  position: relative;
  display: grid;
  grid-column: 4 / -1;
  grid-row: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-track::before {
  position: absolute;
  top: 33px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.process-step {
  position: relative;
  min-width: 0;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 25px;
  right: -8px;
  z-index: 2;
  color: var(--terracotta);
  content: "→";
}

.step-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 66px;
  padding-right: 12px;
  background: var(--paper-cool);
}

.step-top span {
  margin-right: 12px;
  font-family: var(--condensed);
  font-size: 2.35rem;
}

.step-top h3 {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.process-step figure {
  height: clamp(270px, 24vw, 430px);
  margin: 0 0 16px;
  overflow: hidden;
  background: #dddcd6;
}

.process-step img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 650ms ease, filter 300ms ease;
}

.process-step:nth-child(1) img {
  object-position: 54% 48%;
}

.process-step:nth-child(2) img {
  object-position: center 46%;
}

.process-step:nth-child(3) img {
  object-position: center 43%;
}

.process-step:nth-child(4) img {
  object-position: center 63%;
}

.process-step:hover img {
  filter: saturate(1);
  transform: scale(1.03);
}

.process-step > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.process-disclaimer {
  grid-column: 4 / -1;
  margin: 30px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Materials */
.materials {
  align-items: start;
}

.materials-copy {
  grid-column: 1 / span 4;
  grid-row: 1;
  padding-left: clamp(20px, 2vw, 34px);
  padding-right: 12%;
}

.materials-copy h2 {
  font-size: clamp(4rem, 5.5vw, 6.7rem);
}

.materials-copy > p:last-child {
  margin-top: 32px;
  color: var(--muted);
}

.material-samples {
  display: grid;
  grid-column: 4 / -1;
  grid-row: 1;
  grid-template-columns: 1.1fr 1fr 1.3fr;
  gap: 12px;
}

.sample {
  margin: 0;
  overflow: hidden;
}

.sample img {
  height: clamp(250px, 22vw, 390px);
  object-fit: cover;
  filter: saturate(0.7) contrast(1.04);
  transition: filter 350ms ease;
}

.sample--a img {
  object-position: 52% 38%;
  transform: scale(1.8);
}

.sample--b img {
  object-position: 50% 40%;
  transform: scale(1.6);
}

.sample--c img {
  object-position: center 64%;
}

.sample:hover img {
  filter: saturate(1) contrast(1);
}

.sample figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 2px solid var(--ink);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--paper);
}

.sample--a figcaption {
  border-color: var(--terracotta);
}

.sample--b figcaption {
  border-color: var(--mist);
}

.sample--c figcaption {
  border-color: var(--sage);
}

/* Commission flow */
.commission-flow {
  padding-top: clamp(64px, 6vw, 100px);
  padding-bottom: clamp(64px, 6vw, 100px);
  background: rgba(255, 255, 255, 0.24);
}

.commission-flow .section-rail {
  top: clamp(64px, 6vw, 100px);
  bottom: clamp(64px, 6vw, 100px);
}

.commission-flow h2 {
  grid-column: 1 / -1;
  padding-left: clamp(20px, 2vw, 34px);
  font-size: clamp(4.1rem, 6vw, 7rem);
}

.flow-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, 1fr);
  margin: 60px 0 0;
  padding: 0 0 0 clamp(20px, 2vw, 34px);
  list-style: none;
}

.flow-list li {
  position: relative;
  min-height: 160px;
  padding: 0 22px 28px;
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.flow-list li::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 1px;
  height: 18px;
  content: "";
  background: var(--ink);
}

.flow-list span {
  display: block;
  margin-bottom: 28px;
  font-family: var(--condensed);
  font-size: clamp(4rem, 5vw, 6rem);
  line-height: 0.9;
}

.flow-list strong {
  display: block;
  max-width: 160px;
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Quote principle */
.quote-principle {
  align-items: center;
}

.quote-principle h2 {
  grid-column: 1 / span 7;
  grid-row: 1;
  padding-left: clamp(20px, 2vw, 34px);
  font-size: clamp(4.8rem, 7vw, 8.4rem);
}

.quote-copy {
  grid-column: 8 / -1;
  grid-row: 1;
  padding: 12px 0 12px clamp(26px, 4vw, 70px);
  border-left: 1px solid var(--line);
}

.quote-copy p {
  max-width: 430px;
  margin-bottom: 46px;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--terracotta);
  font-size: 1.1rem;
  transition: transform 240ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

/* Commission services */
.commission-services {
  grid-auto-flow: row;
  background: var(--paper-cool);
}

.services-intro {
  grid-column: 1 / span 4;
  grid-row: 1;
  padding-left: clamp(20px, 2vw, 34px);
  padding-right: 10%;
}

.services-intro h2 {
  font-size: clamp(4rem, 5.9vw, 7rem);
}

.services-intro > p:last-child {
  margin: 34px 0 0;
  color: var(--muted);
}

.services-visual {
  position: relative;
  grid-column: 1 / span 4;
  grid-row: 2;
  height: clamp(370px, 37vw, 620px);
  margin: 60px 0 0;
  overflow: hidden;
}

.services-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid var(--line-soft);
  box-shadow: inset 0 0 0 12px rgba(243, 242, 238, 0.08);
  pointer-events: none;
}

.services-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center 51%;
  filter: saturate(0.82) contrast(0.98);
  transition: transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 350ms ease;
}

.services-visual:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.025);
}

.services-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 6px 8px;
  background: rgba(243, 242, 238, 0.92);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-coordinate {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 7px;
  background: rgba(243, 242, 238, 0.9);
  font-size: 0.55rem;
  font-weight: 600;
}

.service-directory {
  grid-column: 5 / -1;
  grid-row: 1 / span 2;
  border-top: 1px solid var(--ink);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(200px, 1fr) minmax(200px, 0.7fr);
  gap: clamp(16px, 2vw, 34px);
  align-items: start;
  min-height: 190px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 22px);
}

.service-row::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 54px;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 360ms ease;
}

.service-row:hover::before,
.service-row:target::before {
  transform: scaleX(1);
}

.service-number {
  font-family: var(--condensed);
  font-size: clamp(3.6rem, 4.6vw, 5.7rem);
  line-height: 0.82;
}

.service-row h3 {
  margin: 0 0 16px;
  font-family: var(--condensed);
  font-size: clamp(2rem, 2.6vw, 3.25rem);
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.service-reference {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.service-reference strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-cta {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.3fr 1fr auto;
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  margin-top: 80px;
  padding: 44px 0 0 clamp(20px, 2vw, 34px);
  border-top: 1px solid var(--ink);
}

.service-cta-copy .eyebrow {
  margin-bottom: 16px;
}

.service-cta-copy h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(2.8rem, 4.1vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-cta > p {
  margin: 0;
  color: var(--muted);
}

.service-cta .button {
  min-width: 230px;
}

.service-cta small {
  grid-column: 3;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.02em;
}

/* FAQ */
.faq {
  align-items: start;
}

.faq h2 {
  grid-column: 1 / span 4;
  grid-row: 1;
  padding-left: clamp(20px, 2vw, 34px);
  font-size: clamp(4rem, 5.8vw, 6.8rem);
}

.faq-list {
  grid-column: 5 / -1;
  grid-row: 1;
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 8px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  list-style: none;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition: transform 250ms ease;
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0deg);
}

.faq-item p {
  max-width: 730px;
  margin: 0;
  padding: 0 48px 30px 8px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 150px;
  padding: 28px var(--page);
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.footer-brand {
  width: 78px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 56px);
  padding-left: 40px;
}

.site-footer nav a {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer > p {
  margin: 0;
  padding-left: 50px;
  border-left: 1px solid var(--line);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: white;
  border-radius: 50%;
  background: var(--sage-deep);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.65);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cursor-label span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cursor-label.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

@media (max-width: 1180px) {
  :root {
    --page: clamp(24px, 4vw, 56px);
  }

  .header-status {
    display: none;
  }

  .hero-copy {
    grid-column: 1 / span 5;
  }

  .hero-gallery {
    grid-column: 5 / -1;
  }

  .hero-piece--a {
    left: 5%;
    width: 44%;
  }

  .section-heading,
  .process-heading,
  .materials-copy,
  .services-intro {
    grid-column: 1 / span 4;
  }

  .study-grid,
  .process-track,
  .material-samples {
    grid-column: 5 / -1;
  }

  .service-row {
    grid-template-columns: 64px 1fr;
  }

  .service-reference {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

  .service-cta {
    grid-template-columns: 1fr 1fr;
  }

  .service-cta .button {
    grid-column: 2;
    justify-self: start;
  }

  .service-cta small {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 64px;
    --section-y: 76px;
    --page: 24px;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    grid-column: 3;
    align-items: center;
    gap: 12px;
    padding: 10px 0 10px 16px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 22px;
    height: 1px;
    content: "";
    background: var(--ink);
    transition: transform 250ms ease;
  }

  .menu-toggle i::before {
    transform: translateY(-6px);
  }

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

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

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: grid;
    align-content: center;
    height: 100svh;
    margin: 0;
    padding: 72px var(--page);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 250ms ease, transform 250ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    justify-content: space-between;
    height: auto;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--condensed);
    font-size: clamp(2.8rem, 10vw, 5rem);
    font-weight: 500;
    line-height: 1;
  }

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

  .numbered-section {
    display: block;
    padding: var(--section-y) var(--page) var(--section-y) 56px;
  }

  .section-rail {
    top: var(--section-y);
    bottom: var(--section-y);
    left: 18px;
  }

  .hero {
    padding-top: 76px;
  }

  .hero .section-rail {
    top: 76px;
  }

  .hero-copy {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(4.8rem, 17vw, 8rem);
  }

  h2 {
    font-size: clamp(4rem, 14vw, 7rem);
  }

  .hero-intro {
    max-width: 500px;
  }

  .hero-gallery {
    min-height: 680px;
    margin: 64px calc(var(--page) * -1) -20px -16px;
  }

  .hero-piece--a {
    top: 2%;
    left: 0;
    width: 55%;
    height: 71%;
  }

  .hero-piece--b {
    top: 0;
    right: 0;
    width: 46%;
    height: 32%;
  }

  .hero-piece--c {
    right: 27%;
    bottom: 0;
    width: 45%;
    height: 42%;
  }

  .hero-piece--d {
    right: -6%;
    bottom: 3%;
    width: 34%;
    height: 40%;
  }

  .hero-measure {
    display: none;
  }

  .section-heading,
  .process-heading,
  .materials-copy,
  .services-intro,
  .make-index h2,
  .commission-flow h2,
  .quote-principle h2,
  .faq h2 {
    padding-left: 0;
  }

  .section-heading > p:last-child,
  .process-heading > p:last-child,
  .materials-copy > p:last-child,
  .services-intro > p:last-child {
    max-width: 560px;
  }

  .study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 54px;
  }

  .study--a,
  .study--b,
  .study--c,
  .study--d {
    grid-column: auto;
    padding-top: 0;
  }

  .study--b,
  .study--d {
    padding-top: 72px;
  }

  .study figure {
    height: 55vw;
  }

  .make-index h2 {
    margin-bottom: 44px;
  }

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

  .make-item:nth-child(3),
  .make-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 12px;
    margin-top: 54px;
  }

  .process-track::before,
  .process-step::after {
    display: none;
  }

  .process-step figure {
    height: 44vw;
  }

  .process-disclaimer {
    margin-top: 30px;
  }

  .material-samples {
    grid-template-columns: 1fr 1fr;
    margin-top: 54px;
  }

  .sample--c {
    grid-column: 1 / -1;
  }

  .sample img {
    height: 46vw;
  }

  .sample--c img {
    height: 56vw;
  }

  .flow-list {
    grid-template-columns: 1fr;
    margin-top: 48px;
    padding-left: 0;
  }

  .flow-list li {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    min-height: 104px;
    padding: 18px 0;
    border-left: 0;
  }

  .flow-list li::after {
    display: none;
  }

  .flow-list span {
    margin: 0;
  }

  .quote-principle h2 {
    font-size: clamp(4.3rem, 15vw, 7.5rem);
  }

  .quote-copy {
    margin-top: 54px;
    padding: 0;
    border-left: 0;
  }

  .services-visual {
    height: 74vw;
    margin-top: 52px;
  }

  .service-directory {
    margin-top: 48px;
  }

  .service-row {
    grid-template-columns: 72px 1fr;
    min-height: 0;
  }

  .service-cta {
    grid-template-columns: 1fr;
    margin-top: 64px;
    padding-left: 0;
  }

  .service-cta .button,
  .service-cta small {
    grid-column: 1;
  }

  .service-cta .button {
    justify-self: start;
  }

  .faq h2 {
    margin-bottom: 50px;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
    gap: 34px;
  }

  .site-footer nav {
    gap: 20px 32px;
    padding-left: 0;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  :root {
    --section-y: 64px;
  }

  .numbered-section {
    padding-right: 18px;
    padding-left: 48px;
  }

  .section-rail {
    left: 12px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-gallery {
    min-height: 560px;
  }

  .hero-piece--a {
    width: 59%;
  }

  .hero-piece--b {
    width: 44%;
  }

  .hero-piece--c {
    right: 25%;
    width: 49%;
  }

  .hero-piece--d {
    right: 0;
    width: 35%;
  }

  .reference-note {
    display: none;
  }

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

  .study--b,
  .study--d {
    padding-top: 0;
  }

  .study figure {
    height: 110vw;
  }

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

  .make-item {
    border-top: 1px solid var(--line);
  }

  .process-track,
  .material-samples {
    grid-template-columns: 1fr;
  }

  .process-step figure,
  .sample img,
  .sample--c img {
    height: 102vw;
  }

  .sample--c {
    grid-column: auto;
  }

  .service-row {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .service-number {
    font-size: 3.5rem;
  }

  .service-row h3 {
    font-size: 2rem;
  }

  .faq-item summary {
    min-height: 70px;
    padding-right: 0;
  }

  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@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;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
