:root {
  --color-background: #f5f3ef;
  --color-text: #111111;
  --color-border: #d8d2c9;
  --font-brand: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --header-height: 88px;
  --page-padding: clamp(1.25rem, 4vw, 3.5rem);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--color-background);
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
}

img {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.35rem;
}

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}

main {
  background: var(--color-background);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 243, 239, 0.88);
  border-bottom-color: var(--color-border);
  backdrop-filter: blur(12px);
}

.navbar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(max-content, 0.65fr) auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--page-padding);
}

.brand {
  justify-self: start;
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 1.78vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition: opacity 180ms ease;
}

.established {
  margin-left: clamp(0.75rem, 1.5vw, 1.4rem);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2rem);
  font-size: 0.82rem;
  font-weight: 500;
}

.nav-links a,
.mobile-menu a {
  position: relative;
  transition: opacity 180ms ease;
}

.nav-links a::after,
.mobile-menu a::after {
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: var(--color-text);
  content: "";
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a.is-active::after,
.mobile-menu a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand:hover,
.nav-links a:hover,
.mobile-menu a:hover {
  opacity: 0.58;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0.82);
  transition:
    opacity 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.cursor-follower.is-visible {
  opacity: 0.72;
}

.cursor-follower.is-interactive {
  border-color: rgba(17, 17, 17, 0.34);
  background: rgba(17, 17, 17, 0.045);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: clamp(4rem, 7vw, 7rem) var(--page-padding)
    clamp(3rem, 5vw, 5rem);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  column-gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.hero-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
}

.hero-meta p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(5rem, 11.5vw, 12.5rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.75rem, 3.2vw, 2.75rem);
  padding-bottom: clamp(0.25rem, 1vw, 1rem);
}

