:root {
  --color-black: #000;
  --color-accent: #f89521;
  --color-light: #f8f8f8;
  --header-height: 86px;
  --container-width: 90%;
  --ease-premium: cubic-bezier(.65, 0, .35, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--color-light);
  color: var(--color-black);
  font-family: Arial, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  appearance: none;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  background: transparent;
  transition:
    background-color 420ms var(--ease-premium),
    box-shadow 420ms var(--ease-premium),
    height 420ms var(--ease-premium);
}

/* Keeps the menu legible over bright hero frames before the solid state kicks in */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 160%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, 0));
  opacity: 1;
  transition: opacity 420ms var(--ease-premium);
}

.site-header.is-scrolled::before,
.site-header.is-nav-open::before {
  opacity: 0;
}

.site-header.is-scrolled,
.site-header.is-nav-open {
  height: 74px;
  background: rgba(0, 0, 0, .94);
  box-shadow: 0 1px 0 rgba(248, 248, 248, .08);
}

.site-header__inner {
  position: relative;
  z-index: 1;
  width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition:
    opacity 350ms var(--ease-premium),
    transform 420ms var(--ease-premium);
}

.site-header__brand:hover {
  opacity: .82;
}

.site-header__brand img {
  display: block;
  width: clamp(184px, 24vw, 282px);
  height: auto;
}

.site-header.is-scrolled .site-header__brand {
  transform: scale(.92);
  transform-origin: left center;
}

.site-header__menu {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: -6px;
}

.site-header__menu span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--color-light);
  transition:
    transform 350ms var(--ease-premium),
    opacity 250ms var(--ease-premium),
    background-color 350ms var(--ease-premium);
}

.site-header__menu span:nth-child(1) {
  transform: translateY(-7px);
}

.site-header__menu span:nth-child(2) {
  transform: translateY(0);
}

.site-header__menu span:nth-child(3) {
  transform: translateY(7px);
}

.site-header__menu:hover span {
  background: var(--color-accent);
}

.site-header.is-nav-open .site-header__menu span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-nav-open .site-header__menu span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .site-header__menu span:nth-child(3) {
  transform: rotate(135deg);
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
}

/* Desktop bar is hidden on small screens - the off-canvas panel takes over */
.site-header__nav,
.site-header__phone {
  display: none;
}

@media (min-width: 992px) {
  .site-header__menu {
    display: none;
  }

  .site-header__nav {
    display: block;
  }

  .site-header__brand img {
    width: clamp(160px, 15vw, 232px);
  }

  .site-header__list {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 34px);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-header__item {
    position: relative;
  }

  .site-header__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: var(--color-light);
    font-family: "Google Sans", Arial, sans-serif;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 400;
    letter-spacing: .09em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 320ms var(--ease-premium);
  }

  .site-header__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 350ms var(--ease-premium);
  }

  .site-header__link:hover,
  .site-header__link.is-active,
  .site-header__item--has-menu:hover > .site-header__link {
    color: var(--color-accent);
  }

  .site-header__link:hover::after,
  .site-header__link.is-active::after,
  .site-header__item--has-menu:hover > .site-header__link::after {
    width: 100%;
  }

  .site-header__caret {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 350ms var(--ease-premium);
  }

  .site-header__item--has-menu:hover .site-header__caret {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .site-header__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 5;
    min-width: 216px;
    padding-top: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, 10px, 0);
    transition:
      opacity 320ms var(--ease-premium),
      transform 380ms var(--ease-premium);
  }

  .site-header__item--has-menu:hover .site-header__dropdown,
  .site-header__item--has-menu:focus-within .site-header__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0);
  }

  .site-header__dropdown ul {
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: rgba(0, 0, 0, .96);
    border-top: 2px solid var(--color-accent);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .38);
  }

  .site-header__dropdown a {
    display: block;
    padding: 9px 20px;
    color: rgba(248, 248, 248, .78);
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: .05em;
    white-space: nowrap;
    transition:
      color 300ms var(--ease-premium),
      padding-left 320ms var(--ease-premium);
  }

  .site-header__dropdown a:hover {
    color: var(--color-accent);
    padding-left: 26px;
  }

  .site-header__phone {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid rgba(248, 248, 248, .32);
    color: var(--color-light);
    font-family: "Google Sans", Arial, sans-serif;
    font-size: clamp(13px, 1vw, 15px);
    letter-spacing: .08em;
    white-space: nowrap;
    transition:
      background-color 350ms var(--ease-premium),
      border-color 350ms var(--ease-premium),
      color 350ms var(--ease-premium);
  }

  .site-header__phone:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-black);
  }
}

/* Tighten the bar on smaller desktops so nothing wraps */
@media (min-width: 992px) and (max-width: 1199px) {
  .site-header__link,
  .site-header__phone {
    letter-spacing: .05em;
  }

  .site-header__phone {
    padding: 8px 14px;
  }
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.site-nav.is-open {
  pointer-events: auto;
}

.site-nav__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: opacity 500ms var(--ease-premium);
}

.site-nav.is-open .site-nav__backdrop {
  opacity: .62;
}

.site-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(48vw, 680px);
  min-width: 500px;
  height: 100%;
  background: var(--color-black);
  color: var(--color-light);
  transform: translateX(100%);
  transition: transform 650ms var(--ease-premium) 50ms;
  overflow: hidden;
}

.site-nav.is-open .site-nav__panel {
  transform: translateX(0);
}

.site-nav__inner {
  position: relative;
  width: 82%;
  height: 100%;
  margin: 0 auto;
  padding: clamp(30px, 6vh, 68px) 0 clamp(28px, 5vh, 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav__logo {
  width: clamp(210px, 22vw, 310px);
  height: auto;
}

.site-nav__close {
  position: relative;
  width: 38px;
  height: 38px;
}

.site-nav__close span {
  position: absolute;
  left: 8px;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--color-light);
  transition: background-color 350ms var(--ease-premium);
}

.site-nav__close span:first-child {
  transform: rotate(45deg);
}

.site-nav__close span:last-child {
  transform: rotate(135deg);
}

.site-nav__close:hover span {
  background: var(--color-accent);
}

.site-nav__links {
  display: grid;
  gap: clamp(20px, 3vh, 36px);
  margin: clamp(68px, 13vh, 130px) 0 auto;
  padding: 0;
  list-style: none;
  width: min(320px, 100%);
}

.site-nav__links a,
.site-nav__project-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  opacity: 1;
  transform: translateX(22px);
  transition:
    color 350ms var(--ease-premium),
    opacity 450ms var(--ease-premium),
    transform 550ms var(--ease-premium);
}

.site-nav.is-open .site-nav__links a,
.site-nav.is-open .site-nav__project-toggle {
  transform: translateX(0);
}

.site-nav__links > li > a::before,
.site-nav__project-row > a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 350ms var(--ease-premium);
}

.site-nav__links a:hover,
.site-nav__links a.is-active,
.site-nav__project-item.is-open .site-nav__project-row > a {
  color: var(--color-accent);
}

.site-nav__links > li > a:hover::before,
.site-nav__links > li > a.is-active::before,
.site-nav__project-row > a:hover::before,
.site-nav__project-row > a.is-active::before {
  width: 24px;
}

.site-nav__links:hover a {
  opacity: .42;
}

.site-nav__links:hover a:hover {
  opacity: 1;
}

.site-nav__project-row {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.site-nav__project-toggle {
  position: relative;
  width: 34px;
  height: 34px;
  color: var(--color-accent);
  transform: translateX(22px);
}

.site-nav__project-toggle span:not(.sr-only) {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 21px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 380ms var(--ease-premium), background-color 350ms var(--ease-premium);
}

.site-nav__project-toggle span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.site-nav__project-item.is-open .site-nav__project-toggle span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0deg);
}

.site-nav__subpanel {
  position: absolute;
  top: clamp(200px, 30vh, 290px);
  right: 0;
  width: min(42%, 250px);
  display: grid;
  gap: 18px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(38px, 0, 0);
  transition:
    opacity 420ms var(--ease-premium),
    transform 520ms var(--ease-premium);
}

.site-nav__project-item.is-open .site-nav__subpanel {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-nav__subpanel a {
  width: max-content;
  max-width: 100%;
  color: rgba(248, 248, 248, .72);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.3;
  letter-spacing: .05em;
}

.site-nav__subpanel a:hover {
  color: var(--color-accent);
}

.site-nav__meta {
  display: grid;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(248, 248, 248, .18);
  font-size: 14px;
  letter-spacing: .05em;
  color: rgba(248, 248, 248, .78);
}

.site-nav__meta a {
  transition: color 350ms var(--ease-premium);
}

.site-nav__meta a:hover {
  color: var(--color-accent);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .18) 34%, rgba(0, 0, 0, .42));
}

.hero__picture {
  display: block;
}

.hero__media {
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0);
  transform: scale(1.045);
  transform-origin: center top;
  transition:
    opacity 900ms var(--ease-premium),
    transform 1200ms var(--ease-premium);
  will-change: transform;
}

.hero.is-loaded .hero__media {
  opacity: 1;
  transform: scale(1);
}

.hero__content {
  position: absolute;
  left: 5%;
  bottom: 11%;
  z-index: 2;
  color: var(--color-light);
  will-change: transform, opacity;
}

.home-page .hero__content {
  width: min(90vw, 780px);
}

.hero__content h1 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero__char {
  display: inline-block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(68%) skewY(2deg);
  transform-origin: left bottom;
  animation: heroLetterReveal 380ms var(--ease-premium) forwards;
  animation-delay: calc(80ms + var(--char-index) * 14ms);
  will-change: transform, opacity;
}

.hero__content p {
  margin: 24px 0 0;
  font-size: clamp(15px, 1.4vw, 22px);
  line-height: 1.65;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(22px);
  animation: heroCopyReveal 900ms var(--ease-premium) forwards 780ms;
}

.hero--about {
  min-height: clamp(430px, 56vw, 720px);
}

.hero__media--about {
  height: clamp(430px, 56vw, 720px);
  min-height: 430px;
  object-position: center center;
}

.hero__content--about {
  bottom: 17%;
}

.hero__content--about h1 {
  font-size: 36px;
  line-height: 46px;
  text-transform: uppercase;
}

.hero__content--about p {
  max-width: 520px;
  margin-top: 34px;
  font-size: 18px;
  line-height: 28px;
}

.about-stats-section {
  background: #fff;
}

.about-stats-section__inner {
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(520px, .58fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.about-stats-section__intro h2 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(54px, 6vw, 88px) clamp(46px, 7vw, 104px);
}

.about-stat strong {
  display: block;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.about-stat p {
  margin: 15px 0 0;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: .08em;
}

.management-section {
  background: #fff;
  overflow: hidden;
}

.management-section__inner {
  width: var(--container-width);
  margin: 0 auto;
}

.management-section__title {
  margin: 0 0 28px;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

/* Full-height background portrait with the copy starting at the halfway line */
.management-profile {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background-color: var(--color-black);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.management-profile + .management-profile {
  margin-top: 0;
}

.management-profile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .18) 44%, rgba(0, 0, 0, .64)),
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .22));
  pointer-events: none;
}

.management-profile__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  display: grid;
  align-content: center;
  justify-content: start;
  gap: 28px;
  color: var(--color-light);
  padding: clamp(60px, 8vh, 120px) 5vw clamp(60px, 8vh, 120px) 50%;
}

.management-profile__copy p {
  width: min(100%, 520px);
  margin: 0;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.6;
  letter-spacing: .08em;
  transition:
    opacity 520ms var(--ease-premium),
    transform 520ms var(--ease-premium);
}

.management-profile:hover .management-profile__copy p {
  transform: translateY(-2px);
}

.why-section {
  background: #fff;
  overflow: hidden;
}

.why-section__inner {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 18vw 23vw 23vw 1fr;
  column-gap: clamp(22px, 2.6vw, 50px);
  row-gap: clamp(30px, 3.2vw, 48px);
  align-items: start;
}

.why-section__heading {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding-left: 5vw;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

.why-section__heading h2 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.why-section__features {
  display: contents;
  padding-top: 2px;
}

.why-feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  padding-right: 0;
}

.why-feature:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

.why-feature:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.why-feature:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
  margin-top: clamp(132px, 10.5vw, 168px);
}

.why-feature:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
  margin-top: clamp(264px, 21vw, 336px);
}

.why-feature__icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  object-fit: contain;
  filter: grayscale(0);
  opacity: .72;
  transition:
    filter 350ms var(--ease-premium),
    opacity 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.why-feature:hover .why-feature__icon {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.why-feature h3 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.why-feature p {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: .08em;
}

.why-section__image {
  margin: 0;
  overflow: hidden;
  background: var(--color-black);
}

.why-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  transform: scale(1.015);
  transition:
    filter 700ms var(--ease-premium),
    transform 1000ms var(--ease-premium);
}

.why-section__image:hover img {
  filter: grayscale(0);
  transform: scale(1.035);
}

