@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@300;400;500;600&display=swap");

:root {
  --paper: #f2f0e9;
  --ink: #20231f;
  --muted: #666b63;
  --line: rgba(32, 35, 31, 0.2);
  --sage: #697467;
  --stone: #d7d4ca;
  --white: #fbfaf5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-loading,
html.is-loading body {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
}

.site-shell {
  min-height: 100vh;
}

.site-shell:not(.is-ready) .reveal {
  animation-play-state: paused;
}

.preloader {
  background: var(--paper);
  color: var(--ink);
  inset: 0;
  opacity: 1;
  position: fixed;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.85s;
  visibility: visible;
  z-index: 200;
}

.preloader-panel {
  background: var(--paper);
  bottom: 0;
  position: absolute;
  top: 0;
  width: 50.1%;
}

.preloader-panel-left {
  left: 0;
}

.preloader-panel-right {
  right: 0;
}

.preloader-content {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  inset: 0;
  padding: 32px 3vw 28px;
  position: absolute;
  transition: opacity 0.32s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 2;
}

.preloader-meta {
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preloader-brand {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.preloader-logo {
  animation: preloader-letter 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  height: auto;
  max-width: 610px;
  width: min(42vw, 610px);
}

.preloader-progress {
  background: var(--line);
  height: 1px;
  overflow: hidden;
}

.preloader-progress-line {
  background: var(--sage);
  display: block;
  height: 100%;
  transform-origin: left center;
  transition: transform 0.16s linear;
  width: 100%;
}

.preloader-count {
  font-size: 10px;
  letter-spacing: 0.14em;
  padding-top: 13px;
  text-align: right;
}

.preloader.is-leaving {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.preloader.is-leaving .preloader-content {
  opacity: 0;
  transform: translateY(-8px);
}

@keyframes preloader-letter {
  from {
    opacity: 0;
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 92px;
  left: 0;
  padding: 0 3vw;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.4s ease, height 0.4s ease, border-color 0.4s ease;
  z-index: 50;
}

.site-header.is-scrolled {
  backdrop-filter: blur(16px);
  background: rgba(242, 239, 232, 0.9);
  border-bottom: 1px solid var(--line);
  height: 72px;
}

.scroll-progress {
  background: var(--sage);
  bottom: -1px;
  height: 2px;
  left: 0;
  position: absolute;
  transform-origin: left center;
  width: 100%;
}

.brand {
  align-items: center;
  display: inline-flex;
  justify-self: start;
}

.brand img {
  height: auto;
  width: clamp(92px, 7.8vw, 122px);
}

.nav {
  display: flex;
  gap: 34px;
  justify-content: center;
}

.nav a,
.header-cta {
  font-size: 12px;
  position: relative;
}

.nav a::after,
.header-cta::after {
  background: currentColor;
  bottom: -6px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
  width: 100%;
}

.nav a:hover::after,
.header-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-cta span {
  margin-left: 8px;
}

.menu-toggle {
  background: none;
  border: 0;
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 5vw 58px 6.2vw;
}

.eyebrow,
.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(64px, 6.7vw, 110px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin: 9vh -9vw 0 0;
  position: relative;
  z-index: 2;
}

.hero h1 span {
  color: var(--sage);
  display: block;
  font-style: italic;
  margin-left: 0.55em;
  white-space: nowrap;
}

.hero-bottom {
  align-items: flex-end;
  display: flex;
  gap: 3vw;
  justify-content: space-between;
  margin-top: auto;
}

.hero-bottom > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
}

.circle-link {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  font-size: 9px;
  height: 94px;
  justify-content: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
  width: 94px;
}

.circle-link b {
  font-size: 16px;
  font-weight: 300;
  margin-top: 8px;
}

.circle-link:hover {
  background: var(--ink);
  color: var(--white);
  transform: rotate(-5deg);
}

.hero-visual {
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(90deg, rgba(20, 20, 16, 0.12), transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.07);
  transition: transform 2s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.hero:hover .hero-visual img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
}

.hero-tag {
  bottom: 28px;
  color: var(--white);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  left: 28px;
  letter-spacing: 0.08em;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  z-index: 2;
}

.hero-side {
  bottom: 25px;
  font-size: 9px;
  left: 18px;
  letter-spacing: 0.15em;
  margin: 0;
  position: absolute;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left top;
}

.reveal {
  animation: reveal 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.reveal-1 {
  animation-delay: 0.1s;
}

.reveal-2 {
  animation-delay: 0.25s;
}

.reveal-3 {
  animation-delay: 0.45s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-pad {
  padding: 130px 6.2vw;
}

.statement {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 5vw;
  grid-template-columns: 1fr 3fr;
}

.statement-lead {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(42px, 5.4vw, 82px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  max-width: 1100px;
}

.statement-lead em {
  color: var(--sage);
  font-weight: 400;
}

.statement-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 55px 0 0 auto;
  max-width: 470px;
}

.moving-line {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 0.18) 2vw,
    rgba(0, 0, 0, 0.72) 6vw,
    #000 10vw,
    #000 calc(100% - 10vw),
    rgba(0, 0, 0, 0.72) calc(100% - 6vw),
    rgba(0, 0, 0, 0.18) calc(100% - 2vw),
    transparent 100%
  );
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 0.18) 2vw,
    rgba(0, 0, 0, 0.72) 6vw,
    #000 10vw,
    #000 calc(100% - 10vw),
    rgba(0, 0, 0, 0.72) calc(100% - 6vw),
    rgba(0, 0, 0, 0.18) calc(100% - 2vw),
    transparent 100%
  );
  overflow: hidden;
  padding: 22px 0;
  white-space: nowrap;
}

.moving-line[data-reveal] {
  filter: blur(2px);
  transform: translateY(14px);
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.15s ease,
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.moving-line[data-reveal].is-visible {
  filter: blur(0);
  transform: translateY(0);
}

.moving-line-track {
  animation: marquee 30s linear infinite;
  display: inline-flex;
  gap: 34px;
  min-width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.moving-line-set {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 34px;
}

.moving-line span {
  font-size: 10px;
  letter-spacing: 0.2em;
}

.moving-line i {
  color: var(--sage);
  font-style: normal;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 17px), 0, 0);
  }
}

.project-feature {
  background: var(--ink);
  color: var(--white);
}

.feature-head,
.feature-title {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.feature-head {
  margin-bottom: 25px;
}

.feature-head p:last-child {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.feature-image {
  display: block;
  height: min(68vw, 780px);
  overflow: hidden;
  position: relative;
}

.feature-image img {
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.07);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.feature-image:hover img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.095);
}

.view-project {
  background: var(--paper);
  bottom: 24px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 18px 22px;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
}

.feature-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px 0 50px;
}

