@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/instrument-serif-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --gold: #be9d28;
  --blue: #13587f;
  --grey: #777777;
  --white: #ffffff;
  --ink: var(--blue);
  --ink-soft: var(--blue);
  --paper: var(--white);
  --paper-bright: var(--white);
  --warm-gray: rgb(119 119 119 / 14%);
  --line: rgb(119 119 119 / 38%);
  --muted: #616161;
  --signal: var(--gold);
  --signal-dark: var(--blue);
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --header-height: 124px;
  --shell: min(100% - 48px, 1280px);
  --shell-wide: min(100% - 48px, 1480px);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

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

p {
  text-wrap: pretty;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  background: var(--signal);
  content: "";
}

.eyebrow--light {
  color: var(--paper-bright);
}

.button,
.header-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  padding: 0 23px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg,
.header-cta svg,
.text-link svg,
.featured-card figcaption svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.button:hover svg,
.header-cta:hover svg,
.text-link:hover svg,
.featured-card:hover figcaption svg {
  transform: translateX(4px);
}

.button--signal,
.header-cta {
  color: var(--white);
  border-bottom-color: var(--gold);
  background: var(--blue);
}

.button--signal:hover,
.header-cta:hover {
  color: var(--blue);
  background: var(--white);
}

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

.button--dark:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--white);
}

.button--glass {
  color: var(--white);
  border-color: rgb(255 255 255 / 55%);
  background: rgb(20 21 19 / 25%);
  backdrop-filter: blur(10px);
}

.button--glass:hover,
.button--outline-light:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.button--outline-light {
  color: var(--white);
  border-color: rgb(255 255 255 / 48%);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  border-bottom: 3px solid var(--gold);
  background: var(--white);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgb(20 20 18 / 10%);
}