.hero-copy p {
  max-width: 27rem;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 1.12rem 1.65rem;
  border: 1px solid var(--color-text);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition:
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.primary-button:hover {
  background: var(--color-text);
  color: var(--color-background);
}

.hero-image-placeholder {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(32rem, 56vw, 56rem);
  background: #d8d2c9;
}

.hero-image-placeholder picture,
.studio-image-placeholder picture,
.project-image-placeholder picture,
.detail-image-placeholder picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-attribution {
  position: absolute;
  right: var(--page-padding);
  bottom: clamp(1.15rem, 2vw, 1.75rem);
  margin: 0;
  color: rgba(17, 17, 17, 0.46);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.18em;
  text-align: right;
  text-transform: uppercase;
}

.studio {
  padding: clamp(6rem, 10vw, 10rem) var(--page-padding)
    clamp(2rem, 3vw, 3rem);
}

.section-label {
  margin: 0 0 clamp(1.5rem, 3vw, 2.75rem);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-title {
  max-width: 62rem;
  margin: 0 0 clamp(3rem, 6vw, 6rem);
  font-family: var(--font-brand);
  font-size: clamp(3rem, 6.4vw, 7.25rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.studio-image-placeholder {
  position: relative;
  overflow: hidden;
  width: min(100%, 88rem);
  min-height: clamp(32rem, 55vw, 56rem);
  background: #cec8bd;
}

.studio-copy {
  max-width: 40rem;
  margin: clamp(2.25rem, 4vw, 4rem) 0 0 auto;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.75;
}

.selected-projects {
  padding: clamp(2.25rem, 3.75vw, 3.75rem) var(--page-padding)
    clamp(3.75rem, 6.5vw, 6.5rem);
}

.projects-intro {
  max-width: 42rem;
  margin-bottom: clamp(3.75rem, 6vw, 6rem);
}

.projects-intro .section-label {
  margin-bottom: clamp(0.85rem, 1.5vw, 1.2rem);
}

.projects-intro p:not(.section-label) {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: clamp(5.75rem, 9.5vw, 10.5rem);
}

.project-entry {
  display: grid;
  gap: clamp(2.25rem, 3.5vw, 3.75rem);
  cursor: pointer;
}

.project-image-placeholder {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(42rem, 68vw, 72rem);
  background: #c5beb2;
}

.hero-image-placeholder img,
.studio-image-placeholder img,
.project-image-placeholder img,
.detail-image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0px))
    scale(var(--image-scale, 1.045));
  will-change: transform;
}

.project-image-placeholder img {
  --image-scale: 1.01;
  transition: transform 1.2s ease;
}

.project-entry:hover .project-image-placeholder img {
  --image-scale: 1.03;
}

.project-meta {
  justify-self: start;
  min-width: min(100%, 18rem);
}

.project-entry-right .project-meta {
  justify-self: end;
  text-align: right;
}

.project-meta p,
.project-meta h2 {
  margin: 0;
}

.project-meta h2 {
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
  font-size: clamp(1.32rem, 1.85vw, 2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.09em;
}

.project-meta p {
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.7;
}

.architectural-detail {
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-padding)
    clamp(5rem, 9vw, 9rem);
}

.detail-image-placeholder {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(36rem, 60vw, 62rem);
  background: #d1cbc1;
}

.detail-title {
  max-width: 70rem;
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  font-family: var(--font-brand);
  font-size: clamp(3.5rem, 7.2vw, 8.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
}

.philosophy {
  padding: clamp(5rem, 8.5vw, 8.5rem) var(--page-padding)
    clamp(4.25rem, 6.75vw, 6.75rem);
}

.philosophy-title {
  max-width: 68rem;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(3rem, 5.9vw, 6.75rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.philosophy-copy {
  max-width: 42rem;
  margin: clamp(2.5rem, 4vw, 4rem) 0 0 auto;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.75;
}

.design-principles {
  padding: clamp(4.25rem, 6.75vw, 6.75rem) var(--page-padding)
    clamp(4.25rem, 6.75vw, 6.75rem);
}

.design-principles .section-label {
  margin-bottom: clamp(3.25rem, 5.5vw, 5.5rem);
}

.principles-list {
  display: grid;
  gap: clamp(2.5rem, 4.25vw, 4.25rem);
}

.principle-item {
  display: grid;
  grid-template-columns: minmax(8rem, 0.42fr) minmax(18rem, 0.58fr);
  column-gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.principle-number {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(5rem, 11vw, 12rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
}

.principle-item h2,
.principle-item p {
  margin: 0;
}

.principle-item h2 {
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}

.principle-item div p {
  max-width: 38rem;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}

.process {
  padding: clamp(4rem, 6.25vw, 6.25rem) var(--page-padding)
    clamp(4.75rem, 7.5vw, 7.5rem);
}

.process .section-label {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(2.25rem, 5vw, 5.5rem);
  align-items: start;
}

.process-stage h2,
.process-stage p {
  margin: 0;
}

.process-stage h2 {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 600;
  line-height: 1;
}

.process-stage h2 span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.process-stage p {
  max-width: 20rem;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.75;
}

.services {
  padding: clamp(5rem, 8vw, 8rem) var(--page-padding)
    clamp(6rem, 10vw, 10rem);
}

.services .section-label {
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(3rem, 8vw, 8rem);
  row-gap: clamp(3.5rem, 6vw, 5.5rem);
}

.service-item {
  padding-top: clamp(1.5rem, 2.5vw, 2.25rem);
  border-top: 1px solid var(--color-border);
  transition: border-color 700ms ease;
}

.service-item h2,
.service-item p {
  margin: 0;
}

.service-item h2 {
  margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
  font-size: clamp(1.5rem, 2.2vw, 2.45rem);
  font-weight: 500;
  line-height: 1.05;
  transition: transform 700ms ease;
}

.service-item p {
  max-width: 32rem;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.75;
  transition: opacity 700ms ease;
}

.service-item:hover {
  border-color: rgba(17, 17, 17, 0.42);
}

.service-item:hover h2 {
  transform: translateX(4px);
}

.service-item:hover p {
  opacity: 0.72;
}

.recognition {
  padding: clamp(3.25rem, 5vw, 5.5rem) var(--page-padding)
    clamp(3.25rem, 5vw, 5.5rem);
  text-align: center;
}

.recognition .section-label {
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.recognition-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.75rem, 4vw, 4rem);
}

.recognition-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 1.1vw, 1rem);
}

.recognition-item + .recognition-item::before {
  position: absolute;
  top: 8%;
  bottom: 10%;
  left: calc(clamp(0.875rem, 2vw, 2rem) * -1);
  width: 1px;
  background: rgba(17, 17, 17, 0.12);
  content: "";
}

.recognition-item p {
  position: static;
  margin: 0;
  transform: none;
}

.recognition-number {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(4.5rem, 8.5vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.recognition-item p:not(.recognition-number) {
  display: block;
  max-width: 16rem;
  font-size: clamp(0.68rem, 0.78vw, 0.78rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-cta {
  padding: clamp(6.75rem, 11vw, 11rem) var(--page-padding)
    clamp(6.75rem, 11vw, 11rem);
}

.contact-title {
  max-width: 72rem;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(4.4rem, 8.8vw, 10rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  overflow: visible;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(2.5rem, 4vw, 3.75rem);
  max-width: 42rem;
  margin: clamp(3.25rem, 5.75vw, 5.75rem) 0 0 auto;
}

.contact-content p {
  margin: 0;
  font-size: clamp(1.08rem, 1.32vw, 1.26rem);
  line-height: 1.8;
}

.contact-content .primary-button {
  min-height: 3.65rem;
  padding: 1.26rem 1.9rem;
}

.site-footer {
  padding: clamp(3rem, 5vw, 5rem) var(--page-padding)
    clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-body);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto minmax(14rem, 0.65fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.footer-brand {
  width: fit-content;
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition: opacity 180ms ease;
}

.footer-nav {
  display: flex;
  gap: clamp(1.1rem, 2vw, 2rem);
  font-size: 0.82rem;
  font-weight: 500;
}

.footer-nav a,
.footer-contact a {
  transition: opacity 180ms ease;
}

.footer-nav a:hover,
.footer-brand:hover,
.footer-contact a:hover {
  opacity: 0.58;
}

.footer-contact {
  justify-self: end;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: right;
}

.footer-contact p {
  margin: 0;
}

.footer-copyright {
  margin: clamp(4rem, 7vw, 7rem) 0 0;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  main,
  section,
  .site-footer {
    max-width: 100%;
  }

  .hero-title,
  .studio-title,
  .detail-title,
  .philosophy-title,
  .contact-title {
    max-width: 100%;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
  }

  .established,
  .nav-links {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 30;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 22px;
    height: 1px;
    background: var(--color-text);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-toggle.is-open span:first-child {
    transform: rotate(42deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: rotate(-42deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.35rem;
    padding: calc(var(--header-height) + 2rem) var(--page-padding) 3rem;
    background: var(--color-background);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

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

  .mobile-menu a {
    width: fit-content;
    font-size: clamp(3rem, 14vw, 5.5rem);
    font-weight: 500;
    line-height: 0.94;
  }

  .mobile-menu a::after {
    bottom: -0.6rem;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(3rem, 11vw, 5rem);
  }

  .hero-content {
    display: block;
    margin-bottom: clamp(2rem, 8vw, 3rem);
  }

  .hero-meta {
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(2.95rem, 13.4vw, 5.75rem);
    line-height: 0.94;
  }

  .hero-copy {
    gap: 1.75rem;
    margin-top: 2rem;
    padding-bottom: 0;
  }

  .hero-copy p {
    max-width: 31rem;
  }

  .hero-image-placeholder {
    min-height: clamp(30rem, 118vw, 44rem);
  }

  .hero-attribution {
    bottom: 1.15rem;
    max-width: calc(100% - (var(--page-padding) * 2));
    font-size: 0.63rem;
    line-height: 1.55;
    letter-spacing: 0.16em;
  }

  .studio {
    padding-top: clamp(4.75rem, 15vw, 6.75rem);
    padding-bottom: clamp(2rem, 7vw, 3rem);
  }

  .section-label {
    margin-bottom: 1.35rem;
  }

  .studio-title {
    margin-bottom: clamp(2.25rem, 9vw, 3.75rem);
    font-size: clamp(2.75rem, 12.5vw, 4.6rem);
    line-height: 0.96;
  }

  .studio-image-placeholder {
    min-height: clamp(24rem, 112vw, 40rem);
  }

  .studio-copy {
    margin-top: clamp(1.75rem, 8vw, 2.75rem);
    font-size: 1rem;
  }

  .selected-projects {
    padding-top: clamp(1.75rem, 6vw, 2.5rem);
    padding-bottom: clamp(3.25rem, 11vw, 4.75rem);
  }

  .projects-intro {
    margin-bottom: clamp(2.75rem, 9vw, 4rem);
  }

  .projects-intro .section-label {
    margin-bottom: 0.75rem;
  }

  .project-list {
    gap: clamp(4.25rem, 15vw, 5.75rem);
  }

  .project-image-placeholder {
    min-height: clamp(30rem, 128vw, 48rem);
  }

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

  .architectural-detail {
    padding-top: clamp(3.75rem, 13vw, 5.5rem);
    padding-bottom: clamp(4rem, 14vw, 6rem);
  }

  .detail-image-placeholder {
    min-height: clamp(28rem, 112vw, 42rem);
  }

  .detail-title {
    margin-top: clamp(4rem, 17vw, 6.75rem);
    font-size: clamp(3rem, 13.5vw, 5.25rem);
    line-height: 1;
  }

  .philosophy {
    padding-top: clamp(3.75rem, 12vw, 5.25rem);
    padding-bottom: clamp(3.5rem, 11vw, 4.75rem);
  }

  .philosophy-title {
    font-size: clamp(2.45rem, 10.4vw, 4rem);
    line-height: 0.98;
  }

  .philosophy-copy {
    margin-top: clamp(2rem, 7vw, 2.75rem);
    font-size: 1rem;
  }

  .design-principles {
    padding-top: clamp(3.5rem, 11vw, 4.75rem);
    padding-bottom: clamp(3.5rem, 11vw, 4.75rem);
  }

  .design-principles .section-label {
    margin-bottom: clamp(2.5rem, 9vw, 3.75rem);
  }

  .principles-list {
    gap: clamp(2.25rem, 8vw, 3rem);
  }

  .principle-item {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 5vw, 1.75rem);
  }

  .principle-number {
    font-size: clamp(4.5rem, 23vw, 7rem);
    line-height: 0.88;
  }

  .principle-item h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .principle-item div p {
    font-size: 1rem;
  }

  .process {
    padding-top: clamp(3.25rem, 10vw, 4.5rem);
    padding-bottom: clamp(3.75rem, 12vw, 5.25rem);
  }

  .process .section-label {
    margin-bottom: clamp(2.25rem, 7vw, 3rem);
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 7vw, 2.75rem);
  }

  .process-stage h2 {
    margin-bottom: 1.05rem;
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }

  .process-stage p {
    max-width: 28rem;
    font-size: 1rem;
  }

  .services {
    padding-top: clamp(4rem, 13vw, 5.5rem);
    padding-bottom: clamp(2.5rem, 9vw, 4rem);
  }

  .services .section-label {
    margin-bottom: clamp(3rem, 11vw, 4.5rem);
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 9vw, 3.75rem);
  }

  .service-item {
    padding-top: 1.35rem;
  }

  .service-item h2 {
    margin-bottom: 0.9rem;
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }

  .service-item p {
    font-size: 1rem;
  }

  .recognition {
    padding-top: clamp(2.75rem, 9vw, 4rem);
    padding-bottom: clamp(2rem, 7vw, 3rem);
  }

  .recognition .section-label {
    margin-bottom: clamp(1.5rem, 5vw, 2rem);
  }

  .recognition-list {
    grid-template-columns: 1fr;
    gap: clamp(1.15rem, 4vw, 1.75rem);
  }

  .recognition-item {
    gap: 0.35rem;
  }

  .recognition-item + .recognition-item::before {
    content: none;
  }

  .recognition-number {
    font-size: clamp(4.25rem, 18vw, 6.5rem);
    line-height: 0.92;
  }

  .recognition-item p:not(.recognition-number) {
    max-width: 18rem;
    font-size: 0.72rem;
  }

  .contact-cta {
    padding-top: clamp(3rem, 10vw, 5rem);
    padding-bottom: clamp(5rem, 16vw, 7.25rem);
  }

  .contact-title {
    font-size: clamp(3.5rem, 16vw, 6.2rem);
    line-height: 1.02;
  }

  .contact-content {
    gap: 2rem;
    margin-top: clamp(2.5rem, 9vw, 3.5rem);
  }

  .contact-content p {
    font-size: 1.04rem;
    line-height: 1.75;
  }

  .contact-content .primary-button {
    min-height: 3.5rem;
    padding: 1.15rem 1.55rem;
  }

  .site-footer {
    padding-top: clamp(2.5rem, 10vw, 4rem);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 9vw, 3rem);
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.9rem;
  }

  .footer-contact {
    justify-self: start;
    text-align: left;
  }

  .footer-copyright {
    margin-top: clamp(3rem, 12vw, 4.5rem);
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .hero-content {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .hero-copy {
    max-width: 34rem;
    padding-bottom: 0;
  }

  .hero-title {
    font-size: clamp(6.5rem, 14vw, 9rem);
  }

  .studio-title {
    max-width: 52rem;
    font-size: clamp(4rem, 7.5vw, 5.9rem);
  }

  .studio-image-placeholder {
    width: min(100%, 72rem);
  }

  .studio-copy {
    margin-left: 0;
  }

  .project-image-placeholder {
    min-height: clamp(38rem, 72vw, 58rem);
  }

  .detail-title {
    font-size: clamp(4.75rem, 9vw, 6.75rem);
  }

  .philosophy-title {
    max-width: 58rem;
    font-size: clamp(3.45rem, 6.8vw, 5.2rem);
  }

  .philosophy-copy {
    margin-left: 0;
  }

  .principle-item {
    grid-template-columns: minmax(8rem, 0.35fr) minmax(18rem, 0.65fr);
  }

  .principle-number {
    font-size: clamp(6rem, 13vw, 9rem);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(2.25rem, 4vw, 3.25rem);
  }

  .services-list {
    column-gap: clamp(2.5rem, 6vw, 5rem);
  }

  .recognition-number {
    font-size: clamp(5rem, 9vw, 7rem);
  }

  .contact-title {
    font-size: clamp(5.5rem, 10.5vw, 7.75rem);
  }

  .contact-content {
    margin-left: 0;
  }

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

  .footer-nav {
    justify-self: end;
  }

  .footer-contact {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: clamp(2.5rem, 8vw, 4rem);
    padding-bottom: clamp(2rem, 7vw, 3rem);
  }

  .hero-content {
    margin-bottom: clamp(1.5rem, 6vw, 2.25rem);
  }

  .hero-copy {
    margin-top: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-image-placeholder,
  .studio-image-placeholder,
  .project-image-placeholder,
  .detail-image-placeholder {
    min-height: 0;
  }

  .hero-image-placeholder {
    aspect-ratio: 4 / 5;
  }

  .studio-image-placeholder {
    aspect-ratio: 4 / 5;
  }

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

  .detail-image-placeholder {
    aspect-ratio: 4 / 5;
  }

  .hero-attribution {
    bottom: 1rem;
  }

  .studio,
  .selected-projects,
  .architectural-detail,
  .philosophy,
  .design-principles,
  .process,
  .services,
  .recognition,
  .contact-cta {
    min-height: auto;
  }
}

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

  .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-image-placeholder img,
  .studio-image-placeholder img,
  .project-image-placeholder img,
  .detail-image-placeholder img,
  .project-entry:hover .project-image-placeholder img {
    --image-scale: 1;
    --parallax-y: 0px;
    transform: none;
    transition: none;
  }

  .service-item,
  .service-item h2,
  .service-item p,
  .primary-button,
  .brand,
  .nav-links a,
  .mobile-menu,
  .mobile-menu a,
  .footer-brand,
  .footer-nav a,
  .footer-contact a {
    transition: none;
  }

  .service-item:hover h2 {
    transform: none;
  }

  .cursor-follower {
    display: none;
  }
}