.feature-title h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(48px, 7vw, 102px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0;
}

.feature-title p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.7;
  margin: 6px 0 0;
  max-width: 390px;
}

.project-grid {
  display: grid;
  gap: 7vw 3.5vw;
  grid-template-columns: 1fr 1fr;
  padding-top: 30px;
}

.project-card {
  align-self: start;
  margin-top: 0;
}

.project-card-tall {
  margin-top: 0;
}

.project-card-wide {
  grid-column: 1 / -1;
  margin: 0 14vw;
}

.project-card-image {
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.project-card-wide .project-card-image {
  aspect-ratio: 16 / 7;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.075);
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.project-card a:hover img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.11);
}

.project-meta {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
}

.project-meta h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 0;
}

.project-meta p {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.services {
  background: var(--stone);
}

.services-intro {
  display: grid;
  gap: 5vw;
  grid-template-columns: 1fr 3fr;
  padding-bottom: 100px;
}

.services-intro h2,
.about-copy h2,
.process-head h2,
.contact-lead h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
}

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

.service-list article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 3vw;
  grid-template-columns: 0.35fr 1.5fr 1fr 0.7fr;
  padding: 38px 0;
  transition: padding 0.4s ease;
}

.service-list article:hover {
  padding-left: 18px;
  padding-right: 18px;
}

