:root {
  --ink: #0b0b09;
  --paper: #f3f0ea;
  --bone: #e4e1da;
  --stone: #b9b3a7;
  --muted: #66645e;
  --sage: #7f8d75;
  --clay: #ad7655;
  --sky: #a9bdc8;
  --night: #171715;
  --line: rgba(11, 11, 9, 0.16);
  --light-line: rgba(255, 255, 255, 0.2);
  --content: min(1620px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--clay);
  color: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 3vw, 44px);
  color: var(--ink);
  transition: background-color 240ms ease, padding 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  padding-block: 16px;
  background: rgba(243, 240, 234, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.home-page .site-header:not(.is-scrolled) {
  color: #fff;
}

.brand {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(30px, 5.4vw, 78px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.menu-button,
.contact-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-pill {
  justify-self: end;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 8px;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-icon::before {
  top: 12px;
}

.menu-icon::after {
  top: 18px;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-3px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  place-items: center;
  padding: 110px 24px 40px;
  background: rgba(23, 23, 21, 0.96);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

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

.menu-panel__inner {
  width: var(--content);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: clamp(32px, 8vw, 140px);
}

.menu-panel nav {
  display: grid;
}

.menu-panel a {
  width: fit-content;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(54px, 12vw, 176px);
  font-weight: 700;
  line-height: 0.86;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-panel a:hover {
  color: var(--sky);
}

.menu-panel p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--night);
  color: #fff;
  isolation: isolate;
}

.hero__slides,
.hero__slide,
.hero__slide img,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__slides {
  z-index: 0;
}

.hero__slide {
  opacity: 0;
  transition: opacity 900ms ease, transform 900ms ease;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  transform: scale(1.04);
}

.hero__slide.is-active img {
  animation: hero-image-drift 6200ms ease-out both;
}

.hero__shade {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 11, 9, 0.1), rgba(11, 11, 9, 0.28) 34%, rgba(11, 11, 9, 0.9)),
    linear-gradient(90deg, rgba(11, 11, 9, 0.64), rgba(11, 11, 9, 0.18) 56%, rgba(11, 11, 9, 0.42));
}

.hero__content {
  position: relative;
  z-index: 3;
  width: var(--content);
  min-height: 100svh;
  display: grid;
  align-content: end;
  gap: clamp(26px, 3.4vw, 54px);
  margin: 0 auto;
  padding: 142px 0 50px;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(72px, 10vw, 152px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero__lower {
  display: grid;
  grid-template-columns: minmax(260px, 540px) auto;
  align-items: end;
  gap: 28px;
  border-top: 1px solid var(--light-line);
  padding-top: 24px;
}

.hero__lower p {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.35;
}

.hero__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  pointer-events: auto;
}

.hero__count {
  min-width: 58px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
}

.hero__next {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: background-color 180ms ease, transform 180ms ease;
}

.hero__next:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(3px);
}

.hero__next span {
  position: relative;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.hero__next span::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.hero__project-title {
  position: absolute;
  right: clamp(22px, 3vw, 48px);
  bottom: clamp(132px, 10vw, 190px);
  z-index: 4;
  max-width: min(760px, 56vw);
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(58px, 7.2vw, 142px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
  pointer-events: auto;
}

.hero__project-title span {
  display: block;
}

.hero__project-title:hover {
  color: rgba(255, 255, 255, 0.82);
}

.hero__swap {
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero.is-changing .hero__swap {
  opacity: 0;
  transform: translateY(22px);
}

.hero__progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.hero__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.88);
  transform-origin: left;
  animation: hero-progress 6200ms linear both;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 58px;
}

.text-link.light {
  color: #fff;
}

.statement {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(82px, 12vw, 172px) 0;
  text-align: center;
}

.statement .eyebrow,
.section-kicker .eyebrow,
.project-index__heading .eyebrow {
  color: var(--muted);
}

.statement h2 {
  max-width: 1120px;
  margin: 0 auto;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(32px, 5.1vw, 76px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  min-height: 780px;
  background: var(--bone);
}

.split-intro__media {
  min-height: 560px;
}

.split-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-intro__copy {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(58px, 8vw, 120px);
}

.split-intro__copy h2,
.section-kicker h2,
.project-index__heading h2,
.method__intro h2,
.contact h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(46px, 7.6vw, 128px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.split-intro__copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.works {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 168px) 0 clamp(58px, 8vw, 120px);
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(24px, 5vw, 86px);
  margin-bottom: clamp(36px, 6vw, 82px);
}

.section-kicker h2 {
  max-width: 980px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.feature-project {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  background: var(--night);
  color: inherit;
  text-decoration: none;
}

.feature-project.large {
  grid-row: span 2;
  min-height: 820px;
}

.feature-project img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature-project:hover img {
  transform: scale(1.04);
}

.feature-project::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.74));
  content: "";
}

.feature-project__meta {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: clamp(22px, 3vw, 44px);
  color: #fff;
}

.feature-project__meta span,
.method-item span,
.index-row__number {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.feature-project__meta h3,
.index-row h3,
.method-item h3 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(30px, 3.2vw, 54px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-project__meta p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.project-index {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 110px) 0 clamp(90px, 12vw, 180px);
}

.project-index__heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(24px, 5vw, 86px);
  margin-bottom: 28px;
}

.project-index__heading h2 {
  max-width: 920px;
}

.index-list {
  border-bottom: 1px solid var(--line);
}

.index-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(220px, 410px);
  gap: clamp(22px, 4vw, 76px);
  align-items: center;
  min-height: 208px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.index-row p {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
}

.index-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 220ms ease, transform 220ms ease;
}

.index-row:hover img {
  filter: saturate(1.06);
  transform: translateX(-8px);
}

.method {
  background: var(--night);
  color: #fff;
  padding: clamp(86px, 12vw, 172px) 0;
}

.method__intro,
.method-grid {
  width: var(--content);
  margin: 0 auto;
}

.method__intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(24px, 5vw, 86px);
  margin-bottom: clamp(42px, 6vw, 92px);
}