.why-section__image--team {
  grid-column: 1 / span 2;
  grid-row: 1;
  width: min(42vw, 620px);
  aspect-ratio: 1.58 / 1;
  margin-top: clamp(160px, 10vw, 190px);
  justify-self: start;
}

.why-section__image--team img {
  object-position: center center;
}

.why-section__image--company {
  grid-column: 4;
  grid-row: 1 / span 2;
  width: min(26vw, 360px);
  aspect-ratio: .78 / 1;
  justify-self: end;
}

.why-section__image--company img {
  object-position: center center;
}

.team-section {
  overflow: hidden;
  background: #fff;
}

.team-section__title {
  width: var(--container-width);
  margin: 0 auto 30px;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
}

.team-section__media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--color-black);
  aspect-ratio: 2.45 / 1;
}

.team-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0);
  transform: scale(1.015);
  transition:
    filter 700ms var(--ease-premium),
    transform 1000ms var(--ease-premium);
}

.team-section__media:hover img {
  filter: grayscale(0);
  transform: scale(1.032);
}

.philosophy-section {
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-light);
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: 0;
}

/* Scrolling brand statement - one seamless loop, edges fading into the black */
.philosophy-marquee {
  --marquee-duration: 90s;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(14px, 1.8vw, 24px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.philosophy-marquee__track {
  display: flex;
  width: max-content;
  animation: philosophyMarquee var(--marquee-duration) linear infinite;
  will-change: transform;
}

.philosophy-marquee:hover .philosophy-marquee__track {
  animation-play-state: paused;
}

.philosophy-marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.philosophy-marquee__text {
  flex: 0 0 auto;
  color: rgba(248, 248, 248, .82);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: .05em;
  white-space: nowrap;
}

.philosophy-marquee__dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin: 0 clamp(18px, 2.4vw, 36px);
  background: var(--color-accent);
  transform: rotate(45deg);
}

.philosophy-marquee__static {
  display: none;
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
  color: rgba(248, 248, 248, .82);
  font-size: 15px;
  line-height: 26px;
  letter-spacing: .05em;
  text-align: center;
}

@keyframes philosophyMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.philosophy-section__content {
  width: 90%;
  max-width: 860px;
  margin: clamp(56px, 6vw, 86px) auto 0;
  text-align: center;
}

.philosophy-section__content h2 {
  margin: 0;
  color: var(--color-accent);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.philosophy-section__content p {
  max-width: 720px;
  margin: 34px auto 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: .08em;
}

.principles-section {
  overflow: hidden;
  background: #fff;
}

.principles-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, .08);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.principle-card {
  min-height: clamp(430px, 31vw, 560px);
  padding: clamp(86px, 7vw, 126px) clamp(38px, 4.1vw, 74px) clamp(54px, 5vw, 82px);
  border-left: 1px solid rgba(0, 0, 0, .08);
  transition:
    background-color 450ms var(--ease-premium),
    transform 450ms var(--ease-premium);
}

.principle-card:first-child {
  border-left: 0;
}

.principle-card:hover {
  background: var(--color-light);
}

.principle-card img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(0);
  opacity: .68;
  transition:
    filter 350ms var(--ease-premium),
    opacity 350ms var(--ease-premium),
    transform 450ms var(--ease-premium);
}

.principle-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-3px);
}

.principle-card h2 {
  margin: clamp(46px, 4vw, 68px) 0 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: .32em;
}

.principle-card p {
  margin: clamp(46px, 4.2vw, 72px) 0 0;
  max-width: 330px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .08em;
}

.hero--contact {
  min-height: clamp(480px, 56vw, 720px);
}

.hero__media--contact {
  height: clamp(480px, 56vw, 720px);
  min-height: 480px;
  object-position: center top;
  filter: grayscale(0);
}

.hero__content--contact {
  bottom: 14%;
}

.hero__content--contact h1 {
  font-size: 36px;
  line-height: 46px;
  text-transform: uppercase;
}

.hero__content--contact p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 28px;
}

.hero--projects-page {
  min-height: 100svh;
}

.hero__media--projects-page {
  height: 100svh;
  min-height: 100svh;
  object-position: center 42%;
  filter: grayscale(0);
}

.hero__content--projects-page {
  bottom: 16%;
}

.hero__content--projects-page h1 {
  font-size: 36px;
  line-height: 46px;
  text-transform: uppercase;
}

.hero__content--projects-page p {
  margin-top: 24px;
  max-width: 520px;
  font-size: 18px;
  line-height: 28px;
}

.all-projects-section {
  overflow: hidden;
  background: #fff;
  padding: 60px 0;
}

.all-projects-section__inner {
  width: 100%;
  margin: 0 auto;
}

.project-category {
  padding-left: 0;
}

.project-category + .project-category {
  margin-top: 60px;
}

.project-category__head {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.project-category__head h2 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
}

.project-category__controls {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.project-category__controls button {
  position: relative;
  width: 20px;
  height: 20px;
  transition: transform 320ms var(--ease-premium);
}

.project-category__controls button::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-top: 2px solid var(--color-black);
  border-left: 2px solid var(--color-black);
  transition: border-color 320ms var(--ease-premium);
}

.project-category__controls button:first-child::before {
  transform: rotate(-45deg);
}

.project-category__controls button:last-child::before {
  transform: rotate(135deg);
}

.project-category__controls button:first-child:hover {
  transform: translateX(-3px);
}

.project-category__controls button:last-child:hover {
  transform: translateX(3px);
}

.project-category__controls button:hover::before {
  border-color: var(--color-accent);
}

.project-category__viewport {
  overflow: hidden;
}

.project-category__viewport.is-static {
  overflow: visible;
}

.project-category__viewport.is-static .project-category__track {
  width: var(--container-width, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, calc((90vw - 40px) / 3)));
  gap: 20px;
  animation: none;
}

.project-category__track {
  --category-gap: 20px;
  display: flex;
  width: max-content;
  gap: var(--category-gap);
  animation: projectCategoryMarquee 34s linear infinite;
  will-change: transform;
}

.project-category__viewport:hover .project-category__track {
  animation-play-state: paused;
}

.project-category__viewport.is-js-marquee .project-category__track {
  animation: none;
  transform: translate3d(var(--category-x, 0px), 0, 0);
}

.project-category-card {
  flex: 0 0 calc((90vw - 40px) / 3);
  min-width: calc((90vw - 40px) / 3);
}

.project-category__viewport.is-static .project-category-card {
  flex: none;
  min-width: 0;
}

.project-category-card a {
  display: block;
}

.project-category-card__media {
  margin: 0;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: var(--color-black);
}

.project-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  transform: scale(1.01);
  transition:
    filter 650ms var(--ease-premium),
    transform 900ms var(--ease-premium);
}

.project-category-card:hover .project-category-card__media img {
  filter: grayscale(0);
}

.project-category-card:hover .project-category-card__media img {
  transform: scale(1.028);
}

.project-category-card p {
  margin: 26px 0 0;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-category-card h3 {
  margin: 7px 0 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}

@keyframes projectCategoryMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - (var(--category-gap) / 2)), 0, 0);
  }
}

.hero--project-detail {
  min-height: 100svh;
}

.hero__media--project-detail {
  height: 100svh;
  min-height: 100svh;
  object-position: center center;
  filter: grayscale(0);
}

.hero__content--project-detail {
  bottom: 16%;
}

.hero__content--project-detail h1 {
  font-size: 28px;
  line-height: 38px;
  text-transform: uppercase;
}

.hero__content--project-detail p {
  max-width: 520px;
  margin-top: 10px;
  font-size: 18px;
  line-height: 28px;
}

.project-detail-renders,
.project-detail-stats,
.project-detail-next {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.project-detail-renders__inner,
.project-detail-stats__inner,
.project-detail-next__inner {
  width: var(--container-width);
  margin: 0 auto;
}

.project-detail-renders__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.project-detail-renders h2,
.project-detail-stats h2,
.project-detail-next h2 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.project-detail-renders__controls {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.project-detail-renders__controls button {
  position: relative;
  width: 20px;
  height: 24px;
  transition: opacity 220ms ease;
}

.project-detail-renders__controls button::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-black);
  border-left: 2px solid var(--color-black);
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: border-color 220ms ease;
}

.project-detail-renders__controls button:last-child::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.project-detail-renders__controls button:hover {
  opacity: .58;
}

.project-detail-renders__controls button:hover::before {
  border-color: var(--color-accent);
}

.project-detail-renders__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  width: 100%;
}

.project-detail-render {
  margin: 0;
  aspect-ratio: 1.46 / 1;
  overflow: hidden;
  background: var(--color-black);
}

/* Renders gallery - first five images, click to open full screen */
.render-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 18px);
}

.render-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: 1.46 / 1;
  overflow: hidden;
  background: var(--color-black);
  border: 0;
  cursor: pointer;
}

.render-gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Only the first five tiles are shown; the rest live in the full screen view */
.render-gallery__item:nth-child(n+6) {
  display: none;
}

.render-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 900ms var(--ease-premium);
}

.render-gallery__item:hover img,
.render-gallery__item:focus-visible img {
  transform: scale(1.05);
}

.render-gallery__item:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.render-gallery__more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .58);
  color: var(--color-light);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: .04em;
  transition: background-color 350ms var(--ease-premium);
}

.render-gallery__item:hover .render-gallery__more {
  background: rgba(0, 0, 0, .42);
}

/* Full screen viewer */
.render-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 320ms var(--ease-premium),
    visibility 320ms var(--ease-premium);
}

.render-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.render-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .94);
  border: 0;
  cursor: zoom-out;
}

.render-lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
  pointer-events: none;
}

.render-lightbox__image {
  display: block;
  width: auto;
  max-width: 92vw;
  max-height: 84vh;
  object-fit: contain;
  transform: scale(.98);
  transition: transform 380ms var(--ease-premium);
}

.render-lightbox.is-open .render-lightbox__image {
  transform: scale(1);
}

.render-lightbox__counter {
  color: rgba(248, 248, 248, .68);
  font-size: 13px;
  letter-spacing: .12em;
}

.render-lightbox__close {
  position: absolute;
  top: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.render-lightbox__close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-light);
  transition: background-color 300ms var(--ease-premium);
}

.render-lightbox__close span:first-child {
  transform: rotate(45deg);
}

.render-lightbox__close span:last-child {
  transform: rotate(-45deg);
}

.render-lightbox__close:hover span {
  background: var(--color-accent);
}

.render-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
}

.render-lightbox__nav--prev {
  left: clamp(8px, 2.4vw, 34px);
}

.render-lightbox__nav--next {
  right: clamp(8px, 2.4vw, 34px);
}

.render-lightbox__nav::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 15px;
  height: 15px;
  border-top: 2px solid var(--color-light);
  border-left: 2px solid var(--color-light);
  transform: translate(-40%, -50%) rotate(-45deg);
  transition: border-color 300ms var(--ease-premium);
}

.render-lightbox__nav--next::before {
  transform: translate(-60%, -50%) rotate(135deg);
}

.render-lightbox__nav:hover::before {
  border-color: var(--color-accent);
}

.project-detail-render img,
.project-detail-next-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  transform: scale(1.01);
  transition:
    filter 620ms var(--ease-premium),
    transform 900ms var(--ease-premium);
}

.project-detail-render:hover img,
.project-detail-next-card:hover img {
  filter: grayscale(0);
  transform: scale(1.025);
}

.project-detail-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 64px;
}

.project-detail-phone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  margin-top: 42px;
}

.project-detail-phone {
  align-self: start;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.project-detail-phone img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.project-detail-stat strong {
  display: block;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
}

.project-detail-stat span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .08em;
}

.project-detail-next__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 36px;
  margin-top: 24px;
}

.project-detail-next-card a {
  display: block;
}

.project-detail-next-card figure {
  margin: 0;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  background: var(--color-black);
}

.project-detail-next-card p {
  margin: 24px 0 0;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-detail-next-card h3 {
  margin: 6px 0 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-transform: uppercase;
  transition: color 320ms var(--ease-premium);
}

.project-detail-next-card:hover h3 {
  color: var(--color-accent);
}

.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open) {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open) .site-header__menu span {
  background: var(--color-black);
}

.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open) .site-header__brand img {
  opacity: 0;
}

.residential-towers-page .site-header__brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/black-logo.svg") left center / contain no-repeat;
  opacity: 0;
  transition: opacity 350ms var(--ease-premium);
}

.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open) .site-header__brand::after {
  opacity: 1;
}

/* This page opens on a white header, so the desktop menu flips to dark type */
.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open)::before {
  opacity: 0;
}

.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open) .site-header__link {
  color: var(--color-black);
}

.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open) .site-header__link:hover,
.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open) .site-header__link.is-active,
.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open) .site-header__item--has-menu:hover > .site-header__link {
  color: var(--color-accent);
}

.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open) .site-header__phone {
  border-color: rgba(0, 0, 0, .28);
  color: var(--color-black);
}

.residential-towers-page .site-header:not(.is-scrolled):not(.is-nav-open) .site-header__phone:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-black);
}

.residential-listing {
  background: #fff;
  padding: calc(var(--header-height) + 34px) 0 60px;
  overflow: hidden;
}

