:root {
  --ink: #17181a;
  --paper: #f5f5f5;
  --mineral: #e0e2e5;
  --stone: #b8bcc2;
  --metal-ink: #444b54;
  --focus: #686f78;
  --white: #ffffff;
  --line: rgba(23, 24, 26, .18);
  --sans: "IBM Plex Sans", Arial, sans-serif;
  --display: "IBM Plex Sans", Arial, sans-serif;
  --gutter: clamp(20px, 2vw, 32px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
main, .site-footer { width: 100%; max-width: none; margin-inline: 0; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 4px; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  width: 100%;
  min-height: 104px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 0;
}
.site-header--light {
  color: var(--white);
  background: transparent;
  border-bottom-color: transparent;
}
.brand { display: inline-flex; align-items: center; gap: 13px; width: fit-content; color: inherit; }
.brand img { width: clamp(210px, 17vw, 252px); height: auto; }
.site-header--light .brand img { filter: none; }
.brand__mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; font-family: var(--display); font-size: 19px; line-height: 1; letter-spacing: -.08em; transform: rotate(-6deg); }
.brand__name { display: grid; font-family: var(--display); font-size: clamp(22px, 2vw, 29px); line-height: .84; letter-spacing: -.04em; }
.brand__name small { margin-top: 8px; font-family: var(--sans); font-size: 8px; font-weight: 600; line-height: 1; letter-spacing: .22em; text-transform: uppercase; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
  background: transparent;
  color: inherit;
  border: 0;
  box-shadow: none;
  font-size: 14px;
}
.site-nav a {
  position: relative;
  padding: 12px 0;
  opacity: .88;
  transition: opacity .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { opacity: 1; }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
}
.site-nav a:last-child {
  margin-left: 0;
  padding: 12px 0;
  background: transparent;
  color: inherit;
  border: 0;
  opacity: 1;
 box-shadow: none;  text-shadow: none; }
.site-nav a:last-child:hover { background: transparent;  filter: none; }
.site-header--light .site-nav a:last-child:hover { background: transparent; }
.site-nav a:last-child[aria-current="page"]::after { display: none; }
.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
  cursor: pointer;
 font-size: 14px; }
.menu-button i { width: 28px; height: 1px; background: currentColor; position: relative; }
.menu-button i::after { content: ""; position: absolute; right: 0; top: 7px; width: 18px; height: 1px; background: currentColor; }

.mobile-nav {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px var(--gutter) 38px;
  background: #e9e9e7;
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
 overflow-y: auto;  box-shadow: none; }
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav__top { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 0;  align-items: center; }
.mobile-nav-close { border: 0; background: none; color: inherit; cursor: pointer;  min-height: 44px;  padding: 0 8px; }
.mobile-nav nav { align-self: center; }
.mobile-nav nav a { display: flex; align-items: baseline; gap: 22px; padding: 10px 0; font-family: var(--display); font-size: clamp(34px, 7vw, 64px); font-weight: 500; line-height: 1; letter-spacing: -.035em; }
.mobile-nav nav a small { width: 24px; font-family: var(--sans); font-size: 10px; opacity: .55; }
.mobile-nav > p { margin: 0; font-size: 13px; opacity: .85; }

.kicker { margin: 0; font-size: 12px; font-weight: 500; letter-spacing: .035em; }
.kicker--light { color: var(--white); }
.section-pad { padding: clamp(80px, 9vw, 150px) var(--gutter); }
.text-link { display: inline-flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 500;  min-height: 44px; }
.text-link::after { content: ""; width: 54px; height: 1px; background: currentColor; transition: width .25s ease;  flex-shrink: 0; }
.text-link:hover::after { width: 76px; }
.text-link--light { color: var(--white); }