.service-number,
.service-list article > p,
.service-list article > span {
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
}

.service-number,
.service-list article > span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.service-list article > p {
  color: var(--muted);
}

.service-list article > span {
  justify-self: end;
}

.about {
  display: grid;
  gap: 8vw 7vw;
  grid-template-columns: 0.9fr 1.1fr;
}

.about-image {
  align-self: start;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.about-image img {
  filter: saturate(0.75);
  height: 100%;
  object-fit: cover;
  object-position: 69% center;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.075);
  will-change: transform;
}

.about-image span {
  bottom: 20px;
  color: var(--white);
  font-size: 9px;
  left: 20px;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
}

.about-copy {
  padding-top: 3vw;
}

.about-copy h2 {
  margin: 45px 0 55px;
}

.about-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 22px;
  max-width: 580px;
}

.about-copy > a {
  border-bottom: 1px solid currentColor;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 22px;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.about-principles {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.about-principles article {
  min-height: 270px;
  padding: 34px 3.2vw 38px 0;
}

.about-principles article + article {
  border-left: 1px solid var(--line);
  padding-left: 3.2vw;
}

.about-principles span,
.recognition-year,
.press-mark > span {
  color: var(--sage);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-principles h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(27px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  margin: 72px 0 16px;
}

.about-principles p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 0;
  max-width: 330px;
}

.about-recognition {
  background: var(--white);
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  margin-top: 15px;
  min-height: 620px;
}

.recognition-visual {
  min-height: 620px;
  overflow: hidden;
}

.recognition-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.recognition-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  padding: 5vw 4vw 3.6vw;
}

.recognition-year {
  margin-top: auto;
}

.recognition-copy h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(44px, 4.8vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 18px 0 24px;
}

.recognition-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
  max-width: 440px;
}

.press-mark {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  width: 100%;
}

.press-mark img {
  height: 68px;
  object-fit: contain;
  object-position: right center;
  width: 78px;
}

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

.process-head {
  display: grid;
  gap: 5vw;
  grid-template-columns: 1fr 3fr;
}

.process-head h2 {
  max-width: 990px;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 110px 0 0;
  padding: 0;
}

.process li {
  border-left: 1px solid var(--line);
  min-height: 300px;
  padding: 0 28px;
}

.process li span {
  color: var(--sage);
  font-size: 10px;
}

.process li h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  margin: 115px 0 20px;
}

.process li p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.contact {
  background: var(--sage);
  color: var(--white);
  display: grid;
  gap: 9vw;
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-lead h2 {
  margin: 42px 0 40px;
}

.contact-lead > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.8;
  max-width: 460px;
}

.contact-lead > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  display: inline-block;
  font-size: 12px;
  margin-top: 35px;
  padding-bottom: 6px;
}

.contact form {
  align-self: center;
}

.field-row {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr 1fr;
}

.contact label {
  display: block;
  margin-bottom: 28px;
}

.contact label > span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact input,
.contact select,
.contact textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 0;
  color: var(--white);
  font: inherit;
  font-size: 13px;
  outline: none;
  padding: 12px 0;
  resize: vertical;
  width: 100%;
}