.residential-listing__inner {
  width: var(--container-width);
  margin: 0 auto;
}

.residential-listing__mast {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.residential-listing__mast img {
  width: clamp(210px, 22vw, 310px);
  height: auto;
}

.residential-listing__mast p,
.residential-listing__eyebrow {
  margin: 0;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.residential-listing__head {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(320px, .58fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  padding: 34px 0 42px;
}

.residential-listing__head h1 {
  margin: 18px 0 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.residential-listing__head > p {
  max-width: 640px;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: .08em;
  white-space: normal;
  overflow-wrap: break-word;
}

.residential-listing__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.residential-listing__filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.residential-listing__filters button {
  font-size: 13px;
  line-height: 23px;
  letter-spacing: .08em;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 220ms ease, border-color 220ms ease;
}

.residential-listing__filters button:hover,
.residential-listing__filters button.is-active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.residential-listing__view {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.residential-listing__view button {
  position: relative;
  width: 20px;
  height: 20px;
  opacity: .35;
  transition: opacity 220ms ease;
}

.residential-listing__view button:first-child {
  background:
    linear-gradient(var(--color-black), var(--color-black)) 0 0 / 7px 7px no-repeat,
    linear-gradient(var(--color-black), var(--color-black)) 13px 0 / 7px 7px no-repeat,
    linear-gradient(var(--color-black), var(--color-black)) 0 13px / 7px 7px no-repeat,
    linear-gradient(var(--color-black), var(--color-black)) 13px 13px / 7px 7px no-repeat;
}

.residential-listing__view button:last-child {
  background:
    linear-gradient(var(--color-black), var(--color-black)) 0 2px / 20px 2px no-repeat,
    linear-gradient(var(--color-black), var(--color-black)) 0 9px / 20px 2px no-repeat,
    linear-gradient(var(--color-black), var(--color-black)) 0 16px / 20px 2px no-repeat;
}

.residential-listing__view button:hover,
.residential-listing__view button.is-active {
  opacity: 1;
}

.residential-project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 44px 20px;
  padding-top: 44px;
}

.residential-project-card a {
  display: block;
}

.residential-listing__head > *,
.residential-project-card {
  min-width: 0;
}

.residential-project-card figure {
  margin: 0;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  background: var(--color-black);
}

.residential-project-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  transform: scale(1.01);
  transition:
    filter 620ms var(--ease-premium),
    transform 900ms var(--ease-premium);
}

.residential-project-card:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.residential-project-card p {
  margin: 18px 0 0;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.residential-project-card h2 {
  margin: 6px 0 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition: color 320ms var(--ease-premium);
}

.residential-project-card:hover h2 {
  color: var(--color-accent);
}

/* List View Toggle */
.residential-project-grid.is-list-view {
  grid-template-columns: 1fr;
  gap: 0;
}

.residential-project-grid.is-list-view .residential-project-card {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  padding: 20px 0;
}

.residential-project-grid.is-list-view .residential-project-card a {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 24px;
}

.residential-project-grid.is-list-view .residential-project-card figure {
  aspect-ratio: 1.4 / 1;
}

.residential-project-grid.is-list-view .residential-project-card p {
  margin: 0;
}

.residential-project-grid.is-list-view .residential-project-card h2 {
  margin: 4px 0 0;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 640px) {
  .residential-project-grid.is-list-view .residential-project-card a {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }

  .residential-project-grid.is-list-view .residential-project-card h2 {
    font-size: 15px;
    line-height: 24px;
  }
}

.residential-listing .reveal-item {
  opacity: 1;
  transform: none;
}

.residential-listing.is-visible .residential-project-card.reveal-item {
  animation: residentialCardReveal 760ms var(--ease-premium) both;
}

.residential-listing.is-visible .residential-project-card.reveal-item:nth-child(5n + 1) {
  animation-delay: 80ms;
}

.residential-listing.is-visible .residential-project-card.reveal-item:nth-child(5n + 2) {
  animation-delay: 140ms;
}

.residential-listing.is-visible .residential-project-card.reveal-item:nth-child(5n + 3) {
  animation-delay: 200ms;
}

.residential-listing.is-visible .residential-project-card.reveal-item:nth-child(5n + 4) {
  animation-delay: 260ms;
}

.residential-listing.is-visible .residential-project-card.reveal-item:nth-child(5n + 5) {
  animation-delay: 320ms;
}

@keyframes residentialCardReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-section,
.contact-card-section,
.contact-map-section {
  overflow: hidden;
  background: #fff;
}

.contact-form-section__inner,
.contact-card-section__inner,
.contact-map-section__inner {
  width: var(--container-width);
  margin: 0 auto;
}

.contact-form-section__title {
  max-width: 650px;
  margin: 0 0 clamp(42px, 5vw, 72px);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
  text-align: left;
}

.contact-main-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 78px) clamp(52px, 7vw, 110px);
}

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

.contact-main-form span,
.contact-main-form input {
  font-size: 14px;
  line-height: 24px;
}

.contact-main-form span {
  color: rgba(0, 0, 0, .54);
}

.contact-main-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .16);
  background: transparent;
  color: var(--color-black);
  outline: 0;
  padding: 0 0 12px;
  transition: border-color 350ms var(--ease-premium);
}

.contact-main-form input:focus {
  border-bottom-color: var(--color-accent);
}

.contact-main-form button {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 154px;
  min-height: 48px;
  padding: 12px 22px;
  background: var(--color-black);
  color: var(--color-light);
  font-size: 12px;
  line-height: 18px;
  transition:
    background-color 350ms var(--ease-premium),
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.contact-main-form button:hover {
  background: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-2px);
}

.contact-location-card {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(0, .62fr);
  margin: 0;
  background: var(--color-black);
  color: var(--color-light);
}

.contact-location-card__image,
.contact-location-card__info {
  min-height: clamp(360px, 38vw, 560px);
}

.contact-location-card__image {
  margin: 0;
  overflow: hidden;
}

.contact-location-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0);
  transform: scale(1.015);
  transition: transform 900ms var(--ease-premium);
}

.contact-location-card:hover .contact-location-card__image img {
  transform: scale(1.032);
}

.contact-location-card__info {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: clamp(26px, 3vw, 44px);
  padding: clamp(44px, 5vw, 86px);
}

.contact-location-card__info img {
  width: clamp(280px, 30vw, 455px);
  height: auto;
}

.contact-location-card__info address {
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: .08em;
}

/* Phone + email now sit inside the location card, so they read as supporting detail */
.contact-direct {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-top: clamp(18px, 2vw, 26px);
  border-top: 1px solid rgba(248, 248, 248, .18);
  width: 100%;
}

.contact-direct p {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: .05em;
  word-break: break-word;
}

.contact-direct a {
  transition: color 350ms var(--ease-premium);
}

.contact-direct a:hover {
  color: var(--color-accent);
}

.contact-map-section__inner {
  aspect-ratio: 2.32 / 1;
  overflow: hidden;
  background: var(--color-light);
}

.contact-map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0);
  transition: filter 700ms var(--ease-premium);
}

.contact-map-section iframe:hover {
  filter: grayscale(0);
}

.hero--careers {
  min-height: clamp(480px, 57vw, 760px);
}

.hero__media--careers {
  height: clamp(480px, 57vw, 760px);
  min-height: 480px;
  object-position: center center;
  filter: grayscale(0);
}

.hero__content--careers {
  bottom: 13%;
}

.hero__content--careers h1 {
  font-size: 36px;
  line-height: 46px;
  text-transform: uppercase;
}

.hero__content--careers p {
  max-width: 440px;
  margin-top: 26px;
  font-size: 18px;
  line-height: 28px;
}

.careers-section {
  overflow: hidden;
  background: #fff;
}

.careers-section__inner {
  width: var(--container-width);
  margin: 0 auto;
}

.careers-section__title {
  margin: 0 0 42px;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.careers-list {
  counter-reset: careerTab;
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.career-tab {
  counter-increment: careerTab;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  padding: 14px 0;
}

.career-tab__head {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 44px minmax(220px, .35fr) minmax(220px, 1fr) 36px;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  text-align: left;
  color: var(--color-black);
  transition:
    color 380ms var(--ease-premium),
    background-color 380ms var(--ease-premium);
}

.career-tab__number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-light);
  font-size: 11px;
  line-height: 1;
  transition:
    background-color 350ms var(--ease-premium),
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.career-tab__summary {
  font-size: 13px;
  line-height: 23px;
  letter-spacing: .08em;
  transition: color 350ms var(--ease-premium);
}

.career-tab__role {
  justify-self: start;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 20px;
  line-height: 30px;
  transition:
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.career-tab__icon {
  position: relative;
  justify-self: end;
  width: 22px;
  height: 22px;
  transition: color 350ms var(--ease-premium);
}

.career-tab:not(.is-active) .career-tab__head:hover .career-tab__number {
  background: var(--color-accent);
  color: var(--color-black);
  transform: scale(1.06);
}

.career-tab:not(.is-active) .career-tab__head:hover .career-tab__role,
.career-tab:not(.is-active) .career-tab__head:hover .career-tab__summary,
.career-tab:not(.is-active) .career-tab__head:hover .career-tab__icon {
  color: var(--color-accent);
}

.career-tab:not(.is-active) .career-tab__head:hover .career-tab__role {
  transform: translateX(4px);
}

.career-tab__icon::before,
.career-tab__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    opacity 300ms var(--ease-premium),
    transform 360ms var(--ease-premium);
}

.career-tab__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.career-tab.is-active .career-tab__number {
  background: var(--color-accent);
  color: var(--color-black);
  transform: scale(1.04);
}

.career-tab.is-active .career-tab__head {
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.career-tab.is-active {
  padding: 0;
}

.career-tab.is-active .career-tab__head > * {
  display: none;
}

.career-tab.is-active .career-tab__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.career-tab__panel {
  height: 0;
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-light);
  transition:
    height 560ms var(--ease-premium),
    min-height 560ms var(--ease-premium);
}

.career-tab.is-active .career-tab__panel {
  height: auto;
  min-height: 0;
}

.career-tab__content {
  position: relative;
  min-height: 0;
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(220px, .42fr);
  gap: clamp(38px, 7vw, 120px);
  padding: clamp(46px, 5vw, 78px) 0 clamp(46px, 5vw, 78px) clamp(48px, 4vw, 72px);
}

.career-tab.is-active .career-tab__content {
  min-height: 0;
}

.career-tab__content::before {
  content: counter(careerTab, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: clamp(46px, 5vw, 78px);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-black);
  font-size: 11px;
  line-height: 1;
}

.career-tab__body {
  max-width: 820px;
}

.career-tab__content h2,
.career-tab__content h3 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-weight: 400;
}

.career-tab__content h2 {
  font-size: 36px;
  line-height: 46px;
}

.career-tab__content h3 {
  margin-top: 34px;
  color: var(--color-light);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: .22em;
}

.career-tab__content h3:first-child {
  margin-top: 0;
}

.career-tab__content p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .08em;
}

.career-tab__aside {
  display: grid;
  align-content: space-between;
  min-height: 0;
  gap: 34px;
}

.career-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 34px;
  align-self: end;
  justify-self: start;
  min-width: 92px;
  min-height: 34px;
  padding: 9px 16px;
  background: var(--color-accent);
  color: var(--color-black);
  font-size: 12px;
  line-height: 16px;
  transition:
    background-color 350ms var(--ease-premium),
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.career-apply:hover {
  background: var(--color-light);
  transform: translateY(-2px);
}

.career-tab__content > .career-apply,
.career-tab__aside .career-apply {
  align-self: end;
  justify-self: start;
}

.career-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 420ms var(--ease-premium);
}

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

.career-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .74);
}

.career-modal__panel {
  position: relative;
  width: min(92vw, 620px);
  max-height: none;
  overflow: visible;
  padding: clamp(18px, 2.2vw, 28px);
  background: var(--color-light);
  color: var(--color-black);
  transform: translateY(24px);
  transition: transform 520ms var(--ease-premium);
}

.career-modal.is-open .career-modal__panel {
  transform: translateY(0);
}

.career-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
}

.career-modal__close span {
  position: absolute;
  left: 6px;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--color-black);
}

.career-modal__close span:first-child {
  transform: rotate(45deg);
}

.career-modal__close span:last-child {
  transform: rotate(135deg);
}

.career-modal h2 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.career-modal p {
  margin: 4px 0 14px;
  color: var(--color-accent);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .08em;
}

.career-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
}

.career-form label {
  display: grid;
  gap: 2px;
}

.career-form label:last-of-type {
  grid-column: 1 / -1;
}

.career-form span {
  color: rgba(0, 0, 0, .48);
  font-size: 10px;
  line-height: 16px;
}

.career-form input,
.career-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .16);
  background: transparent;
  color: var(--color-black);
  font: inherit;
  font-size: 11px;
  line-height: 18px;
  outline: 0;
  padding: 0 0 5px;
  resize: vertical;
}

.career-form textarea {
  height: 46px;
  min-height: 46px;
}

.career-form input:focus,
.career-form textarea:focus {
  border-bottom-color: var(--color-accent);
}

