:root {
  --forest: #173b32;
  --forest-deep: #102b25;
  --ink: #202421;
  --mineral: #f3f1e9;
  --paper: #fbfaf6;
  --stone: #d7d4ca;
  --moss: #8c9f86;
  --sun: #c79a69;
  --white: #fffefa;
  --page-progress: 0;
  --max-width: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --focus-dark: #173b32;
  --focus-light: #fffefa;
  color-scheme: light;
  font-family: "Geologica", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}

.js:not(.is-ready):not(.loader-timeout) body {
  overflow: hidden;
}

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

::-webkit-scrollbar {
  width: 0.75rem;
}

::-webkit-scrollbar-track {
  background: var(--mineral);
}

::-webkit-scrollbar-thumb {
  border: 0.2rem solid var(--mineral);
  border-radius: 999px;
  background: var(--forest);
}

a {
  color: inherit;
  text-underline-offset: 0.3em;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

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

.hero :focus-visible,
.practice-section :focus-visible,
.contact-section :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--focus-light);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--forest-deep);
  font-weight: 650;
}

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

.page-loader {
  display: none;
}

.js .page-loader {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  padding: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 1fr auto;
  gap: 2rem;
  align-items: end;
  background: var(--forest-deep);
  color: var(--white);
  clip-path: inset(0);
  transition: clip-path 620ms cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 620ms;
}

.is-ready .page-loader,
.loader-timeout .page-loader {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

.loader-wordmark {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  overflow: hidden;
}

.loader-wordmark strong,
.loader-wordmark span {
  display: block;
  transform: translateY(115%);
  animation: loader-copy-in 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-wordmark strong {
  font-size: clamp(2.2rem, 6vw, 6rem);
  font-variation-settings: "wdth" 78, "opsz" 64;
  font-weight: 480;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.loader-wordmark span {
  margin-top: 0.8rem;
  color: #c9d3ce;
  font-size: 0.74rem;
  font-weight: 560;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation-delay: 80ms;
}

.loader-track {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 254, 250, 0.22);
}

.loader-track span {
  position: absolute;
  inset: 0;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  animation: loader-line-in 780ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
}

.loader-count {
  grid-column: 2;
  grid-row: 2;
  color: #c9d3ce;
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

@keyframes loader-copy-in {
  to { transform: translateY(0); }
}

@keyframes loader-line-in {
  to { transform: scaleX(1); }
}

.preview-ribbon {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.35rem var(--gutter);
  background: var(--sun);
  color: #21170e;
  font-size: 0.74rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) auto;
  align-items: center;
  min-height: 5.5rem;
  padding: 1rem var(--gutter);
  border-bottom: 1px solid rgba(32, 36, 33, 0.18);
  background: rgba(251, 250, 246, 0.94);
  transition: background-color 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease-out, color 320ms ease-out;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--forest-deep);
  color: var(--white);
}

.site-header.is-scrolled .wordmark small {
  color: #c9d3ce;
}

.site-header.is-scrolled .site-nav a:not(.nav-contact)::after {
  background: var(--white);
}

.site-header.is-scrolled .nav-contact {
  background: var(--white);
  color: var(--forest-deep);
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  text-decoration: none;
}

.wordmark span {
  font-size: 1rem;
  font-weight: 660;
  letter-spacing: -0.02em;
}

.wordmark small {
  color: #4d554f;
  font-size: 0.7rem;
  font-weight: 440;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.84rem;
  font-weight: 520;
}

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

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

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.nav-contact {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
}

.nav-contact:hover {
  background: var(--forest-deep);
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  min-height: min(820px, calc(100vh - 7.5rem));
  grid-template-columns: minmax(21rem, 0.83fr) minmax(0, 1.6fr);
  background: var(--forest);
  color: var(--white);
}

.hero-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 6rem) var(--gutter);
}