.method__intro .eyebrow,
.contact .eyebrow {
  color: var(--sky);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
}

.method-item {
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 44px);
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.method-item span {
  color: var(--sky);
}

.method-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 8vw, 140px);
  padding: clamp(76px, 11vw, 158px) max(24px, calc((100vw - 1620px) / 2));
  background:
    linear-gradient(90deg, rgba(23, 23, 21, 0.94), rgba(23, 23, 21, 0.78)),
    url("assets/the-driveway-holden-hill/facade.webp") center / cover;
  color: #fff;
}

.contact__copy {
  align-self: end;
  padding-left: 24px;
}

.contact__copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.contact__copy .text-link {
  margin-right: 24px;
  margin-bottom: 14px;
}

.contact-form {
  display: grid;
  gap: 22px;
  align-self: end;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 0;
  background: transparent;
  color: #fff;
  outline: 0;
  padding: 12px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fff;
}

.submit-button {
  justify-self: start;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: var(--content);
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.project-header:not(.is-scrolled) {
  color: var(--ink);
}

.project-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: #fff;
}

.project-hero > img,
.project-hero__shade {
  position: absolute;
  inset: 0;
}

.project-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.01);
}

.project-hero__shade {
  background:
    linear-gradient(180deg, rgba(243, 240, 234, 0.15), rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.04) 62%);
}

.project-hero__content {
  position: relative;
  z-index: 1;
  width: var(--content);
  min-height: 92svh;
  display: grid;
  align-content: end;
  gap: clamp(28px, 4vw, 62px);
  margin: 0 auto;
  padding: 138px 0 48px;
}