.site-meta {
  display: flex;
  height: 36px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-meta p {
  margin: 0;
}

.site-meta span {
  margin-inline: 8px;
  color: var(--signal-dark);
}

.site-meta a:hover {
  color: var(--signal-dark);
}

.header-main {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.brand__logo {
  width: clamp(190px, 18vw, 260px);
  height: auto;
}

.navigation-wrap,
.site-nav {
  display: flex;
  align-items: center;
}

.navigation-wrap {
  gap: 42px;
}

.site-nav {
  gap: 38px;
}

.site-nav__link {
  position: relative;
  padding: 12px 0;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 44px;
  padding-inline: 18px;
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-hero__image,
.home-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
  object-position: center 52%;
  animation: hero-in 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.home-hero__overlay {
  background:
    linear-gradient(90deg, rgb(15 16 14 / 79%) 0%, rgb(15 16 14 / 38%) 62%, rgb(15 16 14 / 25%) 100%),
    linear-gradient(0deg, rgb(15 16 14 / 70%) 0%, transparent 54%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  justify-content: space-between;
  padding-block: 52px 58px;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero h1,
.page-hero h1,
.contact-hero h1,
.not-found h1 {
  margin: auto 0 6vh;
  font-family: var(--font-serif);
  font-size: clamp(4.25rem, 8vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.84;
}

.home-hero h1 em,
.page-hero h1 em,
.contact-hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.page-hero h1 em,
.contact-hero h1 em {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.08em;
}

.home-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.home-hero__bottom > p {
  max-width: 600px;
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.34rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-index {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 50%;
  color: rgb(255 255 255 / 62%);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right bottom;
}

.intro-section,
.services-preview,
.process-section,
.principles {
  padding-block: clamp(92px, 10vw, 160px);
}

.intro-section__grid,
.section-heading--wide,
.story-section,
.team-section__grid,
.contact-hero__grid,
.contact-form-section__grid,
.work-note {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(56px, 10vw, 170px);
}

.intro-section h2,
.section-heading h2,
.about-preview h2,
.story-section h2,
.team-section h2,
.contact-form-section h2,
.work-note h2,
.footer-callout h2 {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.2vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.93;
}

.intro-section h2 em,
.about-preview h2 em {
  color: var(--signal-dark);
  font-weight: 400;
}

.intro-section__grid > div:last-child {
  align-self: end;
  max-width: 610px;
}

.lead {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.intro-section__grid > div:last-child > p:last-child,
.story-section__copy > p:last-child,
.team-section__grid > div:last-child > p:not(.lead) {
  color: var(--muted);
}

.fact-strip {
  display: grid;
  margin-top: clamp(72px, 9vw, 130px);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip > div {
  display: grid;
  min-height: 132px;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line);
  padding: 22px 32px;
}

.fact-strip > div:first-child {
  padding-left: 0;
}

.fact-strip > div:last-child {
  border-right: 0;
}

.fact-strip strong {
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.fact-strip span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-preview {
  padding-block: clamp(82px, 9vw, 140px);
  background: var(--paper-bright);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: clamp(48px, 6vw, 84px);
}

.section-heading h2 {
  font-size: clamp(3rem, 4.5vw, 5rem);
}

.section-heading .eyebrow {
  margin-bottom: 22px;
}

.section-heading--wide {
  align-items: end;
}

.section-heading--wide > p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.featured-card {
  overflow: hidden;
}

.featured-card--1 {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.featured-card--2,
.featured-card--3 {
  grid-column: 8 / span 5;
}

.featured-card--4 {
  display: none;
}

.featured-card figure {
  position: relative;
  height: 100%;
  margin-bottom: 0;
  background: var(--ink-soft);
}

.featured-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.featured-card--1 img {
  min-height: 700px;
}

.featured-card:hover img,
.work-card:hover img {
  transform: scale(1.025);
}

.featured-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--paper-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 90px);
  border-bottom: 1px solid var(--line);
  padding-block: 44px;
}

.service-row__number {
  color: var(--signal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-row h2 {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.2vw, 3.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.service-row__copy > p {
  max-width: 620px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-row__copy ul {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.service-row__copy li {
  border-top: 1px solid var(--line);
  padding: 13px 12px 13px 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-preview {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
  color: var(--white);
  background: var(--blue);
}

.about-preview__media {
  min-height: 650px;
  overflow: hidden;
}

.about-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__content {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}

.about-preview__content > p:not(.eyebrow) {
  margin: 42px 0 36px;
  color: var(--white);
  font-size: 1.05rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-card {
  min-height: 330px;
  border-right: 1px solid var(--line);
  padding: 28px;
}

.process-card:first-child {
  padding-left: 0;
}

.process-card:last-child {
  border-right: 0;
}

.process-card > span,
.principles article > span {
  display: block;
  margin-bottom: 88px;
  color: var(--signal-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.process-card h3,
.principles h3 {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
}

.process-card p,
.principles article p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding-block: clamp(100px, 12vw, 190px) clamp(80px, 9vw, 140px);
  background: var(--paper-bright);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 0.4fr 1.5fr 0.8fr;
  align-items: end;
  gap: clamp(36px, 6vw, 100px);
}

.page-hero .eyebrow {
  align-self: start;
  margin-top: 14px;
}

.page-hero h1,
.contact-hero h1 {
  margin: 0;
  font-size: clamp(4.7rem, 8vw, 8.6rem);
}

.page-hero__grid > p:last-child {
  max-width: 410px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.08rem;
}

.work-hero {
  display: grid;
  min-height: min(820px, calc(100svh - var(--header-height)));
  grid-template-columns: minmax(440px, 0.9fr) minmax(0, 1.1fr);
  color: var(--white);
  background: var(--blue);
}

.work-hero__copy {
  position: relative;
  display: flex;
  min-height: 680px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(70px, 8vw, 130px) clamp(40px, 6vw, 100px) 38px max(24px, calc((100vw - 1480px) / 2));
}

.work-hero__copy::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 36%;
  background: var(--gold);
  content: "";
}

.work-hero__copy-inner {
  max-width: 690px;
}

.work-hero h1 {
  margin: 0 0 42px;
  font-family: var(--font-serif);
  font-size: clamp(4.4rem, 7.2vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.82;
}

.work-hero h1 em {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.08em;
  font-weight: 400;
}

.work-hero__copy-inner > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 78%);
  font-size: 1.08rem;
}

.text-link--light {
  border-color: var(--white);
  color: var(--white);
}

.work-hero__index {
  margin: 48px 0 0;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-hero__media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.work-hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-hero__inset {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: clamp(20px, 4vw, 58px);
  width: min(38%, 330px);
  border: 10px solid var(--white);
  background: var(--white);
  box-shadow: 0 20px 50px rgb(19 88 127 / 32%);
}

.work-hero__inset::before {
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -22px;
  width: 58%;
  height: 50%;
  background: var(--gold);
  content: "";
}

.work-hero__inset img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.work-hero__inset span {
  display: block;
  padding: 10px 3px 3px;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-section {
  scroll-margin-top: calc(var(--header-height) + 20px);
  padding-block: 45px clamp(100px, 11vw, 170px);
}

.work-filters {
  position: sticky;
  z-index: 10;
  top: var(--header-height);
  display: flex;
  overflow-x: auto;
  margin-bottom: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 10px;
  gap: 6px;
  background: var(--paper);
  scrollbar-width: none;
}

.work-filters::-webkit-scrollbar {
  display: none;
}

.work-filters button {
  flex: 0 0 auto;
  border: 0;
  padding: 12px 17px;
  color: var(--muted);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.work-filters button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.work-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  grid-column: span 4;
  background: var(--ink-soft);
  text-align: left;
}

.work-card--1,
.work-card--6 {
  grid-column: span 7;
}

.work-card--2,
.work-card--7 {
  grid-column: span 5;
}

.work-card--3,
.work-card--4,
.work-card--5 {
  grid-column: span 4;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.work-card--1 img,
.work-card--6 img {
  aspect-ratio: 1.52 / 1;
}

.work-card--2 img,
.work-card--7 img {
  aspect-ratio: 1.08 / 1;
}

.work-card > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper-bright);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-card > span b {
  color: var(--signal-dark);
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  border: 0;
  padding: 0;
  color: var(--white);
  background: rgb(14 15 13 / 97%);
}

.lightbox::backdrop {
  background: rgb(14 15 13 / 96%);
}

.lightbox[open] {
  display: grid;
  grid-template: 72px 1fr / 88px 1fr 88px;
}

.lightbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  padding: 0 26px;
}

.lightbox__top p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lightbox__top button,
.lightbox__nav {
  border: 0;
  color: var(--white);
  background: transparent;
}

.lightbox__top button {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox__top button span {
  font-size: 1.7rem;
  font-weight: 300;
}

.lightbox__nav {
  font-size: 1.8rem;
}

.lightbox figure {
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
  margin: 0;
  padding: 28px;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

.lightbox figcaption {
  position: absolute;
  bottom: 18px;
  left: 50%;
  color: rgb(255 255 255 / 68%);
  font-size: 0.68rem;
  transform: translateX(-50%);
}

.work-note {
  align-items: start;
  border-top: 1px solid var(--line);
  padding-block: clamp(90px, 10vw, 160px);
}

.work-note > div p {
  max-width: 590px;
  margin: 42px 0 0 auto;
  color: var(--muted);
}

.services-page {
  padding-block: clamp(70px, 8vw, 120px) clamp(110px, 12vw, 180px);
}

.services-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(60px, 8vw, 110px);
  border-left: 6px solid var(--gold);
  padding: 24px 0 24px clamp(24px, 4vw, 54px);
}

.services-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.service-list--detailed .service-row {
  scroll-margin-top: calc(var(--header-height) + 30px);
  padding-block: clamp(50px, 6vw, 90px);
}

.process-band {
  padding-block: clamp(100px, 11vw, 170px);
  color: var(--white);
  background: var(--blue);
}

.section-heading--light > p,
.process-grid--dark .process-card p {
  color: var(--white);
}

.process-grid--dark,
.process-grid--dark .process-card {
  border-color: rgb(255 255 255 / 19%);
}

.process-grid--dark .process-card > span {
  color: var(--white);
}

.story-section {
  align-items: start;
  padding-block: clamp(100px, 12vw, 190px);
}

.story-section__number {
  display: flex;
  align-items: baseline;
  gap: 22px;
}

.story-section__number span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.story-section__number strong {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.72;
}

.story-section__copy h2 {
  font-size: clamp(3rem, 4.7vw, 5.5rem);
}

.story-section__copy .lead {
  margin-top: 44px;
}

.about-image-band {
  position: relative;
  height: min(80vh, 850px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.about-image-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(18 19 17 / 75%), transparent 55%);
  content: "";
}

.about-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-band p {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: max(24px, calc((100vw - 1480px) / 2));
  max-width: 600px;
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 4rem);
  line-height: 1;
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.principles article {
  min-height: 370px;
  border-right: 1px solid var(--line);
  padding: 30px;
}

.principles article:first-child {
  padding-left: 0;
}

.principles article:last-child {
  border-right: 0;
}

.principles article > span {
  margin-bottom: 100px;
}

.team-section {
  padding-block: clamp(100px, 11vw, 170px);
  color: var(--white);
  background: var(--blue);
  scroll-margin-top: var(--header-height);
}

.team-section__grid > div:last-child {
  align-self: end;
  max-width: 590px;
}

.team-section__grid > div:last-child > p,
.team-section__grid > div:last-child > p:not(.lead) {
  color: var(--white);
}

.team-section .button {
  margin-top: 28px;
}

.team-roster {
  display: grid;
  margin-top: clamp(70px, 9vw, 130px);
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgb(255 255 255 / 28%);
  border-bottom: 1px solid rgb(255 255 255 / 28%);
}

.team-roster article {
  min-height: 250px;
  border-right: 1px solid rgb(255 255 255 / 28%);
  padding: 28px 22px;
}

.team-roster article:last-child {
  border-right: 0;
}

.team-roster span {
  display: block;
  margin-bottom: 78px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.team-roster h3 {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
}

.team-roster p {
  margin: 0;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-hero {
  padding-block: clamp(90px, 11vw, 170px);
  background: var(--paper-bright);
}

.contact-hero__grid {
  align-items: end;
}

.contact-hero h1 {
  margin-block: 30px 38px;
}

.contact-hero__grid > div:first-child > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.15rem;
}

.contact-details {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid var(--line);
  padding-block: 18px;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details address {
  font-style: normal;
}

.contact-details a:hover {
  color: var(--signal-dark);
}

.project-path {
  padding-block: clamp(90px, 10vw, 150px);
}

.project-path__heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
  gap: clamp(40px, 8vw, 130px);
  margin-bottom: clamp(52px, 7vw, 90px);
}

.project-path h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.project-path ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.project-path li {
  min-height: 285px;
  border-right: 1px solid var(--line);
  padding: 26px;
}

.project-path li:first-child {
  padding-left: 0;
}

.project-path li:last-child {
  border-right: 0;
}

.project-path li > span {
  display: block;
  margin-bottom: 72px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.project-path h3 {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
}

.project-path li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form-section {
  border-top: 6px solid var(--gold);
  padding-block: clamp(90px, 10vw, 160px);
  background: rgb(119 119 119 / 8%);
}

.contact-form-section__grid {
  align-items: start;
}

.contact-form-section__grid > div:first-child > p:last-child {
  max-width: 400px;
  margin-top: 34px;
  color: var(--muted);
}

.contact-form {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field--trap {
  position: absolute;
  left: -10000px;
}

.field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #a7a398;
  border-radius: 0;
  padding: 13px 0;
  background: transparent;
  outline: 0;
  transition: border-color 180ms ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--signal-dark);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b42318;
}

.field-error {
  min-height: 1em;
  margin: 0;
  color: #9d2618;
  font-size: 0.72rem;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.form-submit > p {
  max-width: 350px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.form-submit > p a {
  border-bottom: 1px solid currentColor;
}

.form-status {
  min-height: 26px;
  margin-top: 22px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #286039;
}

.form-status.is-error {
  color: #9d2618;
}

.legal-page,
.not-found {
  min-height: 65vh;
  padding-block: clamp(90px, 10vw, 160px);
}

.legal-page h1,
.not-found h1 {
  max-width: 980px;
  margin-bottom: 70px;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.legal-page__content {
  max-width: 780px;
  margin-left: auto;
}

.legal-page__content h2 {
  margin: 50px 0 14px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
}

.legal-page__content p:not(.lead) {
  color: var(--muted);
}

.legal-page__content a {
  border-bottom: 1px solid currentColor;
}

.not-found > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--muted);
}

.site-footer {
  color: var(--white);
  border-top: 6px solid var(--gold);
  background: var(--blue);
}

.footer-callout {
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  padding-block: clamp(90px, 10vw, 160px);
}

.footer-callout__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.footer-callout h2 {
  font-size: clamp(4rem, 7vw, 8rem);
}

.footer-callout__grid > div p {
  max-width: 480px;
  margin-bottom: 32px;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.7fr;
  gap: 70px;
  padding-block: 70px;
}

.brand--footer {
  align-self: start;
  padding: 12px;
  background: var(--white);
}

.footer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: var(--white);
  font-size: 0.84rem;
}

.footer-label {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-group address {
  font-style: normal;
}

.footer-group a:hover,
.footer-bottom a:hover {
  color: var(--signal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 18%);
  padding-block: 22px;
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 26px;
}

.js [data-reveal] {
  transform: translateY(22px);
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
  transform: none;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 108px;
  }

  .site-meta {
    height: 32px;
  }

  .header-main {
    min-height: 76px;
  }

  .navigation-wrap {
    gap: 25px;
  }

  .site-nav {
    gap: 22px;
  }

  .page-hero__grid {
    grid-template-columns: 0.32fr 1.45fr 0.7fr;
    gap: 30px;
  }

  .intro-section__grid,
  .section-heading--wide,
  .story-section,
  .team-section__grid,
  .contact-hero__grid,
  .contact-form-section__grid,
  .work-note {
    gap: 70px;
  }

  .about-preview__content {
    padding: 70px;
  }

  .process-card,
  .principles article {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 88px;
    --shell: min(100% - 36px, 1280px);
    --shell-wide: min(100% - 36px, 1480px);
  }

  .site-meta {
    display: none;
  }

  .header-main {
    min-height: 88px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

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

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

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

  .navigation-wrap {
    position: fixed;
    z-index: -1;
    inset: 88px 0 auto;
    display: grid;
    padding: 45px 18px 24px;
    gap: 34px;
    background: var(--paper);
    box-shadow: 0 24px 30px rgb(20 20 18 / 13%);
  }

  .js .navigation-wrap {
    visibility: hidden;
    transform: translateY(-12px);
    transition: transform 180ms ease, visibility 180ms;
  }

  .js .navigation-wrap.is-open {
    visibility: visible;
    transform: none;
  }

  .site-nav {
    display: grid;
    gap: 0;
  }

  .site-nav__link {
    border-bottom: 1px solid var(--line);
    padding-block: 17px;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav__link::after {
    display: none;
  }

  .header-cta {
    justify-self: start;
  }

  .home-hero,
  .home-hero__content {
    min-height: calc(100svh - 88px);
  }

  .home-hero__content {
    padding-block: 32px;
  }

  .home-hero h1 {
    margin-bottom: 5vh;
  }

  .home-hero__bottom {
    display: grid;
  }

  .home-hero__bottom > p {
    max-width: 520px;
  }

  .intro-section__grid,
  .section-heading--wide,
  .story-section,
  .team-section__grid,
  .contact-hero__grid,
  .contact-form-section__grid,
  .work-note {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-section__grid > div:last-child {
    margin-left: 14vw;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact-strip > div,
  .fact-strip > div:first-child {
    min-height: 105px;
    grid-template-columns: 0.4fr 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
  }

  .fact-strip > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
  }

  .featured-card--1 {
    grid-column: 1 / span 8;
  }

  .featured-card--2,
  .featured-card--3 {
    grid-column: 9 / span 4;
  }

  .featured-card--1 img {
    min-height: 560px;
  }

  .service-row {
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }

  .service-row__copy {
    grid-column: 2;
  }

  .about-preview {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .about-preview__media {
    min-height: 520px;
  }

  .about-preview__content {
    max-width: none;
    padding: 80px 9vw;
  }

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

  .process-card:nth-child(2),
  .principles article:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(-n + 2),
  .principles article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .process-card:first-child,
  .principles article:first-child {
    padding-left: 22px;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .work-hero {
    grid-template-columns: 1fr;
  }

  .work-hero__copy,
  .work-hero__media {
    min-height: 620px;
  }

  .work-hero__copy {
    padding-inline: 18px;
  }

  .work-hero__copy::after {
    top: auto;
    bottom: 0;
    width: 32%;
    height: 8px;
  }

  .work-hero__media {
    max-height: 720px;
  }

  .services-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero .eyebrow {
    margin: 0;
  }

  .page-hero__grid > p:last-child {
    margin-left: 25vw;
  }

  .work-card,
  .work-card--1,
  .work-card--2,
  .work-card--3,
  .work-card--4,
  .work-card--5,
  .work-card--6,
  .work-card--7 {
    grid-column: span 6;
  }

  .work-card img,
  .work-card--1 img,
  .work-card--2 img,
  .work-card--6 img,
  .work-card--7 img {
    aspect-ratio: 1.1 / 1;
  }

  .work-note > div p {
    margin-left: 0;
  }

  .story-section__number {
    justify-content: flex-end;
  }

  .story-section__copy {
    max-width: 650px;
  }

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

  .team-roster article {
    border-bottom: 1px solid rgb(255 255 255 / 28%);
  }

  .team-roster article:nth-child(2n) {
    border-right: 0;
  }

  .team-roster article:last-child {
    border-bottom: 0;
  }

  .project-path__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .brand--footer {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1280px);
    --shell-wide: min(100% - 28px, 1480px);
  }

  .brand__logo {
    width: 185px;
  }

  .home-hero__image {
    object-position: 62% center;
  }

  .hero-kicker span {
    display: none;
  }

  .home-hero h1,
  .page-hero h1,
  .contact-hero h1,
  .work-hero h1,
  .not-found h1 {
    font-size: clamp(3.6rem, 18vw, 5.5rem);
    line-height: 0.88;
  }

  .home-hero__bottom {
    gap: 24px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .button-row .button {
    justify-content: space-between;
  }

  .hero-index {
    display: none;
  }

  .intro-section__grid > div:last-child,
  .page-hero__grid > p:last-child {
    margin-left: 0;
  }

  .intro-section h2,
  .section-heading h2,
  .about-preview h2,
  .story-section h2,
  .team-section h2,
  .contact-form-section h2,
  .work-note h2,
  .footer-callout h2 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .section-heading {
    display: grid;
    gap: 30px;
  }

  .featured-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .featured-card--1,
  .featured-card--2,
  .featured-card--3 {
    grid-column: 1;
    grid-row: auto;
  }

  .featured-card--1 img,
  .featured-card img {
    min-height: 380px;
    aspect-ratio: 1 / 1.12;
  }

  .service-row {
    grid-template-columns: 38px 1fr;
    padding-block: 34px;
  }

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

  .process-grid,
  .principles__grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:first-child,
  .principles article,
  .principles article:first-child {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .process-card:last-child,
  .principles article:last-child {
    border-bottom: 0;
  }

  .process-card > span,
  .principles article > span {
    margin-bottom: 60px;
  }

  .work-gallery {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card--1,
  .work-card--2,
  .work-card--3,
  .work-card--4,
  .work-card--5,
  .work-card--6,
  .work-card--7 {
    grid-column: 1;
  }

  .work-card img,
  .work-card--1 img,
  .work-card--2 img,
  .work-card--6 img,
  .work-card--7 img {
    min-height: 360px;
    aspect-ratio: 1 / 1.05;
  }

  .lightbox[open] {
    grid-template: 64px 1fr 70px / 1fr 1fr;
  }

  .lightbox__top,
  .lightbox figure {
    grid-column: 1 / -1;
  }

  .lightbox figure {
    grid-row: 2;
    padding: 14px;
  }

  .lightbox__nav {
    grid-row: 3;
    border-top: 1px solid rgb(255 255 255 / 18%);
  }

  .lightbox__nav--previous {
    border-right: 1px solid rgb(255 255 255 / 18%);
  }

  .lightbox figcaption {
    display: none;
  }

  .story-section__number {
    justify-content: flex-start;
  }

  .story-section__number strong {
    font-size: 30vw;
  }

  .about-image-band {
    height: 66vh;
  }

  .about-image-band img {
    object-position: 62% center;
  }

  .contact-details > div {
    grid-template-columns: 75px 1fr;
  }

  .work-hero__copy,
  .work-hero__media {
    min-height: 540px;
  }

  .work-hero__copy {
    padding-block: 64px 28px;
  }

  .work-hero__inset {
    width: 48%;
    border-width: 6px;
  }

  .services-intro {
    padding-left: 22px;
  }

  .services-intro .button {
    width: 100%;
    justify-content: space-between;
  }

  .team-roster {
    grid-template-columns: 1fr;
  }

  .team-roster article,
  .team-roster article:nth-child(2n) {
    min-height: 205px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 28%);
    padding-inline: 0;
  }

  .team-roster span {
    margin-bottom: 52px;
  }

  .project-path ol {
    grid-template-columns: 1fr;
  }

  .project-path li,
  .project-path li:first-child {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
  }

  .project-path li:last-child {
    border-bottom: 0;
  }

  .project-path li > span {
    margin-bottom: 52px;
  }

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

  .field--full {
    grid-column: 1;
  }

  .form-submit {
    display: grid;
  }

  .form-submit .button {
    justify-content: space-between;
  }

  .footer-callout__grid,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-callout__grid {
    gap: 50px;
  }

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

  .footer-bottom {
    display: grid;
    gap: 15px;
  }
}

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

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

  .js [data-reveal] {
    transform: none;
  }
}