.place-line,
.contact-place {
  margin: 1.5rem 0 0;
  color: #d6e0d9;
  font-size: 0.76rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 4.8vw, 5rem);
  font-variation-settings: "wdth" 82, "opsz" 65;
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-intro {
  max-width: 34rem;
  margin: 2.4rem 0 0;
  color: #d8e0dc;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.contact-actions {
  justify-content: center;
}

.primary-action,
.contact-action,
.secondary-action {
  display: inline-flex;
  width: fit-content;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.95rem 1.1rem 0.95rem 1.25rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out;
}

.primary-action,
.contact-action {
  background: var(--white);
  color: var(--forest-deep);
}

.secondary-action {
  border: 1px solid rgba(255, 254, 250, 0.6);
  color: var(--white);
}

.primary-action svg,
.contact-action svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.primary-action:hover,
.contact-action:hover {
  background: var(--sun);
  color: #1f170f;
}

.secondary-action:hover {
  border-color: var(--white);
  background: rgba(255, 254, 250, 0.1);
}

.channel-note {
  max-width: 30rem;
  margin: 0.8rem 0 0;
  color: #bfcac4;
  font-size: 0.74rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 38rem;
  margin: 0;
  overflow: hidden;
  background: #65867b;
}

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

.hero-visual img {
  height: 100%;
  filter: saturate(0.76) contrast(0.98);
  transform: scale(1.001);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 600ms ease-out;
}

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

.hero-visual figcaption,
.project-image figcaption {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  font-size: 0.7rem;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.7);
}

.light-path {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.light-path::before {
  position: absolute;
  top: 8%;
  right: -18vw;
  width: min(68vw, 62rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 254, 250, 0.64);
  border-radius: 50%;
  content: "";
  transform: rotate(calc(var(--page-progress) * 8deg));
  transform-origin: center;
}

.light-path span {
  position: absolute;
  top: calc(12% + var(--page-progress) * 20%);
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 254, 250, 0.82);
}

.light-path span::after {
  position: absolute;
  right: calc(12% + var(--page-progress) * 50%);
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--sun);
  content: "";
  transform: translateY(-50%);
}

.projects-section {
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
  background: var(--paper);
}

.section-heading {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto clamp(4rem, 7vw, 7rem);
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
}

.section-heading h2,
.practice-intro h2,
.about-section h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-variation-settings: "wdth" 78, "opsz" 60;
  font-weight: 480;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-heading p {
  max-width: 42rem;
  margin: 0;
  color: #56605a;
  font-size: 1.05rem;
}

.project {
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
}

.project-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.62fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: end;
}

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

.project-image img {
  transform: scale(1.001);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 600ms ease-out;
}

.project-image:hover img {
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.035);
}

.js:not(.is-ready) .hero h1,
.js:not(.is-ready) .hero-intro,
.js:not(.is-ready) .place-line,
.js:not(.is-ready) .hero-actions,
.js:not(.is-ready) .channel-note {
  opacity: 0;
}

.js:not(.is-ready) .hero h1 {
  clip-path: inset(0 0 100% 0);
  transform: translateY(2rem);
}

.js:not(.is-ready) .hero-visual {
  clip-path: inset(0 0 0 100%);
}

.js.is-ready .hero h1 {
  animation: hero-title-in 760ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both;
}