.home-hero {
  position: relative;
  min-height: 700px;
  height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: #222321;
  color: var(--white);
}
.home-hero .site-header { position: relative; inset: auto; flex: 0 0 104px; }
.hero-image { position: absolute; z-index: -2; inset: 0; height: 100%; width: 100%; object-fit: cover; object-position: 50% 48%; }
.home-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(8,9,10,.42); }
.hero-stage { display: flex; flex: 1; min-height: 0; align-items: center; padding: 30px var(--gutter) 50px; }
.hero-title { margin: 0; width: 100%; font-family: var(--display); font-size: clamp(88px, 11.4vw, 198px); font-weight: 400; line-height: .96; letter-spacing: -.06em; }
.hero-title span { display: block; }
.hero-title span:last-child { margin-left: .48em; }
.hero-bottom { padding: 0 var(--gutter) clamp(34px, 5vh, 72px); display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.hero-bottom p { max-width: 360px; margin: 0; font-size: 17px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 40px; flex-shrink: 0; }
.hero-actions a { display: inline-flex; align-items: center; gap: 20px; min-height: 48px; font-size: 15px; }
.hero-actions a:first-child { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 8px; }
.hero-actions svg { width: 22px; height: 22px; flex-shrink: 0; transition: transform .2s ease; }
.hero-actions a:hover svg { transform: translate(3px, -3px); }
.hero-actions a:last-child { opacity: .82; }
.contact-strip a::after { content: "↗"; font-size: 28px; line-height: 1; }

.manifesto { display: grid; grid-template-columns: .65fr 2.2fr 1fr; gap: 5vw; align-items: start; background: var(--paper); }
.manifesto__label { display: flex; flex-direction: column; gap: 3px; font-size: 13px; }
.manifesto h2 { margin: 0; font-family: var(--display); font-size: clamp(36px, 4vw, 64px); font-weight: 400; letter-spacing: -.035em; line-height: 1.12;  text-wrap: pretty; }
.manifesto > p { margin: 7px 0 0; max-width: 340px; color: #50545a; font-size: 16px; line-height: 1.7; }

.service-ledger { border-top: 0; background: var(--paper); }
.ledger-item { min-height: 620px; display: grid; grid-template-columns: 58% 42%; border-bottom: 0; }
.ledger-item--reverse { grid-template-columns: 42% 58%; }
.ledger-item--reverse .ledger-item__media { order: 2; }
.ledger-item__media { min-height: 620px; overflow: hidden; }
.ledger-item__media img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.ledger-item:hover .ledger-item__media img { transform: scale(1.025); }
.ledger-item__copy { padding: clamp(40px, 5vw, 88px); display: flex; flex-direction: column; justify-content: flex-end;  min-width: 0; }
.ledger-item__copy > span { font-size: 12px; color: #636970; }
.ledger-item__copy h3 { margin: 18px 0 22px; max-width: 520px; font-family: var(--display); font-size: clamp(40px, 4.3vw, 72px); font-weight: 500; letter-spacing: -.04em; line-height: 1.04;  text-wrap: balance; }
.ledger-item__copy p { max-width: 460px; margin: 0; color: #54585e; line-height: 1.7; }

.essence {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
  padding: clamp(90px, 9vw, 150px) 0;
  background: #e9e9e7;
  color: var(--ink);
  box-shadow: none;
}
.essence__portrait { grid-column: 1 / 5; grid-row: 1 / 3; align-self: end; }
.essence__portrait img { height: min(760px, 70vw); object-fit: cover; }
.essence__copy { grid-column: 6 / 13; padding: 0 var(--gutter) 100px 0; align-self: center; min-width: 0; }
.essence__copy h2 { margin: 20px 0 34px; max-width: 900px; font-family: var(--display); font-size: clamp(40px, 5vw, 84px); font-weight: 500; letter-spacing: -.04em; line-height: 1.04; }
.essence__copy > p:not(.kicker) { max-width: 520px; margin: 0 0 42px; color: #41474f; line-height: 1.7; }
.essence__landscape { grid-column: 5 / 13; grid-row: 2; position: relative; margin-top: -35px; }
.essence__landscape img { height: clamp(280px, 34vw, 520px); object-fit: cover; }
.essence__landscape span { position: absolute; left: 18px; bottom: 16px; font-size: 12px;  color: var(--white);  text-shadow: 0 1px 8px rgba(0,0,0,.7); }

.section-head { display: grid; grid-template-columns: .8fr 2.2fr .8fr; gap: 4vw; align-items: end; margin-bottom: clamp(48px, 6vw, 88px); }
.section-head > p { margin: 0; font-size: 13px; }
.section-head h2 { margin: 0; font-family: var(--display); font-size: clamp(44px, 5.3vw, 84px); font-weight: 500; letter-spacing: -.04em; line-height: 1.04; }
.section-head .text-link { justify-self: end; }
.project-gallery, .work-archive { padding-inline: 0; }
.project-gallery > .section-head, .work-archive > .section-head { padding-inline: var(--gutter); }
.project-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: clamp(360px, 42vw, 760px) clamp(300px, 34vw, 620px); column-gap: 0; row-gap: clamp(52px, 7vw, 112px); align-items: start; }
.project-grid figure, .archive-grid figure { margin: 0; }
.project-grid figure { min-width: 0; }
.project-grid figure:nth-child(1) { grid-column: 1 / 8; grid-row: 1; }
.project-grid figure:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.project-grid figure:nth-child(3) { grid-column: 1 / 6; grid-row: 2; }
.project-grid figure:nth-child(4) { grid-column: 6 / 13; grid-row: 2; }
.project-grid img { height: 100%; object-fit: cover; }
.project-grid figure:nth-child(-n + 2) img { height: clamp(360px, 42vw, 760px); }
.project-grid figure:nth-child(n + 3) img { height: clamp(300px, 34vw, 620px); }
.project-grid figcaption, .archive-grid figcaption { display: grid; grid-template-columns: 32px minmax(0, 1fr) auto; align-items: baseline; gap: 8px 12px; padding: 14px var(--gutter) 0; border-top: 0; font-size: 13px; }
.project-grid figcaption > span, .archive-grid figcaption > span { color: #666c73; font-variant-numeric: tabular-nums; }
.project-grid figcaption strong, .archive-grid figcaption strong { min-width: 0; font-size: inherit; font-weight: 500; }
.project-grid figcaption small { color: #666c73; font-size: 12px; text-align: right; }

.testimonial { padding: clamp(88px, 10vw, 160px) var(--gutter); background: #101113; color: var(--white); }
.testimonial blockquote { max-width: 1150px; margin: 36px 0 48px; font-family: var(--display); font-size: clamp(40px, 5vw, 80px); font-weight: 400; letter-spacing: -.035em; line-height: 1.12;  text-wrap: pretty; }
.testimonial > div { display: flex; gap: 18px; font-size: 14px;  flex-wrap: wrap; }
.testimonial > div span { color: #a2a7af; }

.contact-strip { min-height: 250px; padding: 60px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 40px; background: #e9e9e7; border-top: 0; }
.contact-strip p { max-width: 760px; margin: 0; font-family: var(--display); font-size: clamp(34px, 3.8vw, 60px); font-weight: 500; line-height: 1.1; letter-spacing: -.04em; }
.contact-strip a { flex: 0 0 auto; display: inline-flex; place-items: center; width: auto; height: auto; border-radius: 0; background: none; color: var(--ink); font-size: 16px; transition: opacity .2s ease;  padding: 10px 0;  text-align: center;  line-height: 1.4;  border: 0;  font-weight: 500;  box-shadow: none;  text-shadow: none;  min-height: 48px;  gap: 22px; }
.contact-strip a:hover { transform: none; background: none;  box-shadow: none;  opacity: .65; }

.inner-page { background: var(--paper); }
.inner-hero { padding: 190px var(--gutter) 120px; display: grid; grid-template-columns: 1.6fr .8fr; gap: 7vw; }
.inner-hero__title h1 { margin: 24px 0 0; max-width: 1100px; font-family: var(--display); font-size: clamp(64px, 7vw, 120px); font-weight: 500; letter-spacing: -.045em; line-height: 1.02;  text-wrap: balance; }
.inner-hero__intro { align-self: end; max-width: 420px; margin: 0 0 16px; color: #50555c; line-height: 1.7; }
.inner-hero__media { grid-column: 1 / 3; margin: 56px calc(var(--gutter) * -1) 0; }
.inner-hero__media img { height: min(72vw, 920px); object-fit: cover; }
.inner-hero__media figcaption { display: flex; justify-content: flex-end; padding: 12px var(--gutter) 0; color: #666c73; font-size: 12px; }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; border-bottom: 0; }
.story h2 { margin: 20px 0 0; font-family: var(--display); font-size: clamp(44px, 5vw, 82px); font-weight: 500; letter-spacing: -.04em; line-height: 1.05; }
.story__text { align-self: end; max-width: 600px; }
.story__text p { margin: 0 0 28px; color: #50545a; font-size: 18px; line-height: 1.75; }
.stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 0; }
.stats-strip > div { min-height: 270px; padding: 54px var(--gutter); display: flex; flex-direction: column; justify-content: space-between; border-right: 0; }
.stats-strip > div:last-child { border-right: 0; }
.stats-strip strong { font-family: var(--display); font-size: clamp(64px, 8vw, 130px); font-weight: 400; letter-spacing: -.06em; line-height: 1; }
.stats-strip span { font-size: 13px; }

.archive-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: repeat(3, auto); gap: clamp(54px, 7vw, 112px) 0; align-items: start; }
.archive-grid figure { min-width: 0; }
.archive-grid figure:nth-child(1) { grid-column: 1 / 8; grid-row: 1; }
.archive-grid figure:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.archive-grid figure:nth-child(3) { grid-column: 1 / 5; grid-row: 2; }
.archive-grid figure:nth-child(4) { grid-column: 5 / 13; grid-row: 2; }
.archive-grid figure:nth-child(5) { grid-column: 1 / 7; grid-row: 3; }
.archive-grid figure:nth-child(6) { grid-column: 7 / 13; grid-row: 3; }
.archive-grid img { height: 100%; object-fit: cover; }
.archive-grid figure:nth-child(-n + 2) img { height: clamp(320px, 37vw, 640px); }
.archive-grid figure:nth-child(3) img, .archive-grid figure:nth-child(4) img { height: clamp(300px, 33vw, 560px); }
.archive-grid figure:nth-child(n + 5) img { height: clamp(300px, 35vw, 600px); }

.service-hero { min-height: 100svh; padding: 180px 0 90px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.service-hero__copy { align-self: end; padding: 0 var(--gutter) 30px; }
.service-hero__copy h1 { margin: 20px 0 42px; font-family: var(--display); font-size: clamp(72px, 8vw, 136px); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.service-hero__copy > p:not(.kicker) { max-width: 470px; margin: 0 0 38px; color: #50555c; line-height: 1.7; }
.service-hero__images { position: relative; min-height: clamp(520px, 58vw, 700px); }
.service-hero__images img:first-child { position: absolute; right: 0; top: 0; width: 70%; height: 78%; object-fit: cover; }
.service-hero__images img:last-child { position: absolute; left: 0; bottom: 0; width: 56%; height: 50%; object-fit: cover; border: 0; }

.service-catalogue { padding-top: 80px; padding-inline: 0; }
.service-catalogue article { display: grid; grid-template-columns: 48px minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr); gap: 3vw; align-items: center; min-height: 420px; padding: 46px 0 46px var(--gutter); border-top: 0; }
.service-catalogue article > span { align-self: start; font-size: 11px; }
.service-catalogue h2 { margin: 0; font-family: var(--display); font-size: clamp(32px, 3.5vw, 58px); font-weight: 500; letter-spacing: -.035em; line-height: 1.08;  overflow-wrap: anywhere; }
.service-catalogue p { max-width: 420px; margin: 0; color: #50555c; line-height: 1.7; }
.service-catalogue img { height: 320px; object-fit: cover; }
.quality-band { min-height: clamp(720px, 78svh, 1040px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); background: #e9e9e7; color: var(--ink); box-shadow: none; }
.quality-band__image { min-height: 100%; margin: 0; overflow: hidden; }
.quality-band__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.quality-band__content { align-self: center; padding: clamp(54px, 7vw, 116px); }
.quality-band__content > .kicker { margin-bottom: 24px; }
.quality-band__content > h2 { margin: 0 0 clamp(42px, 5vw, 72px); font-family: var(--display); font-size: clamp(48px, 5.8vw, 88px); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; text-wrap: balance; }
.quality-band__points { border-top: 1px solid #b9bab9; }
.quality-band__points article { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 14px; padding: 20px 0; border-bottom: 1px solid #b9bab9; }
.quality-band__points article > span { padding-top: 5px; color: #666c73; font-size: 11px; font-variant-numeric: tabular-nums; }
.quality-band__points h3 { margin: 0 0 7px; font-family: var(--display); font-size: 23px; font-weight: 500; line-height: 1.2; }
.quality-band__points p { max-width: 42ch; margin: 0; color: #41474f; font-size: 14px; line-height: 1.55; }

.faq-intro { padding: 180px 0 90px; display: grid; grid-template-columns: 1.65fr 1fr; align-items: center; gap: 6vw; }
.faq-intro__copy { padding-inline: var(--gutter); }
.faq-intro__copy h1 { margin: 26px 0 32px; font-family: var(--display); font-size: clamp(64px, 6.7vw, 112px); font-weight: 400; letter-spacing: -.055em; line-height: 1.02; }
.faq-intro__copy > p:not(.kicker) { max-width: 480px; margin: 0; font-size: 18px; line-height: 1.6; color: #555552; }
.faq-intro__image { margin: 0; }
.faq-intro__image img { width: 100%; height: clamp(260px, 27vw, 420px); object-fit: cover; object-position: center 62%; }
.faq-intro__image figcaption { padding: 12px var(--gutter) 0; font-size: 12px; color: #555552; }
.faq-directory { padding: 24px var(--gutter) 120px; display: grid; grid-template-columns: minmax(220px, .8fr) minmax(0, 1.7fr); gap: 8vw; align-items: start; }
.faq-index { position: sticky; top: 40px; }
.faq-index nav > p { margin: 0 0 20px; font-size: 13px; color: #555552; }
.faq-index nav a { display: block; width: fit-content; padding: 11px 0; font-size: 17px; line-height: 1.45; }
.faq-index a:hover { text-decoration: underline; text-underline-offset: 6px; }
.faq-help { margin-top: 48px; max-width: 230px; }
.faq-help p { margin: 0 0 10px; font-size: 15px; line-height: 1.5; color: #555552; }
.faq-help a { display: inline-block; padding: 10px 0; font-size: 15px; text-decoration: underline; text-underline-offset: 6px; }
.faq-group { scroll-margin-top: 40px; }
.faq-group + .faq-group { margin-top: 76px; }
.faq-group h2 { margin: 0 0 26px; font-family: var(--display); font-size: clamp(28px, 2.4vw, 40px); font-weight: 400; letter-spacing: -.035em; line-height: 1.15; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; list-style: none; cursor: pointer; font-family: var(--display); font-size: clamp(19px, 1.55vw, 25px); font-weight: 400; line-height: 1.35; padding: 24px 0; }
.faq-list summary:hover { color: #555552; }
.faq-list summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 6px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 20px; width: 20px; height: 20px; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 0; top: 9px; width: 20px; height: 1px; background: var(--ink); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 680px; margin: 0; padding: 0 48px 30px 0; color: #555552; font-size: 16px; line-height: 1.75; }

.contact-page { background: #e0e2e5; }
.contact-hero { min-height: 75svh; padding: 190px var(--gutter) 100px; display: grid; grid-template-columns: 1.5fr .7fr; gap: 6vw; }
.contact-hero__headline h1 { margin: 24px 0 38px; font-family: var(--display); font-size: clamp(72px, 8.6vw, 148px); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.contact-hero__headline > p:not(.kicker) { max-width: 520px; margin: 0; font-size: 18px; }
.contact-details { align-self: end; display: grid; gap: 42px; }
.contact-details span, .form-intro span { display: block; margin-bottom: 12px; font-size: 12px; color: #555c65; }
.contact-details p, .contact-details a { display: block; margin: 0; line-height: 1.65; }
.contact-workspace { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); }
.contact-workspace__image { position: relative; min-height: 900px; }
.contact-workspace__image img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.contact-workspace__image::after { content: ""; position: absolute; inset: 0; background: rgba(8,9,11,.22); }
.contact-workspace__image span { position: absolute; z-index: 1; left: var(--gutter); bottom: var(--gutter); max-width: 520px; color: var(--white); font-family: var(--display); font-size: clamp(38px, 4vw, 66px); font-weight: 500; line-height: 1.08;  right: var(--gutter);  letter-spacing: -.035em; }
.contact-form { padding: clamp(70px, 8vw, 130px) var(--gutter); }
.form-intro { margin-bottom: 70px; }
.form-intro p { max-width: 480px; margin: 0; color: #555b63; }
.contact-form > label:not(.consent) { display: block; margin-bottom: 38px; }
.contact-form > label > span { display: block; margin-bottom: 8px; font-size: 14px; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #858b94; border-radius: 0; padding: 13px 0; background: transparent; color: var(--ink); outline: 0; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--metal-ink); }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 10px 0 34px; color: #575d65; }
.consent input { margin-top: 4px;  width: 18px;  height: 18px;  flex-shrink: 0;  accent-color: var(--metal-ink); }
.consent span { font-size: 13px;  line-height: 1.55; }
.submit-button { min-width: 190px; min-height: 58px; padding: 0 28px; border: 0; border-radius: 0; background: var(--ink); color: var(--white); cursor: pointer; transition: background .2s ease;  font-weight: 500;  box-shadow: none; }
.submit-button:hover { background: #444444;  filter: none;  transform: none; }
.form-status { min-height: 24px; margin: 18px 0 0; color: var(--metal-ink); font-size: 13px; }

.site-footer { background: #e9e9e7; color: var(--ink); padding: clamp(72px, 8vw, 128px) var(--gutter) 0; }
.footer-invitation { display: grid; grid-template-columns: 1.3fr .62fr .38fr; align-items: end; gap: 7vw; padding-bottom: clamp(80px, 9vw, 144px); }
.footer-invitation h2 { margin: 0; font-family: var(--display); font-size: clamp(56px, 6.4vw, 104px); font-weight: 400; line-height: 1.03; letter-spacing: -.055em; }
.footer-invitation__detail { grid-column: 2 / -1; padding-bottom: 8px; }
.footer-invitation__detail p { margin: 0 0 25px; color: #555552; font-size: 17px; line-height: 1.65; }
.footer-invitation__detail a { display: inline-block; padding: 12px 0; font-size: 17px; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 8px; }
.footer-main { display: grid; grid-template-columns: 1.3fr .62fr .38fr; gap: 7vw; padding-bottom: 64px; }
.footer-main > * { min-width: 0; }
.brand--footer { max-width: 100%; }
.brand--footer img { width: clamp(240px, 28vw, 440px); max-width: 100%; height: auto; }
.footer-brand p { margin: 32px 0 0; color: #555552; font-size: 15px; line-height: 1.6; }
.footer-main h3 { margin: 0 0 18px; font: 400 13px var(--sans); color: #555552; }
.footer-nav a, .footer-contact a { display: block; width: fit-content; min-height: 36px; padding: 7px 0; font-size: 15px; line-height: 1.45; overflow-wrap: anywhere; }
.footer-contact address { margin-top: 20px; font-style: normal; font-size: 14px; line-height: 1.65; color: #555552; }
.site-footer a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.footer-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }
.footer-bottom { min-height: 88px; display: grid; grid-template-columns: 1.3fr .62fr .38fr; gap: 7vw; align-items: center; padding: 18px 0; color: #555552; font-size: 12px; }
.footer-bottom a { display: inline-flex; gap: 16px; align-items: center; min-height: 44px; color: var(--ink); }
.footer-bottom a span { font-size: 20px; }

.skip-link { position: fixed; top: 12px; left: var(--gutter); z-index: 110; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; background: var(--paper); color: var(--ink); }
.skip-link:focus { width: auto; height: auto; padding: 10px 18px; clip-path: none; }
#lavori { scroll-margin-top: 32px; }
.mobile-nav nav a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 8px; }
.mobile-nav nav a:hover { color: var(--metal-ink); }
.faq-list details[open] summary { color: var(--ink); }
.contact-form input:focus-visible, .contact-form textarea:focus-visible { outline: 2px solid var(--metal-ink); outline-offset: 5px; }
.form-note { color: #5d636c; font-size: 12px; margin: 16px 0 0; }

@media (max-width: 1100px) {
  .site-nav { display: none; }
  .menu-button { display: flex; }
  .manifesto { grid-template-columns: .55fr 2fr; }
  .manifesto > p { grid-column: 2; }
  .ledger-item, .ledger-item--reverse { grid-template-columns: 1fr 1fr; }
  .ledger-item__copy { padding: 48px; }
  .essence__portrait { grid-column: 1 / 6; }
  .essence__copy { grid-column: 6 / 13; }
  .essence__landscape { grid-column: 5 / 13; }
  .section-head { grid-template-columns: .6fr 2fr; }
  .section-head .text-link { grid-column: 2; justify-self: start; }
  .inner-hero { grid-template-columns: 1fr; }
  .inner-hero__intro { max-width: 600px; }
  .inner-hero__media { grid-column: 1; }
  .service-hero { grid-template-columns: .9fr 1.1fr; }
  .service-hero__copy h1 { font-size: clamp(68px, 8.3vw, 92px); }
  .service-catalogue article { grid-template-columns: 50px 1fr 1fr; }
  .service-catalogue article img { grid-column: 2 / 4; height: 420px; }
  .faq-intro { gap: 3vw; }
  .faq-directory { grid-template-columns: minmax(210px, .8fr) minmax(0, 1.7fr); gap: 5vw; }
  .contact-hero { grid-template-columns: 1.25fr .75fr; }
  .footer-main, .footer-bottom { grid-template-columns: 1.1fr 1fr .65fr; gap: 4vw; }
  .footer-invitation { grid-template-columns: 1.3fr 1fr; gap: 4vw; }
}

@media (max-width: 760px) {
  :root { --gutter: 16px; }
  .site-header { inset: 0 0 auto; min-height: 88px; padding: 0 var(--gutter); }
  .brand { width: auto; }
  .brand img { width: clamp(150px, 43vw, 182px); }
  .menu-button { min-height: 44px; padding-inline: 0; }
  .home-hero { min-height: 680px; height: 100svh; }
  .home-hero .site-header { flex-basis: 88px; }
  .hero-stage { padding: 20px var(--gutter) 36px; align-items: center; }
  .hero-title { font-size: clamp(46px, 11.4vw, 86px); line-height: 1.04; letter-spacing: -.055em; }
  .hero-title span:last-child { margin-left: 0; }
  .hero-image { object-position: 52% 50%; }
  .hero-bottom { padding-bottom: 32px; display: block; }
  .hero-bottom p { max-width: 30ch; font-size: 15px; }
  .hero-actions { justify-content: space-between; gap: 16px; margin-top: 24px; }
  .hero-actions a { font-size: 13px; gap: 10px; }
  .hero-actions svg { width: 18px; height: 18px; }
  .manifesto { display: block; }
  .manifesto__label { flex-direction: row; gap: 14px; margin-bottom: 46px; }
  .manifesto h2 { font-size: clamp(32px, 8.8vw, 44px); }
  .manifesto > p { margin-top: 34px; }
  .ledger-item, .ledger-item--reverse { min-height: 0; display: flex; flex-direction: column; }
  .ledger-item--reverse .ledger-item__media { order: 0; }
  .ledger-item__media { min-height: 440px; }
  .ledger-item__copy { padding: 42px var(--gutter) 64px; }
  .ledger-item__copy h3 { font-size: clamp(38px, 10vw, 50px); }
  .essence { display: block; padding-left: 0; padding-right: 0; }
  .essence__portrait { width: 100%; }
  .essence__portrait img { height: 620px; }
  .essence__copy { padding: 74px var(--gutter); }
  .essence__copy h2 { font-size: clamp(36px, 9.5vw, 50px); }
  .essence__landscape { margin: 0; }
  .section-head { display: block; }
  .section-head > p { margin-bottom: 34px; }
  .section-head h2 { font-size: clamp(38px, 10.8vw, 58px); }
  .section-head .text-link { margin-top: 34px; }
  .project-grid { display: block; }
  .project-grid figure, .project-grid figure:nth-child(2), .project-grid figure:nth-child(3), .project-grid .project--wide { margin: 0 0 42px; }
  .project-grid img, .project-grid figure:nth-child(2) img, .project-grid figure:nth-child(3) img { height: clamp(280px, 78vw, 460px); }
  .project-grid figcaption, .archive-grid figcaption { grid-template-columns: 26px minmax(0, 1fr); gap: 6px 10px; padding-top: 12px; }
  .project-grid figcaption small { grid-column: 2; text-align: left; }
  .testimonial blockquote { font-size: clamp(32px, 8.7vw, 44px); }
  .contact-strip { min-height: 300px; align-items: flex-start; flex-direction: column; }
  .contact-strip p { font-size: clamp(32px, 9vw, 44px); }
  .contact-strip a { width: auto; height: auto; align-self: flex-start; }
  .inner-hero { padding-top: 140px; }
  .inner-hero__title h1 { font-size: clamp(44px, 12vw, 72px); }
  .inner-hero__media { margin-top: 60px; }
  .inner-hero__media img { height: 620px; }
  .story { display: block; }
  .story h2 { font-size: clamp(38px, 10vw, 52px); margin-bottom: 38px; }
  .stats-strip { display: block; }
  .stats-strip > div { min-height: 190px; padding: 38px var(--gutter); border-right: 0; border-bottom: 0; }
  .archive-grid { display: block; }
  .archive-grid figure, .archive-grid figure:nth-child(2), .archive-grid figure:nth-child(3), .archive-grid figure:nth-child(4), .archive-grid figure:nth-child(5), .archive-grid figure:nth-child(6) { margin: 0 0 42px; }
  .archive-grid img, .archive-grid figure:nth-child(2) img, .archive-grid figure:nth-child(3) img, .archive-grid figure:nth-child(4) img, .archive-grid figure:nth-child(5) img, .archive-grid figure:nth-child(6) img { height: clamp(280px, 76vw, 460px); }
  .service-hero { min-height: 0; display: block; padding-top: 140px; }
  .service-hero__copy h1 { font-size: clamp(60px, 16vw, 82px); }
  .service-hero__images { min-height: 620px; margin-top: 70px; }
  .service-hero__images img:first-child { width: 78%; }
  .service-hero__images img:last-child { width: 64%; }
  .service-catalogue { padding-top: 50px; }
  .service-catalogue article { display: block; padding: 52px 0 72px; }
  .service-catalogue article > span, .service-catalogue article > h2, .service-catalogue article > p { margin-left: var(--gutter); margin-right: var(--gutter); }
  .service-catalogue article > span { display: block; margin-bottom: 32px; }
  .service-catalogue h2 { font-size: clamp(36px, 9.5vw, 50px); }
  .service-catalogue p { margin: 26px 0 40px; }
  .service-catalogue article img { height: 420px; }
  .quality-band { display: block; min-height: 0; }
  .quality-band__image { min-height: 0; }
  .quality-band__image img { height: clamp(300px, 82vw, 460px); object-position: center 40%; }
  .quality-band__content { padding: 68px var(--gutter) 76px; }
  .quality-band__content > h2 { font-size: clamp(42px, 10vw, 62px); margin-bottom: 42px; }
  .quality-band__points article { padding: 18px 0; }
  .quality-band__points h3 { font-size: 21px; }
  .faq-intro { display: block; padding-top: 136px; padding-bottom: 48px; }
  .faq-intro__copy h1 { font-size: clamp(42px, 10vw, 72px); margin: 22px 0 24px; }
  .faq-intro__copy > p:not(.kicker) { font-size: 16px; }
  .faq-intro__image { margin-top: 32px; }
  .faq-intro__image img { height: clamp(210px, 55vw, 340px); }
  .faq-directory { display: block; padding-top: 0; padding-bottom: 72px; }
  .faq-index { position: static; margin-bottom: 46px; }
  .faq-index nav > p { margin-bottom: 12px; }
  .faq-index nav a { font-size: 16px; min-height: 44px; }
  .faq-help { display: none; }
  .faq-group { scroll-margin-top: 24px; }
  .faq-group + .faq-group { margin-top: 50px; }
  .faq-group h2 { font-size: 28px; margin-bottom: 22px; }
  .faq-list summary { min-height: 78px; font-size: 19px; gap: 20px; padding: 22px 0; }
  .faq-list details p { padding-right: 0; font-size: 15px; line-height: 1.7; }
  .contact-hero { min-height: 0; display: block; padding-top: 150px; }
  .contact-hero__headline h1 { font-size: clamp(52px, 14vw, 76px); }
  .contact-details { margin-top: 48px; }
  .contact-workspace { display: block; }
  .contact-workspace__image { min-height: 580px; }
  .contact-form { padding-top: 80px; }
  .site-footer { padding-top: 64px; }
  .footer-invitation { display: block; padding-bottom: 64px; }
  .footer-invitation h2 { font-size: clamp(44px, 10vw, 70px); }
  .footer-invitation__detail { margin-top: 30px; padding-bottom: 0; }
  .footer-invitation__detail p, .footer-invitation__detail a { font-size: 15px; }
  .footer-main { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 40px 24px; padding-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .brand--footer img { width: min(340px, 86vw); }
  .footer-brand p { margin-top: 24px; }
  .footer-nav a, .footer-contact a { font-size: 14px; min-height: 44px; }
  .footer-contact address { font-size: 13px; }
  .footer-bottom { grid-template-columns: 1fr auto; gap: 14px; }
  .footer-bottom > span:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