.career-form button {
  justify-self: start;
  min-width: 112px;
  min-height: 32px;
  margin-top: 8px;
  padding: 8px 14px;
  background: var(--color-black);
  color: var(--color-light);
  font-size: 10px;
  line-height: 14px;
  transition:
    background-color 350ms var(--ease-premium),
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.career-form button:hover {
  background: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-2px);
}

.clients-section {
  overflow: hidden;
  background: #fff;
}

.clients-section__title {
  width: var(--container-width);
  margin: 0 auto clamp(24px, 3vw, 42px);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
  text-align: center;
}

/* Logo count per row is driven by --client-columns so the grid stays
   even on TV screens (7), tablets (4) and phones (2). */
.clients-grid {
  --client-columns: 7;
  width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  border-top: 1px solid rgba(0, 0, 0, .1);
  border-left: 1px solid rgba(0, 0, 0, .1);
}

.client-logo {
  flex: 0 0 calc(100% / var(--client-columns));
  max-width: calc(100% / var(--client-columns));
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: clamp(104px, 9vw, 150px);
  margin: 0;
  padding: clamp(14px, 1.6vw, 28px);
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
  transition: background-color 420ms var(--ease-premium);
}

.client-logo img {
  display: block;
  width: min(100%, 200px);
  height: clamp(62px, 6vw, 104px);
  object-fit: contain;
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1);
  transition:
    filter 420ms var(--ease-premium),
    opacity 420ms var(--ease-premium),
    transform 520ms var(--ease-premium);
}

.client-logo:hover {
  background: #f8f8f8;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1);
}

@keyframes heroLetterReveal {
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

@keyframes heroCopyReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-section {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: calc(5vw + var(--container-width) * .465) 1fr;
  min-height: clamp(470px, 50vw, 640px);
  background: #fff;
  overflow: hidden;
}

.intro-section__content {
  display: flex;
  align-items: center;
  padding-left: 5vw;
  padding-right: clamp(32px, 4vw, 64px);
}

.intro-section__text {
  max-width: 470px;
}

.intro-section h2 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.intro-section p {
  margin: 36px 0 0;
  max-width: 430px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: .08em;
}

.intro-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  margin-top: 78px;
  padding: 10px 18px;
  background: var(--color-black);
  color: var(--color-light);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  transition:
    background-color 350ms var(--ease-premium),
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.intro-section__button:hover {
  background: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-2px);
}

.intro-section__media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--color-black);
}

.intro-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(470px, 50vw, 640px);
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0);
  transform: scale(1.035);
  transition:
    filter 700ms var(--ease-premium),
    transform 900ms var(--ease-premium);
}

.intro-section__media:hover img {
  filter: grayscale(0);
  transform: scale(1.035);
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms var(--ease-premium),
    transform 760ms var(--ease-premium);
}

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

.is-visible .reveal-item:nth-child(1) {
  transition-delay: 80ms;
}

.is-visible .reveal-item:nth-child(2) {
  transition-delay: 170ms;
}

.is-visible .reveal-item:nth-child(3) {
  transition-delay: 260ms;
}

.intro-section.is-visible .intro-section__media img {
  transform: scale(1);
}

.intro-section.is-visible .intro-section__media:hover img {
  transform: scale(1.025);
}

.projects-section {
  overflow: hidden;
  background: #fff;
  padding: clamp(50px, 6vw, 82px) 0 clamp(38px, 5vw, 66px);
}

.projects-section__head {
  width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.projects-section__title {
  display: flex;
  align-items: baseline;
  gap: clamp(28px, 4vw, 56px);
}

.projects-section h2 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.projects-section__view {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: .08em;
  transition:
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.projects-section__view:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.projects-section__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 54px;
}

.projects-section__control {
  position: relative;
  display: grid;
  place-items: center;
  width: 18px;
  height: 24px;
  transition: transform 350ms var(--ease-premium);
}

.projects-section__control::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-black);
  border-left: 2px solid var(--color-black);
  transition: border-color 300ms var(--ease-premium);
}

.projects-section__control:first-child::before {
  transform: rotate(-45deg);
}

.projects-section__control:last-child::before {
  transform: rotate(135deg);
}

.projects-section__control:first-child:hover {
  transform: translateX(-3px);
}

.projects-section__control:last-child:hover {
  transform: translateX(3px);
}

.projects-section__control:hover::before {
  border-color: var(--color-accent);
}

.projects-marquee {
  width: 100%;
  margin-top: clamp(22px, 2.5vw, 34px);
  overflow: hidden;
}

.projects-marquee__track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding-left: 5vw;
  transform: translate3d(var(--projects-x, 0px), 0, 0);
  will-change: transform;
}

.project-slide {
  flex: 0 0 clamp(330px, 29vw, 520px);
}

.project-slide a {
  display: block;
}

.project-slide__media {
  margin: 0;
  aspect-ratio: 1.46 / 1;
  overflow: hidden;
  background: var(--color-black);
}

.project-slide__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  transform: scale(1.01);
  transition:
    filter 620ms var(--ease-premium),
    transform 900ms var(--ease-premium);
  will-change: filter, transform;
}

.project-slide:hover .project-slide__media img {
  filter: grayscale(0);
}

.project-slide:hover .project-slide__media img {
  transform: scale(1.028);
}

.project-slide p {
  margin: 30px 0 0;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-slide h3 {
  margin: 8px 0 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
}

.sectors-section {
  background: #fff;
  overflow: hidden;
  padding: clamp(54px, 6vw, 84px) 0 clamp(42px, 5vw, 72px);
}

.sectors-section__content {
  width: 100%;
  display: grid;
  grid-template-columns: calc(5vw + clamp(230px, 21vw, 330px)) 1fr;
  align-items: start;
}

.sectors-section__intro {
  padding-left: 5vw;
  padding-right: clamp(34px, 4vw, 64px);
}

.sectors-section h2 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.sectors-section__intro p {
  max-width: 300px;
  margin: 66px 0 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: .08em;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 20px;
  padding-right: 0;
}

.sector-card a {
  display: grid;
  gap: 22px;
}

.sector-card__media {
  margin: 0;
  aspect-ratio: 1.03 / 1;
  overflow: hidden;
  background: var(--color-black);
}

.sector-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  transform: scale(1.01);
  transition:
    filter 620ms var(--ease-premium),
    transform 900ms var(--ease-premium);
  will-change: filter, transform;
}

.sector-card:hover .sector-card__media img {
  filter: grayscale(0);
}

.sector-card:hover .sector-card__media img {
  transform: scale(1.028);
}

.sector-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-transform: none;
}

.sector-card h3 span {
  display: inline-block;
  width: 2px;
  height: 22px;
  background: var(--color-accent);
  transform: scaleY(.72);
  transform-origin: center;
  transition: transform 350ms var(--ease-premium);
}

.sector-card:hover h3 span {
  transform: scaleY(1);
}

.process-section {
  position: relative;
  z-index: 1;
  background: #fff;
  overflow: visible;
  padding: clamp(52px, 6vw, 84px) 0 clamp(42px, 5vw, 70px);
}

.process-section__inner {
  position: relative;
  z-index: 1;
  width: var(--container-width);
  margin: 0 auto;
  overflow: visible;
}

.process-section__title {
  margin: 0 0 44px;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.process-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0, 0, 0, .12);
  overflow: visible;
}

.process-row {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(230px, .68fr) minmax(230px, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(24px, 3.6vw, 64px);
  row-gap: 0;
  /* Resting rows get breathing room; the hover state expands past this */
  min-height: 110px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  isolation: isolate;
  overflow: visible;
  transition:
    color 520ms var(--ease-premium),
    min-height 620ms var(--ease-premium);
}

.process-row::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - var(--container-width)) / -2);
  z-index: 0;
  background: var(--color-black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms var(--ease-premium);
}

.process-row__number {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  align-self: center;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-light);
  font-size: 11px;
  line-height: 1;
  transition:
    background-color 420ms var(--ease-premium),
    color 420ms var(--ease-premium),
    transform 420ms var(--ease-premium);
}

.process-row p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .08em;
}

.process-row__text {
  display: contents;
}

.process-row h3 {
  position: relative;
  z-index: 1;
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.process-row h4 {
  position: relative;
  z-index: 1;
  grid-column: 3;
  grid-row: 2;
  align-self: start;
  margin: 10px 0 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: .06em;
  opacity: .68;
}

.process-row:hover,
.process-row:focus-within,
.process-row.is-active {
  min-height: clamp(270px, 31vw, 430px);
  grid-template-rows: auto;
  color: var(--color-light);
  z-index: 20;
}

.process-row:hover::before,
.process-row:focus-within::before,
.process-row.is-active::before {
  opacity: 1;
}

.process-row:hover .process-row__number,
.process-row:focus-within .process-row__number,
.process-row.is-active .process-row__number {
  background: var(--color-accent);
  color: var(--color-black);
  transform: scale(1.05);
}

.process-row:hover .process-row__text,
.process-row:focus-within .process-row__text,
.process-row.is-active .process-row__text {
  display: block;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  text-align: left;
}

.process-row:hover h3,
.process-row:focus-within h3,
.process-row.is-active h3,
.process-row:hover h4,
.process-row:focus-within h4,
.process-row.is-active h4 {
  grid-column: auto;
  grid-row: auto;
}

.process-row:hover h4,
.process-row:focus-within h4,
.process-row.is-active h4 {
  margin-top: 10px;
  opacity: .78;
}

.process-row:hover p,
.process-row:focus-within p,
.process-row.is-active p {
  grid-column: auto;
  grid-row: auto;
  margin-top: 22px;
}

.process-row__media {
  position: absolute;
  right: clamp(0px, 3.5vw, 66px);
  top: 50%;
  bottom: auto;
  z-index: 30;
  width: clamp(300px, 40vw, 540px);
  margin: 0;
  aspect-ratio: 831 / 663;
  overflow: visible;
  opacity: 0;
  transform: translateY(calc(-50% + 14px)) rotate(-11deg) scale(.96);
  transform-origin: center;
  transition:
    transform 780ms var(--ease-premium),
    opacity 780ms var(--ease-premium);
  pointer-events: none;
}

.process-row__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0);
  transform: scale(1.02);
  transition:
    filter 700ms var(--ease-premium),
    transform 900ms var(--ease-premium);
}

.process-row:hover .process-row__media,
.process-row:focus-within .process-row__media,
.process-row.is-active .process-row__media {
  opacity: 1;
  transform: translateY(-50%) rotate(-8deg) scale(1);
}

.process-row:hover .process-row__media img,
.process-row:focus-within .process-row__media img,
.process-row.is-active .process-row__media img {
  filter: grayscale(0);
  transform: scale(1);
}

.testimonials-section {
  background: #fff;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.testimonials-section__inner {
  width: var(--container-width);
  margin: 0 auto;
}

.testimonials-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.testimonials-section__title {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-carousel__controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 50%;
  color: var(--color-black);
  font-size: 13px;
  transition:
    background-color 350ms var(--ease-premium),
    border-color 350ms var(--ease-premium),
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium),
    opacity 350ms var(--ease-premium);
}

.testimonial-carousel__controls button:hover:not(:disabled) {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-light);
  transform: translateY(-2px);
}

.testimonial-carousel__controls button:disabled {
  cursor: default;
  opacity: .28;
}

.testimonial-carousel__status {
  min-width: 54px;
  color: rgba(0, 0, 0, .56);
  font-size: 11px;
  line-height: 18px;
  letter-spacing: .08em;
  text-align: center;
}

.testimonial-carousel {
  overflow: hidden;
}

.testimonial-carousel__viewport {
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
}

.testimonial-carousel__viewport:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.testimonial-carousel__track {
  display: flex;
  gap: 20px;
  transform: translate3d(var(--testimonial-x, 0), 0, 0);
  transition: transform 520ms var(--ease-premium);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 20px) / 2);
  flex-direction: column;
  min-width: 0;
  min-height: 230px;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 6px;
  background: #f8f8f8;
  transition:
    border-color 420ms var(--ease-premium),
    box-shadow 420ms var(--ease-premium),
    transform 420ms var(--ease-premium);
}

.testimonial-card:hover {
  border-color: rgba(0, 0, 0, .2);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .07);
  transform: translateY(-3px);
}

.testimonial-card__quote {
  display: block;
  width: 32px;
  height: auto;
  margin: 0 0 24px auto;
  opacity: .72;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--color-black);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: .02em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.testimonial-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 28px;
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-accent);
  margin: 0;
  font-size: 12px;
  line-height: 1;
}

.testimonial-card__index {
  color: rgba(0, 0, 0, .34);
  font-size: 11px;
  line-height: 18px;
  letter-spacing: .08em;
}

.blog-section {
  background: #fff;
  padding: clamp(52px, 6vw, 84px) 0 clamp(50px, 6vw, 84px);
}

.blog-section__inner {
  width: 90%;
  margin: 0 auto;
}

