:root {
  --ink: #17201d;
  --forest: #18352f;
  --forest-deep: #102722;
  --paper: #f4f0e8;
  --paper-soft: #faf8f3;
  --clay: #b86649;
  --line: rgba(23, 32, 29, 0.16);
  --muted: #676c68;
  --white: #fff;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --container: min(1240px, calc(100% - 80px));
  --shadow: 0 28px 80px rgba(18, 34, 29, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.header-light {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(244, 240, 232, 0.96);
  box-shadow: 0 10px 36px rgba(18, 34, 29, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: -0.08em;
}

.brand-name {
  display: grid;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.brand-name small {
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  padding: 32px 0 27px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.header-contact::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 5px rgba(184, 102, 73, 0.16);
  content: "";
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  color: var(--white);
  background: var(--forest-deep);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 27, 22, 0.9) 0%, rgba(10, 27, 22, 0.48) 55%, rgba(10, 27, 22, 0.1) 100%);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 820px) 1fr;
  gap: 80px;
  align-items: end;
  padding: 188px 0 76px;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(58px, 7.2vw, 110px);
}

.hero h1 em {
  color: #d9b8a7;
  font-weight: 400;
}

.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
}

.hero-aside {
  max-width: 280px;
  justify-self: end;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-aside strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  color: var(--white);
  background: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: #a95438;
  transform: translateY(-2px);
}