.contact textarea {
  min-height: 110px;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact select option {
  color: var(--ink);
}

.contact button {
  align-items: center;
  background: var(--ink);
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 11px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin-top: 12px;
  padding: 20px 23px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
  width: 100%;
}

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

.contact button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-honeypot {
  height: 1px !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 1px !important;
}

.form-feedback {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-size: 9px;
  line-height: 1.5;
  margin: 12px 0 0;
  min-height: 28px;
}

.form-feedback.is-success {
  color: var(--white);
}

.form-feedback.is-error {
  color: #fff0e8;
}

footer {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 65px 6.2vw 30px;
}

.footer-brand {
  align-self: center;
  display: block;
  justify-self: start;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  height: auto;
  opacity: 0.94;
  width: min(54vw, 650px);
}

.footer-links {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.footer-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 11px;
  padding-bottom: 5px;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  grid-column: 1 / -1;
  letter-spacing: 0.08em;
  margin: 65px 0 0;
  padding-top: 20px;
  text-transform: uppercase;
}

[data-reveal] {
  filter: blur(5px);
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.95s ease,
    filter 0.95s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

[data-image-reveal] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-image-reveal].is-visible {
  clip-path: inset(0 0 0 0);
}

.service-list article:nth-child(2),
.process li:nth-child(2) {
  transition-delay: 0.08s;
}

.service-list article:nth-child(3),
.process li:nth-child(3) {
  transition-delay: 0.16s;
}

.process li:nth-child(4) {
  transition-delay: 0.24s;
}

@media (max-width: 900px) {
  .preloader-content {
    padding: 24px 22px 22px;
  }

  .preloader-brand {
    width: 100%;
  }

  .preloader-logo {
    width: min(74vw, 380px);
  }

  .brand img {
    width: 94px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 72px;
    padding: 0 22px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0 10px 10px;
    z-index: 3;
  }

  .menu-toggle span {
    background: var(--ink);
    height: 1px;
    width: 28px;
  }

  .nav {
    align-items: center;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    gap: 26px;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

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

  .nav a {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 44px;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 62svh;
    padding: 120px 22px 42px;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 90px);
    margin: 8vh 0 60px;
  }

  .hero h1 span {
    margin-left: 0;
    white-space: normal;
  }

  .hero-bottom {
    gap: 20px;
  }

  .circle-link {
    height: 82px;
    width: 82px;
  }

  .hero-visual {
    height: 70svh;
    min-height: 520px;
  }

  .hero-side {
    display: none;
  }

  .section-pad {
    padding: 90px 22px;
  }

  .moving-line {
    padding: 18px 0;
  }

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

  .statement-lead {
    font-size: 46px;
  }

  .statement-copy {
    margin-top: 35px;
  }

  .feature-image {
    height: 65svh;
  }

  .feature-title {
    flex-direction: column;
    gap: 24px;
  }

  .project-grid {
    gap: 65px;
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .project-card,
  .project-card-wide {
    grid-column: auto;
    margin: 0;
  }

  .project-card-image,
  .project-card-wide .project-card-image {
    aspect-ratio: 4 / 5;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .services-intro,
  .process-head {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .service-list article {
    gap: 18px;
    grid-template-columns: 45px 1fr;
  }

  .service-list article > p:not(.service-number),
  .service-list article > span {
    grid-column: 2;
  }

  .service-list article > span {
    justify-self: start;
  }

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

  .about-image {
    aspect-ratio: 4 / 5.2;
  }

  .about-copy {
    padding-top: 15px;
  }

  .about-copy h2 {
    font-size: 52px;
    margin: 35px 0 42px;
  }

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

  .about-principles article {
    min-height: auto;
    padding: 30px 0 34px;
  }

  .about-principles article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .about-principles h3 {
    margin-top: 36px;
  }

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

  .recognition-visual {
    min-height: 0;
  }

  .recognition-visual img {
    aspect-ratio: 1 / 1;
  }

  .recognition-copy {
    min-height: 520px;
    padding: 45px 28px 30px;
  }

  .recognition-year {
    margin-top: 70px;
  }

  .process ol {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .process li {
    border-left: 0;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 20px;
    grid-template-columns: 35px 1fr;
    min-height: auto;
    padding: 28px 0;
  }

  .process li h3 {
    margin: 0;
  }

  .process li p {
    grid-column: 2;
  }

  .contact {
    gap: 80px;
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-brand img {
    max-width: 420px;
    width: min(88vw, 420px);
  }

  .footer-links {
    align-items: flex-start;
    margin-top: 65px;
  }

  .footer-copy {
    margin-top: 50px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  [data-image-reveal] {
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
  }
}