.blog-section__title {
  margin: 0 0 48px;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.blog-slider {
  position: relative;
}

.blog-slide {
  display: grid;
  grid-template-columns: minmax(320px, .48fr) minmax(360px, .52fr);
  align-items: start;
  gap: clamp(56px, 9vw, 126px);
  transition:
    opacity 460ms var(--ease-premium),
    transform 460ms var(--ease-premium);
}

.blog-slide[hidden] {
  display: none;
}

.blog-slider.is-changing .blog-slide {
  opacity: .15;
  transform: translateY(12px);
}

.blog-slide__content {
  min-height: 340px;
}

.blog-slide time {
  display: block;
  margin-bottom: 78px;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: .08em;
}

.blog-slide h3 {
  max-width: 620px;
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
}

.blog-slide p {
  max-width: 650px;
  margin: 54px 0 0;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .08em;
}

.blog-slide__content a {
  display: inline-flex;
  margin-top: 56px;
  font-size: 13px;
  line-height: 23px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition:
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.blog-slide__content a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.blog-slide__media {
  margin: 0;
  aspect-ratio: 1.65 / 1;
  overflow: hidden;
  background: var(--color-black);
}

.blog-slide__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  transform: scale(1.01);
  transition:
    filter 650ms var(--ease-premium),
    opacity 460ms var(--ease-premium),
    transform 900ms var(--ease-premium);
}

.blog-slide__media:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.blog-slider__controls {
  position: absolute;
  left: calc(48% - 48px);
  bottom: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-slider__controls button {
  position: relative;
  width: 18px;
  height: 24px;
}

.blog-slider__controls button::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-black);
  border-left: 2px solid var(--color-black);
  transition:
    border-color 300ms var(--ease-premium),
    transform 300ms var(--ease-premium);
}

.blog-slider__controls button:first-child::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.blog-slider__controls button:last-child::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.blog-slider__controls button:hover::before {
  border-color: var(--color-accent);
}

.blog-slider__controls button:first-child:hover::before {
  transform: translate(calc(-50% - 3px), -50%) rotate(-45deg);
}

.blog-slider__controls button:last-child:hover::before {
  transform: translate(calc(-50% + 3px), -50%) rotate(135deg);
}

.blog-section__bottom {
  display: grid;
  grid-template-columns: minmax(320px, .48fr) minmax(220px, .52fr);
  align-items: start;
  gap: clamp(56px, 9vw, 126px);
  margin-top: 44px;
  padding-top: 54px;
  border-top: 1px solid rgba(0, 0, 0, .14);
}

.blog-section__bottom p {
  max-width: 560px;
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .08em;
}

.blog-section__button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 38px;
  padding: 10px 18px;
  background: var(--color-black);
  color: var(--color-light);
  font-size: 12px;
  line-height: 18px;
  transition:
    background-color 350ms var(--ease-premium),
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.blog-section__button:hover {
  background: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-2px);
}

.enquiry-section {
  background: var(--color-light);
  padding: clamp(68px, 8vw, 118px) 0 clamp(68px, 8vw, 118px);
}

.enquiry-section__inner {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, .52fr) minmax(360px, .48fr);
  align-items: center;
  gap: clamp(52px, 9vw, 136px);
}

.enquiry-section__copy h2 {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
  text-transform: uppercase;
}

.enquiry-section__copy span {
  color: var(--color-accent);
}

.form-success {
  padding: 14px 20px;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .3);
  border-radius: 6px;
  color: #22c55e;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.form-error {
  padding: 14px 20px;
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .3);
  border-radius: 6px;
  color: #ef4444;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.field-error {
  display: block;
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  letter-spacing: .02em;
}

.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, .15) !important;
}

.enquiry-form {
  display: grid;
  gap: 30px;
}

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

.enquiry-form span {
  color: rgba(0, 0, 0, .24);
  font-size: 13px;
  line-height: 23px;
  letter-spacing: .03em;
}

.enquiry-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .14);
  border-radius: 0;
  background: transparent;
  color: var(--color-black);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  outline: none;
  padding: 0 0 10px;
  transition:
    border-color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.enquiry-form label:focus-within input {
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.enquiry-form button {
  justify-self: start;
  min-width: 130px;
  min-height: 42px;
  margin-top: 32px;
  padding: 11px 22px;
  background: var(--color-black);
  color: var(--color-light);
  font-size: 12px;
  line-height: 18px;
  transition:
    background-color 350ms var(--ease-premium),
    color 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

.enquiry-form button:hover {
  background: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-light);
  padding: clamp(42px, 5vw, 70px) 0 clamp(32px, 4vw, 52px);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(248, 248, 248, .035), transparent 32%),
    radial-gradient(circle at 12% 0%, rgba(248, 149, 33, .08), transparent 26%);
  opacity: 0;
  transition: opacity 900ms var(--ease-premium);
}

.site-footer.is-visible::before {
  opacity: 1;
}

.site-footer__inner {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__brand {
  display: inline-flex;
  line-height: 0;
}

.site-footer__brand img {
  display: block;
  width: clamp(210px, 22vw, 292px);
  height: auto;
  transition:
    opacity 420ms var(--ease-premium),
    transform 520ms var(--ease-premium);
}

.site-footer__brand:hover img {
  opacity: .82;
  transform: translateY(-2px);
}

.site-footer__socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(30px, 5vw, 68px);
}

.site-footer a {
  transition:
    color 350ms var(--ease-premium),
    opacity 350ms var(--ease-premium),
    transform 350ms var(--ease-premium);
}

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

.site-footer__socials a {
  display: inline-block;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
}

.site-footer__socials a:hover {
  transform: translateY(-2px);
}

.site-footer__divider {
  height: 1px;
  margin: clamp(34px, 4vw, 52px) 0 clamp(38px, 5vw, 60px);
  background: rgba(248, 248, 248, .11);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms var(--ease-premium) 150ms;
}

.site-footer.is-visible .site-footer__divider {
  transform: scaleX(1);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.25fr .85fr 1fr;
  gap: clamp(34px, 6vw, 84px);
}

.site-footer__block {
  margin: 0;
  font-style: normal;
}

.site-footer__block h2 {
  margin: 0 0 14px;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.site-footer__block h2:not(:first-child) {
  margin-top: 22px;
}

.site-footer__block p,
.site-footer__bottom p {
  margin: 0;
  max-width: 355px;
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: .08em;
}

.site-footer__bottom p {
  max-width: none;
  white-space: nowrap;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-content: start;
  column-gap: clamp(32px, 5vw, 66px);
  row-gap: 18px;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.site-footer__links a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 350ms var(--ease-premium);
}

.site-footer__links a:hover::before {
  width: 14px;
}

.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(54px, 7vw, 96px);
}

.footer-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms var(--ease-premium),
    transform 760ms var(--ease-premium);
}

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

.site-footer.is-visible .footer-reveal:nth-child(1) {
  transition-delay: 90ms;
}

.site-footer.is-visible .footer-reveal:nth-child(2) {
  transition-delay: 180ms;
}

.site-footer.is-visible .footer-reveal:nth-child(3) {
  transition-delay: 270ms;
}