.button-outline {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

.button-outline:hover {
  color: var(--forest);
  background: var(--white);
}

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

.hero-index {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-index-inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  padding: 124px 0;
}

.section-compact {
  padding: 84px 0;
}

.section-dark {
  color: var(--white);
  background: var(--forest);
}

.section-paper {
  background: var(--paper-soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-title {
  max-width: 850px;
  font-size: clamp(44px, 6vw, 82px);
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.68);
}

.project-feature {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  min-height: 690px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-feature-media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.project-feature-media img,
.project-card img,
.mosaic-item img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.project-feature:hover img,
.project-card:hover img,
.mosaic-item:hover img {
  transform: scale(1.035);
}

.project-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(38px, 5vw, 72px);
}

.project-number {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 22px;
}

.project-feature h3,
.project-card h3,
.service-card h3,
.team-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 28px;
}

.project-card {
  min-width: 0;
}

.project-card figure {
  aspect-ratio: 4 / 3;
  margin: 0 0 22px;
  overflow: hidden;
  background: #ddd7cc;
}

.project-card:nth-child(3n + 2) figure {
  aspect-ratio: 3 / 4;
}

.project-card h3 {
  font-size: 34px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.principle {
  min-height: 280px;
  padding: 42px 34px 42px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.principle + .principle {
  padding-left: 34px;
}

.principle:last-child {
  border-right: 0;
}

.principle span {
  color: #d9b8a7;
  font-family: var(--serif);
  font-size: 22px;
}

.principle h3 {
  margin: 46px 0 18px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.principle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}

.image-panel {
  min-height: 680px;
  overflow: hidden;
}

.image-panel-team img {
  object-position: center 30%;
}

.prose-large {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.prose-large p {
  margin: 0 0 30px;
}

.facts-list {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.facts-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.facts-list strong {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding: 96px 0;
}

.cta-band h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6.3vw, 88px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.cta-band p {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.page-hero {
  position: relative;
  padding: 190px 0 90px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.page-hero::before {
  position: absolute;
  right: -8vw;
  bottom: -24vw;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(62px, 9vw, 132px);
}

.page-hero .lead {
  max-width: 690px;
  margin: 36px 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.filter-button {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.mosaic-item {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  overflow: hidden;
  border: 0;
  background: #ddd7cc;
  cursor: zoom-in;
}

.mosaic-item.wide {
  grid-column: span 8;
}

.mosaic-item.tall {
  grid-row: span 2;
  min-height: 738px;
}

.mosaic-item[hidden],
.project-card[hidden] {
  display: none;
}

.mosaic-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 70px 22px 20px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(9, 18, 15, 0.72));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mosaic-item:hover .mosaic-caption,
.mosaic-item:focus-visible .mosaic-caption {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 30px;
  color: var(--white);
  background: rgba(8, 17, 14, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  width: 100%;
  height: calc(100vh - 100px);
  object-fit: contain;
}

.lightbox-caption {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.25);
  font-size: 26px;
  cursor: pointer;
}

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

.service-card {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.65fr) minmax(0, 1fr);
  gap: 38px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-card .number {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 22px;
}

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

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-tags span {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  min-height: 310px;
  padding: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

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

.process-step span {
  color: #d9b8a7;
  font-family: var(--serif);
  font-size: 21px;
}

.process-step h3 {
  margin: 76px 0 16px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

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

.team-card {
  display: grid;
  min-height: 430px;
  align-content: space-between;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.team-card .role {
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.team-card h3 {
  font-size: clamp(40px, 4vw, 58px);
}

.contact-links {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.contact-links a {
  width: fit-content;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
}

.contact-list {
  margin: 0;
}

.contact-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-row dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.contact-row a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.map-frame {
  min-height: 660px;
  overflow: hidden;
  background: #d8d3c8;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 660px;
  border: 0;
  filter: grayscale(0.65) sepia(0.1);
}

.site-footer {
  color: var(--white);
  background: #0d211c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  padding: 72px 0 58px;
}

.footer-title {
  max-width: 480px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-nav strong,
.footer-contact strong {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  :root {
    --container: min(100% - 48px, 1240px);
  }

  .header-inner {
    gap: 20px;
  }

  .site-nav {
    position: fixed;
    inset: 86px 0 0;
    display: grid;
    align-content: center;
    justify-items: start;
    padding: 36px 24px;
    color: var(--white);
    background: var(--forest-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-list {
    display: grid;
    gap: 0;
    width: 100%;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-list a {
    display: block;
    padding: 18px 0;
    font-family: var(--serif);
    font-size: clamp(30px, 7vw, 54px);
    font-weight: 400;
  }

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .header-contact {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 110px;
  }

  .hero-aside {
    max-width: 520px;
    justify-self: start;
  }

  .section-head,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-intro {
    max-width: 680px;
  }

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

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

  .principle,
  .principle + .principle {
    min-height: 0;
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .principle h3 {
    margin-top: 20px;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 560px;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

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

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 32px);
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    inset-block-start: 74px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 17px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(10, 27, 22, 0.35), rgba(10, 27, 22, 0.92) 70%);
  }

  .hero-content {
    padding: 140px 0 100px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-index-inner span:last-child {
    display: none;
  }

  .section,
  .section-compact {
    padding: 78px 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-title {
    font-size: clamp(42px, 13vw, 62px);
  }

  .project-feature-media {
    min-height: 420px;
  }

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

  .project-card:nth-child(3n + 2) figure {
    aspect-ratio: 4 / 3;
  }

  .image-panel {
    min-height: 420px;
  }

  .facts-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 74px 0;
  }

  .page-hero {
    padding: 150px 0 74px;
  }

  .page-hero h1 {
    font-size: clamp(56px, 18vw, 86px);
  }

  .page-hero .lead {
    margin-top: 28px;
    font-size: 16px;
  }

  .mosaic {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mosaic-item,
  .mosaic-item.wide,
  .mosaic-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .mosaic-item.tall {
    min-height: 500px;
  }

  .mosaic-caption {
    opacity: 1;
  }

  .service-card {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .service-card > div:last-child {
    grid-column: 2;
  }

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

  .process-step,
  .process-step:nth-child(2) {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .process-step h3 {
    margin-top: 24px;
  }

  .team-card {
    min-height: 360px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 440px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-main > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
    padding: 20px 0;
  }

  .lightbox {
    padding: 16px;
  }
}

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

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