.js.is-ready .hero-intro,
.js.is-ready .place-line,
.js.is-ready .hero-actions,
.js.is-ready .channel-note {
  animation: hero-copy-in 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js.is-ready .hero-intro { animation-delay: 180ms; }
.js.is-ready .place-line { animation-delay: 240ms; }
.js.is-ready .hero-actions { animation-delay: 300ms; }
.js.is-ready .channel-note { animation-delay: 360ms; }

.js.is-ready .hero-visual {
  animation: hero-visual-in 900ms cubic-bezier(0.16, 1, 0.3, 1) 100ms both;
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-visual-in {
  from { clip-path: inset(0 0 0 100%); }
  to { clip-path: inset(0); }
}

.motion-enabled [data-motion] {
  transition-duration: 780ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-enabled [data-motion="image"] {
  clip-path: inset(0 0 100% 0);
  transition-property: clip-path;
}

.motion-enabled [data-motion="copy"] {
  opacity: 0;
  transform: translateY(2rem);
  transition-property: opacity, transform;
}

.motion-enabled [data-motion].is-visible {
  opacity: 1;
  clip-path: inset(0);
  transform: translateY(0);
}

.project-image::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(12, 16, 14, 0.5));
  content: "";
  pointer-events: none;
}

.project-image-wide img {
  aspect-ratio: 16 / 10;
}

.project-copy {
  padding-bottom: 0.25rem;
}

.project-meta {
  margin: -0.35rem 0 1.2rem;
  color: #68716b;
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project h3 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-variation-settings: "wdth" 82, "opsz" 50;
  font-weight: 490;
  letter-spacing: -0.035em;
  line-height: 1;
}

.project-copy > p:not(.project-meta, .project-status) {
  max-width: 42rem;
  margin: 0;
  color: #4b544f;
  font-size: 1rem;
}

.project-status {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  color: #49564e;
  font-size: 0.78rem;
}

.project-status span {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  margin-top: 0.32rem;
  border: 1px solid var(--forest);
  border-radius: 50%;
}

.project-pair {
  display: grid;
  max-width: var(--max-width);
  margin: clamp(6rem, 11vw, 11rem) auto 0;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
}

.project-tall .project-image img {
  aspect-ratio: 3 / 4;
}

.project-offset {
  margin-top: clamp(5rem, 12vw, 12rem);
}

.project-offset .project-image img {
  aspect-ratio: 4 / 3;
}

.project-pair .project-copy {
  padding-top: 2rem;
}

.project-pair .project h3 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.practice-section {
  display: grid;
  padding: clamp(6rem, 11vw, 10rem) var(--gutter);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(4rem, 9vw, 10rem);
  background: var(--forest-deep);
  color: var(--white);
}

.practice-intro {
  max-width: 40rem;
}

.practice-intro p {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: #becbc5;
  font-size: 1.05rem;
}

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

.practice-list article {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.practice-list h3,
.practice-list p {
  margin: 0;
}

.practice-list h3 {
  font-size: 1.25rem;
  font-weight: 560;
}

.practice-list p {
  color: #c9d3ce;
}

.approach-section {
  position: relative;
  display: grid;
  min-height: 44rem;
  padding: clamp(6rem, 12vw, 12rem) var(--gutter);
  grid-template-columns: minmax(9rem, 0.4fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 8vw, 9rem);
  overflow: hidden;
  background: var(--mineral);
}

.approach-line {
  position: absolute;
  top: 8%;
  right: -18rem;
  width: min(64vw, 58rem);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 59, 50, 0.3);
  border-radius: 50%;
}

.approach-line::after {
  position: absolute;
  top: 50%;
  left: -45vw;
  width: 110vw;
  height: 1px;
  background: rgba(23, 59, 50, 0.3);
  content: "";
}

.approach-side {
  z-index: 1;
  align-self: end;
  margin: 0;
  color: #5b655f;
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.approach-copy {
  z-index: 1;
  max-width: 65rem;
  align-self: center;
}

.approach-copy h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-variation-settings: "wdth" 80, "opsz" 68;
  font-weight: 470;
  letter-spacing: -0.038em;
  line-height: 0.98;
  text-wrap: balance;
}

.approach-copy p {
  max-width: 44rem;
  margin: 2.5rem 0 0;
  color: #4d5751;
  font-size: 1.08rem;
}

.about-section {
  display: grid;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--paper);
}

.about-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.about-copy {
  max-width: 43rem;
  padding-top: 0.4rem;
}

.about-copy p {
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 1.75rem);
  line-height: 1.45;
}