@media (max-width: 991px) {
  :root {
    --header-height: 76px;
    --container-width: 95%;
  }

  button {
    font-size: 14px;
  }

  .site-header.is-scrolled,
  .site-header.is-nav-open {
    height: 68px;
  }

  .site-nav__panel {
    width: min(76vw, 620px);
    min-width: 0;
  }

  .site-nav__inner {
    width: 86%;
  }

  .site-nav__subpanel {
    right: 0;
    width: min(38%, 240px);
  }

  .hero--about,
  .hero__media--about {
    height: auto;
    min-height: 560px;
  }

  .hero__media--about {
    object-position: 50% center;
  }

  .hero__content--about h1 {
    font-size: 26px;
    line-height: 36px;
  }

  .hero__content--about p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .hero--projects-page,
  .hero__media--projects-page {
    height: 100svh;
    min-height: 560px;
  }

  .hero__content--projects-page h1 {
    font-size: 26px;
    line-height: 36px;
  }

  .hero__content--projects-page p {
    max-width: 440px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .all-projects-section {
    padding: 30px 0;
  }

  .project-category + .project-category {
    margin-top: 30px;
  }

  .project-category__head h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .project-category__track {
    --category-gap: 20px;
  }

  .project-category-card {
    flex-basis: calc((95vw - 20px) / 2);
    min-width: calc((95vw - 20px) / 2);
  }

  .project-category__viewport.is-static .project-category__track {
    grid-template-columns: repeat(auto-fill, minmax(240px, calc((95vw - 20px) / 2)));
  }

  .about-stats-section__inner {
    grid-template-columns: minmax(180px, .34fr) minmax(0, .66fr);
    gap: 36px;
  }

  .about-stats-section__intro h2,
  .about-stat strong {
    font-size: 26px;
    line-height: 36px;
  }

  .about-stats-grid {
    gap: 38px 34px;
  }

  .about-stat p {
    margin-top: 16px;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .05em;
  }

  .management-section__title {
    margin-bottom: 22px;
    font-size: 26px;
    line-height: 36px;
  }

  .management-profile,
  .management-profile__copy {
    min-height: 100svh;
  }

  .management-profile__copy {
    padding-left: 46%;
    padding-right: 5vw;
  }

  .management-profile__copy p {
    width: min(100%, 420px);
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .why-section__inner {
    grid-template-columns: 19vw 24vw 24vw 1fr;
    column-gap: clamp(18px, 2.2vw, 30px);
    row-gap: 24px;
  }

  .why-section__heading {
    padding-left: 2.5vw;
    padding-right: 0;
  }

  .why-section__heading h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .why-section__features {
    display: contents;
  }

  .why-feature {
    grid-template-columns: 24px 1fr;
    gap: 14px;
    padding-right: 0;
  }

  .why-feature:nth-child(3) {
    margin-top: clamp(96px, 8.5vw, 124px);
  }

  .why-feature:nth-child(4) {
    margin-top: clamp(192px, 17vw, 248px);
  }

  .why-feature h3 {
    font-size: 13px;
    line-height: 23px;
    letter-spacing: .22em;
  }

  .why-feature p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .05em;
  }

  .why-section__image--team {
    width: min(43vw, 440px);
    margin-top: 132px;
  }

  .why-section__image--company {
    width: min(27vw, 260px);
  }

  .team-section__title {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 36px;
  }

  .team-section__media {
    aspect-ratio: 2.1 / 1;
  }

  .philosophy-section {
    padding-top: 30px;
    padding-bottom: 62px;
  }

  .philosophy-marquee {
    --marquee-duration: 72s;
    padding: 18px 0;
  }

  .philosophy-marquee__text,
  .philosophy-marquee__static {
    font-size: 14px;
    line-height: 24px;
  }

  .philosophy-section__content {
    width: 95%;
    margin-top: 42px;
  }

  .philosophy-section__content h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .philosophy-section__content p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

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

  .principle-card {
    min-height: 360px;
    padding: 54px 42px 50px;
  }

  .principle-card:nth-child(odd) {
    border-left: 0;
  }

  .principle-card:nth-child(n + 3) {
    border-top: 1px solid rgba(0, 0, 0, .08);
  }

  .principle-card h2 {
    margin-top: 36px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .24em;
  }

  .principle-card p {
    margin-top: 34px;
    font-size: 13px;
    line-height: 23px;
    letter-spacing: .05em;
  }

  .hero--contact,
  .hero__media--contact {
    min-height: 460px;
  }

  .hero__content--contact h1,
  .contact-form-section__title {
    font-size: 26px;
    line-height: 36px;
  }

  .contact-direct p {
    font-size: 15px;
    line-height: 25px;
  }

  .hero__content--contact p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .contact-form-section__inner,
  .contact-card-section__inner,
  .contact-map-section__inner {
    width: 95%;
  }

  .contact-form-section__title {
    margin-bottom: 34px;
  }

  .contact-main-form {
    gap: 34px 44px;
  }

  .contact-location-card {
    grid-template-columns: .42fr .58fr;
  }

  .contact-location-card__image,
  .contact-location-card__info {
    min-height: 360px;
  }

  .contact-location-card__info {
    gap: 34px;
    padding: 42px;
  }

  .contact-location-card__info img {
    width: min(36vw, 330px);
  }

  .contact-location-card__info address {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .hero--careers,
  .hero__media--careers {
    min-height: 460px;
  }

  .hero__content--careers h1,
  .career-modal h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .hero__content--careers p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .careers-section__title,
  .career-tab__content h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .careers-section__title {
    margin-bottom: 32px;
  }

  .career-tab__head {
    grid-template-columns: 36px minmax(180px, .45fr) minmax(180px, 1fr) 30px;
    gap: 24px;
    min-height: 56px;
  }

  .career-tab {
    padding: 11px 0;
  }

  .career-tab__summary,
  .career-tab__content p {
    font-size: 13px;
    line-height: 23px;
    letter-spacing: .05em;
  }

  .career-tab__role,
  .career-tab__content h3 {
    font-size: 16px;
    line-height: 26px;
  }

  .career-tab__content {
    grid-template-columns: minmax(0, .62fr) minmax(190px, .38fr);
    gap: 38px;
    width: 95%;
    padding: 38px 0 38px 48px;
  }

  .career-tab__content::before {
    left: 0;
    top: 38px;
  }

  .career-tab__aside {
    min-height: 0;
    gap: 28px;
  }

  .clients-section__title {
    margin-bottom: 18px;
    font-size: 26px;
    line-height: 36px;
  }

  .clients-grid {
    --client-columns: 4;
  }

  .client-logo {
    min-height: 118px;
    padding: 18px;
  }

  .intro-section {
    grid-template-columns: calc(5vw + var(--container-width) * .47) 1fr;
    min-height: 420px;
  }

  .intro-section__content {
    padding-left: 5vw;
    padding-right: 34px;
  }

  .intro-section h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .intro-section p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .intro-section__button {
    margin-top: 44px;
  }

  .intro-section__media img {
    min-height: 420px;
    object-position: center center;
  }

  .projects-section {
    padding: 44px 0 52px;
  }

  .projects-section h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .projects-section__view {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .05em;
  }

  .projects-marquee {
    margin-top: 22px;
  }

  .projects-marquee__track {
    padding-left: 2.5vw;
  }

  .project-slide {
    flex-basis: 43vw;
  }

  .project-slide p {
    margin-top: 22px;
    letter-spacing: .05em;
  }

  .project-slide h3 {
    font-size: 17px;
    line-height: 27px;
  }

  .sectors-section {
    padding: 46px 0 56px;
  }

  .sectors-section__content {
    grid-template-columns: calc(5vw + 210px) 1fr;
  }

  .sectors-section__intro {
    padding-right: 30px;
  }

  .sectors-section h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .sectors-section__intro p {
    margin-top: 34px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .sector-card h3 {
    font-size: 16px;
    line-height: 27px;
  }

  .process-section {
    padding: 46px 0 56px;
  }

  .process-section__title {
    margin-bottom: 34px;
    font-size: 26px;
    line-height: 36px;
  }

  .process-row {
    grid-template-columns: 38px minmax(190px, .72fr) minmax(190px, 1fr);
    grid-template-rows: auto auto;
    column-gap: 24px;
    row-gap: 0;
    min-height: 100px;
    padding: 16px 0;
  }

  .process-row p {
    font-size: 13px;
    line-height: 23px;
    letter-spacing: .05em;
  }

  .process-row h3 {
    font-size: 16px;
    line-height: 27px;
  }

  .process-row h4 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
  }

  .process-row:hover h4,
  .process-row:focus-within h4,
  .process-row.is-active h4 {
    margin-top: 10px;
  }

  .process-row:hover,
  .process-row:focus-within,
  .process-row.is-active {
    min-height: 250px;
    grid-template-columns: 38px minmax(190px, .72fr) minmax(190px, 1fr);
    grid-template-rows: auto;
  }

  .process-row__media,
  .process-row:hover .process-row__media,
  .process-row:focus-within .process-row__media,
  .process-row.is-active .process-row__media {
    right: 0;
    top: 50%;
    bottom: auto;
    width: min(38vw, 350px);
  }

  .process-row:hover p,
  .process-row:focus-within p,
  .process-row.is-active p {
    margin-top: 20px;
  }

  .testimonials-section {
    padding: 46px 0 56px;
  }

  .testimonials-section__inner {
    width: 95%;
  }

  .testimonials-section__title {
    margin-bottom: 28px;
    font-size: 26px;
    line-height: 36px;
  }

  .testimonials-slider {
    grid-template-columns: minmax(0, .52fr) minmax(0, .48fr);
    gap: 38px;
  }

  .testimonials-slider__top {
    padding-top: 26px;
  }

  .testimonials-slider__dots {
    gap: 12px;
  }

  .testimonials-slider__dots button {
    width: 30px;
    height: 30px;
  }

  .testimonials-slider__quote {
    width: 38px;
  }

  .testimonials-slider__copy {
    margin-top: 42px;
  }

  .testimonials-slider__copy p {
    font-size: 13px;
    line-height: 23px;
    letter-spacing: .05em;
  }

  .blog-section {
    padding: 46px 0 56px;
  }

  .blog-section__inner {
    width: 95%;
  }

  .blog-section__title {
    margin-bottom: 34px;
    font-size: 26px;
    line-height: 36px;
  }

  .blog-slide,
  .blog-section__bottom {
    grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
    gap: 38px;
  }

  .blog-slide__content {
    min-height: 300px;
  }

  .blog-slide time {
    margin-bottom: 46px;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .05em;
  }

  .blog-slide h3 {
    font-size: 17px;
    line-height: 27px;
  }

  .blog-slide p,
  .blog-section__bottom p {
    font-size: 13px;
    line-height: 23px;
    letter-spacing: .05em;
  }

  .blog-slide p {
    margin-top: 32px;
  }

  .blog-slide__content a {
    margin-top: 38px;
  }

  .blog-slider__controls {
    left: calc(48% - 36px);
    bottom: 72px;
  }

  .blog-section__bottom {
    margin-top: 36px;
    padding-top: 40px;
  }

  .enquiry-section__inner {
    width: 95%;
    grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
    gap: 46px;
  }

  .enquiry-section__copy h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .enquiry-form {
    gap: 24px;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 54px;
  }

  .site-footer__links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 34px;
  }

  .site-footer__block p,
  .site-footer__bottom p {
    letter-spacing: .05em;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 66px;
    --container-width: 94%;
  }

  .site-header.is-scrolled,
  .site-header.is-nav-open {
    height: 62px;
  }

  .site-header__brand img {
    width: clamp(152px, 52vw, 204px);
  }

  .site-header__menu {
    width: 42px;
    height: 42px;
    margin-right: -7px;
  }

  .site-header__menu span {
    width: 24px;
    height: 2px;
  }

  .site-header__menu span:nth-child(1) {
    transform: translateY(-8px);
  }

  .site-header__menu span:nth-child(3) {
    transform: translateY(8px);
  }

  .site-nav__panel {
    width: 100%;
  }

  .site-nav__inner {
    width: var(--container-width);
    padding: 18px 0 24px;
  }

  .site-nav__links {
    gap: 21px;
    margin-top: 72px;
    width: 100%;
  }

  .site-nav__logo {
    width: clamp(214px, 58vw, 330px);
  }

  .site-nav__close {
    width: 46px;
    height: 46px;
  }

  .site-nav__close span {
    left: 8px;
    width: 30px;
    height: 3px;
  }

  .site-nav__links a,
  .site-nav__project-toggle {
    font-size: clamp(28px, 8vw, 38px);
  }

  .site-nav__project-row {
    gap: 22px;
  }

  .site-nav__project-toggle {
    width: 30px;
    height: 30px;
  }

  .site-nav__subpanel {
    position: static;
    width: 100%;
    max-height: 0;
    gap: 12px;
    padding-left: 28px;
    overflow: hidden;
    pointer-events: auto;
    opacity: 1;
    transform: none;
    transition:
      max-height 420ms var(--ease-premium),
      padding-top 420ms var(--ease-premium);
  }

  .site-nav__project-item.is-open .site-nav__subpanel {
    max-height: 260px;
    padding-top: 10px;
  }

  .site-nav__subpanel a {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .06em;
    color: rgba(248, 248, 248, .68);
  }

  .site-nav__meta {
    gap: 8px;
    padding-top: 22px;
    font-size: 12px;
    line-height: 22px;
  }

  .hero__content {
    left: 4%;
    bottom: 10%;
  }

  .hero__media {
    height: 100svh;
    min-height: 560px;
    object-position: 54% top;
  }

  .hero__content p {
    letter-spacing: .03em;
  }

  .hero--about,
  .hero__media--about {
    height: auto;
    min-height: 520px;
  }

  .hero__media--about {
    object-position: 48% center;
  }

  .hero--projects-page,
  .hero__media--projects-page {
    height: 100svh;
    min-height: 520px;
  }

  .hero__media--projects-page {
    object-position: 62% center;
  }

  .hero__content--projects-page {
    bottom: 13%;
  }

  .hero__content--projects-page h1 {
    font-size: 20px;
    line-height: 30px;
  }

  .hero__content--projects-page p {
    margin-top: 16px;
    max-width: 92%;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .all-projects-section {
    padding: 25px 0;
  }

  .project-category + .project-category {
    margin-top: 25px;
  }

  .project-category__head {
    margin-bottom: 16px;
  }

  .project-category__head h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .project-category__controls {
    gap: 9px;
  }

  .project-category__controls button {
    width: 18px;
    height: 18px;
  }

  .project-category__track {
    --category-gap: 14px;
  }

  .project-category-card {
    flex-basis: min(78vw, 380px);
    min-width: min(78vw, 380px);
  }

  .project-category__viewport.is-static .project-category__track {
    grid-template-columns: repeat(auto-fill, minmax(200px, min(78vw, 380px)));
  }

  .project-category-card p {
    margin-top: 16px;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: .06em;
  }

  .project-category-card h3 {
    font-size: 13px;
    line-height: 23px;
  }

  .hero__content--about {
    bottom: 14%;
  }

  .hero__content--about h1 {
    font-size: 26px;
    line-height: 36px;
  }

  .hero__content--about p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .about-stats-section__inner {
    width: 95%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-stats-section__intro h2,
  .about-stat strong {
    font-size: 20px;
    line-height: 30px;
  }

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

  .about-stat p {
    margin-top: 10px;
    font-size: 11px;
    line-height: 21px;
    letter-spacing: .03em;
  }

  .management-section__inner {
    width: 95%;
  }

  .management-section__title {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 30px;
  }

  .management-profile {
    min-height: 100svh;
    background-position: center top;
  }

  .management-profile::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .3) 42%, rgba(0, 0, 0, .82));
  }

  .management-profile__copy {
    width: 100%;
    min-height: 100svh;
    align-content: end;
    justify-content: start;
    gap: 16px;
    padding: 0 5% 40px;
  }

  .management-profile__copy p {
    width: min(100%, 420px);
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .why-section__inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-section__heading,
  .why-section__features {
    width: 95%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .why-section__heading h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .why-section__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-feature {
    grid-column: auto !important;
    grid-row: auto !important;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    margin-top: 0 !important;
    padding-right: 0;
  }

  .why-feature__icon {
    width: 17px;
    height: 17px;
  }

  .why-feature h3 {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .16em;
  }

  .why-feature p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .03em;
  }

  .why-section__image--team,
  .why-section__image--company {
    grid-column: auto;
    grid-row: auto;
    width: 95%;
    justify-self: center;
  }

  .why-section__image--team {
    margin-top: 0;
    aspect-ratio: 1.45 / 1;
  }

  .why-section__image--company {
    aspect-ratio: 1 / 1.12;
  }

  .team-section__title {
    width: 95%;
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 30px;
  }

  .team-section__media {
    aspect-ratio: 1.28 / 1;
  }

  .team-section__media img {
    object-position: 52% center;
  }

  .philosophy-section {
    padding-top: 25px;
    padding-bottom: 48px;
  }

  .philosophy-marquee {
    --marquee-duration: 55s;
    padding: 14px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .philosophy-marquee__text,
  .philosophy-marquee__static {
    font-size: 13px;
    line-height: 22px;
    letter-spacing: .04em;
  }

  .philosophy-marquee__dot {
    width: 6px;
    height: 6px;
    margin: 0 14px;
  }

  .philosophy-section__content {
    width: 95%;
    margin-top: 34px;
  }

  .philosophy-section__content h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .philosophy-section__content p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .principles-grid {
    width: 95%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  .principle-card,
  .principle-card:nth-child(odd) {
    min-height: 0;
    padding: 34px 0 32px;
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
  }

  .principle-card:first-child {
    border-top: 0;
  }

  .principle-card img {
    width: 24px;
    height: 24px;
  }

  .principle-card h2 {
    margin-top: 24px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .18em;
  }

  .principle-card p {
    max-width: none;
    margin-top: 22px;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .03em;
  }

  .hero--contact,
  .hero__media--contact {
    min-height: 520px;
  }

  .hero__media--contact {
    object-position: 50% top;
  }

  .hero__content--contact {
    bottom: 12%;
  }

  .hero__content--contact h1,
  .contact-form-section__title {
    font-size: 20px;
    line-height: 30px;
  }

  .contact-direct p {
    font-size: 14px;
    line-height: 24px;
  }

  .hero__content--contact p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .contact-form-section__inner,
  .contact-card-section__inner,
  .contact-map-section__inner {
    width: 95%;
  }

  .contact-form-section__title {
    margin-bottom: 26px;
  }

  .contact-main-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-main-form button {
    justify-self: start;
    min-width: 128px;
    min-height: 40px;
  }

  .contact-location-card {
    grid-template-columns: 1fr;
  }

  .contact-location-card__image {
    min-height: 300px;
  }

  .contact-location-card__info {
    min-height: 300px;
    gap: 26px;
    padding: 34px 26px;
  }

  .contact-location-card__info img {
    width: min(82vw, 300px);
  }

  .contact-location-card__info address {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .contact-direct {
    gap: 6px;
    padding-top: 18px;
  }

  .contact-map-section__inner {
    aspect-ratio: 1.15 / 1;
  }

  .hero--careers,
  .hero__media--careers {
    min-height: 520px;
  }

  .hero__media--careers {
    object-position: 46% center;
  }

  .hero__content--careers {
    bottom: 12%;
  }

  .hero__content--careers h1,
  .careers-section__title,
  .career-tab__content h2,
  .career-modal h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .hero__content--careers p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .careers-section__inner {
    width: 95%;
  }

  .careers-section__title {
    margin-bottom: 24px;
  }

  .career-tab__head {
    min-height: 54px;
    grid-template-columns: 32px minmax(0, 1fr) 28px;
    gap: 14px;
  }

  .career-tab {
    padding: 9px 0;
  }

  .career-tab__summary {
    display: none;
  }

  .career-tab__role {
    font-size: 15px;
    line-height: 25px;
  }

  .career-tab__number {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .career-tab__icon {
    width: 20px;
    height: 20px;
  }

  .career-tab__content {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 95%;
    padding: 30px 0 30px 40px;
  }

  .career-tab__content::before {
    left: 0;
    top: 30px;
  }

  .career-tab__aside {
    min-height: 0;
    gap: 24px;
  }

  .career-tab__content h3 {
    margin-top: 26px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .16em;
  }

  .career-tab__content p {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .03em;
  }

  .career-apply {
    height: 30px;
    min-width: 84px;
    min-height: 30px;
    padding: 7px 12px;
    font-size: 10px;
    line-height: 14px;
  }

  .career-modal {
    padding: 12px;
  }

  .career-modal__panel {
    width: min(100%, 420px);
    max-height: none;
    padding: 18px 14px;
  }

  .career-modal p {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .03em;
  }

  .career-form {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .career-form span {
    font-size: 9px;
    line-height: 14px;
  }

  .career-form input,
  .career-form textarea {
    font-size: 10px;
    line-height: 16px;
    padding-bottom: 4px;
  }

  .career-form textarea {
    height: 38px;
    min-height: 38px;
  }

  .clients-section__title {
    width: 95%;
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 30px;
  }

  .clients-grid {
    width: 95%;
    --client-columns: 2;
  }

  .client-logo {
    min-height: 112px;
    padding: 16px;
  }

  .intro-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .intro-section__content {
    order: 2;
    width: 92%;
    margin: 0 auto;
    padding: 38px 0 42px;
  }

  .intro-section__text {
    max-width: none;
  }

  .intro-section h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .intro-section p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .intro-section__button {
    min-width: 86px;
    min-height: 36px;
    margin-top: 34px;
  }

  .intro-section__media {
    order: 1;
  }

  .intro-section__media img {
    height: auto;
    min-height: 300px;
    aspect-ratio: 16 / 11;
    object-position: center center;
  }

  .projects-section {
    padding: 36px 0 44px;
  }

  .projects-section__head {
    align-items: flex-start;
  }

  .projects-section__title {
    display: grid;
    gap: 8px;
  }

  .projects-section h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .projects-section__view {
    width: max-content;
    font-size: 13px;
    line-height: 23px;
    letter-spacing: .03em;
  }

  .projects-section__controls {
    gap: 12px;
    padding-top: 7px;
    min-width: 54px;
  }

  .projects-marquee {
    margin-top: 18px;
  }

  .projects-marquee__track {
    padding-left: 3vw;
  }

  .project-slide {
    flex-basis: 78vw;
  }

  .project-slide p {
    margin-top: 16px;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: .03em;
  }

  .project-slide h3 {
    margin-top: 5px;
    font-size: 15px;
    line-height: 25px;
  }

  .sectors-section {
    padding: 38px 0 48px;
  }

  .sectors-section__content {
    width: 92%;
    margin: 0 auto;
    display: block;
  }

  .sectors-section h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .sectors-section__intro {
    padding: 0;
  }

  .sectors-section__intro p {
    max-width: none;
    margin-top: 18px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  .sector-card h3 {
    font-size: 15px;
    line-height: 25px;
  }

  .process-section {
    padding: 38px 0 48px;
  }

  .process-section__title {
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 30px;
  }

  .process-row {
    min-height: 0;
    margin-inline: 0;
    padding: 20px 0;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 0;
  }

  .process-row p {
    grid-column: 2;
    grid-row: 3;
    max-width: none;
    margin-top: 6px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .process-row__number {
    grid-row: 1 / span 3;
    align-self: start;
    margin-top: 1px;
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .process-row h3,
  .process-row:hover h3,
  .process-row:focus-within h3,
  .process-row.is-active h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 15px;
    line-height: 25px;
  }

  .process-row h4 {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 10px;
    font-size: 13px;
    line-height: 20px;
  }

  .process-row:hover h4,
  .process-row:focus-within h4,
  .process-row.is-active h4 {
    grid-column: 2;
    grid-row: 2;
    margin-top: 10px;
  }

  .process-row__text,
  .process-row:hover .process-row__text,
  .process-row:focus-within .process-row__text,
  .process-row.is-active .process-row__text {
    display: contents;
  }

  .process-row:hover,
  .process-row:focus-within,
  .process-row.is-active {
    min-height: 0;
    margin-inline: 0;
    padding-inline: 0;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto auto;
    color: var(--color-black);
  }

  .process-row:hover::before,
  .process-row:focus-within::before,
  .process-row.is-active::before {
    opacity: 0;
  }

  .process-row:hover .process-row__number,
  .process-row:focus-within .process-row__number,
  .process-row.is-active .process-row__number {
    background: var(--color-black);
    color: var(--color-light);
    transform: none;
  }

  .process-row:hover p,
  .process-row:focus-within p,
  .process-row.is-active p {
    grid-column: 2;
    grid-row: 3;
    margin-top: 6px;
  }

  .process-row__media {
    display: none;
  }

  .testimonials-section {
    padding: 38px 0 48px;
  }

  .testimonials-section__inner {
    width: 95%;
  }

  .testimonials-section__title {
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 30px;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-slider__media {
    aspect-ratio: 1.45 / 1;
  }

  .testimonials-slider__content {
    padding-top: 0;
  }

  .testimonials-slider__top {
    padding-top: 22px;
  }

  .testimonials-slider__dots {
    gap: 8px;
    flex-wrap: wrap;
  }

  .testimonials-slider__dots button {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .testimonials-slider__quote {
    width: 34px;
  }

  .testimonials-slider__copy {
    margin-top: 30px;
  }

  .testimonials-slider__copy blockquote {
    margin-bottom: 20px;
  }

  .testimonials-slider__copy p {
    max-width: none;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .03em;
  }

  .testimonials-slider__stars {
    margin-top: 10px;
    font-size: 16px;
  }

  .blog-section {
    padding: 38px 0 48px;
  }

  .blog-section__inner {
    width: 95%;
  }

  .blog-section__title {
    margin-bottom: 26px;
    font-size: 20px;
    line-height: 30px;
  }

  .blog-slide,
  .blog-section__bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-slide__content {
    min-height: 0;
  }

  .blog-slide time {
    margin-bottom: 32px;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .03em;
  }

  .blog-slide h3 {
    font-size: 15px;
    line-height: 25px;
  }

  .blog-slide p,
  .blog-section__bottom p {
    max-width: none;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .03em;
  }

  .blog-slide p {
    margin-top: 24px;
  }

  .blog-slide__content a {
    margin-top: 30px;
  }

  .blog-slide__media {
    aspect-ratio: 1.48 / 1;
  }

  .blog-slider__controls {
    position: static;
    justify-content: flex-end;
    margin-top: 18px;
  }

  .blog-section__bottom {
    margin-top: 30px;
    padding-top: 32px;
  }

  .enquiry-section__inner {
    width: 95%;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .enquiry-section__copy h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .enquiry-form {
    gap: 20px;
  }

  .enquiry-form span {
    font-size: 12px;
    line-height: 22px;
  }

  .enquiry-form input {
    font-size: 14px;
    line-height: 24px;
  }

  .enquiry-form button {
    min-width: 118px;
    min-height: 38px;
    margin-top: 18px;
  }

  .site-footer {
    padding: 38px 0 30px;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__brand img {
    width: 210px;
  }

  .site-footer__socials {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 28px;
  }

  .site-footer__socials a,
  .site-footer__links a,
  .site-footer__block h2 {
    font-size: 16px;
    line-height: 26px;
  }

  .site-footer__divider {
    margin: 30px 0 34px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__links {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
  }

  .site-footer__block p,
  .site-footer__bottom p {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .03em;
  }

  .site-footer__bottom p {
    white-space: normal;
  }

  .site-footer__bottom {
    margin-top: 38px;
  }
}

.projects-section,
.sectors-section,
.process-section,
.testimonials-section,
.blog-section,
.enquiry-section,
.about-stats-section,
.management-section,
.why-section,
.team-section,
.philosophy-section,
.principles-section,
.contact-form-section,
.contact-card-section,
.contact-map-section,
.careers-section,
.clients-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .projects-section,
  .sectors-section,
  .process-section,
  .testimonials-section,
  .blog-section,
  .enquiry-section,
  .about-stats-section,
  .management-section,
  .why-section,
  .team-section,
  .philosophy-section,
  .principles-section,
  .contact-form-section,
  .contact-card-section,
  .contact-map-section,
  .careers-section,
  .clients-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .projects-section,
  .sectors-section,
  .process-section,
  .testimonials-section,
  .blog-section,
  .enquiry-section,
  .about-stats-section,
  .management-section,
  .why-section,
  .team-section,
  .philosophy-section,
  .principles-section,
  .contact-form-section,
  .contact-card-section,
  .contact-map-section,
  .careers-section,
  .clients-section {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.team-section {
  padding-bottom: 0;
}

.team-section + .philosophy-section {
  padding-top: 0;
}

.principles-section {
  padding-top: 0;
}

.intro-section__button,
.blog-section__button,
.enquiry-form button,
.contact-main-form button,
.career-apply,
.career-form button,
.projects-section__control,
.blog-slider__controls button,
.testimonials-slider__dots button {
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease !important;
}

.intro-section__button:hover,
.blog-section__button:hover,
.enquiry-form button:hover,
.contact-main-form button:hover,
.career-apply:hover,
.career-form button:hover,
.projects-section__control:hover,
.blog-slider__controls button:hover,
.testimonials-slider__dots button:hover,
.testimonials-slider__dots button.is-active {
  transform: none !important;
}

.intro-section__button:hover,
.blog-section__button:hover,
.enquiry-form button:hover,
.contact-main-form button:hover,
.career-form button:hover {
  background: var(--color-accent);
  color: var(--color-black);
}

.career-apply:hover {
  background: var(--color-light);
  color: var(--color-black);
  opacity: .92;
}

.projects-section__control:hover,
.blog-slider__controls button:hover {
  opacity: .58;
}

.projects-section__control:first-child:hover,
.projects-section__control:last-child:hover {
  transform: none !important;
}

.blog-slider__controls button:first-child:hover::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.blog-slider__controls button:last-child:hover::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

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

  .hero__char,
  .hero__copy,
  .reveal-item,
  .footer-reveal {
    opacity: 1;
    transform: none;
  }

  /* No scrolling text - show the statement once, centred */
  .philosophy-marquee__track {
    display: none;
  }

  .philosophy-marquee__static {
    display: block;
  }

  .philosophy-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Home responsive stability layer */
.hero,
.intro-section,
.projects-section,
.sectors-section,
.process-section,
.testimonials-section,
.blog-section,
.enquiry-section {
  max-width: 100%;
}

.hero {
  min-height: 100svh;
}

.hero__media {
  height: 100svh;
  min-height: 100svh;
}

.projects-marquee,
.project-category__viewport {
  max-width: 100%;
}

.projects-marquee__track,
.project-category__track {
  flex-wrap: nowrap;
}

.project-slide,
.project-category-card {
  min-width: 0;
}

@media (max-width: 991px) {
  :root {
    --container-width: 95%;
  }

  .hero__content {
    left: 2.5%;
    bottom: 14%;
    width: 92%;
    max-width: 620px;
  }

  .intro-section {
    grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
  }

  .intro-section__content {
    padding-left: 2.5vw;
  }

  .projects-marquee__track {
    padding-left: 2.5vw;
  }

  .project-slide {
    flex: 0 0 clamp(300px, 43vw, 420px);
  }

  .sectors-section__content,
  .process-section__inner,
  .testimonials-section__inner,
  .blog-section__inner,
  .enquiry-section__inner {
    width: var(--container-width);
  }

  .process-row__media,
  .process-row:hover .process-row__media,
  .process-row:focus-within .process-row__media,
  .process-row.is-active .process-row__media {
    width: clamp(260px, 36vw, 350px);
  }
}

@media (max-width: 767px) {
  :root {
    --container-width: 95%;
    --header-height: 72px;
  }

  .site-header {
    height: var(--header-height);
  }

  .site-header.is-scrolled,
  .site-header.is-nav-open {
    height: 66px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__media {
    height: 100svh;
    min-height: 100svh;
    object-position: center top;
  }

  .hero__content {
    left: 2.5%;
    bottom: 16%;
    width: 92%;
  }

  .hero__content h1 {
    max-width: 100%;
    font-size: clamp(20px, 7vw, 28px);
    line-height: calc(clamp(20px, 7vw, 28px) + 10px);
  }

  .hero__content p {
    margin-top: 16px;
    max-width: 100%;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

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

  .intro-section__content {
    width: var(--container-width);
    padding-left: 0;
    padding-right: 0;
  }

  .intro-section__media img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .projects-section__head,
  .sectors-section__content,
  .process-section__inner,
  .testimonials-section__inner,
  .blog-section__inner,
  .enquiry-section__inner {
    width: var(--container-width);
  }

  .projects-marquee__track {
    padding-left: 2.5vw;
    gap: 20px;
  }

  .project-slide {
    flex: 0 0 min(82vw, 360px);
  }

  .project-slide__media,
  .testimonials-slider__media,
  .blog-slide__media {
    width: 100%;
  }

  .process-row {
    width: 100%;
  }

  .testimonials-slider__top {
    gap: 16px;
  }

  .testimonials-slider__dots {
    min-width: 0;
  }

  .blog-slider__controls {
    width: 100%;
  }

  .enquiry-form {
    width: 100%;
  }

  .site-footer__inner {
    width: var(--container-width);
  }
}

@media (max-width: 420px) {
  .project-slide {
    flex-basis: 84vw;
  }

  .projects-section__head {
    gap: 12px;
  }

  .projects-section__controls {
    flex: 0 0 auto;
  }

  .testimonials-slider__quote {
    width: 28px;
  }

  .testimonials-slider__dots button {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 991px) {
  .hero--project-detail,
  .hero__media--project-detail {
    min-height: 620px;
    height: 620px;
  }

  .hero__content--project-detail h1 {
    font-size: 22px;
    line-height: 32px;
  }

  .hero__content--project-detail p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .project-detail-renders,
  .project-detail-stats,
  .project-detail-next {
    padding: 30px 0;
  }

  .project-detail-renders__inner,
  .project-detail-stats__inner,
  .project-detail-next__inner {
    width: 95%;
  }

  .project-detail-renders h2,
  .project-detail-stats h2,
  .project-detail-next h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .project-detail-next__grid {
    gap: 20px;
  }

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

  .render-gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 1.7 / 1;
  }

  .project-detail-stats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 26px;
    margin-top: 42px;
  }

  .project-detail-phone-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
  }

  .project-detail-stat strong {
    font-size: 22px;
    line-height: 32px;
  }

  .project-detail-stat span {
    margin-top: 10px;
    font-size: 13px;
    line-height: 23px;
    letter-spacing: .05em;
  }

  .residential-listing {
    padding: calc(var(--header-height) + 20px) 0 30px;
  }

  .residential-listing__mast {
    padding-bottom: 30px;
  }

  .residential-listing__head {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0 30px;
  }

  .residential-listing__head h1 {
    font-size: 26px;
    line-height: 36px;
  }

  .residential-listing__head > p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }

  .residential-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 20px;
    padding-top: 34px;
  }
}

@media (max-width: 767px) {
  .hero--project-detail,
  .hero__media--project-detail {
    min-height: 100svh;
    height: 100svh;
  }

  .hero__media--project-detail {
    object-position: center center;
  }

  .hero__content--project-detail {
    bottom: 16%;
  }

  .hero__content--project-detail h1 {
    font-size: 18px;
    line-height: 26px;
  }

  .hero__content--project-detail p {
    max-width: 92%;
    margin-top: 18px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .project-detail-renders,
  .project-detail-stats,
  .project-detail-next {
    padding: 25px 0;
  }

  .project-detail-renders__inner,
  .project-detail-stats__inner,
  .project-detail-next__inner {
    width: 95%;
  }

  .project-detail-renders__head {
    margin-bottom: 18px;
  }

  .render-gallery__item {
    aspect-ratio: 1.3 / 1;
  }

  .render-gallery__item:first-child {
    aspect-ratio: 1.5 / 1;
  }

  .project-detail-renders h2,
  .project-detail-stats h2,
  .project-detail-next h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .project-detail-next__grid {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px;
  }

  .project-detail-render,
  .project-detail-next-card,
  .project-detail-next-card figure {
    width: 100%;
    max-width: 100%;
  }

  .project-detail-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-top: 30px;
  }

  .project-detail-phone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
  }

  .project-detail-stat strong {
    font-size: 16px;
    line-height: 24px;
  }

  .project-detail-stat span {
    margin-top: 10px;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .03em;
  }

  .project-detail-next__grid {
    margin-top: 18px;
  }

  .project-detail-next-card p {
    margin-top: 16px;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: .03em;
  }

  .project-detail-next-card h3 {
    font-size: 15px;
    line-height: 25px;
  }

  .residential-listing {
    padding: calc(var(--header-height) + 16px) 0 25px;
  }

  .residential-listing__mast {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 25px;
  }

  .residential-listing__mast img {
    width: min(220px, 72vw);
  }

  .residential-listing__mast p,
  .residential-listing__eyebrow {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .08em;
  }

  .residential-listing__head {
    gap: 18px;
    padding: 22px 0 25px;
  }

  .residential-listing__head h1 {
    margin-top: 12px;
    font-size: 20px;
    line-height: 30px;
  }

  .residential-listing__head > p {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
    overflow-wrap: break-word;
  }

  .residential-listing__tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 18px 0;
  }

  .residential-listing__filters {
    gap: 8px 18px;
  }

  .residential-listing__filters button {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: .03em;
  }

  .residential-project-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding-top: 25px;
  }

  .residential-project-card,
  .residential-project-card a {
    width: 100%;
    max-width: 100%;
  }

  .residential-project-card figure {
    aspect-ratio: 1 / 1;
  }

  .residential-project-card p {
    margin-top: 14px;
    font-size: 9px;
    line-height: 15px;
    letter-spacing: .03em;
  }

  .residential-project-card h2 {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (max-width: 420px) {
  .residential-project-grid {
    grid-template-columns: 1fr;
  }
}

/* Canonical site-wide typography and spacing */
:root {
  --site-section-space: 60px;
  --banner-content-gap: 10px;
}

.home-page .hero::after {
  background: none;
}

.home-page .hero__media {
  filter: none;
}

.hero .hero__title {
  margin: 0;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: 0;
  text-transform: none;
}

.hero .hero__copy,
.intro-section p {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: .08em;
  text-transform: none;
}

.hero .hero__copy {
  margin-top: 0;
}

.home-page .hero .hero__copy {
  width: 30vw;
  max-width: 100%;
}

main > .hero + section {
  margin-top: var(--banner-content-gap);
}

.projects-section,
.sectors-section,
.process-section,
.testimonials-section,
.blog-section,
.enquiry-section,
.about-stats-section,
.management-section,
.why-section,
.team-section,
.philosophy-section,
.principles-section,
.clients-section,
.contact-form-section,
.contact-card-section,
.contact-map-section,
.careers-section,
.all-projects-section,
.project-detail-renders,
.project-detail-stats,
.project-detail-next,
.blog-listing,
.blog-article,
.blog-related {
  padding-top: var(--site-section-space) !important;
  padding-bottom: var(--site-section-space) !important;
}

.team-section {
  padding-bottom: 0 !important;
}

/* The marquee band runs flush into the next section */
.philosophy-section {
  padding-bottom: 0 !important;
}

.team-section + .philosophy-section,
.philosophy-section + .principles-section {
  padding-top: 0 !important;
}

.testimonials-section .testimonials-slider {
  display: block;
  max-width: 1080px;
  margin-inline: auto;
}

.testimonials-section .testimonials-slider__content {
  display: grid;
  grid-template-columns: minmax(150px, .22fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 86px);
  padding-top: 2px;
}

.testimonials-section .testimonials-slider__top {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(220px, 24vw, 320px);
  padding-top: 0;
}

.testimonials-section .testimonials-slider__dots {
  display: grid;
  grid-template-columns: 1fr;
}

.testimonials-section .testimonials-slider__copy {
  min-height: 210px;
  margin-top: 0;
}

.testimonials-section .testimonials-slider__copy blockquote {
  margin: 0;
  padding-bottom: 34px;
}

.testimonials-section .testimonials-slider__copy p {
  max-width: 760px;
  font-size: clamp(20px, 2.05vw, 32px);
  line-height: 1.34;
  letter-spacing: 0;
}

@media (max-width: 991px) {
  :root {
    --site-section-space: 50px;
  }

  .hero .hero__title {
    font-size: 26px;
    line-height: 36px;
  }

  .hero .hero__copy,
  .intro-section p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
  }
}

@media (max-width: 767px) {
  :root {
    --site-section-space: 25px;
  }

  .hero .hero__title {
    font-size: 20px;
    line-height: 30px;
  }

  .hero .hero__copy,
  .intro-section p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
  }

  .hero .hero__copy {
    margin-top: 0;
  }

  .testimonials-section .testimonials-slider {
    padding-top: 28px;
  }

  .testimonials-section .testimonials-slider__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-section .testimonials-slider__top {
    position: static;
    min-height: 0;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .testimonials-section .testimonials-slider__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .testimonials-section .testimonials-slider__copy {
    min-height: 220px;
  }

  .testimonials-section .testimonials-slider__copy blockquote {
    padding-bottom: 28px;
  }

  .testimonials-section .testimonials-slider__copy p {
    font-size: clamp(18px, 6vw, 24px);
    line-height: 1.38;
  }

  .testimonials-section .testimonials-slider__stars {
    margin-top: 18px;
  }
}

/* Compact testimonial card carousel */
.testimonials-section {
  padding-top: var(--site-section-space) !important;
  padding-bottom: var(--site-section-space) !important;
}

.testimonials-section__head .testimonials-section__title {
  margin: 0;
}

@media (max-width: 991px) {
  .testimonial-card {
    min-height: 220px;
    padding: 26px;
  }

  .testimonial-card blockquote p {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 767px) {
  .testimonials-section__head {
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .testimonial-carousel__controls {
    gap: 7px;
  }

  .testimonial-carousel__controls button {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .testimonial-carousel__status {
    min-width: 42px;
    font-size: 10px;
  }

  .testimonial-carousel__track {
    gap: 14px;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 208px;
    padding: 22px;
  }

  .testimonial-card__quote {
    width: 27px;
    margin-bottom: 18px;
  }

  .testimonial-card blockquote p {
    font-size: 15px;
    line-height: 25px;
  }

  .testimonial-card__footer {
    padding-top: 22px;
  }
}

/* Consistent banner text placement */
.hero .hero__content {
  bottom: 30px !important;
}

@media (max-width: 767px) {
  .hero .hero__content {
    bottom: 20px !important;
  }

  .home-page .hero .hero__copy {
    width: 100%;
  }
}

/* Homepage intro connects directly to the hero */
.home-page .hero + .intro-section {
  margin-top: 0;
}

/* Project detail image behavior */
.hero__media--project-detail {
  filter: none;
}

.project-detail-render img,
.render-gallery__item img {
  filter: grayscale(0);
}

/* Button typography and icon consistency */
.intro-section__button,
.projects-section__view,
.blog-section__button,
.enquiry-form button,
.contact-main-form button,
.career-apply,
.career-form button,
.residential-listing__filters button {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
}

.intro-section__button,
.blog-section__button,
.enquiry-form button,
.contact-main-form button,
.career-apply,
.career-form button {
  min-height: 46px;
  padding: 11px 22px;
}

.projects-section__control,
.project-category__controls button,
.project-detail-renders__controls button,
.blog-slider__controls button {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  font-size: 0;
  line-height: 1;
}

.projects-section__control::before,
.project-category__controls button::before,
.project-detail-renders__controls button::before,
.blog-slider__controls button::before {
  content: "";
  position: static;
  inset: auto;
  display: block;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  background: transparent;
  color: var(--color-black);
  transition:
    border-color 220ms ease,
    transform 300ms var(--ease-premium);
}

.projects-section__control:first-child::before,
.project-category__controls button:first-child::before,
.project-detail-renders__controls button:first-child::before,
.blog-slider__controls button:first-child::before {
  transform: rotate(-45deg);
}

.projects-section__control:last-child::before,
.project-category__controls button:last-child::before,
.project-detail-renders__controls button:last-child::before,
.blog-slider__controls button:last-child::before {
  transform: rotate(135deg);
}

.projects-section__control:hover::before,
.project-category__controls button:hover::before,
.project-detail-renders__controls button:hover::before,
.blog-slider__controls button:hover::before {
  border-color: var(--color-accent);
}

@media (max-width: 991px) {
  .intro-section__button,
  .projects-section__view,
  .blog-section__button,
  .enquiry-form button,
  .contact-main-form button,
  .career-apply,
  .career-form button,
  .residential-listing__filters button {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
  }

  .intro-section__button,
  .blog-section__button,
  .enquiry-form button,
  .contact-main-form button,
  .career-apply,
  .career-form button {
    min-height: 42px;
    padding: 10px 18px;
  }
}