.project-hero h1 {
  max-width: 1180px;
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(82px, 14vw, 202px);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-hero--long-title h1 {
  max-width: 1360px;
  font-size: clamp(74px, 10.8vw, 156px);
}

.project-hero h1 span {
  display: block;
}

.project-hero__lower {
  display: grid;
  grid-template-columns: minmax(260px, 620px) 1fr;
  align-items: end;
  gap: 28px;
  border-top: 1px solid var(--light-line);
  padding-top: 24px;
}

.project-hero__lower p {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.35;
}

.project-hero__lower .text-link {
  justify-self: end;
}

.project-meta {
  width: var(--content);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-meta div {
  display: grid;
  gap: 14px;
  min-height: 162px;
  align-content: center;
  padding: clamp(22px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.project-meta span,
.project-gallery figcaption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-meta strong {
  max-width: 320px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(24px, 2.4vw, 42px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.project-intro {
  width: var(--content);
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 86px);
  align-items: end;
  margin: 0 auto;
  padding: clamp(82px, 12vw, 172px) 0;
}

.project-intro .eyebrow,
.project-gallery__heading .eyebrow,
.floorplan-section .eyebrow {
  color: var(--muted);
}

.project-intro h2,
.project-detail-split__copy h2,
.project-gallery__heading h2,
.floorplan-section__copy h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(48px, 7.2vw, 122px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-intro p:not(.eyebrow),
.project-detail-split__copy p,
.floorplan-section__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.project-image-band {
  width: 100%;
  background: var(--night);
}

.project-image-band img {
  width: 100%;
  min-height: 660px;
  max-height: 920px;
  object-fit: cover;
}

.project-detail-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 780px;
  background: var(--bone);
}

.project-detail-split__copy {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(58px, 8vw, 120px);
}

.project-detail-split__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.project-gallery {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(82px, 11vw, 160px) 0;
}

.project-gallery__heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(24px, 5vw, 86px);
  margin-bottom: clamp(36px, 6vw, 82px);
}

.project-gallery__heading h2 {
  max-width: 980px;
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.project-gallery figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.project-gallery figure.wide {
  grid-column: 1 / -1;
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-gallery figure.wide img {
  aspect-ratio: 16 / 9;
}

.floorplan-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
  padding: clamp(78px, 10vw, 146px) max(24px, calc((100vw - 1620px) / 2));
  background: #fff;
}

.floorplan-section__copy {
  display: grid;
  gap: 28px;
  padding-left: 24px;
}

.floorplan-section__image img {
  width: 100%;
  border: 1px solid rgba(11, 11, 9, 0.08);
}

.next-project {
  width: var(--content);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 38px 0 clamp(68px, 8vw, 120px);
  border-top: 1px solid var(--line);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-image-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.11) translate3d(-1.5%, -1.2%, 0);
  }
}

@keyframes hero-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1100px) {
  :root {
    --content: min(1620px, calc(100vw - 36px));
  }

  .split-intro,
  .contact,
  .project-detail-split,
  .floorplan-section {
    grid-template-columns: 1fr;
  }

  .split-intro {
    min-height: auto;
  }

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

  .project-intro,
  .project-gallery__heading {
    grid-template-columns: 1fr;
  }

  .split-intro__media {
    min-height: 460px;
  }

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

  .feature-project.large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 640px;
  }

  .hero__project-title {
    bottom: 148px;
    max-width: 58vw;
    font-size: clamp(50px, 8.8vw, 96px);
  }

  .contact__copy {
    padding-left: 0;
  }
}

@media (max-width: 1400px) and (min-width: 761px) {
  .hero h1 {
    max-width: min(800px, 66vw);
    font-size: clamp(64px, 8vw, 112px);
  }

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

@media (max-width: 760px) {
  :root {
    --content: min(1620px, calc(100vw - 28px));
  }

  .site-header {
    padding: 16px 14px;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .site-header.is-scrolled {
    padding-block: 12px;
  }

  .brand {
    justify-self: center;
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(22px, 7.1vw, 32px);
    text-overflow: clip;
  }

  .menu-button span:last-child {
    display: none;
  }

  .contact-pill {
    display: none;
  }

  .menu-icon {
    width: 34px;
    height: 34px;
  }

  .menu-panel__inner,
  .hero__lower,
  .project-hero__lower,
  .section-kicker,
  .project-index__heading,
  .method__intro {
    grid-template-columns: 1fr;
  }

  .menu-panel a {
    font-size: clamp(58px, 20vw, 96px);
  }

  .hero,
  .hero__content {
    min-height: min(92svh, 820px);
  }

  .hero__content {
    gap: clamp(14px, 3.6svh, 22px);
    padding: 104px 0 calc(24px + env(safe-area-inset-bottom));
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 13vw, 60px);
    line-height: 0.84;
  }

  .hero__project-title {
    display: none;
  }

  .project-hero,
  .project-hero__content {
    min-height: 88svh;
  }

  .project-hero__content {
    padding: 118px 0 34px;
  }

  .project-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 50px);
  }

  .project-hero__lower p {
    max-width: 330px;
  }

  .project-hero__lower .text-link {
    justify-self: start;
  }

  .hero__lower p {
    max-width: 320px;
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.28;
  }

  .hero__actions {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }

  .hero__count {
    min-width: 52px;
    font-size: 19px;
  }

  .hero__next {
    width: 44px;
    height: 44px;
  }

  .hero__lower {
    gap: 16px;
    padding-top: 18px;
  }

  .text-link::after {
    width: 28px;
  }

  .text-link:hover::after {
    width: 42px;
  }

  .statement {
    padding: 66px 0 76px;
  }

  .statement h2 {
    max-width: 330px;
    font-size: clamp(30px, 8.4vw, 40px);
  }

  .project-meta {
    width: 100%;
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .project-meta div {
    min-height: 126px;
    padding-inline: 18px;
  }

  .project-intro,
  .project-gallery,
  .next-project {
    width: var(--content);
  }

  .project-intro {
    padding: 62px 0 76px;
  }

  .project-intro h2,
  .project-detail-split__copy h2,
  .project-gallery__heading h2,
  .floorplan-section__copy h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .project-image-band img {
    min-height: 460px;
  }

  .project-detail-split__copy,
  .floorplan-section__copy {
    padding: 46px 18px 58px;
  }

  .project-detail-split__media img {
    min-height: 430px;
  }

  .project-gallery {
    padding: 66px 0;
  }

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

  .project-gallery figure.wide {
    grid-column: auto;
  }

  .project-gallery figure.wide img,
  .project-gallery img {
    aspect-ratio: 4 / 3;
  }

  .floorplan-section {
    padding-inline: 18px;
  }

  .next-project {
    display: grid;
  }

  .split-intro__copy {
    padding: 46px 18px 58px;
  }

  .split-intro__media {
    min-height: 360px;
  }

  .works {
    padding-top: 68px;
  }

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

  .feature-project,
  .feature-project.large {
    min-height: 470px;
  }

  .index-row {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
  }

  .index-row img {
    transform: none;
  }

  .index-row:hover img {
    transform: none;
  }

  .method-item {
    min-height: 0;
  }

  .contact {
    padding-inline: 18px;
  }

  .site-footer {
    display: grid;
  }
}

@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;
  }
}