.contact-section {
  display: flex;
  min-height: 40rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 12vw, 11rem) var(--gutter);
  background: var(--forest);
  color: var(--white);
  text-align: center;
}

.contact-place {
  margin-top: 1.75rem;
}

.contact-section h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6rem);
  font-variation-settings: "wdth" 80, "opsz" 68;
  font-weight: 480;
  letter-spacing: -0.038em;
  line-height: 0.98;
  text-wrap: balance;
}

.site-footer {
  display: grid;
  padding: 2.5rem var(--gutter);
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 2rem;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--forest-deep);
  color: #c9d3ce;
  font-size: 0.78rem;
}

.site-footer > div:first-child {
  display: flex;
  flex-direction: column;
}

.site-footer strong {
  color: var(--white);
  font-size: 0.94rem;
}

.site-footer span {
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 38rem;
  margin: 0;
}

.site-footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  text-underline-offset: 0.25em;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: minmax(19rem, 0.9fr) minmax(0, 1.1fr);
  }

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

  .project-featured {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

  .practice-intro {
    max-width: 56rem;
  }
}

@media (min-width: 761px) {
  .hero-copy {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

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

  .hero-intro,
  .hero-actions {
    margin-top: 1.5rem;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 6rem;
  }

  .preview-ribbon {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .site-header {
    position: sticky;
    top: 0;
    min-height: 4.8rem;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 0.7rem;
    padding: 0.55rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 0.78rem;
  }

  .menu-lines,
  .menu-lines::before {
    display: block;
    width: 1.25rem;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease-out;
  }

  .menu-lines::before {
    transform: translateY(-0.35rem);
  }

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

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem var(--gutter) 1.25rem;
    border-bottom: 1px solid rgba(32, 36, 33, 0.18);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
  }

  .nav-contact {
    margin-top: 0.45rem;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    text-align: center;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 36rem;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.1rem, 14vw, 4.9rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-visual {
    height: 31rem;
    min-height: 0;
  }

  .hero-visual img {
    object-position: 59% center;
  }

  .hero-visual figcaption {
    flex-direction: column;
    gap: 0.1rem;
  }

  .section-heading,
  .project-featured,
  .project-pair,
  .about-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 2rem;
  }

  .section-heading h2,
  .practice-intro h2,
  .about-section h2 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  .project-featured {
    gap: 2.2rem;
  }

  .project-pair {
    gap: 6rem;
  }

  .project-offset {
    margin-top: 0;
  }

  .project h3,
  .project-pair .project h3 {
    font-size: clamp(2.25rem, 10vw, 3.6rem);
  }

  .project-image figcaption {
    font-size: 0.65rem;
  }

  .practice-list article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .approach-section {
    min-height: 44rem;
    grid-template-columns: 1fr;
  }

  .approach-side {
    display: none;
  }

  .approach-copy h2,
  .contact-section h2 {
    font-size: clamp(3rem, 13vw, 4.9rem);
  }

  .approach-line {
    top: 28%;
    right: -19rem;
    width: 38rem;
  }

  .about-section {
    gap: 2.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 430px) {
  .preview-ribbon {
    font-size: 0.66rem;
  }

  .wordmark small {
    max-width: 12rem;
    letter-spacing: 0.05em;
  }

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero-actions,
  .contact-actions,
  .primary-action,
  .contact-action,
  .secondary-action {
    width: 100%;
  }

  .hero-visual {
    height: 27rem;
    min-height: 0;
  }

}

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

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

  .light-path::before,
  .light-path span {
    transform: none;
  }

  .page-loader {
    display: none !important;
  }

  .js:not(.is-ready) .hero h1,
  .js:not(.is-ready) .hero-intro,
  .js:not(.is-ready) .place-line,
  .js:not(.is-ready) .hero-actions,
  .js:not(.is-ready) .channel-note,
  .js:not(.is-ready) .hero-visual,
  .motion-enabled [data-motion] {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
